@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;200;300;400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200;300;400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@200;300;400;500;600;700&display=swap");
html, body, div, span, applet, object, iframe, 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-size: 100%;
  font-family: "Noto Sans JP", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  vertical-align: baseline;
  box-sizing: border-box;
  color: #222;
}

html {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

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;
}

a img {
  border: none;
}

a {
  -webkit-transition: all .3s;
  transition: all .3s;
  text-decoration: none;
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block;
}

* {
  box-sizing: border-box;
}

.noto--serif {
  font-family: 'Noto Serif JP', serif;
}

.oswald {
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
}

.roboto {
  font-family: 'Roboto', sans-serif;
}

.img img {
  display: block;
  width: 100%;
}

@font-face {
  font-family: 'AOTFShinGoProRegular';
  src: url("../font/AOTFShinGoProRegular.otf") format("truetype");
}
@font-face {
  font-family: 'AOTFShinGoProLight';
  src: url("../font/AOTFShinGoProLight.otf") format("truetype");
}
.inner {
  width: 100%;
  max-width: 1086px;
  padding: 0 30px;
  margin: 0 auto;
}

header {
  width: 100%;
  height: 70px;
  display: flex;
  justify-content: center;
/*  position: relative; */
  position:fixed;
  z-index: 100;
  background:#000;
}

header .inner {
  display: flex;
  align-items: center;
  max-width: 100%;
}

header .inner .btn {
  width: 177px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 45px;
  margin-left: auto;
  position: relative;
  overflow: hidden;
  background: #6CCB79;
}

