@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Oswald:wght@600&family=Poppins:wght@700&family=Zen+Old+Mincho:wght@400;500;600;700&display=swap');
/*
* This is a manifest file that'll be compiled into application.css, which will include all the files
* listed below.
*/
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
}
strong {
  font-weight: var(--bold);
}
html {
  line-height: 1;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}
q, blockquote {
  quotes: none;
}
q:before, q:after, blockquote:before, blockquote:after {
  content: '';
  content: none;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
}
a img {
  border: none;
}
article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block;
}
*, *:before, *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  overflow-wrap: break-word;
  word-break: break-word;
  width: 100%;
  max-width: 100%;
}
html, body {
  font-family: var(--font-min);
  font-size: 10px;
  font-weight: var(--medium);
  color: var(--color-black);
  font-feature-settings: "palt";
  text-decoration-thickness: 1px;
}
a {
  display: inline-block;
  color: var(--color-black);
  cursor: pointer;
}
a, a:hover {
  text-decoration: none;
}
button {
  border: none;
  outline: none;
  box-shadow: none;
  padding: 0;
}
img {
  display: block;
  width: 100%;
  height: auto;
}
h1, h2, h3, h4, h5, h6 {
  margin: 0;
  letter-spacing: 0;
}
body {
  position: relative;
  margin: auto;
}
small {
  font-size: 70%;
}
li {
  list-style: none;
}
::placeholder {
  color: #999999;
}
input,
textarea,
select,
option,
button {
  font-weight: var(--medium);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0;
}
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
option:focus-visible {
  outline: none;
}
@media screen and (max-width: 1200px) {
  html, body {
    font-size: calc(1000vw / 1200);
  }
}
@media screen and (max-width: 767px) {
  html, body {
    font-size: calc(1000vw / 750);
  }
}
.sp {
  display: block !important;
}
@media screen and (min-width: 768px) {
  .sp {
    display: none !important;
  }
  a {
    transition: .3s;
  }
  a:hover {
    opacity: 0.6;
  }
}
.pc {
  display: none !important;
}
@media screen and (min-width: 768px) {
  .pc {
    display: block !important;
  }
}
body {
  counter-reset: sections boxesd;
}
body.anime.fadeIn.active {
  animation: fadeIn .5s .2s ease-out forwards;
}

/* ----------------------------------
common
---------------------------------- */
:root {
  --color-black: #000;
  --color-white: #fff;
  --color-offwhite: #F3F3F3;
  --color-red: #e5004f;
  --color-green: #008f63;
  --color-blue: #1A4893;
  --color-light-blue: #42A9D7;
  --light: 300;
  --regular: 400;
  --medium: 500;
  --semibold: 600;
  --bold: 700;
  --black: 900;
  --font-min: "Zen Old Mincho", serif;
  --font-go: "Noto Sans JP", sans-serif;
}
a {
  transition: .3s;
}
body.fixed {
  width: 100%;
  height: 100%;
  position: fixed;
}
main {
  overflow: hidden;
}
.is-hide {
  display: none !important;
}
.in {
  padding: 0 3.6rem;
}
.txt {
  font-size: 3rem;
  font-family: var(--font-go);
  font-weight: var(--regular);
  letter-spacing: 0.05em;
  line-height: 1.25;
}
.button {
  border-radius: 2rem;
  overflow: hidden;
  box-shadow: 0 0.8rem 1.6rem rgb(0 0 0 / 0.4);
  cursor: pointer;
  transition: .3s;
}
.button:hover {
  opacity: 0.6;
}
@media screen and (min-width:768px) {
  .in {
    max-width: 100rem;
    margin: 0 auto;
    padding: 0;
  }
  .txt {
    font-size: 1.6rem;
  }
  .button {
    border-radius: 1.4rem;
  }
}

.fixed {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 11rem;
  background: rgb(255 255 255 / 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  z-index: 5;
  opacity: 0;
  pointer-events: none;
  transition: .3s;
}
.fixed.is-show {
  opacity: 1;
  pointer-events: auto;
}
.fixed .button {
  width: 35rem;
}
.fixed .logo {
  display: none;
}
@media screen and (max-width: 767px) {
  .fixed .button {
    opacity: 1;
  }
}
@media screen and (min-width: 768px) {
  .fixed {
    height: 10rem;
    gap: 2rem;
    background: rgb(255 255 255 / 0.8);
  }
  .fixed .button {
    width: 35rem;
  }
  .fixed .logo {
    display: block;
    width: 21rem;
    margin-right: 1rem;
  }
}


/* ----------------------------------
lead
---------------------------------- */
main > div.lead {
  padding: 10rem 0;
  background: url(../img/kazokusou_bg.jpg) center/contain repeat;
}

/* ----------------------------------
cv
---------------------------------- */
main > .cv {
  padding: 10rem 0;
}
main > .cv .jizen {
  margin-top: 3rem;
}
main > .cv .jizen,
main > .cv .oisogi {
  position: relative;
}
main > .cv .jizen .button,
main > .cv .oisogi .button {
  position: absolute;
  width: 63rem;
  left: 50%;
  transform: translateX(-50%);
}
main > .cv .oisogi .button {
  bottom: 1.7rem;
}
main > .cv .jizen .button-web {
  bottom: 3.8rem;
}
main > .cv .jizen .button-tel2 {
  bottom: 19.3rem;
}
.button span {
  position: absolute;
  font-size: 5.25rem;
  font-family: "Poppins", sans-serif;
  color: var(--color-white);
  letter-spacing: -0.004em;
}
main > #point2 .event .buttons .button-tel2 {
  position: relative;
}
main > .cv .jizen .button-tel2 span,
main > #point2 .event .buttons .button-tel2 span,
main > .free .in .fuan .button.button-tel2 span,
.cv2 .jizen .button-tel2 span {
  bottom: 1.2rem;
  left: 15.2rem;
}
main > .cv .oisogi .button span,
.cv2 .oisogi .button span {
  bottom: 5.8rem;
  left: 15.2rem;
}
.fixed .button.button-tel2 {
  position: relative;
}
.fixed .button.button-tel2 span {
  bottom: 0.3rem;
  font-size: 3.7rem;
  left: 8.8rem;
  letter-spacing: -0.04em;
}
@media screen and (min-width: 768px) {
  main > .cv .in {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 2rem;
  }
  main > .cv .jizen,
  main > .cv .oisogi {
    width: 49rem;
    margin: 0 !important;
  }
  main > .cv .jizen .button,
  main > .cv .oisogi .button {
    width: 45rem;
  }
  main > .cv .jizen .button-tel2 {
    bottom: 13.3rem;
  }
  main > .cv .jizen .button-web {
    bottom: 2.2rem;
  }
  .button span {
    font-size: 4.3rem;
    letter-spacing: 0.023em;
  }
  main > .cv .jizen .button-tel2 span,
  main > #point2 .event .buttons .button-tel2 span,
  main > .free .in .fuan .button.button-tel2 span,
  .cv2 .jizen .button-tel2 span {
    bottom: 1.2rem;
    left: 10.4rem;
  }
  main > .cv .oisogi .button span, 
  .cv2 .oisogi .button span {
    bottom: 4.2rem;
    left: 10.4rem;
  }
}

/* ----------------------------------
cm
---------------------------------- */
main > .cm {
  padding: 7.4rem 0 8rem;
  background: var(--color-green);
}
main > .cm .in {
  padding: 0 5.9rem;
}
main > .cm .ttl-h2 {
  margin-bottom: 1.8rem;
  font-size: 4.8rem;
  font-weight: var(--semibold);
  color: var(--color-white);
  text-align: center;
  letter-spacing: 0.05em;
}
main > .cm .movie {
  position: relative;
  width: 63.2rem;
  height: 32.3rem;
  overflow: hidden;
  margin: 1.9rem auto 0;
}
main > .cm .movie iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  object-fit: cover;
}
main > .cm .movie .thumb {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  main > .cm .ttl-h2 {
    font-size: 4rem;
  }
  main > .cm .movie {
    margin-top: 2.9rem;
  }
} 

/* ----------------------------------
anchor
---------------------------------- */
main > .anchor {
  padding: 10rem 0 6rem;
}
main > .anchor .banner {
  display: block;
  max-width: 63.3rem;
  margin: 0 auto 10.4rem;
}
main > .anchor .links .ttl-h2 span {
  position: relative;
  display: inline-block;
  padding-left: 12.5rem;
  font-size: 3.6rem;
  line-height: 1.3;
  text-decoration: underline;
  text-underline-offset: 1rem;
  font-weight: var(--medium);
}
main > .anchor .links .ttl-h2 span strong {
  font-size: 6rem;
  font-weight: var(--medium);
  color: var(--color-red);
}
main > .anchor .links .ttl-h2 span strong:nth-of-type(n + 2) {
  color: var(--color-green);
}
main > .anchor .links .ttl-h2 span img {
  position: absolute;
  top: 55%;
  width: 16.7rem;
  left: -3rem;
  z-index: -1;
  transform: translateY(-50%);
}
main > .anchor .links .list {
  display: flex;
  gap: 2rem;
  justify-content: center;
  margin-top: 4.5rem;
}
main > .anchor .links .list li {
  width: 15.3rem;
}
main > .anchor .links .list li a {
  position: relative;
  display: block;
  padding-bottom: 1.6rem;
  border-bottom: 1px solid #b3b3b3;
}
main > .anchor .links .list li a::after {
  position: absolute;
  bottom: -1.8rem;
  left: 50%;
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0.8rem 2.2rem 0 2.2rem;
  border-color: #c5ab25 transparent transparent transparent;
  transform: translateX(-50%);
}
main > .anchor .links .list li a > span {
  position: absolute;
  top: -2.3rem;
  left: 50%;
  font-size: 4.8rem;
  font-weight: var(--semibold);
  color: var(--color-green);
  transform: translateX(-50%);
}
main > .anchor .links .list li a .img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 15.3rem;
  margin-bottom: 1.4rem;
  aspect-ratio: 1/1;
  border-radius: 100%;
  border: 0.2rem solid #b3b3b3
}
main > .anchor .links .list li:nth-of-type(1) a .img img {
  width: 5.3rem;
}
main > .anchor .links .list li:nth-of-type(2) a .img img {
  width: 10.3rem;
}
main > .anchor .links .list li:nth-of-type(3) a .img img {
  width: 6.7rem;
}
main > .anchor .links .list li:nth-of-type(4) a .img img {
  width: 9.3rem;
}
main > .anchor .links .list li a > p {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 7.5rem;
  font-size: 3rem;
  font-weight: var(--medium);
  text-align: center;
  line-height: 1.2;
}
main > .anchor .links .list li a > p strong {
  font-weight: var(--medium);
}
main > .anchor .links .list li a > p span {
  color: var(--color-red);
}
main > .anchor .links .list li a > p small {
  font-size: 2.4rem;
}
@media screen and (min-width: 768px) {
  main > .anchor .links .ttl-h2 {
    display: flex;
    justify-content: center;
  }
  main > .anchor .banner {
    max-width: 100%;
  }
} 

/* ----------------------------------
point
---------------------------------- */
main > .point > .ttl-h2 {
  height: 18rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background: #008471 url(../img/ttl_bg.png) center/79.8rem auto repeat-x;
  box-shadow: 0 0.9rem 0 #b3b3b3;
  padding: 2rem 3.6rem;
  margin-bottom: 2.9rem;
}
main > .point > .ttl-h2 > span {
  position: relative;
  display: block;
  max-width: 100rem;
  padding-left: 18.8rem;
  font-size: 3rem;
  color: var(--color-white);
  font-weight: var(--medium);
  line-height: 1.1;
}
main > .point > .ttl-h2 > span img {
  position: absolute;
  top: 50%;
  left: 0;
  width: 14.6rem;
  transform: translateY(-50%);
}
main > .point > .ttl-h2 > span span {
  color: #c5ab25;
  font-size: 6rem;
}
main > .point > .ttl-h2 > span strong {
  font-size: 7.2rem;
  font-weight: var(--medium);
}
@media screen and (min-width: 768px) {
  main > .point > .ttl-h2 > span {
    width: 100%;
    margin: 0 auto;
  }
  main > .point > .ttl-h2 > span strong {
    font-size: 5.5rem;
  }
}