header .inner .btn:after {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  background: linear-gradient(to right, #6CCB79 0%, #954cf6 100%);
  width: 100%;
  height: 100%;
  transition: all .3s;
}

header .inner .btn .in--text {
  color: #FFF;
  font-size: 15px;
  font-weight: 500;
  position: relative;
  z-index: 1;
}

header .inner .btn:hover:after {
  transform: translateX(100%);
}

.logo--area {
  display: flex;
  align-items: center;
  gap: 5px;
}

.logo--area .logo--icon {
  width: 50px; margin-right: 5px;
}

.logo--area .logo {
  display: flex;
  flex-direction: column;
}

.logo--area .logo .logo--text__en,
.logo--area .logo .logo--text__ja {
  width: fit-content;
  display: block;
}

.logo--area .logo .logo--text__ja {
  font-family: 'AOTFShinGoProLight';
  font-size: 13px;
  color: #fff;
}

.logo--area .logo .logo--text__en {
  font-family: 'Roboto', sans-serif;
  font-size: 12px;
  color: #fff;
  letter-spacing: 0.05rem;
}

.logo--area .site--name {
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  position: relative;
  display: flex;
  align-items: center;
  gap: 5px;
}
footer .inner .logo--area .logo .logo--text__ja,
footer .inner .logo--area .logo .logo--text__en,
footer .inner .logo--area .site--name{
  color: #4E70BD;
}
.logo--area .site--name:before {
  content: "";
  width: 16px;
  height: 1px;
  background:#fff;
  display: block;
}
footer .inner .logo--area .site--name:before {
  content: "";
  width: 16px;
  height: 1px;
  background:#4E70BD;
  display: block;
}
	
main{padding-top:70px;}

.main .inner .main--item {
  display: grid;
}

.main .inner .main--item .img--area {
  grid-row: 1/2;
  grid-column: 1/2;
  width: 100vw;
  margin: 0 calc(50% - 50vw);
  background: #E3E7EE;
  display: flex;
  justify-content: flex-end;
  position: relative;
}
.main .inner .main--item .img--area:before {
  content: "";
  position: absolute;
  display: block;
  top: -70px;
  left: 0;
  width: 100%;
  height: calc(100% + 70px);
  background: #E3E7EE;
}

.main .inner .main--item .img--area .img {
  max-width: 1105px;
  transform: translateY(-70px);
}

.main .inner .main--item .main--area {
  grid-row: 1/2;
  grid-column: 1/2;
  position: relative;
  z-index: 1;
}

.main .inner .main--item .main--area .main--area__copy {
  height: 30%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 9px;
  margin-top: 6%;
}

.main .inner .main--item .main--area .main--area__copy .in--copy {
  width: fit-content;
  background: #FFF;
  font-size: 35px;
  line-height: 1;
  font-family: 'Noto Serif JP', serif;
  margin-left:10px;
  padding: 9px 11px 11px;
  font-weight: 500;
  position: relative;
}
/*
.main .inner .main--item .main--area .main--area__copy .in--copy:after, .main .inner .main--item .main--area .main--area__copy .in--copy:before {
  position: absolute;
  display: block;
  font-family: 'AOTFShinGoProRegular';
  font-size: 46px;
}

.main .inner .main--item .main--area .main--area__copy .in--copy:nth-of-type(1):before {
  content: "❝";
  top: -20px;
  left: -10px;
}

.main .inner .main--item .main--area .main--area__copy .in--copy:nth-of-type(2):after {
  content: "❞";
  bottom: -25px;
  right: -15px;
}
*/
.main .inner .main--item .main--area .main--area__sitetitle {
  display: grid;
  align-items: center;
  height: 50%;
}

.main .inner .main--item .main--area .main--area__sitetitle .saite--title__ja {
  grid-row: 1/2;
  grid-column: 1/2;
  font-size: 90px;
  font-weight: 500;
  font-family: 'Noto Serif JP', serif;
  position: relative;
  z-index: 1;
  line-height: 1;
}

.main .inner .main--item .main--area .main--area__sitetitle .site--title__en {
  grid-row: 1/2;
  grid-column: 1/2;
  display: flex;
  flex-direction: column;
  font-family: 'Noto Serif JP', serif;
}

.main .inner .main--item .main--area .main--area__sitetitle .site--title__en .in--texxt {
  font-size: 140px;
  color: #FFF;
  font-family: 'Noto Serif JP', serif;
  line-height: 1;
  font-weight: 200;
}

.page--lik {
  padding: 0 0 80px;
  background: #E3E7EE;
}

.page--lik .page--link__list {
  display: flex;
  gap: 26px;
  justify-content:center;
}

.page--lik .page--link__list .btn {
  display: flex;
  align-items: center;
  font-size: 19px;
  font-family: 'Noto Serif JP', serif;
  position: relative;
  line-height: 1;
  white-space: nowrap;
  width: fit-content;
}

.page--lik .page--link__list .btn:after {
  content: "/";
  position: absolute;
  display: block;
  top: 3px;
  right: -36px;
  width: 26px;
  font-size: 19px;
  font-family: 'Noto Serif JP', serif;
  line-height: 1;
}

.page--lik .page--link__list .btn .in--text {
  color: #FFF;
  background: linear-gradient(to right, #6CCB79 0%, #3498C5 100%);
  display: flex;
  align-items: center;
  font-size: 19px;
  font-family: 'Noto Serif JP', serif;
  padding: 4px 4px 6px;
  line-height: 1;
}

.page--lik .page--link__list .btn:last-of-type:after {
  display: none;
}

.section .inner .container .contents .contents--title {
  font-family: 'Noto Serif JP', serif;
}

.section .inner .container .contents .contents--title.type--en {
  font-size: 140px;
  font-weight: 200;
}

.section .inner .add--text {
  font-size: 13px;
  font-weight: 500;
  line-height: 2;
  position: relative;
}

.section .inner .add--text:has(.icon) {
  padding-left: 18px;
}

.section .inner .add--text:has(.icons) {
  padding-left: 32px;
}

.section .inner .add--text .icons,
.section .inner .add--text .icon {
  font-size: 13px;
  font-weight: 500;
  line-height: 2;
  position: absolute;
  top: 0;
  left: 0;
}

.section.section01 {
  background: linear-gradient(to bottom, #e5e8ee 0%, #f1f7fa 100%);
  padding: 0px 0 100px;
}

.section.section01 .inner .container .contents.contents01 {
  position: relative;
  display: flex;
  gap: 0;
  padding: 100px 0;
}

.section.section01 .inner .container .contents.contents01:before {
  content: "";
  position: absolute;
  display: block;
  bottom: -80px;
  right: 0;
  left: 0;
  margin: auto;
  background: url(../images/contents01_img_bg02.png) no-repeat right center;
  background-size: 240px 100px;
  width: 240px;
  height: 100px;
  z-index: 1;
}

.section.section01 .inner .container .contents.contents01:after {
  content: "";
  position: absolute;
  display: block;
  bottom: 0;
  right: 0;
  background: url(../images/contents01_img_bg.png) no-repeat right center;
  background-size: cover;
  width: calc(100vw - ((100vw - 1086px + 60px) / 2));
  height: 100%;
  margin: 0 calc(50% - 50vw);
  border-radius: 50px 0 0 50px;
}

.section.section01 .inner .container .contents.contents01 .title--area {
  position: relative;
  z-index: 1;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.section.section01 .inner .container .contents.contents01 .title--area .contents--title {
  font-size: 55px;
  font-weight: 500;
  color: #FFF;
  line-height: 1.6;
}

.section.section01 .inner .container .contents.contents01 .contents--area {
  position: relative;
  z-index: 1;
  width: 100%;
}

.section.section01 .inner .container .contents.contents01 .contents--area .check--list {
  display: flex;
  width: 100%;
  flex-direction: column;
  gap: 25px;
}

.section.section01 .inner .container .contents.contents01 .contents--area .check--list .list {
  width: 100%;
  border-bottom: 1px solid #666;
  padding-bottom: 16px;
}

.section.section01 .inner .container .contents.contents01 .contents--area .check--list .list .check {
  position: relative;
  font-size: 20px;
  color: #FFF;
  font-weight: 500;
  padding-left: 30px;
  letter-spacing: 1px;
}

.section.section01 .inner .container .contents.contents01 .contents--area .check--list .list .check .in--text {
  color: #FFF;
  background: linear-gradient(to right, #7189CB 0%, #E8739B 100%);
  display: inline-flex;
  align-items: center;
  font-size: 20px;
  color: #FFF;
  font-weight: 500;
  padding: 4px 4px 6px;
  line-height: 1;
}

.section.section01 .inner .container .contents.contents01 .contents--area .check--list .list .check:before {
  content: "";
  position: absolute;
  display: block;
  top: 2px;
  left: 0;
  width: 19px;
  height: 19px;
  border: 1px solid #FFF;
}

.section.section01 .inner .container .contents.contents01 .contents--area .check--list .list .check:after {
  content: "";
  position: absolute;
  display: block;
  top: 6px;
  left: 0;
  width: 19px;
  height: 8px;
  border-left: 2px solid #A82AE6;
  border-bottom: 2px solid #A82AE6;
  transform: rotate(-45deg);
}

.section.section01 .inner .container .contents.contents02 {
  position: relative;
  margin-top: 40px;
  padding-top: 80px;
  padding-bottom: 80px;
}

.section.section01 .inner .container .contents.contents02:after {
  content: "";
  position: absolute;
  display: block;
  bottom: 0;
  left: 0;
  background: #FFF;
  width: calc(100vw - ((100vw - 1086px + 30px) / 2));
  height: 100%;
  margin: 0 calc(50% - 50vw);
  border-radius: 0 50px 50px 0;
}

.section.section01 .inner .container .contents.contents02 .title--area {
  position: relative;
  z-index: 1;
}

.section.section01 .inner .container .contents.contents02 .title--area .contents--title {
  font-size: 40px;
  font-weight: normalmal;
  color: #FFF;
  width: fit-content;
  position: relative;
  background: linear-gradient(to right, #6CCB79 0%, #3498C5 100%);
  margin: 0 auto;
  padding: 20px;
}

.section.section01 .inner .container .contents.contents02 .contents--area {
  position: relative;
  z-index: 1;
}

.section.section01 .inner .container .contents.contents02 .contents--area:has(> .how-to-degifaria) {
  display: flex;
  gap: 74px;
  margin-top: 60px;
}

.section.section01 .inner .container .contents.contents02 .contents--area .how-to-degifaria {
  width: calc(100% - 74px - 560px);
}

.section.section01 .inner .container .contents.contents02 .contents--area .how-to-degifaria.has--img .img--wrap {
  width: 100vw;
  margin: 0 calc(50% - 50vw);
  position: absolute;
  top: 0;
  left: 0;
}

.section.section01 .inner .container .contents.contents02 .contents--area .how-to-degifaria.has--img .img--wrap .img {
  width: calc(100vw - ((1086px - 0px + 560px + 30px) / 2));
}

.section.section01 .inner .container .contents.contents02 .contents--area .how-to-degifaria.has--img .img--wrap .img img {
  max-width: 600px;
}

.section.section01 .inner .container .contents.contents02 .contents--area .how-to-degifaria .in--title {
  font-size: 35px;
  font-weight: 500;
  font-family: 'Noto Serif JP', serif;
}

.section.section01 .inner .container .contents.contents02 .contents--area .how-to-degifaria .in--text {
  font-size: 16px;
  font-weight: 500;
  line-height: 2;
  margin-top: 40px;
}

.section.section01 .inner .container .contents.contents02 .contents--area .how-to-degifaria .item {
  display: none;
}

.section.section01 .inner .container .contents.contents02 .contents--area .how-to-degifaria:last-of-type {
  width: 560px;
}

.section.section01 .inner .container .contents.contents02 .contents--area .how-to-degifaria.has--info .how-to__text {
  font-size: 18px;
  font-weight: 500;
  display: flex;
  align-items: flex-end;
  border-bottom: 1px solid #EAEBEB;
  padding-bottom: 32px;
}

.section.section01 .inner .container .contents.contents02 .contents--area .how-to-degifaria.has--info .how-to__text .in--text {
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
}

.section.section01 .inner .container .contents.contents02 .contents--area .how-to-degifaria.has--info .how-to__text .has--border {
  position: relative;
  display: inline-block;
  line-height: 1;
  transform: translateY(2px);
}

.section.section01 .inner .container .contents.contents02 .contents--area .how-to-degifaria.has--info .how-to__text .has--border:after {
  content: "";
  position: absolute;
  display: block;
  bottom: -7px;
  left: 0;
  width: 100%;
  height: 7px;
  background: linear-gradient(to right, #76CA7A 0%, #B9D66B 100%);
}

.section.section01 .inner .container .contents.contents02 .contents--area .how-to-degifaria.has--info .how-to__text .has--border .highlight {
  font-size: 60px;
  font-weight: 500;
  font-family: 'Noto Serif JP', serif;
  line-height: 1;
}

.section.section01 .inner .container .contents.contents02 .contents--area .how-to-degifaria.has--info .how-to__text .has--border .in--val {
  font-size: 30px;
  font-family: 'Noto Serif JP', serif;
  line-height: 1;
}

.section.section01 .inner .container .contents.contents02 .contents--area .how-to-degifaria.has--info .how-to__text + .how-to__text {
  margin-top: 3vw;
  justify-content: left;
}

.section.section01 .inner .container .contents.contents02 .contents--area .how-to-degifaria.has--info .sns--group {
  margin-top: 33px;
}

.section.section01 .inner .container .contents.contents02 .contents--area .how-to-degifaria.has--info .sns--group + * {
  margin-top: 23px;
}

.section.section02 {
  background: #f1f7fa;
  position: relative;
  padding-bottom: 100px;
}

.section.section02:after {
  content: "";
  position: absolute;
  display: block;
  top: 300px;
  left: 0;
  width: 100%;
  height: calc(100% - 300px);
  background: #eff5f8;
  background: linear-gradient(to bottom, #e5e8ee 0%, #f1f7fa 100%);
}

.section.section02 .inner {
  position: relative;
  z-index: 1;
}

.section.section02 .inner .container .contents .contents--title {
  color: #FFF;
  text-align: center;
}

.section.section02 .inner .container .contents .contents--item {
  margin-top: 70px;
  position: relative;
  display: flex;
  gap: 0;
}

.section.section02 .inner .container .contents .contents--item:after {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  margin: 0 calc(50% - 50vw);
  width: calc(100vw - (((100vw - 1086px + 30px) + (1086px - 30px) / 1) / 2));
  width: calc(100vw - ((100vw - 1086px - 30px) / 2) - (1086px + 30px) / 2);
  height: 100%;
  background: #FFF;
  border-radius: 0 0 50px 0;
}

.section.section02 .inner .container .contents .contents--item .num {
  position: absolute;
  right: 0;
  top: 0;
  width: 55px;
  height: 55px;
  background: #222;
  font-size: 25px;
  font-weight: 500;
  color: #FFF;
  font-family: 'Roboto', sans-serif;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.section.section02 .inner .container .contents .contents--item .item--area {
  position: relative;
  z-index: 1;
  width: 50%;
  padding: 60px 40px;
}

.section.section02 .inner .container .contents .contents--item .item--area .item--intitle {
  font-size: 25px;
  font-weight: 500;
  color: #4E70BD;
  font-family: 'Noto Serif JP', serif;
  line-height: 1.75;
}

.section.section02 .inner .container .contents .contents--item .item--area .item--text {
  font-size: 16px;
  line-height: 2.25;
  margin-top: 32px;
}

.section.section02 .inner .container .contents .contents--item .img--area {
  position: relative;
  z-index: 1;
  width: 50%;
  padding: 0 30px;
  display: flex;
  align-items: center;
}

.section.section02 .inner .container .contents .contents--item .img--area .img {
  margin-left: auto;
}

.section.section02 .inner .container .contents .contents--item .img--area.img01 .img {
  max-width: 300px;
}

.section.section02 .inner .container .contents .contents--item:nth-of-type(even):after {
  left: initial;
  right: 0;
  border-radius: 0 0 0 50px;
}

.section.section02 .inner .container .contents .contents--item:nth-of-type(even) .num {
  right: initial;
  left: 0;
}

.section.section02 .inner .container .contents .contents--item:nth-of-type(even) .item--area {
  order: 2;
}

.section.section02 .inner .container .contents .contents--item:nth-of-type(even) .img--area {
  order: 1;
}

.section.section02 .inner .container .contents .contents--item:nth-of-type(even) .img--area .img {
  margin-left: 0;
  margin-right: auto;
}

.section.section02 .inner .container .contents .table--wrap {
  padding: 20px 0;
}

.section.section02 .inner .container .contents .table--wrap .table--item01 {
  table-layout: fixed;
  border-collapse: collapse;
  width: 100%;
  margin-top: 70px;
  position: relative;
  margin-bottom: 15px;
}

.section.section02 .inner .container .contents .table--wrap .table--item01 .td,
.section.section02 .inner .container .contents .table--wrap .table--item01 .th {
  border: 1px solid #FFF;
  height: 60px;
  vertical-align: middle;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.section.section02 .inner .container .contents .table--wrap .table--item01 .td p,
.section.section02 .inner .container .contents .table--wrap .table--item01 .th p {
  font-size: 16px;
}

.section.section02 .inner .container .contents .table--wrap .table--item01 .td p .icon,
.section.section02 .inner .container .contents .table--wrap .table--item01 .th p .icon {
  font-size: 10px;
  display: inline-block;
  transform: translateY(-4px);
}

.section.section02 .inner .container .contents .table--wrap .table--item01 .th {
  background: #E2E2E2;
}

.section.section02 .inner .container .contents .table--wrap .table--item01 .th:nth-of-type(2) {
  background: #FFF;
  position: relative;
}

.section.section02 .inner .container .contents .table--wrap .table--item01 .th:nth-of-type(2):after {
  content: "";
  position: absolute;
  display: block;
  top: -16px;
  left: 4px;
  width: calc(100% - 14px);
  height: calc((100% * 4) + 32px);
  border: 3px solid #4DBD53;
  border-radius: 20px;
}

.section.section02 .inner .container .contents .table--wrap .table--item01 .th:nth-of-type(2) p {
  position: relative;
  display: flex;
  align-items: center;
  color: #4E70BD;
  justify-content: center;
  font-size: 20px;
  font-weight: 500;
}

.section.section02 .inner .container .contents .table--wrap .table--item01 .th:nth-of-type(2) p:before {
  content: "";
  display: block;
  width: 38px;
  height: 38px;
  background: url(../images/common/logo_new.png) no-repeat left top;
  background-size: cover;
  margin-right:5px;
}

.section.section02 .inner .container .contents .table--wrap .table--item01 .td {
  background: #E3E7EE;
}

.section.section02 .inner .container .contents .table--wrap .table--item01 .td:first-of-type {
  background: #222;
}

.section.section02 .inner .container .contents .table--wrap .table--item01 .td:nth-of-type(2) {
  background: #4F70BD;
}

.section.section02 .inner .container .contents .table--wrap .table--item01 .td:nth-of-type(2) p {
  color: #fff;
  font-weight: bold;
}

.section.section02 .inner .container .contents .table--wrap .table--item01 .td:first-of-type p {
  color: #FFF;
  font-weight: 500;
}
.section.section02 .inner .container .contents .table--wrap .table--item01 tr td p.double{font-size:28px;}
.section.section02 .inner .container .contents .table--wrap .table--item01 tr td p.single{font-size:22px;}

.section.section03 {
  background: #f1f7fa;
  position: relative;
  padding-bottom: 100px;
}

.section.section03:after {
  content: "";
  position: absolute;
  display: block;
  top: 300px;
  left: 0;
  width: 100%;
  height: calc(100% - 300px);
  background: #eff5f8;
  background: linear-gradient(to bottom, #e5e8ee 0%, #f1f7fa 100%);
}

.section.section03 .inner {
  position: relative;
  z-index: 1;
}

.section.section03 .inner .container .contents .contents--title__wrap .img img {
  margin-left: 0;
  margin-right: auto;
}

.section.section03 .inner .container .contents .contents--title {
  color: #FFF;
  text-align: center;
}

.section.section03 .inner .container .contents .contents--item {
  display: grid;
  gap: 74px;
  margin-top: 70px;
}

.section.section03 .inner .container .contents .contents--item .item--area {
  width: 100%;
  max-width: 550px;
  grid-row: 1/2;
  grid-column: 1/2;
  position: relative;
  z-index: 1;
}

.section.section03 .inner .container .contents .contents--item .item--area .item--intitle {
  font-size: 20px;
  font-weight: 500;
  color: #FFF;
  width: fit-content;
  padding: 4px 20px 6px;
  background: linear-gradient(to right, #6CCB79 0%, #3498C5 100%);
}

.section.section03 .inner .container .contents .contents--item .item--area .catch {
  font-size: 22px;
  font-weight: 500;
  color: #4E70BD;
  font-family: 'Noto Serif JP', serif;
  margin-top: 30px;
  line-height: 1.75;
}

.section.section03 .inner .container .contents .contents--item .item--area .catch + .in--text {
  margin-top: 30px;
  font-size: 16px;
  line-height: 2;
}

.section.section03 .inner .container .contents .contents--item .item--area .in--text {
  font-size: 16px;
  line-height: 2;
}

.section.section03 .inner .container .contents .contents--item .item--area .in--text + .in--text {
  margin-top: 20px;
}

.section.section03 .inner .container .contents .contents--item .img--area {
  grid-row: 1/2;
  grid-column: 1/2;
  width: 100vw;
  margin: 0 calc(50% - 50vw);
  position: relative;
}

.section.section03 .inner .container .contents .contents--item .img--area .num {
  font-size: 55px;
  font-weight: 500;
  color: #FFF;
  position: absolute;
  top: -34px;
  right: 20px;
  font-family: 'Noto Serif JP', serif;
  line-height: 1;
}

.section.section03 .inner .container .contents .contents--item .img--area .img {
  width: calc((100vw - 1086px) / 2 + (1086px - 650px));
  max-width: 650px;
  margin-left: auto;
}

.section.section03 .inner .container .contents .contents--item:nth-of-type(even) .item--area {
  margin-left: auto;
}

.section.section03 .inner .container .contents .contents--item:nth-of-type(even) .img--area .num {
  right: initial;
  left: 20px;
}

.section.section03 .inner .container .contents .contents--item:nth-of-type(even) .img--area .img {
  margin-left: 0;
  margin-right: auto;
}

.section.section04 {
  padding-top: 80px;
  padding-bottom: 100px;
  background: #EEF5FF;
  position: relative;
}

.section.section04:after {
  content: "";
  position: absolute;
  display: block;
  top: 160px;
  left: 0;
  width: 100%;
  height: calc(100% - 160px);
  background: url(../images/section04_contents01_img01.png) no-repeat center top;
  background-size: cover;
}

.section.section04 .inner {
  position: relative;
  z-index: 1;
}

.section.section04 .inner .container .contents .contents--title {
  color: #FFF;
  text-align: center;
}

.section.section04 .inner .container .contents .contents--item .item--title {
  color: #FFF;
  margin-top: 3vw;
}

.section.section04 .inner .container .contents .contents--item .read--text {
  text-align: center;
  font-size: 16px;
  color: #FFF;
  margin-top: 60px;
  line-height: 1.75;
}

.section.section04 .inner .container .contents .contents--item .slide--wrap {
  width: 100%;
  border-radius: 50px;
  background: #FFF;
  padding: 50px 80px;
  margin-top: 5vw;
}

.section.section04 .inner .container .contents .contents--item .slide--wrap .slick-next,
.section.section04 .inner .container .contents .contents--item .slide--wrap .slick-prev {
  width: 61px;
  height: 61px;
  background: #222;
  border-radius: 100%;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.section.section04 .inner .container .contents .contents--item .slide--wrap .slick-prev {
  left: -25px;
}

.section.section04 .inner .container .contents .contents--item .slide--wrap .slick-prev:before {
  content: '';
  width: 16px;
  height: 16px;
  border-left: 2px solid #FFF;
  border-bottom: 2px solid #FFF;
  display: block;
  transform: rotate(45deg);
}

.section.section04 .inner .container .contents .contents--item .slide--wrap .slick-next:before {
  content: '';
  width: 16px;
  height: 16px;
  border-right: 2px solid #FFF;
  border-bottom: 2px solid #FFF;
  display: block;
  transform: rotate(-45deg);
}

.section.section05,.section.section06{
  background: #EEF5FF;
  padding-bottom: 0;
  padding-top: 100px;
}

.section.section06 .inner .container .contents .contents--title, .section.section05 .inner .container .contents .contents--title {
  color: #FFF;
  text-align: center;
  position: relative;
  z-index: 1;
  font-size: 90px;
}

.section.section06 .inner .container .contents .contents--item, .section.section05 .inner .container .contents .contents--item {
  position: relative;
  padding: 50px  130px;
  margin-top: 0;
}

.section.section06 .inner .container .contents .contents--item:after, .section.section05 .inner .container .contents .contents--item:after {
  content: "";
  position: absolute;
  display: block;
  top: -40px;
  left: 0;
  width: calc(100vw - ((100vw - 1086px + 60px) / 2));
  height: calc(100% + 40px);
  margin: 0 calc(50% - 50vw);
  border-radius: 0 50px 50px 0;
  background: #222;
}

.section.section06 .inner .container .contents .contents--item .item--title, .section.section05 .inner .container .contents .contents--item .item--title {
  color: #FFF;
  position: relative;
  z-index: 1;
  margin-top: 20px;
}

.section.section06 .inner .container .contents .contents--item .read--text, .section.section05 .inner .container .contents .contents--item .read--text {
  font-size: 16px;
  text-align: center;
  color: #FFF;
  position: relative;
  z-index: 1;
  margin-top: 50px;
  line-height: 2;
}

.section.section06 .inner .container .contents .contents--item .price--list, .section.section05 .inner .container .contents .contents--item .price--list {
  position: relative;
  z-index: 1;
  margin-top: 48px;
  margin-bottom: 30px;
}

.section.section06 .inner .container .contents .contents--item .price--list .list .price--item, .section.section05 .inner .container .contents .contents--item .price--list .list .price--item {
  display: flex;
  align-items:center;
  width: 100%;
  gap: 77px;
  padding: 50px 0 50px 100px;
  border-top: 1px solid #FFF;
}

.section.section06 .inner .container .contents .contents--item .price--list .list .price--item .price, .section.section05 .inner .container .contents .contents--item .price--list .list .price--item .price {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.section.section06 .inner .container .contents .contents--item .price--list .list .price--item .price:first-of-type, .section.section05 .inner .container .contents .contents--item .price--list .list .price--item .price:first-of-type {
  align-items: flex-end;
}
.section.section05 .inner .container .contents .contents--item .price--list .list .price--item .price:first-of-type{width:150px;}
.section.section05 .inner .container .contents .contents--item .price--list .list .price--item .price:nth-of-type(2){width:350px;}

.section.section06 .inner .container .contents .contents--item .price--list .list .price--item .price .in--title, .section.section05 .inner .container .contents .contents--item .price--list .list .price--item .price .in--title {
  font-size: 25px;
  color: #FFF;
  font-family: 'Noto Serif JP', serif;
  font-weight: 500;
}

.section.section06 .inner .container .contents .contents--item .price--list .list .price--item .price .in--text, .section.section05 .inner .container .contents .contents--item .price--list .list .price--item .price .in--text {
  font-size: 25px;
  color: #FFF;
  font-family: 'Noto Serif JP', serif;
  font-weight: 500;
}

.section.section06 .inner .container .contents .contents--item .price--list .list .price--item .price .in--text.dev, .section.section05 .inner .container .contents .contents--item .price--list .list .price--item .price .in--text.dev {
  font-size: 45px;
  color: #DB8A8A;
}

.section.section06 .inner .container .contents .contents--item .price--list .list .price--item .price .in--text.cli, .section.section05 .inner .container .contents .contents--item .price--list .list .price--item .price .in--text.cli {
  font-size: 20px;
}

.section.section06 .inner .container .contents .contents--item .price--list .list .price--item .price .in--text.add, .section.section05 .inner .container .contents .contents--item .price--list .list .price--item .price .in--text.add {
  font-size: 13px;
}

.section.section06 .inner .container .contents .contents--item .price--list .list .price--item:last-of-type, .section.section05 .inner .container .contents .contents--item .price--list .list .price--item:last-of-type {
  border-bottom: 1px solid #FFF;
}

.section.section06 .inner .container .contents .contents--item .add--text, .section.section05 .inner .container .contents .contents--item .add--text {
  position: relative;
  z-index: 1;
  color: #FFF;
  line-height: 1.75;
}

.section.section06 .inner .container .contents .contents--item .add--text .icons,
.section.section06 .inner .container .contents .contents--item .add--text .icon, .section.section05 .inner .container .contents .contents--item .add--text .icons,
.section.section05 .inner .container .contents .contents--item .add--text .icon {
  line-height: 1.75;
  color: #FFF;
}

.section.section06 .inner .container .contents .contents--item:after {
  left: initial;
  right: 0;
  border-radius: 50px 0 0 50px;
}

.section.section06 .inner .container .contents .contents--item .table--over__wrap {
  position: relative;
  z-index: 1;
  margin-bottom: 15px;
  margin-top: 30px;
}

.section.section06 .inner .container .contents .contents--item .table--over__wrap .table--item02 {
  border-collapse: collapse;
  table-layout: fixed;
  width: 100%;
}

.section.section06 .inner .container .contents .contents--item .table--over__wrap .table--item02 .th,
.section.section06 .inner .container .contents .contents--item .table--over__wrap .table--item02 .td {
  border: 1px solid #222;
  font-size: 15px;
  font-weight: 500;
}

.section.section06 .inner .container .contents .contents--item .table--over__wrap .table--item02 .th p,
.section.section06 .inner .container .contents .contents--item .table--over__wrap .table--item02 .td p {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.75;
}

.section.section06 .inner .container .contents .contents--item .table--over__wrap .table--item02 .th p span,
.section.section06 .inner .container .contents .contents--item .table--over__wrap .table--item02 .td p span {
  font-size: 10px;
  display: inline-block;
  transform: translateY(-5px);
}

.section.section06 .inner .container .contents .contents--item .table--over__wrap .table--item02 .th {
  background: #4E70BD;
  padding: 10px 10px 9px;
  color: #FFF;
  text-align: center;
}

.section.section06 .inner .container .contents .contents--item .table--over__wrap .table--item02 .th p {
  color: #FFF;
}

.section.section06 .inner .container .contents .contents--item .table--over__wrap .table--item02 .td {
  background: #FFF;
  padding: 10px 10px 9px;
}

.section.section06 .inner .container .contents .contents--item .table--over__wrap .table--item02 .td:first-of-type {
  text-align: center;
}

.section.section07 {
  background: #EEF5FF;
  padding: 80px 0 100px;
}

.section.section07 .inner .container .contents .contents--title {
  font-size: 90px;
  color: #B8CFE2;
  text-align: center;
  position: relative;
  z-index: 1;
}

.section.section07 .inner .container .contents .contents--item h3 {
  margin-top: 30px;
}

.section.section07 .inner .container .contents .contents--item .faq--wrap {
  width:800px;
  margin: 50px auto 0;
}

.section.section07 .inner .container .contents .contents--item .faq--wrap .faq {
  width: 100%;
  background: #FFF;
  padding: 30px;
  border-radius: 10px;
}

.section.section07 .inner .container .contents .contents--item .faq--wrap .faq .faq--q {
  position: relative;
}
.section.section07 .inner .container .contents .contents--item .faq--wrap .faq .faq--q:after {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  bottom: 0;
  right: 0;
  width: 9px;
  height: 9px;
  margin: auto;
  border-right: 2px solid #222;
  border-bottom: 2px solid #222;
  transform: rotate(45deg);
  transition: all .3s;
}
.section.section07 .inner .container .contents .contents--item .faq--wrap .faq.open .faq--q:after {
  top: 0;
  transform: rotate(-135deg);
}

.section.section07 .inner .container .contents .contents--item .faq--wrap .faq .faq--q .in--text {
  font-size: 20px;
  color: #4E70BD;
  font-family: 'Noto Serif JP', serif;
  position: relative;
  display: flex;
  align-items: center;
  gap: 25px;
}

.section.section07 .inner .container .contents .contents--item .faq--wrap .faq .faq--q .in--text:before {
  content: "Q";
  display: flex;
  top: 0;
  left: 0;
  font-family: 'Noto Serif JP', serif;
  font-size: 16px;
  width: 48px;
  height: 48px;
  border-radius: 100%;
  background: #4E70BD;
  color: #FFF;
  align-items: center;
  justify-content: center;
}

.section.section07 .inner .container .contents .contents--item .faq--wrap .faq .faq--a {
  margin-top: 15px;
  display: none;
}

.section.section07 .inner .container .contents .contents--item .faq--wrap .faq .faq--a .in--text {
  font-size: 20px;
  font-weight: 500;
  font-family: 'Noto Serif JP';
}

.section.section07 .inner .container .contents .contents--item .faq--wrap .faq + .faq {
  margin-top: 10px;
}

.section.section08 {
  background: #EEF5FF;
  padding: 80px 0 100px;
  position: relative;
}

.section.section08 .inner {
  position: relative;
  z-index: 1;
}

.section.section08 .inner .container.container01 {
  position: relative;
  padding-bottom: 0px;
}

.section.section08 .inner .container.container01:after {
  content: "";
  position: absolute;
  display: block;
  top: 50px;
  left: 0;
  width: 100vw;
  height: 100%;
  background: url(../images/section08_contents01_img01.jpg) no-repeat center top;
  background-size: cover;
  margin: 0 calc(50% - 50vw);
}

.section.section08 .inner .container.container01 .contents .item--title {
  color: #FFF;
}

.section.section08 .inner .container .contents {
  position: relative;
  z-index: 1;
}

.section.section08 .inner .container .contents .contents--title {
  font-size: 90px;
  color: #fff;
  text-align: center;
  position: relative;
  z-index: 1;
}
.section.section08 .inner .container.container02 .contents .contents--title {color:#000;}
.section.section08 .inner .container.container02 .contents .item--title {margin-top:30px;}

.section.section08 .inner .container .contents .read--area {
  margin-top: 55px;
}

.section.section08 .inner .container .contents .read--area .read--text {
  font-size: 16px;
  line-height: 2;
  color: #FFF;
  text-align: center;
}

.section.section08 .inner .container .contents .read--area .read--text + .read--text {
  margin-top: 30px;
}

.section.section08 .inner .container .contents .contents--item .staff--list {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 50px;
}

.section.section08 .inner .container .contents .contents--item .staff--list .list {
  width: 60px;
}

.section.section08 .inner .container .contents .contents--item .list--caption {
  font-size: 16px;
  color: #FFF;
  text-align: center;
  margin-top: 30px;
}

.section.section08 .inner .container.container02 {
  margin-top: 100px;
}

.section.section08 .inner .container.container02 .form--wrap {
  margin-top: 140px;
}

.section.section08 .inner .container.container02 .form--wrap .form--title {
  font-size: 25px;
  font-weight: 500;
  font-family: 'Noto Serif JP', serif;
  position: relative;
  display: flex;
  gap: 20px;
  align-items: center;
  white-space: nowrap;
}

.section.section08 .inner .container.container02 .form--wrap .form--title:after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #222;
}

.section.section08 .inner .container.container02 .form--wrap .form--title + * {
  margin-top: 30px;
}

.section.section08 .inner .container.container02 .form--wrap .line--item {
  display: flex;
  gap: 50px;
}

.section.section08 .inner .container.container02 .form--wrap .line--item .line {
  width: 100%;
  max-width: 600px;
}

.section.section08 .inner .container.container02 .form--wrap .line--item .line--qr {
  width: 100px;
}

.section.section08 .inner .container.container02 .form--wrap .in--text {
  font-size: 16px;
  line-height: 2;
}

.section.section08 .inner .container.container02 .form--wrap .in--text + .in--text {
  margin-top: 12px;
}

.section.section08 .inner .container.container02 .form--wrap textarea,
.section.section08 .inner .container.container02 .form--wrap input[type=radio],
.section.section08 .inner .container.container02 .form--wrap input[type=text],
.section.section08 .inner .container.container02 .form--wrap input[type=tel],
.section.section08 .inner .container.container02 .form--wrap input[type=email] {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
}

.section.section08 .inner .container.container02 .form--wrap textarea,
.section.section08 .inner .container.container02 .form--wrap input[type=text],
.section.section08 .inner .container.container02 .form--wrap input[type=tel],
.section.section08 .inner .container.container02 .form--wrap input[type=email] {
  border: 1px solid #E8E8E8;
  background: #FFF;
  height: 50px;
  width: 100%;
  padding: 0 12px;
}

.section.section08 .inner .container.container02 .form--wrap textarea {
  height:156px;
  padding:15px;
  font-family:"メイリオ", "Meiryo", sans-serif;
}

.section.section08 .inner .container.container02 .form--wrap .form--item {
  display: flex;
  gap: 40px;
  padding: 25px 0;
  border-top: 1px solid #CBCBCB;
}

.section.section08 .inner .container.container02 .form--wrap .form--item:has(.form--item__title) {
  flex-direction: column;
  padding-top: 66px;
  gap: 20px;
}

.section.section08 .inner .container.container02 .form--wrap .form--item .label {
  font-size: 16px;
  line-height: 2;
}

.section.section08 .inner .container.container02 .form--wrap .form--item .checkbox--wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}

.section.section08 .inner .container.container02 .form--wrap .form--item .checkbox--wrap input[type=checkbox] {
  width: 20px;
  height: 20px;
  border: 1px solid #707070;
  background: #FFF;
}

.section.section08 .inner .container.container02 .form--wrap .form--item .form--item__title {
  font-size: 20px;
  font-weight: 500;
  font-family: 'Noto Serif JP', serif;
}

.section.section08 .inner .container.container02 .form--wrap .form--item:first-of-type {
  margin-top: 70px;
}

.section.section08 .inner .container.container02 .form--wrap .form--item .form--item__label {
  width: 210px;
  display: flex;
  position: relative;
}

.section.section08 .inner .container.container02 .form--wrap .form--item .form--item__label.required {
  align-items: center;
}

.section.section08 .inner .container.container02 .form--wrap .form--item .form--item__label.required:after {
  content: "必須";
  border: 1px solid #DB8A8A;
  color: #DB8A8A;
}

.section.section08 .inner .container.container02 .form--wrap .form--item .form--item__label:after {
  content: "任意";
  display: flex;
  bottom: 0;
  right: 0;
  width: 75px;
  height: 25px;
  padding-bottom: 1px;
  border-radius: 45px;
  border: 1px solid #4E70BD;
  margin-left: auto;
  font-size: 13px;
  color: #4E70BD;
  align-items: center;
  justify-content: center;
}

.section.section08 .inner .container.container02 .form--wrap .form--item .form--item_input {
  width: calc(100% - 210px - 40px);
}

.section.section08 .inner .container.container02 .form--wrap .form--item .policy {
  width: 100%;
  height: 146px;
  border: 1px solid #CBCBCB;
  overflow-y: scroll;
  padding: 30px;
  margin-top: 35px;
}

.section.section08 .inner .container.container02 .form--wrap .form--item .policy div {
  padding: 15px;
}

.section.section08 .inner .container.container02 .form--wrap .form--item .policy div div {
  padding: 15px;
}

.section.section08 .inner .container.container02 .form--wrap .form--item .policy p {
  font-size: 16px;
  line-height: 2;
}

.section.section08 .inner .container.container02 .form--wrap .form--item .policy p.title {
  font-weight: bold;
  margin-bottom: 20px;
}

.section.section08 .inner .container.container02 .form--wrap .form--item .policy ul {
  list-style: disc;
  padding-left: 1rem;
  margin-top: 15px;
}

.section.section08 .inner .container.container02 .form--wrap .form--item .policy dl {
  display: flex;
  width: calc(100% + 30px);
  transform: translateX(-15px);
}

.section.section08 .inner .container.container02 .form--wrap .form--item .policy dl dt {
  width: 50px;
  font-size: 16px;
  line-height: 1.75;
}

.section.section08 .inner .container.container02 .form--wrap .form--item .policy dl dd {
  font-size: 16px;
  line-height: 1.75;
}

.section.section08 .inner .container.container02 .form--wrap .submit--area {
  margin-top: 30px;
}

.section.section08 .inner .container.container02 .form--wrap .submit--area .submit--btn,
.section.section08 .inner .container.container02 .form--wrap .submit--area input[type=submit] {
  border: none;
  background: none;
  width: 300px;
  height: 56px;
  border-radius: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: red;
  background: linear-gradient(to right, #39B7C1 0%, #954cf6 100%);
  position: relative;
  font-size: 18px;
  color: #FFF;
  font-weight: 500;
  margin: auto;
}

.section.section08 .inner .container.container02 .form--wrap .submit--area .submit--btn + *,
.section.section08 .inner .container.container02 .form--wrap .submit--area input[type=submit] + * {
  margin-top: -10px;
}

.section.section08 .inner .container.container02 .form--wrap .submit--area .add--text {
  text-align: center;
  width: fit-content;
  margin: auto;
}

.section.section08 .inner .container.container02 .form--wrap + .form--wrap {
  margin-top: 70px;
}

.section .inner .container .contents .contents--title__wrap {
  display: grid;
  padding-bottom: 100px;
}

.section .inner .container .contents .contents--title__wrap .img,
.section .inner .container .contents .contents--title__wrap .contents--title {
  grid-row: 1/2;
  grid-column: 1/2;
}

.section .inner .container .contents .contents--title__wrap .contents--title {
  position: relative;
  z-index: 1;
}

.section .inner .container .contents .contents--title__wrap .img {
  width: 100vw;
  margin: 0 calc(50% - 50vw);
}

.section .inner .container .contents .contents--title__wrap .img img {
  width: calc(100vw - ((100vw - 1086px + 30px) / 2));
  margin-left: auto;
  transform: translateY(100px);
}

.section .inner .container .contents .item--title {
  font-size: 35px;
  font-family: 'Noto Serif JP', serif;
  font-weight: normal;
  text-align: center;
  margin-top: 70px;
}

footer {
  background: #EEF5FF;
  background: linear-gradient(to bottom, #ECEBF1 0%, #EEF5FF 100%);
  padding: 37px 0 130px;
}

footer .inner {
  max-width: 100%;
}

footer .inner .com--info {
  margin-top: 44px;
}

footer .inner .com--info .com--info__text {
  display: flex;
  align-items: center;
}

footer .inner .com--info .com--info__text .info--h {
  width: 100px;
  font-size: 14px;
  font-weight: 500;
  color: #707070;
  line-height: 2;
}

footer .inner .com--info .com--info__text .info--text {
  width: calc(100% - 100px);
  font-size: 14px;
  font-weight: 500;
  color: #707070;
  line-height: 2;
}

footer .inner .copyright {
  margin-top: 30px;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  color: #707070;
}

.bottom--contents {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 10;
}

.bottom--contents .in--contents {
  width: fit-content;
  height: 80px;
  margin: auto;
  background: linear-gradient(to right, #4E70BD 0%, #1DC259 100%);
  display: flex;
  gap: 20px;
  align-items: center;
  padding: 0 20px;
  border-radius: 20px 20px 0 0;
}

.bottom--contents .in--contents .bottom--text {
  display: flex;
  padding: 0 10vw;
}

.bottom--contents .in--contents .bottom--text .in--text {
  font-size: 20px;
  color: #FFF;
  font-weight: 500;
}
.bottom--contents .in--contents .bottom--text .in--text-s{display:none;}

.bottom--contents .in--contents .bottom--btn {
  width: 220px;
  height: 60px;
  background: #FFF;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 500;
  box-shadow: 3px 2px 17px -7px rgba(0, 0, 0, 0.4);
  position: relative;
  padding-left: 30px;
}

.bottom--contents .in--contents .bottom--btn:after {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  bottom: 0;
  left: 5px;
  margin: auto;
  width: 37px;
  height: 37px;
  background: url(../images/icon_line.png) no-repeat left top;
  background-size: cover;
}

.bottom--contents .in--contents .bottom--btn:last-of-type:after {
  background: url(../images/icon_mail.png) no-repeat left top;
  background-size: cover;
}

.sp {
  display: none;
}

.section.section08 .inner .container.container02 .form--wrap .line--item .line .add--friend {
  display: none;
}

/* cf7 */
.wpcf7 form.sent .wpcf7-response-output{padding:15px;}
.wpcf7-not-valid-tip{margin-top:5px;}

@media screen and (max-width: 1200px) and (min-width:641px) {
.main .inner .main--item{height:85vw; max-height:800px;}
.page--lik .page--link__list{flex-wrap:wrap;}
.section .inner .container .contents .contents--title__wrap .img img{width:94vw;}
.section.section01 .inner .container .contents.contents02 .title--area .contents--title{font-size:4vw;}
.section.section01 .inner .container .contents.contents02 .contents--area:has(> .how-to-degifaria){display:flex; gap:10px;}
.section.section01 .inner .container .contents.contents02 .contents--area .how-to-degifaria{width:45%;}
.section.section01 .inner .container .contents.contents02 .contents--area .how-to-degifaria:last-of-type{width:45%;}
.section.section01 .inner .container .contents.contents02 .contents--area .how-to-degifaria.has--img .img--wrap{width:100%; position:unset; margin:0;}
.section.section01 .inner .container .contents.contents02 .contents--area .how-to-degifaria.has--img .img--wrap .img{width:100%; transform: translate(-30px, 0);}
.section.section01 .inner .container .contents.contents02 .contents--area .how-to-degifaria.has--info .how-to__text{display:block;}
.section.section01 .inner .container .contents.contents02 .contents--area .how-to-degifaria.has--info .how-to__text .has--border .highlight{font-size:4vw;}
.section.section01 .inner .container .contents.contents02 .contents--area .how-to-degifaria.has--info .how-to__text .has--border .in--val{font-size:3vw;}
.section.section01 .inner .container .contents.contents02 .contents--area .how-to-degifaria.has--info .how-to__text .in--text{line-height:2;}
.section.section01 .inner .container .contents.contents02:after,
.section.section05 .inner .container .contents .contents--item:after,
.section.section06 .inner .container .contents .contents--item:after{width:92.75vw;}
.section.section03 .inner .container .contents .contents--item .item--area{width:50%; max-width:unset;}
.bottom--contents{width:86.67vw; margin: 0 6.665vw;}
.bottom--contents .in--contents .bottom--text{padding:0;}
.bottom--contents .in--contents .bottom--text .in--text{display:none;}
.bottom--contents .in--contents .bottom--text .in--text-s{display:inline-block; color:#fff;}
}

@media screen and (max-width: 640px) {
  .pc {
    display: none;
  }

  .sp {
    display: block;
  }
  header{height:16vw; position: fixed; top:0; left:0; background: #000; z-index: 100;}
  header .inner{justify-content: center;}
  header .logo--area .site--name{color: #fff;}
  header .logo--area .site--name:before{background: #fff;}
  header .inner .btn{display: none;}

main{margin-top:16vw;}
	
  .inner {
    padding: 0 15px;
  }

  .logo--area .logo--icon {
    width: 12vw;
  }

  .logo--area .logo .logo--text__ja {
    font-size: 3.5vw;
	font-weight:700;
  }

  .logo--area .logo .logo--text__en {
    font-size: 3.5vw;
	font-weight:700;
    letter-spacing: 0.05rem;
  }

  .logo--area .site--name {
    font-size: 3.5vw;
	font-weight:700;
    gap: 2px;
  }
  header .logo--area .logo .logo--text__ja ,
  header .logo--area .logo .logo--text__en {color:#fff;}
	  
  .logo--area {
    gap: 2vw;
  }

  .logo--area .site--name:before {
    width: 2vw;
  }
/*
  header .inner .btn {
    width: fit-content;
    height: 30px;
    padding: 2vw 4vw;
  }

  header .inner .btn .in--text {
    font-size: 3.125vw;
  }
*/
  .main .inner {
    padding: 0;
  }

  .main .inner .main--item .main--area {
    padding-bottom: 0;
  }

  .main .inner .main--item .main--area .main--area__copy {
    justify-content: flex-end;
    gap: 9px;
	margin-top:18%;
  }

  .main .inner .main--item .main--area .main--area__copy .in--copy {
    font-size: 5vw;
    padding: 4px 6px 6px;
    margin-left: 15px;
  }

  .main .inner .main--item .main--area .main--area__copy .in--copy:after,
  .main .inner .main--item .main--area .main--area__copy .in--copy:before {
    font-size: 4.6875vw;
  }

  .main .inner .main--item .main--area .main--area__copy .in--copy:nth-of-type(1):before {
    top: -10px;
    left: -10px;
  }

  .main .inner .main--item .main--area .main--area__copy .in--copy:nth-of-type(2):after {
    bottom: -10px;
    right: 0;
  }

  .main .inner .main--item .main--area .main--area__sitetitle {
    padding-left: 15px;
  }

  .main .inner .main--item .main--area .main--area__sitetitle .saite--title__ja {
    font-size: 10.9375vw;
	background: rgba(255,255,255,0.5);
	width: fit-content;
  }

  .main .inner .main--item .main--area .main--area__sitetitle .site--title__en .in--texxt {
    font-size: 18.75vw;
  }

  .main .inner .main--item .img--area .img {
    width: calc(100% - 50px);
  }
  .main .inner .main--item .img--area .img img {
    max-width: 1105px;
  }

  .page--lik {
    padding: 13px 0;
  }

  .page--lik .page--link__list {
    flex-direction: row;
	flex-wrap: wrap;
    gap: 12px;
    width: fit-content;
    margin: 0 auto;
  }

  .page--lik .page--link__list .btn {
    padding-left: 20px;
    font-size: 3.2vw;
    border-bottom: 1px #ccc solid;
    padding-bottom: 8px;
    width: fit-content;;
  }

  .page--lik .page--link__list .btn .in--text {
    font-size: 3.2vw;
  }
	.page--lik .page--link__list .btn:nth-of-type(2):after {display:none;}
/*
  .page--lik .page--link__list .btn:after {
    content: "";
    top: 8px;
    right: initial;
    left: 0;
    line-height: 1;
    width: 12px;
    height: 6px;
    border-left: 2px solid #222;
    border-bottom: 2px solid #222;
    transform: rotate(-45deg);
  }

  .page--lik .page--link__list .btn:last-of-type:after {
    display: block;
  }
*/
  .section.section01 {
    padding-top: 40px;
    padding-bottom: 10vw;
    background: linear-gradient(to bottom, #e5e8ee 0%, #f1f7fa 100%);
  }
	.section.section01 .inner{
	padding: 0 15px;
	}
	
  .section.section01 .inner .container .contents.contents01 {
    flex-direction: column;
    padding: 60px 0;
    gap: 30px;
  }

  .section.section01 .inner .container .contents.contents01:before {
    bottom: -40px;
    background: url(../images/contents01_img_bg02.png) no-repeat right center;
    background-size: cover;
    width: 37.5vw;
    height: 15.625vw;
  }

  .section.section01 .inner .container .contents.contents01:after {
    background: url(../images/contents01_img_bg.png) no-repeat center center;
    background-size: cover;
    width: calc(100vw - 15px);
  }

  .section.section01 .inner .container .contents.contents01 .title--area .contents--title {
    font-size: 6.5vw;
    font-weight: 500;
    color: #FFF;
    line-height: 1.6;
    text-align: center;
  }

  .section.section01 .inner .container .contents.contents01 .contents--area {
    position: relative;
    z-index: 1;
    padding: 0 15px;
  }

  .section.section01 .inner .container .contents.contents01 .contents--area .check--list .list .check {
    font-size: 3.75vw;
    padding-left: 30px;
  }

  .section.section01 .inner .container .contents.contents01 .contents--area .check--list .list .check .in--text {
    font-size: 3.75vw;
  }

  .section.section01 .inner .container .contents.contents01 .contents--area .check--list .list .check:before {
    width: 3.75vw;
    height: 3.75vw;
  }

  .section.section01 .inner .container .contents.contents01 .contents--area .check--list .list .check:after {
    top: 5px;
    width: 3.75vw;
    height: 1.875vw;
  }

  .section.section01 .inner .container .contents.contents02{
	  margin-top: 5vw;
	  padding-bottom: 5vw;
	  padding-top: 10vw;
	}

  .section.section01 .inner .container .contents.contents02:after {
    width: calc(100vw - 10px);
  }

  .section.section01 .inner .container .contents.contents02 .title--area{margin-bottom:6vw;}
  .section.section01 .inner .container .contents.contents02 .title--area .contents--title {
    font-size: 6.25vw;
    line-height: 1.75;
    width: 100%;
    text-align: center;
    padding: 4px 5px 7px;
    transform: translateX(-15px);
  }

  .section.section01 .inner .container .contents.contents02 .contents--area .how-to-degifaria:last-of-type,
  .section.section01 .inner .container .contents.contents02 .contents--area .how-to-degifaria {
    width: 100%;
  }

  .section.section01 .inner .container .contents.contents02 .contents--area:has(> .how-to-degifaria) {
    flex-direction: column;
    gap: 15px;
    margin-top: 0vw;
	transform:translate(-5px,0px)
  }
  .section.section01 .inner .container .contents.contents02 .contents--area:has(> .how-to-degifaria):nth-of-type(3){
	margin-top:0;
	transform:translate(-5px,0px)
	}
  .section.section01 .inner .container .contents.contents02 .contents--area .how-to-degifaria .in--title {
    font-size: 6.25vw;
    text-align: center;
  }

  .section.section01 .inner .container .contents.contents02 .contents--area .how-to-degifaria .in--text {
    font-size: 3.4vw;
    margin-top: 15px;
  }

  .section.section01 .inner .container .contents.contents02 .contents--area .how-to-degifaria.has--info .how-to__text {
    font-size: 3.75vw;
    padding-bottom: 5vw;
    flex-wrap: wrap;
    text-align: center;
    justify-content: center;
	margin-top: 2vw;
  }

  .section.section01 .inner .container .contents.contents02 .contents--area .how-to-degifaria.has--info .how-to__text .in--text {
    font-size: 3.75vw;
  }

  .section.section01 .inner .container .contents.contents02 .contents--area .how-to-degifaria.has--info .how-to__text .has--border .highlight {
    font-size: 7.8125vw;
  }

  .section.section01 .inner .container .contents.contents02 .contents--area .how-to-degifaria.has--info .how-to__text .has--border .in--val {
    font-size: 5.46875vw;
  }

  .section.section01 .inner .container .contents.contents02 .contents--area .how-to-degifaria.has--info .how-to__text .has--border .in--val_s {
    font-size: 2.5vw;
  }

  .section.section01 .inner .container .contents.contents02 .contents--area .how-to-degifaria.has--info .how-to__text .has--border:after {
    bottom: -10px;
    height: 8px;
  }

  .section.section01 .inner .container .contents.contents02 .contents--area .how-to-degifaria.has--info .sns--group {
    width: 95%;
  }

  .section .inner .container .contents .contents--title.type--en {
    font-size: 15.625vw;
  }

  .section .inner .container .contents .contents--title__wrap {
    padding-bottom: 8vw;
  }

  .section .inner .container .contents .contents--title__wrap .img img {
    width: calc(100vw - 15px);
    transform: translateY(8vw);
  }

  .section .inner .container .contents .item--title {
    font-size: 6.25vw;
    margin-top: 7vw;
	font-weight: 700;
  }

  .section.section02 .inner .container .contents .contents--item {
    margin-top: 7vw;
    flex-direction: column;
    gap: 15px;
  }

  .section.section02 .inner .container .contents .contents--item .item--area {
    width: 100%;
    padding: 60px 15px 8vw;;
    position: relative;
  }

  .section.section02 .inner .container .contents .contents--item .item--area:before {
    content: "";
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    margin: 0 calc(50% - 50vw);
    width: calc(100vw - 15px);
    height: 100%;
    background: #FFF;
    border-radius: 0 0 50px 0;
  }

  .section.section02 .inner .container .contents .contents--item:after {
    display: none;
    width: calc(100vw - 15px);
  }

  .section.section02 .inner .container .contents .contents--item .img--area {
    width: 100%;
    padding: 0 15px;
  }

  .section.section02 .inner .container .contents .contents--item .img--area .img {
    margin-right: auto;
  }
.section.section02 .inner .container .contents .contents--item .img--area.img01 .img {
  width: 200px;
}

  .section.section02 .inner .container .contents .contents--item .item--area .item--intitle {
    font-size: 5.46875vw;
    text-align: center;
  }

  .section.section02 .inner .container .contents .contents--item .item--area .item--text {
    font-size: 13px;
    margin-top: 2vh;
	line-height:2;
  }

  .section.section02 .inner .container .contents .contents--item:nth-of-type(even) .item--area {
    order: 1;
  }

  .section.section02 .inner .container .contents .contents--item:nth-of-type(even) .img--area {
    order: 2;
  }

  .section.section02 .inner .container .contents .contents--item:nth-of-type(even) .num {
    left: -15px;
  }

  .section.section02 .contents--area + .contents--area {
    margin-top: 8vh;
  }

  .section.section02 .inner .container .contents .table--wrap {
    padding: 5vw 0;
  }

  .section.section02 .inner .container .contents .table--wrap .table--item01 {
    margin-top: 3vh;
    margin-bottom: 15px;
  }

  .section.section02 .inner .container .contents .table--wrap .table--item01 .td p,
  .section.section02 .inner .container .contents .table--wrap .table--item01 .th p {
    font-size: 2.8125vw;
  }

  .section.section02 .inner .container .contents .table--wrap .table--item01 .th:nth-of-type(2) p {
    flex-direction: column;
    font-size: 3.125vw;
  }

  .section.section02 .inner .container .contents .table--wrap .table--item01 .th:nth-of-type(2) p:before {
    width: calc(38px * 0.8);
    height: calc(38px * 0.8);
	margin-bottom: 3px;
  }
.section.section02 .inner .container .contents .table--wrap .table--item01 .th:nth-of-type(3) p{font-size: 2.5vw; letter-spacing: -1px;}
.section.section02 .inner .container .contents .table--wrap .table--item01 .th:nth-of-type(3) p .icon{font-size:8px;}
.section.section02 .inner .container .contents .table--wrap .table--item01 tr td p.double{font-size:5.5vw;}
.section.section02 .inner .container .contents .table--wrap .table--item01 tr td p.single{font-size:4vw;}
.section.section02 .inner .container .contents .table--wrap .table--item01 tr td p.triangle{font-size:3vw;}
	
  .section .inner .add--text {
    font-size: 2.8125vw;
  }

  .section .inner .add--text .icons, .section .inner .add--text .icon {
    font-size: 2.8125vw;
  }

  .section.section02:after,
  .section.section03:after {
    position: absolute;
    top: 20vw;
  }

  .section.section03 .inner .container .contents .contents--item {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 7vh;
  }

  .section.section03 .inner .container .contents .contents--item .item--area .item--intitle {
    font-size: 4.375vw;
    padding: 8px 18px 10px;
  }

  .section.section03 .inner .container .contents .contents--item .item--area {
    order: 2;
  }

  .section.section03 .inner .container .contents .contents--item .img--area {
    order: 1;
    width: 100%;
    margin: 0;
  }

  .section.section03 .inner .container .contents .contents--item .img--area .img {
    width: 100%;
    max-width: 600px;
    margin: auto;
  }

  .section.section03 .inner .container .contents .contents--item:nth-of-type(even) .img--area .num,
  .section.section03 .inner .container .contents .contents--item .img--area .num {
    font-size: 12.5vw;
    top: -6.25vw;
    right: 0;
    left: 0;
    margin: 0 auto;
    text-align: center;
  }

  .section.section03 .inner .container .contents .contents--item .item--area .catch {
    font-size: 4.2vw;
    margin-top: 2vh;
  }

  .section.section03 .inner .container .contents .contents--item .item--area .in--text {
    font-size: 3.75vw;
  }

  .section.section03 .inner .container .contents .contents--item .item--area .catch + .in--text {
    margin-top: 2vh;
	font-size:13px;
	line-height:2;
  }

  .section.section03 .inner .container .contents .contents--item .item--area .catch + .in--text + .in--text {
    margin-top: 1.5vh;
	font-size:13px;
	line-height:2;
  }

  .section.section04 {
    padding-top: 4vh;
  }

  .section.section04:after {
    top: 9vh;
    height: calc(100% - 9vh);
  }

  .section.section04 .inner .container .contents .contents--item .read--text {
    font-size: 3.75vw;
    margin-top: 9vw;
    text-align: left;
  }

  .section.section04 .inner .container .contents .contents--item .read--text br {
    display: none;
  }

  .section.section04 .inner .container .contents .contents--item .slide--wrap {
    padding: 5vh 15px;
    margin-top: 5vw;
  }

  .section.section06 .inner .container .contents .contents--item,
  .section.section05 .inner .container .contents .contents--item {
    position: relative;
    padding: 5vh 15px;
  }

  .section.section06 .inner .container .contents .contents--item .read--text,
  .section.section05 .inner .container .contents .contents--item .read--text {
    font-size: 3.75vw;
    margin-top: 9vw;
    text-align: left;
  }

  .section.section06 .inner .container .contents .contents--item .price--list,
  .section.section05 .inner .container .contents .contents--item .price--list {
    margin-top: 5vh;
    margin-bottom: 3vh;
  }
.section.section06 .inner .container .contents .contents--item .item--title,
.section.section05 .inner .container .contents .contents--item .item--title {margin-top:3vw;}
  .section.section06 .inner .container .contents .contents--item .price--list .list .price--item,
  .section.section05 .inner .container .contents .contents--item .price--list .list .price--item {
    gap: 15px;
    padding: 5vh 0;
  }

  .section.section06 .inner .container .contents .contents--item .price--list .list .price--item .price:first-of-type,
  .section.section05 .inner .container .contents .contents--item .price--list .list .price--item .price:first-of-type {
    align-items: flex-start;
    justify-content: center;
    gap: 0;
  }

  .section.section06 .inner .container .contents .contents--item .price--list .list .price--item .price .in--title, .section.section05 .inner .container .contents .contents--item .price--list .list .price--item .price .in--title {
    font-size: 5vw;
  }

  .section.section06 .inner .container .contents .contents--item .price--list .list .price--item .price .in--text.dev,
  .section.section05 .inner .container .contents .contents--item .price--list .list .price--item .price .in--text.dev {
    font-size: 7.03125vw;
  }

  .section.section06 .inner .container .contents .contents--item .price--list .list .price--item .price .in--text.cli,
  .section.section05 .inner .container .contents .contents--item .price--list .list .price--item .price .in--text.cli {
    font-size: 5vw;
  }

  .section.section06 .inner .container .contents .contents--item .price--list .list .price--item .price .in--text.add,
  .section.section05 .inner .container .contents .contents--item .price--list .list .price--item .price .in--text.add {
    font-size: 2.8125vw;
    line-height: 1.75;
  }

  .section.section06 .inner .container .contents .contents--item:after, .section.section05 .inner .container .contents .contents--item:after {
    top: -4vh;
    width: calc(100vw - 15px);
    height: calc(100% + 4vh);
    background: #222;
  }

  .section.section05 {
    padding-bottom: 0;
    padding-top: 5vh;
  }
	.section.section05 .inner .container .contents .contents--item,
	.section.section06 .inner .container .contents .contents--item{padding-top:0;}
	.section.section05 .inner .container .contents .contents--item .price--list .list .price--item{display: flex; justify-content:center; padding: 7vw 0;}
  .section.section05 .inner .container .contents .contents--item .price--list .list .price--item .price:first-of-type {
    width: 30vw;
  }

  .section.section05 .inner .container .contents .contents--item .price--list .list .price--item .price:nth-of-type(2) {
    flex: 1;
  }

  .section.section06 {
    padding-top: 5vh;
  }
  .section.section06 .inner .container .contents .contents--item .table--over__wrap {
    width: 100%;
    overflow-x: scroll;
  }
  .section.section06 .inner .container .contents .contents--item .table--over__wrap .table--item02 {
    min-width: 1086px;
  }
  .section.section06 .inner .container .contents .contents--item .table--over__wrap .table--item02 .th:first-of-type{width:250px;}
  .section.section06 .inner .container .contents .contents--item .table--over__wrap .table--item02 .th:nth-of-type(2),
  .section.section06 .inner .container .contents .contents--item .table--over__wrap .table--item02 .th:nth-of-type(3){width:350px;}

  .section.section07 {
    padding-top: 5vh;
  }

  .section.section07 .inner .container .contents .contents--item .faq--wrap {
	width:100%;
    margin-top: 3vh;
  }

  .section.section07 .inner .container .contents .contents--item .faq--wrap .faq {
    padding: 30px 35px 30px 20px;;
  }
.section.section07 .inner .container .contents .contents--item .faq--wrap .faq .faq--q:after{right:-15px;}
	
  .section.section07 .inner .container .contents .contents--item .faq--wrap .faq .faq--q .in--text {
    font-size: 3.6vw;
    gap: 0;
    line-height: 1.75;
    position: relative;
    padding-left: 45px;
  }

  .section.section07 .inner .container .contents .contents--item .faq--wrap .faq .faq--q .in--text:before {
    position: absolute;
    top: 0;
    left: 0;
    font-size: 3.75vw;
    width: 35px;
    height: 35px;
  }

  .section.section07 .inner .container .contents .contents--item .faq--wrap .faq .faq--a .in--text {
    font-size: 3.6vw;
  }

  .section.section08 {
    padding: 0 0 20vw;
  }

  .section.section08 .inner .container .contents .read--area {
    margin-top: 9vw;
  }

  .section.section08 .inner .container .contents .read--area .read--text {
    font-size: 13px;
    text-align: left;
  }

  .section.section08 .inner .container .contents .read--area .read--text + .read--text {
    margin-top: 3vh;
  }
.section.section08 .inner .container .contents .contents--item .list--caption{margin-top: 3vw;}
	
  .section.section08 .inner .container.container01 {
    padding-bottom: 5vw;
  }

  .section.section08 .inner .container.container01:after {
    top: 6vh;
    height: calc(100% - 3vh);
  }
.section.section08 .inner .container.container01 .contents .item--title{margin-top: 3vw;}
.section.section08 .inner .container.container02{margin-top: 12vw;}
.section.section08 .inner .container.container02 .contents .contents--title{color:#000;}
.section.section08 .inner .container.container02 .contents .item--title{margin-top: 3vw;}

  .section.section08 .inner .container.container02 .form--wrap .line--item {
    flex-direction: column;
    gap: 0;
  }

  .section.section08 .inner .container.container02 .form--wrap .line--item .line {
    width: 100%;
    max-width: 100%;
  }

  .section.section08 .inner .container.container02 .form--wrap .line--item .line .in--text {
    font-size: 3.75vw;
  }

  .section.section08 .inner .container.container02 .form--wrap .line--item .line .in--text + .in--text {
    display: none;
  }

  .section.section08 .inner .container.container02 .form--wrap .line--item .line .add--friend {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
    margin-top: 3vh;
    width: 100%;
    height: 50px;
    background: #1DC259;
    border-radius: 45px;
    color: #FFF;
    font-size: 20px;
  }

  .section.section08 .inner .container.container02 .form--wrap .line--item .line--qr {
    display: none;
  }

  .section.section08 .inner .container.container02 .form--wrap .in--text {
    font-size: 3.75vw;
  }

  .section.section08 .inner .container.container02 .form--wrap .in--text + .in--text {
    margin-top: 12px;
  }

  .section.section08 .inner .container.container02 .form--wrap .form--title {
    font-size: 5vw;
	font-weight:700;
    gap: 2vw;
  }

  .section.section08 .inner .container.container02 .form--wrap .form--title + * {
    margin-top: 3vh;
  }

  .section.section08 .inner .container.container02 .form--wrap + .form--wrap {
    margin-top: 5vh;
  }

  .section.section08 .inner .container.container02 .form--wrap .form--item {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 2vh 0;
  }

  .section.section08 .inner .container.container02 .form--wrap .form--item .form--item__label {
    width: fit-content;
    gap: 20px;
    align-items: center;
  }

  .section.section08 .inner .container.container02 .form--wrap .form--item .form--item__label label {
    font-size: 3.75vw;
  }

  .section.section08 .inner .container.container02 .form--wrap .form--item .form--item__label:after {
    width: 75px;
    height: 25px;
    font-size: 3.125vw;
  }

  .section.section08 .inner .container.container02 .form--wrap .form--item .form--item_input {
    width: 100%;
  }

  .section.section08 .inner .container.container02 .form--wrap .form--item:has(.form--item__title) {
    flex-direction: column;
    padding-top: 5vh;
    gap: 10px;
  }

  .section.section08 .inner .container.container02 .form--wrap .form--item .form--item__title {
    font-size: 4.6875vw;
  }

  .section.section08 .inner .container.container02 .form--wrap .form--item .label {
    font-size: 3.75vw;
    line-height: 1.75;
  }

  .section.section08 .inner .container.container02 .form--wrap .form--item .checkbox--wrap {
    display: flex;
    align-items: flex-start;
    gap: 10px;
  }

  .section.section08 .inner .container.container02 .form--wrap {
    margin-top: 7vh;
  }

  .section.section08 .inner .container.container02 .form--wrap .form--item:first-of-type {
    margin-top: 5vh;
  }

  .section.section08 .inner .container.container02 .form--wrap .form--item .policy {
    height: 235px;
    padding: 15px;
    margin-top: 3vh;
  }

  .section.section08 .inner .container.container02 .form--wrap .form--item .policy p {
    font-size: 3.75vw;
  }

  .section.section08 .inner .container.container02 .form--wrap .form--item .policy ul {
    margin-top: 15px;
  }

  .section.section08 .inner .container.container02 .form--wrap .form--item .policy ul li {
    font-size: 3.75vw;
    line-height: 1.75;
  }

  .section.section08 .inner .container.container02 .form--wrap .form--item .policy dl dt {
    width: 65px;
    font-size: 3.75vw;
    white-space: nowrap;
  }

  .section.section08 .inner .container.container02 .form--wrap .form--item .policy dl dd {
    font-size: 3.75vw;
  }

  .section.section08 .inner .container.container02 .form--wrap .form--item .policy dl {
    display: flex;
    width: calc(100% + 60px);
    transform: translateX(-30px);
  }
.section.section08 .inner .container.container02 .form--wrap input[type=text],
.section.section08 .inner .container.container02 .form--wrap input[type=tel],
.section.section08 .inner .container.container02 .form--wrap input[type=email]{height:35px;}

  .section.section08 .inner .container.container02 .form--wrap .submit--area .add--text {
    text-align: left;
    margin: auto;
  }

  .section.section08 .inner .container.container02 .contents .contents--title {
    font-size: 12vw;
  }

  .section.section07,
  .section.section06,
  .section.section04,
  .section.section02,
  .section.section03 {
    padding-bottom: 5vh;
  }

  footer .inner .com--info {
    margin-top: 5vh;
    display: flex;
    flex-direction: column;
    gap: 2vh;
  }

  footer .inner .com--info .com--info__text {
    flex-direction: column;
  }

  footer .inner .com--info .com--info__text .info--text,
  footer .inner .com--info .com--info__text .info--h {
    width: 100%;
    font-size: 3.75vw;
    text-align: center;
  }

  footer .inner .com--info .com--info__text .info--text {
    font-size: 3.125vw;
  }
  footer .inner .com--info .com--info__text .info--text a{
    color: #707070;
	text-decoration:none;
  }

  footer .inner .copyright {
    font-size: 3.125vw;
  }

  .bottom--contents .in--contents {
    width: 100%;
    height: 16vw;
    gap: 10px;
    padding: 0 20px;
    border-radius: 0;
    justify-content: center;
  }

  .bottom--contents .in--contents .bottom--text .in--text {
    font-size: 4vw;
    white-space: nowrap;
  }

  .bottom--contents .in--contents .bottom--text .in--text:nth-of-type(2) {
    display: none;
  }

  .bottom--contents .in--contents .bottom--text {
    padding: 0;
  }

  .bottom--contents .in--contents .bottom--btn {
    width: 35vw;
    height: 16vw;
    display: flex;
    font-size: 3.75vw;
	margin-bottom: 20px;
    padding-left: 40px;
  }

  .bottom--contents .in--contents .bottom--btn:after {
    width: 10vw;
    height: 10vw;
  }

  .bottom--contents .in--contents .bottom--btn .in--text {
    font-size: 5vw;
  }

  footer .logo--area {
    justify-content: center;
    gap: 5px;
  }

  footer .logo--area .logo--icon {
    width: 15vw;
  }

  footer .logo--area .logo .logo--text__ja {
    font-size: 4vw;
  }

  footer .logo--area .site--name {
    font-size: 4vw;
  }

  footer .logo--area .site--name:before {
    width: 4vw;
  }
footer .inner .com--info .com--info__text .info--text,
footer .inner .com--info .com--info__text .info--h{text-align: left; font-size: 3vw;}
}
.this_anime {
/*  clip-path: polygon(0 0, 0% 0, 0% 100%, 0% 100%); */
  opacity: 0;
}

.this_anime.start {
/*  animation: polygon 0.8s ease-in-out 0.2s forwards; */
  animation: fadeIn 0.8s ease-in-out 0.2s forwards;
}
/* 最初は0.5s */

@keyframes polygon {
  0% {
    clip-path: polygon(0 0, 0% 0, 0% 100%, 0% 100%);
  }
  100% {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/*# sourceMappingURL=style.css.map */