/* point1 */
main > #point1 {
  padding-bottom: 10rem;
}
main > #point1 .item {
  margin-top: 4.5rem;
}
main > #point1 .item + .item {
  margin-top: 8.2rem;
}
main > #point1 .item .ttl-h3 {
  margin-bottom: 1.8rem;
  padding: 1.6rem;
  background: #008471;
  font-size: 4.6rem;
  font-weight: var(--bold);
  font-family: var(--font-go);
  color: var(--color-white);
  text-align: center;
}
main > #point1 .item .thumb .swiper-wrapper {
  display: flex;
  gap: 2.1rem;
  margin-top: 2rem;
}
main > #point1 .item .thumb .swiper-slide {
  width: 15.3rem;
}
main > #point1 .item .desc {
  margin-top: 1.3rem;
  background: #f7f7f7;
  padding: 4.7rem 5rem 6rem;
}
main > #point1 .item .desc .labels {
  display: flex;
  align-items: center;
  gap: 2.7rem;
}
main > #point1 .item .desc .labels span {
  padding: 1.6rem 5rem;
  border-radius: 1.5rem;
  font-size: 3rem;
  font-family: var(--font-go);
  font-weight: var(--bold);
  color: var(--color-white);
  background: #ff5d8e;
}
main > #point1 .item .desc .labels span:nth-of-type(2) {
  background: #5da9ff;
}
main > #point1 .item .desc table {
  width: 100%;
}
main > #point1 .item .desc th,
main > #point1 .item .desc td {
  padding: 2.4rem 3.6rem;
  font-size: 3rem;
  font-family: var(--font-go);
  letter-spacing: 0.025em;
  line-height: 1.33;
  border-bottom: 0.3rem solid #b3b3b3;
}
main > #point1 .item .desc th {
  padding: 2.4rem 0;
  text-align: center;
  vertical-align: baseline;
  width: 16.3rem;
  font-weight: var(--medium);
  border-color: #008471;
}
main > #point1 .item .desc td a.map {
  position: relative;
  display: block;
  color: #008471;
  padding-left: 4.7rem;
  font-weight: var(--bold);
  font-size: 3rem;
  letter-spacing: 0.05em;
  margin-top: 2.7rem;
}
main > #point1 .item .desc td a.map span {
  padding-bottom: 1rem;
  border-bottom: 0.2rem solid #008471;
}
main > #point1 .item .desc td a.map::before {
  position: absolute;
  top: 50%;
  left: 0;
  content: "";
  display: block;
  width: 3.5rem;
  height: 5.1rem;
  background: url(../img/map_icon.png) center/contain no-repeat;
  transform: translateY(-50%);
}
@media screen and (min-width: 768px) {
  main > #point1 .flex {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem 2rem;
    margin-top: 4.5rem;
  }
  main > #point1 .item {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: calc(50% - 1rem);
    margin: 0 !important;
  }
  main > #point1 .item .ttl-h3 {
    width: 100%;
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }
  main > #point1 .item .slide {
    width: calc(54% - 0.5rem);
  }
  main > #point1 .item .thumb .swiper-wrapper {
    margin-top: 1rem;
    gap: 0.5rem;
  }
  main > #point1 .item .thumb .swiper-slide {
    width: calc(25% - (0.5rem * 2 / 3));
  }
  main > #point1 .item .desc {
    width: calc(46% - 0.5rem);
    padding: 2rem 1.5rem;
    margin: 0;
  }
  main > #point1 .item .desc .labels span {
    font-size: 1.3rem;
  }
  main > #point1 .item .desc th, main > #point1 .item .desc td {
    padding: 1.5rem !important;
    font-size: 1.3rem;
  }
  main > #point1 .item .desc th {
    width: 4rem;
    padding: 1.5rem 0 !important;
    text-align: left;
  }
  main > #point1 .item .desc td a.map {
    display: block;
    font-size: 1.3rem;
    padding-left: 2.7rem;
    margin-top: 1.5rem;
  }
  main > #point1 .item .desc td a.map::before {
    width: 1.6rem;
    height: 2.6rem;
  }
  main > #point1 .item .desc .labels span {
    padding: 0.8rem 1rem;
    border-radius: 0.6rem;
  }
  main > #point1 .item .desc .labels {
    gap: 1rem;
  }
  main > #point1 .item .desc td a.map span {
    padding-bottom: 0.5rem;
  }
}

/* point2 */
main > #point2 .flex {
  margin-top: 5rem;
  padding-bottom: 13.2rem;
}
main > #point2 .flex .block {
  background: #f7f7f7;
  margin: 0 -3.6rem;
  padding: 6.8rem 3.6rem 5.5rem;
}
main > #point2 .flex .block + .block {
  margin-top: 6.3rem;
}
main > #point2 .flex .block .txt-wrap {
  margin-top: 6.2rem;
}
main > #point2 .flex .block .txt-wrap .ttl-h3 {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 2.8rem;
  margin-bottom: 3.3rem;
  border-bottom: 1px solid #b3b3b3;
  text-align: center;
  font-size: 4.8rem;
  font-weight: var(--medium);
  color: #0c956b;
  letter-spacing: 0.1em;
}
main > #point2 .flex .block .txt-wrap .ttl-h3 small {
  font-size: 3rem;
}
main > #point2 .event {
  margin: 0 -3.6rem;
}
main > #point2 .event .ttl-h2 {
  text-align: center;
  padding: 4.1rem 0 2.9rem;
  background: #af6aa4 url(../img/ttl_bg_p.png) center/78.6rem auto repeat-x;
  margin: 0 0 4.6rem;
}
main > #point2 .event .ttl-h2 span {
  position: relative;
  display: inline-block;
  font-size: 3rem;
  font-weight: var(--medium);
  font-family: var(--font-go);
  line-height: 1.2;
  color: var(--color-white);
}
main > #point2 .event .ttl-h2 span strong {
  font-size: 7.2rem;
  font-weight: var(--bold);
}
main > #point2 .event .ttl-h2 span img {
  position: absolute;
  top: -7rem;
  left: -4.6rem;
  width: 14.5rem;
}
main > #point2 .event .top {
  padding-bottom: 37.5rem;
  background: url(../img/kengaku_sp.png) center bottom/contain no-repeat;
}
main > #point2 .event .top .lead {
  text-align: center;
  font-size: 4rem;
  font-weight: var(--bold);
  font-family: var(--font-go);
  line-height: 1.5;
  color: #343432;
}
main > #point2 .event .buttons {
  margin: 5.9rem 0 11.4rem;
  padding: 0 6rem;
}
main > #point2 .event .buttons .button + .button {
  margin-top: 2.1rem;
}
@media screen and (min-width: 768px) {
  main > #point2 .flex {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }
  main > #point2 .flex .block {
    width: 100%;
    margin: 0;
    position: relative;
    padding: 0;
  }
  main > #point2 .flex .block:nth-last-of-type(-n + 2){
    width: calc(50% - 0.5rem);
  }
  main > #point2 .flex .block .txt-wrap {
    margin: 0;
    position: absolute;
    width: 26rem;
    top: 2rem;
    right: 2rem;
    z-index: 1;
    background: rgb(255 255 255 / 0.8);
    padding: 2rem 1.5rem;
  }
  main > #point2 .flex .block:nth-of-type(even) .txt-wrap {
    left: 2rem;
    right: auto;
  }
  main > #point2 .flex .block:last-of-type .txt-wrap {
    top: auto;
    bottom: 2rem;
    left: 2rem;
    right: auto;
  }
  main > #point2 .flex .block:nth-last-of-type(2) .txt-wrap {
    right: auto;
    left: 2rem;
  }
  main > #point2 .flex .block .txt-wrap .ttl-h3 {
    display: block;
    padding-bottom: 1rem;
    margin-bottom: 1.4rem;
    font-size: 2.4rem;
    text-align: left;
    letter-spacing: 0;
  }
  main > #point2 .flex .block .txt-wrap .ttl-h3 small {
    font-size: 1.5rem;
  }
  main > #point2 .flex .block + .block {
    margin-top: 0;
  }
  main > #point2 .event .ttl-h2 {
    margin-bottom: 1rem;
  }
  main > #point2 .event .top {
    position: relative;
    padding: 0;
    height: 41rem;
    background-image: url(../img/kengaku_pc.png);
  }
  main > #point2 .event .top .lead {
    position: absolute;
    font-size: 3rem;
    text-align: right;
    right: 26rem;
    bottom: 15rem;
    text-decoration: underline;
    line-height: 1.6;
    text-underline-offset: 0.6rem;
  }
  main > #point2 .event .bottom {
    position: relative;
    margin-top: -3rem;
  }
  main > #point2 .event .buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
  }
  main > #point2 .event .buttons .button {
    width: 45rem;
    margin: 0 !important;
  }
  main > #point2 .event .ttl-h2 span strong {
    font-size: 5.5rem;
  }
  main > #point2 .event .ttl-h2 span img {
    left: -9.6rem;
  }
}

/* point3 */
main > #point3 {
  padding-bottom: 0;
}
main > #point3 > .ttl-h2 {
  margin-bottom: 6.5rem;
}
main > #point3 > .lead {
  margin-bottom: 5rem;
  text-decoration: underline;
  text-underline-offset: 1rem;
  text-align: center;
  font-size: 3.6rem;
  letter-spacing: 0.05em;
}
main > #point3 > .lead span {
  font-size: 6rem;
  color: #e5004f;
}
main > #point3 > .lead + .txt {
  padding: 0 3.6rem;
}
main > #point3 > .bg {
  margin-top: 3.6rem;
  padding: 8.3rem 3.6rem 10.9rem;
  background: #e8f2ee;
}
main > #point3 .plan .ttl-h3 {
  margin-bottom: 2.7rem;
  font-size: 7.2rem;
  padding: 2.7rem 0;
  font-weight: var(--medium);
  color: var(--color-white);
  text-align: center;
  background: url(../img/ttl_bg_plan_g.png) center/68rem auto repeat-x;
}
main > #point3 .plan .flex-txt {
  margin: 3.8rem 0;
}
main > #point3 .plan .desc .ttl-h4 {
  margin-bottom: 2.6rem;
  padding: 1.6rem 4.1rem;
  font-size: 4rem;
  font-weight: var(--medium);
  font-family: var(--font-go);
  background: var(--color-white);
  color: #008471;
  letter-spacing: 0.05em;
  border-left: 1rem solid #008471;
}
main > #point3 .plan .desc > .note {
  padding: 0 3.5rem;
  font-size: 3rem;
  font-weight: var(--medium);
  font-family: var(--font-go);
  line-height: 1.33;
  text-indent: -1em;
  padding-left: 2.5em;
}
main > #point3 .plan .desc dl {
  margin-top: 3.8rem;
}
main > #point3 .plan .desc dl + dl {
  margin-top: 5.7rem;
}
main > #point3 .plan .desc dt {
  margin-bottom: 4rem;
  text-align: center;
  font-size: 4rem;
  font-weight: var(--medium);
  font-family: var(--font-go);
  letter-spacing: 0.05em;
  color: #008471;
  text-decoration: underline;
  text-underline-offset: 1.2rem;
}
main > #point3 .plan .desc dd .txt {
  width: max-content;
  margin: 0 auto;
}
main > #point3 .plan .desc dd .list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.1rem 1.4rem;
  margin-top: 2.8rem;
}
main > #point3 .plan .desc dd .list li {
  width: calc(25% - (1.4rem * 3 / 4));
  border: 1px solid #008471;
  background: var(--color-white);
}
main > #point3 .plan .desc dd .list li img {
  display: block;
  width: 100%;
  aspect-ratio: 1/1;
}
main > #point3 .plan .desc dd .list li p {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 9rem;
  background: #008471;
  font-size: 2.8rem;
  font-weight: var(--medium);
  font-family: var(--font-go);
  letter-spacing: 0.05em;
  color: var(--color-white);
}
main > #point3 .plan45 {
  padding: 7.9rem 0 6.8rem;
}
main > #point3 .plan45 .ttl-h3 {
  background: url(../img/ttl_bg_plan_p.png) center/68rem auto repeat-x;
}
main > #point3 .plan45 .desc .ttl-h4 {
  color: #556fb5;
  border-color: #556fb5;
}
main > #point3 .plan45 .desc dt {
  color: #556fb5;
}
main > #point3 .plan45 .desc dt span {
  color: #1a1a1a;
  font-size: 3rem;
}
main > #point3 .plan45 .desc dd .list {
  justify-content: flex-start;
}
main > #point3 .plan45 .desc dd .list li {
  border-color: #556fb5;
}
main > #point3 .plan45 .desc dd .list li p {
  background: #556fb5;
}
main > #point3 .plan75,
main > #point3 .plan100 {
  margin-top: 3.4rem;
}
main > #point3 .plan60 .ttl-h3,
main > #point3 .plan75 .ttl-h3,
main > #point3 .plan100 .ttl-h3 {
  background: none;
  padding: 0;
}
main > #point3 .plans {
  padding-bottom: 8rem;
}
main > #point3 .voices .ttl-h2 {
  text-align: center;
  padding: 4.1rem 0 2.9rem;
  background: #af6aa4 url(../img/ttl_bg_p.png) center/78.6rem auto repeat-x;
  margin: 0 -3.6rem 3rem;
}
main > #point3 .voices .ttl-h2 span {
  display: inline-block;
  font-size: 3rem;
  font-weight: var(--medium);
  font-family: var(--font-go);
  line-height: 1.2;
  color: var(--color-white);
}
main > #point3 .voices .ttl-h2 span strong {
  font-size: 7.2rem;
  font-weight: var(--bold);
}
main > #point3 .voices .voice {
  position: relative;
  background: var(--color-white);
  padding: 6.5rem 1.9rem 3.1rem 2.6rem;
}
main > #point3 .voices .voice + .voice {
  margin-top: 3.2rem;
}
main > #point3 .voices .voice .ttl-h3 {
  width: 40rem;
  margin-left: auto;
  margin-bottom: 4.7rem;
  font-size: 3.6rem;
  font-weight: var(--bold);
  color: #ae5da1;
  font-family: var(--font-go);
  line-height: 1.33;
}
main > #point3 .voices .voice .flex-img {
  position: absolute;
  top: 3.5rem;
  left: 4.8rem;
  width: 19.3rem;
}
@media screen and (min-width: 768px) {
  main > #point3 .voices .ttl-h2 span strong {
    font-size: 5.5rem;
  }
  main > #point3 .plans {
    display: flex;
    flex-wrap: wrap;
    gap: 0 1rem;
    max-width: 100rem;
    margin: 0 auto;
  }
  main > #point3 .plan20, main > #point3 .plan45 {
    width: 100%;
  }
  main > #point3 .plan60, 
  main > #point3 .plan75, 
  main > #point3 .plan100 {
    width: calc(33.33% - (1rem * 2 / 3));
    margin: 0 !important;
  }
  main > #point3 .plan .ttl-h3 {
    font-size: 4.5rem;
    padding: 2rem 0;
  }
  main > #point3 > .lead + .txt {
    text-align: center;
  }
  main > #point3 .plan .flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 3rem;
  }
  main > #point3 .plan .flex-img {
    width: 48rem;
  }
  main > #point3 .plan .flex-txt {
    width: 49rem;
  }
  main > #point3 .plan .desc .ttl-h4 {
    font-size: 3rem;
  }
  main > #point3 .plan .desc dd .list li {
    width: calc(13% - (1.4rem * 3 / 4));
  }
  main > #point3 .plan .desc dd .list li p {
    height: 5rem;
    font-size: 1.9rem;
  }
  main > #point3 .plan .desc dt {
    font-size: 3rem;
  }
  main > #point3 .plan .desc dd .txt {
    text-align: center;
  }
  main > #point3 .plan .desc > .note {
    font-size: 1.6rem;
  }
  main > #point3 .plan45 .desc dd .list {
    justify-content: center;
  }
  main > #point3 .voices {
    max-width: 100rem;
    margin: 0 auto;
  }
  main > #point3 .voices .ttl-h2 {
    margin: 0 0 3rem
  }
  main > #point3 .voices .voice .flex-img {
    position: static;
    width: 12.2rem;
  }
  main > #point3 .voices .voice .flex-txt {
    width: calc(100% - 12.2rem - 2rem);
  }
  main > #point3 .voices .voice {
    display: flex;
    gap: 2rem;
    padding: 2.6rem 6rem;
    align-items: center;
  }
  main > #point3 .voices .voice .ttl-h3 {
    width: 100%;
    font-size: 2.4rem;
    margin-bottom: 1rem;
  }
}

/* point4 */
main > #point4 > .bg {
  background: #e8f2ee;
  padding: 5.4rem 3.6rem 9.7rem;
}
main > #point4 > .ttl-h2 {
  position: relative;
  margin: 0;
}
main > #point4 > .ttl-h2 span {
  padding-left: 16.8rem;
}
main > #point4 > .ttl-h2 strong {
  font-size: 7rem;
  letter-spacing: -0.1em;
}
main > #point4 .box {
  margin: 5.5rem -3.6rem 0;
  background: var(--color-white);
  padding: 6.2rem 3.3rem 5.7rem;
}
main > #point4 .box .ttl-h3 {
  padding-bottom: 2.8rem;
  margin-bottom: 3.3rem;
  border-bottom: 1px solid #b3b3b3;
  text-align: center;
  font-size: 4.8rem;
  font-weight: var(--medium);
  color: #0c956b;
  letter-spacing: 0.1em;
}
main > #point4 .box .lead {
  font-size: 3.6rem;
  text-align: center;
  line-height: 1.27;
  letter-spacing: 0.05em;
}
main > #point4 .box .flex-img {
  margin: 1.9rem auto 3.8rem;
}
main > #point4 .box .flex-txt .txt {
  line-height: 1.66;
}
main > #point4 .bg > .flex {
  position: relative;
  margin: 5rem 0 0;
}
main > #point4 .bg > .flex::after {
  position: absolute;
  left: 50%;
  top: 0;
  content: "";
  width: 0.3rem;
  height: 100%;
  background: #008471;
  transform: translateX(-50%);
}
main > #point4 .bg > .flex li {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  height: 11.5rem;
  background: #008471;
  font-size: 3rem;
  line-height: 1.2;
  letter-spacing: 0.05em;
  color: var(--color-white);
}
main > #point4 .bg > .flex li + li {
  margin-top: 4.8rem;
}
main > #point4 .bg > .flex li span {
  position: relative;
  display: flex;
  margin-left: 0.9rem;
  z-index: 1;
  align-items: center;
  justify-content: center;
  width: 10rem;
  font-size: 4rem;
  letter-spacing: 0.05em;
  color: #e60012;
}
main > #point4 .bg > .flex li span::before {
  position: absolute;
  top: 50%;
  left: 50%;
  content: "";
  display: block;
  width: 7rem;
  height: 7rem;
  background: var(--color-white);
  transform: translate(-50%, -50%) rotate(45deg);
  z-index: -1;
}
main > #point4 .bg > .flex li img {
  width: 6.4rem;
}
main > #point4 .bg > .flex li:nth-of-type(1) img {
  width: 6.4rem;
  margin: 0 4.1rem 0 2.4rem; 
}
main > #point4 .bg > .flex li:nth-of-type(2) img {
  width: 6.6rem;
  margin: 0 4rem 0 2.3rem; 
}
main > #point4 .bg > .flex li:nth-of-type(3) img {
  width: 4.9rem;
  margin: 0 4.9rem 0 3.1rem; 
}
main > #point4 .bg > .flex li:nth-of-type(4) img {
  width: 6.2rem;
  margin: 0 4.2rem 0 2.5rem; 
}
main > #point4 .bg > .flex li:nth-of-type(5) img {
  width: 8.1rem;
  margin: 0 3.3rem 0 1.5rem; 
}
@media screen and (min-width: 768px) {
  main > #point4 .box {
    max-width: 100rem;
    margin: 5.5rem auto 0;
  }
  main > #point4 .box .flex {
    display: flex;
    align-items: center;
  }
  main > #point4 .box .flex-img {
    margin: 0;
    margin-right: 4rem;
    width: 50rem;
  }
  main > #point4 .box .ttl-h3 {
    margin-bottom: 2.3rem;
    padding-bottom: 1.8rem;
    font-size: 3.6rem;
  }
  main > #point4 .box .lead {
    font-size: 2.4rem;
    margin-bottom: 4rem;
  }
  main > #point4 > .bg > .txt {
    text-align: center;
  }
  main > #point4 .bg > .flex {
    max-width: 100rem;
    margin: 6rem auto 0;
    display: flex;
    gap: 2rem;
  }
  main > #point4 .bg > .flex li {
    flex-direction: column;
    width: calc(20% - (2rem * 4 / 5));
    margin: 0 !important;
    height: 27rem;
  }
  main > #point4 .bg > .flex li p {
    font-size: 2rem;
    padding: 0 2rem;
  }
  main > #point4 .bg > .flex li span {
    margin: 0;
    font-size: 3.2rem;
  }
  main > #point4 .bg > .flex li:nth-of-type(1) img {
    width: 5.4rem;
    margin: 5rem auto 1rem;
  }
  main > #point4 .bg > .flex li:nth-of-type(2) img {
    width: 5.6rem;
    margin: 4rem auto 1rem;
  }
  main > #point4 .bg > .flex li:nth-of-type(3) img {
    width: 3.9rem;
    margin: 3.6rem auto 1rem;
  }
  main > #point4 .bg > .flex li:nth-of-type(4) img {
    width: 5.2rem;
    margin: 4rem auto 1.5rem;
  }
  main > #point4 .bg > .flex li:nth-of-type(5) img {
    width: 7rem;
    margin: 3.2rem auto 0.9rem;
  }
  main > #point4 .bg > .flex::after {
    height: 0.3rem;
    width: 100%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
}


/* ----------------------------------
free
---------------------------------- */
main > .free {
  padding-bottom: 9.5rem;
}
main > .free .ttl-h2 {
  margin-bottom: 3rem;
  padding: 4rem 3.6rem 3rem;
  background: url(../img/bg_ttl_y.png) center/75rem auto repeat-x;
  box-shadow: 0 0.9rem 0 #b3b3b3;
}
main > .free .ttl-h2 span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.2rem;
  font-size: 7.2rem;
}
main > .free .ttl-h2 span img {
  width: 13.9rem;
}
main > .free .in > .note {
  margin-bottom: 2.6rem;
  font-size: 3rem;
  font-weight: var(--regular);
  font-family: var(--font-go);
  letter-spacing: 0.05em;
  text-align: center;
}
main > .free .in > .lead {
  font-size: 3.6rem;
  letter-spacing: 0.05em;
  text-align: center;
  text-decoration: underline;
  text-underline-offset: 1rem;
  line-height: 1.4;
}
main > .free .in > .lead strong {
  font-size: 6rem;
  font-weight: var(--medium);
  color: #e5004f;
  text-decoration: none;
}
main > .free .in > .img1 {
  margin: 3.8rem auto 5.5rem;
  width: 65.9rem;
}
main > .free .in .flex-img {
  margin-bottom: 5.5rem;
}
main > .free .in .flex .ttl-h3 {
  margin-bottom: 3.9rem;
  text-align: center;
  font-size: 6.2rem;
  font-weight: var(--medium);
}
main > .free .in .flex .ttl-h3 span {
  color: #008471;
}
main > .free .in .flex .lead {
  margin-bottom: 4.1rem;
  text-align: center;
  font-size: 4rem;
  font-family: var(--font-go);
  padding: 3.3rem 0;
  font-weight: var(--medium);
  line-height: 1.5;
  background: #edd654;
}
main > .free .in .flex .txt {
  line-height: 1.6;
}
main > .free .in .block {
  margin: 2.4rem -3.6rem 8.3rem;
  background: #f7f7f7;
  padding: 5.5rem 3.6rem 4.9rem;
}
main > .free .in .block .ttl-h3 {
  position: relative;
  width: 60.9rem;
  margin: 0 auto -8.4rem;
  padding: 3.6rem 0 2.7rem;
  text-align: center;
  font-size: 4rem;
  line-height: 1.5;
  background: rgb(255 255 255 / 0.9);
  letter-spacing: -0.05em;
}
main > .free .in .block .ttl-h3 span {
  color: #008471;
}
main > .free .in .block .img {
  margin-bottom: 3.7rem;
}
main > .free .in .block .txt {
  line-height: 1.6;
}
main > .free .in .fuan {
  position: relative;
}
main > .free .in .fuan .button {
  position: absolute;
  width: 63rem;
  left: 50%;
  transform: translateX(-50%);
}
main > .free .in .fuan .button.button-tel2 {
  bottom: 19.3rem;
}
main > .free .in .fuan .button.button-web {
  bottom: 3.8rem;
}
@media screen and (min-width: 768px) {
  main > .free .in > .img1 {
    margin: 6.8rem auto 8.5rem;
    width: 85rem;
  }
  main > .free .in > .note {
    font-size: 1.6rem;
  }
  main > .free .ttl-h2 span {
    font-size: 5.5rem;
  }
  main > .free .ttl-h2 span img {
    width: 9.9rem;
  }
  main > .free .in .flex {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
  }
  main > .free .in .flex-img {
    margin-bottom: 0;
    width: 53rem;
  }
  main > .free .in .flex-txt {
    width: 42rem;
  }
  main > .free .in .flex .ttl-h3 {
    font-size: 3.7rem;
    text-align: left;
    margin-bottom: 2rem;
  }
  main > .free .in .flex .lead {
    font-size: 2.1rem;
    padding: 1rem 0;
    margin-bottom: 2rem;
  }
  main > .free .in .block {
    position: relative;
    margin: 5rem 0;
  }
  main > .free .in .block .ttl-h3 {
    padding: 0;
    margin: 0 0 2rem;
    font-size: 3.7rem;
    background: none;
    text-align: left;
  }
  main > .free .in .block .img {
    position: absolute;
    height: 100%;
    right: 0;
    top: 0;
    width: 35rem;
    overflow: hidden;
  }
  main > .free .in .block .img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  main > .free .in .block .txt {
    width: 57rem;
  }
  main > .free .in .fuan {
    width: 52rem;
    margin: 0 auto;
  }
  main > .free .in .fuan .button {
    width: 45rem;
  }
  main > .free .in .fuan .button.button-tel2 {
    bottom: 15.3rem;
  }
}


/* ----------------------------------
faq
---------------------------------- */
main > .faq {
  padding-bottom: 6.7rem;
}
main > .faq .ttl-h2 {
  margin-bottom: 7.1rem;
  padding: 4rem 3.6rem 3rem;
  background: url(../img/bg_ttl_y.png) center/75rem auto repeat-x;
  box-shadow: 0 0.9rem 0 #b3b3b3;
}
main > .faq .ttl-h2 span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.8rem;
  font-size: 7.2rem;
}
main > .faq .ttl-h2 span img {
  width: 12.8rem;
}
main > .faq .note {
  margin-bottom: 5.2rem;
  font-size: 3rem;
  font-weight: var(--regular);
  font-family: var(--font-go);
  letter-spacing: 0.05em;
  line-height: 1.66;
  text-align: center;
}
main > .faq dt {
  border-bottom: 0.3rem solid #008471;
  position: relative;
  padding: 4.5rem 9.8rem 4.5rem 13.8rem;
  font-size: 3.6rem;
  font-family: var(--font-go);
  font-weight: var(--bold);
  letter-spacing: 0.1em;
  line-height: 1.33;
  cursor: pointer;
}
main > .faq dt::before,
main > .faq dt::after {
  position: absolute;
  top: 50%;
  right: 5.7rem;
  content: "";
  display: block;
  width: 2.5rem;
  height: 0.5rem;
  background: #008471;
  transform: translateY(-50%);
  transition: .3s;
}
main > .faq dt::after {
  transform: translateY(-50%) rotate(90deg);
}
main > .faq dt.open::after { 
  opacity: 0;
  transform: translateY(-50%) rotate(0);
}
main > .faq dd {
  display: none;
}
main > .faq dt span,
main > .faq dd span {
  position: absolute;
  left: 4.1rem;
  top: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 7.5rem;
  height: 7.5rem;
  background: #008471;
  border-radius: 0.5rem;
  font-size: 3.6rem;
  letter-spacing: 0.2rem;
  font-weight: var(--semibold);
  color: var(--color-white);
  font-family: "Oswald", sans-serif;
}
main > .faq dd {
  position: relative;
  padding: 5.7rem 0 4.9rem 13.8rem;
  font-size: 3rem;
  font-family: var(--font-go);
  font-weight: var(--regular);
  letter-spacing: 0.1em;
  line-height: 1.33;
}
main > .faq dd span {
  top: 5.7rem;
  color: #0d0d0d;
  border: 1px solid #0d0d0d;
  background: none;
}
@media screen and (min-width: 768px) {
  main > .faq .in {
    max-width: 90rem;
  }
  main > .faq .ttl-h2 span {
    font-size: 5.5rem;
  }
  main > .faq .ttl-h2 span img {
    width: 9.8rem;
  }
  main > .faq .note {
    font-size: 1.6rem;
    margin-bottom: 4rem;
  }
  main > .faq dt {
    font-size: 2.8rem;
    font-weight: var(--medium);
    padding: 3.5rem 9.8rem 2.5rem 11.8rem;
    border-width: 0.2rem;
  }
  main > .faq dd {
    font-size: 1.6rem;
    padding: 2.7rem 0 4.9rem 11.8rem;
  }
  main > .faq dt span, main > .faq dd span {
    width: 5.5rem;
    height: 5.5rem;
    font-size: 2.8rem;
  }
  main > .faq dt span {
    top: 2.5rem;
  }
  main > .faq dd span {
    top: 2.7rem;
  }
  main > .faq dt::before,
  main > .faq dt::after {
    right: 2.7rem;
  }
}


/* ----------------------------------
cv2
---------------------------------- */
.cv2 {
  padding: 11rem 0 12.5rem;
  background: url(../img/bg_sky.jpg) center/cover no-repeat;
}
.cv2 .lead {
  margin-bottom: 8.6rem;
  text-align: center;
  font-size: 6.2rem;
  font-weight: var(--medium);
  line-height: 1.29;
  color: var(--color-white);
}
.cv2 .lead span {
  color: #edd654;
}
.cv2 .lead small {
  display: block;
  text-align: center;
  margin-top: 4.6rem;
  font-size: 4.2rem;
  line-height: 1.19;
}
.cv2 .jizen {
  margin-top: 3rem;
}
.cv2 .jizen {
  margin-top: 3rem;
}
.cv2 .jizen,
.cv2 .oisogi {
  position: relative;
}
.cv2 .jizen .button,
.cv2 .oisogi .button {
  position: absolute;
  width: 63rem;
  left: 50%;
  transform: translateX(-50%);
}
.cv2 .oisogi .button {
  bottom: 1.7rem;
}
.cv2 .jizen .button-web {
  bottom: 3.8rem;
}
.cv2 .jizen .button-tel2 {
  bottom: 19.3rem;
}
@media screen and (min-width: 768px) {
  .cv2 {
    background-image: url(../img/bg_sky_pc.jpg);
  }
  .cv2 .lead {
    font-size: 4rem;
  }
  .cv2 .lead small {
    margin-top: 1.6rem;
    font-size: 3rem;
  }
  .cv2 .links {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 2rem;
  }
  .cv2 .jizen, .cv2 .oisogi {
    width: 49rem;
    margin: 0 !important;
  }
  .cv2 .jizen .button, .cv2 .oisogi .button {
    width: 45rem;
  }
  .cv2 .jizen .button-web {
    bottom: 2.2rem;
  }
  .cv2 .jizen .button-tel2 {
    bottom: 13.3rem;
  }
}


/* ----------------------------------
contact
---------------------------------- */
main > .contact .ttl-h2 {
  margin-bottom: 6.5rem;
  padding: 4rem 3.6rem 3rem;
  background: url(../img/bg_ttl_y.png) center/75rem auto repeat-x;
  box-shadow: 0 0.9rem 0 #b3b3b3;
}
main > .contact .ttl-h2 span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  font-size: 7.2rem;
  text-align: center;
}
main > .contact .ttl-h2 span img {
  width: 11.4rem;
}
main > .contact .note {
  font-size: 3rem;
  font-weight: var(--regular);
  font-family: var(--font-go);
  letter-spacing: 0.05em;
  line-height: 1.33;
  text-align: center;
}
main > .contact .field {
  margin-top: 4.4rem;  
}
main > .contact .field dt {
  position: relative;
  margin-bottom: 5rem;
  padding: 2.7rem 2.2rem;
  font-size: 3rem;
  font-family: var(--font-go);
  font-weight: var(--medium);
  letter-spacing: 0.1em;
  background: #e8f2ee;
  border-left: 1px solid #008471;
}
main > .contact .field dt span {
  position: absolute;
  top: 50%;
  padding-left: 1.0rem;
  color: #e60012;
  transform: translateY(-50%);
}
input:not([type="checkbox"],[type="submit"]) {
  width: calc(100% - 4.5rem);
  padding: 1.3rem 5rem;
  border: 1px solid #808080;
  font-size: 3rem;
  font-weight: var(--regular);
  font-family: var(--font-go);
  letter-spacing: 0.1em;
}
main > .contact .field dd {
  font-size: 3rem;
  font-weight: var(--regular);
  font-family: var(--font-go);
  letter-spacing: 0.1em;
}
main > .contact .field .address .flex.number {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.9rem 3.5rem;
  padding-left: 2.2rem;
}
main > .contact .field .address .number-input {
  position: relative;
  display: flex;
  align-items: center;
  gap: 5rem;
}
main > .contact .field .address .number-input::after {
  position: absolute;
  top: 50%;
  left: 15rem;
  content: "";
  display: block;
  width: 0.8rem;
  height: 0.3rem;
  background: #262626;
  transform: translateY(-50%);
}
main > .contact .field .address .number-input input {
  width: 12.8rem;
  padding-left: 0;
  padding-right: 0;
  text-align: center;
}
main > .contact .field .address .flex.number .note {
  width: 100%;
  font-size: 2.4rem;
  text-align: left;
}
main > .contact .field .address .flex + .flex {
  margin-top: 3.1rem;
}
main > .contact .field .address .flex p {
  font-weight: var(--medium);
  margin-bottom: 1.8rem;
  padding-left: 2.2rem;
}
main > .contact .field .address .flex.number p {
  margin: 0;
  padding: 0;
}
main > .contact .field .txt {
  line-height: 1.66;
}
main > .contact .field .txt .note {
  display: block;
  font-size: 2.4rem;
  text-align: left;
  margin-bottom: 5.3rem;
}
.policy {
  margin-top: 5.2rem;
  padding: 2.6rem 2.3rem 2.1rem 3.1rem;
  border: 1px solid #808080;
}
.policy-in {
  height: 23.3rem;
  overflow-y: scroll;
  padding: 2.2rem 3.1rem 1rem 0;
}
.policy-in::-webkit-scrollbar {
  width: 0.6rem;
}
.policy-in::-webkit-scrollbar-track {
  background-color: #999999;
  border-radius: 3rem;
}
.policy-in::-webkit-scrollbar-thumb {
  background: #262626;
  border-radius: 3rem;
}
.policy-in .txt {
  line-height: 1.68;
}
.button-submit {
  display: block;
  width: 68rem;
  height: 13.7rem;
  margin: 4.6rem auto 0;
  padding: 0;
  background: #f29d5e url(../img/button_submit.png) center/contain no-repeat;
  border: none;
}
label.checkbox {
  display: block;
  position: relative;
  padding-left: 5.7rem;
  line-height: 1.66;
  cursor: pointer;
}
label.checkbox + .checkbox {
  margin-top: 2rem;
}
input[type="checkbox"] {
  position: absolute;
  left: 0;
  top: 0.6rem;
  width: 3.6rem;
  height: 3.6rem;
  border: 1px solid #070002;
  margin: 0 1.9rem 0 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  transition: 0.2s;
  cursor: pointer;
  background: #f7f7f7;
}
input[type="checkbox"]:checked:before {
  position: absolute;
  content: '';
  top: 50%;
  left: 50%;
  width: 1rem;
  height: 1.5rem;
  border-right: 0.5rem solid #008471;
  border-bottom: 0.5rem solid #008471;
  transform: translate(-50%, -50%) rotate(50deg);
}
@media screen and (min-width: 768px) {
  main > .contact .note {
    font-size: 1.6rem;
  }
  main > .contact .ttl-h2 span {
    font-size: 5.5rem;
  }
  main > .contact .ttl-h2 span img {
    width: 8rem;
  }
  main > .contact .field {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #008471;
  }
  main > .contact .field:first-of-type {
    border-top: 1px solid #008471;
  }
  main > .contact .field:not(:first-of-type) {
    margin: 0;
  }
  main > .contact .field dt {
    margin: 0;
    font-size: 1.6rem;
    border: none;
    width: 24rem;
    min-width: 24rem;
    padding: 2rem 2rem 2rem 0;
    background: none;
  }
  main > .contact .field dd {
    width: calc(100% - 24rem);
    padding: 2rem;
    font-size: 1.6rem;
    border-left: 1px solid #008471;
  }
  input:not([type="checkbox"],[type="submit"]) {
    font-size: 1.6rem;
    padding: 0.8rem 2rem;
    width: 100%;
  }
  main > .contact .field .address .flex.number {
    gap: 0;
    padding: 0;
  }
  main > .contact .field .address .flex.number .note {
    width: auto;
    font-size: 1.3rem;
    margin-left: 1rem;
  }
  main > .contact .field .address .flex:not(.number) {
    display: flex;
    align-items: center;
    margin-top: 1.5rem;
  }
  main > .contact .field .address .flex p {
    padding: 0;
    margin: 0;
    width: 10rem;
    min-width: 10rem;
  }
  main > .contact .field .address .number-input {
    gap: 2.5rem;
  }
  main > .contact .field .address .number-input input {
    width: 7.8rem;
  }
  main > .contact .field .address .number-input::after {
    left: 8.7rem;
    height: 0.2rem;
  }
  main > .contact .field .txt .note {
    font-size: 1.3rem;
    margin-bottom: 1.3rem;
  }
  label.checkbox + .checkbox {
    margin: 0 0 0 2rem;
  }
  .button-submit {
    width: 45rem;
    height: 9.1rem;
  }
  label.checkbox {
    display: inline-block;
    padding-left: 3rem;
  }
  input[type="checkbox"] {
    width: 2rem;
    height: 2rem;
    top: 0.35rem;
  }
  input[type="checkbox"]:checked:before {
    width: 0.7rem;
    height: 1rem;
    border-width: 0.3rem;
  }
}

footer {
  margin-top: 10rem;
  background: #008471;
  color: var(--color-white);
  font-size: 2.4rem;
  font-family: var(--font-go);
  text-align: center;
  padding: 3.2rem 0;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  footer {
    font-size: 1.2rem;
    padding: 2rem 0;
  }
}

/* ----------------------------------
confirm
---------------------------------- */
.to-thanks {
  display: flex;
  justify-content: center;
  margin-top: 4rem;
}

.button-to-thanks {
  padding: 2rem 8rem;
  font-size: 2.8rem;
  font-weight: bold;
  border: 1px solid #008471;
  border-radius: 8px;
  background-color: #df5c00;
  color: #fff;
}

@media screen and (min-width: 768px) {
  .button-to-thanks {
    padding: 2rem 6rem;
    font-size: 2rem;
  }
  
  .postcode {
    margin-top: 0!important;
  }
}

@media screen and (max-width: 767px) {
  .contact-confirm .address .flex.number,
  .contact-confirm .address p {
    padding-left: 0!important;
  }

}

/* ----------------------------------
thanks
---------------------------------- */
.button-home {
    display: flex;
    justify-content: center;
    margin-top: 4rem;
}

.home-link {
    padding: 2rem 8rem;
    font-family: var(--font-go);
    font-size: 2.8rem;
    font-weight: bold;
    border: 1px solid #008471;
    border-radius: 8px;
    background-color: #df5c00;
    color: #fff;
}

@media screen and (min-width: 768px) {
  .home-link  {
    padding: 2rem 6rem;
    font-size: 2rem;
  }
}