@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Noto+Sans+JP:wght@100..900&display=swap");
body * {
  box-sizing: border-box;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 400;
  line-height: 1.8;
}
@media screen and (max-width: 950px) {
  body .sp_flex {
    display: flex !important;
  }
}
@media screen and (min-width: 951px) {
  body .sp_flex {
    display: none !important;
  }
}
@media screen and (max-width: 950px) {
  body .pc_flex {
    display: none !important;
  }
}
@media screen and (min-width: 951px) {
  body .pc_flex {
    display: flex !important;
  }
}
@media screen and (max-width: 950px) {
  body .sp {
    display: block !important;
  }
}
@media screen and (min-width: 951px) {
  body .sp {
    display: none !important;
  }
}
@media screen and (max-width: 950px) {
  body .pc {
    display: none !important;
  }
}
@media screen and (min-width: 951px) {
  body .pc {
    display: block !important;
  }
}
body .dm {
  font-family: "DM Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  letter-spacing: 0.1em;
}
body .center {
  text-align: center;
}
body .center * {
  text-align: center;
}
body .gold {
  color: #E3CA9C !important;
}
body .green {
  color: #40D038 !important;
}
body .brown {
  color: #736B5C !important;
}
body .bg-736B5C {
  background: #736B5C;
}
body .bg-A69F92 {
  background: #A69F92;
}
body .bg-DAD6CD {
  background: #DAD6CD;
}
body .bg-EDEDED {
  background: #EDEDED;
}
body .bg-green {
  background: #32B42B;
}
body .bg-black {
  background: #2C2C2C;
}
body b {
  font-weight: 700;
}
body a {
  text-decoration: unset;
  cursor: pointer;
  color: #000;
  transition: opacity 0.3s;
}
body a:hover {
  opacity: 0.7;
}
body .btn:before, body .btn:after {
  border-top: unset;
  border-right: unset;
}
body ul,
body li {
  list-style: none;
}
body table {
  display: table;
}
body input[type=text],
body select,
body textarea {
  display: block;
  width: 100%;
}
body select {
  cursor: pointer;
}
body .flex {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
body picture,
body img,
body video {
  display: block;
}
body #floating {
  position: fixed;
  z-index: 10;
  bottom: 0;
  right: 20px;
  justify-content: flex-end;
  gap: 6px;
}
body #floating a {
  border-radius: 5px 5px 0 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  line-height: 1.3;
  width: 240px;
  height: 50px;
  position: relative;
  filter: drop-shadow(4px 0px 4px rgba(0, 0, 0, 0.25));
}
body #floating a:before {
  position: absolute;
  content: "";
  top: 50%;
  transform: translateY(-50%);
  left: 10px;
  width: 30px;
  height: 30px;
}
body #floating a.phone {
  color: #fff;
  padding-left: 60px;
}
body #floating a.phone:before {
  background: url(../img/floating-phone.svg) no-repeat;
  background-size: contain;
}
body #floating a.form {
  color: #000;
  padding-left: 55px;
}
body #floating a.form:before {
  background: url(../img/floating-form.svg) no-repeat;
  background-size: contain;
}
@media screen and (max-width: 950px) {
  body #floating {
    right: unset;
    justify-content: center;
    gap: 1.5789473684vw;
    left: 50%;
    transform: translateX(-50%);
  }
  body #floating a {
    filter: drop-shadow(1.0526315789vw 0px 1.0526315789vw rgba(0, 0, 0, 0.25));
    border-radius: 1.3157894737vw 1.3157894737vw 0 0;
    line-height: 1.6;
    width: 48.4210526316vw;
    height: 10.5263157895vw;
    font-size: 3.1578947368vw;
  }
  body #floating a:before {
    left: 6.5789473684vw;
    width: 5.2631578947vw;
    height: 5.2631578947vw;
  }
  body #floating a.phone {
    padding-left: 13.4210526316vw;
  }
  body #floating a.form {
    padding-left: 11.8421052632vw;
  }
  body #floating a.form:before {
    left: 3.9473684211vw;
  }
}
body #modal_bg {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.9);
  transition: 0.3s;
  z-index: 100;
  opacity: 0;
  pointer-events: none;
}
body #modal_bg.on {
  opacity: 1;
  pointer-events: auto;
}
body #modals {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 110;
  width: 100%;
  max-width: 1000px;
  pointer-events: none;
}
body #modals .modal-item {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
  width: 100%;
}
body #modals .modal-item .close {
  position: absolute;
  top: -48px;
  right: -48px;
  background: url(../img/close.svg) no-repeat;
  background-size: contain;
  width: 32px;
  height: 32px;
  cursor: pointer;
}
body #modals .modal-item .flex {
  width: 100%;
  justify-content: space-between;
}
body #modals .modal-item .flex .images {
  position: relative;
}
body #modals .modal-item .flex .images img {
  width: 100%;
}
body #modals .modal-item .flex .images .label {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(255, 255, 255, 0.7);
  width: 86px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1;
  font-size: 12px;
  border-radius: 13px;
}
body #modals .modal-item .flex .txt {
  width: 48%;
}
body #modals .modal-item .flex .txt * {
  color: #fff;
}
body #modals .modal-item .flex .txt .ttl {
  font-weight: 500;
  font-size: 20px;
  line-height: 1.6;
}
body #modals .modal-item .flex .txt .data {
  line-height: 2;
  font-size: 14px;
  margin: 30px 0;
}
body #modals .modal-item {
  opacity: 0;
  pointer-events: none;
}
body #modals .modal-item.on {
  opacity: 1;
  pointer-events: auto;
}
body #modals.on {
  pointer-events: all;
}
@media screen and (max-width: 950px) {
  body #modals {
    max-width: 100%;
    top: 0vw;
    left: 0vw;
    transform: unset;
    transform: unset;
    height: 100vh;
    overflow-y: auto;
  }
  body #modals .modal-item {
    top: 0vw;
    left: 0vw;
    transform: unset;
    width: 100%;
    height: 100vh;
    padding: 16.5789473684vw 2.6315789474vw 0;
  }
  body #modals .modal-item .close {
    top: 7.8947368421vw;
    right: 2.6315789474vw;
    width: 3.1578947368vw;
    height: 3.1578947368vw;
  }
  body #modals .modal-item .flex {
    flex-direction: column;
    gap: 5.2631578947vw;
    padding-bottom: 7.8947368421vw;
  }
  body #modals .modal-item .flex .images {
    position: relative;
  }
  body #modals .modal-item .flex .images img {
    height: 63.1578947368vw;
    object-fit: cover;
  }
  body #modals .modal-item .flex .images .label {
    width: 22.6315789474vw;
    height: 6.8421052632vw;
    font-size: 3.1578947368vw;
    border-radius: 3.4210526316vw;
  }
  body #modals .modal-item .flex .txt {
    width: 100%;
  }
  body #modals .modal-item .flex .txt .ttl {
    font-size: 4.2105263158vw;
  }
  body #modals .modal-item .flex .txt .data {
    font-size: 2.6315789474vw;
    margin: 6.0526315789vw 0 5.2631578947vw;
  }
  body #modals .modal-item .flex .txt .detail {
    max-width: 89.4736842105vw;
    font-size: 3.1578947368vw;
  }
  body #modals .modal-item {
    opacity: 0;
    pointer-events: none;
  }
  body #modals .modal-item.on {
    opacity: 1;
    pointer-events: auto;
  }
}
body footer {
  position: relative;
  padding-bottom: 120px;
  background: #000;
}
@media screen and (max-width: 950px) {
  body footer {
    padding-bottom: 31.5789473684vw;
  }
  body footer .copyright {
    width: 100%;
    line-height: 1;
  }
  body footer .copyright span {
    color: #fff;
    line-height: 1;
    display: inline;
    font-size: 2.6315789474vw;
  }
}
body main {
  position: relative;
}
body main header {
  position: absolute;
  z-index: 100;
  top: 40px;
  padding: 0 30px;
  width: 100%;
}
body main header .logo {
  display: block;
  width: max-content;
}
body main header .logo img {
  height: auto;
  object-fit: contain;
}
@media screen and (max-width: 950px) {
  body main header {
    top: 5.2631578947vw;
    padding: 0 5.2631578947vw;
  }
  body main header .logo img {
    width: 47.3684210526vw;
  }
}
body main .parallax-wrap {
  background: url(../img/mv.webp) no-repeat;
  background-size: cover;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-position: center;
}
@media screen and (max-width: 950px) {
  body main .parallax-wrap {
    background: unset;
    position: relative;
    z-index: 0;
  }
  body main .parallax-wrap:before {
    content: "";
    position: fixed;
    /* 要素自体を固定 */
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: url(../img/mv@sp.webp) no-repeat center center;
    background-size: cover;
    z-index: -1;
    /* コンテンツの背面に */
    pointer-events: none;
  }
}
body main {
  /* アコーディオン */
}
body main .accordion {
  max-width: 100%;
  margin: 0 auto;
  /* 各アイテム */
}
body main .accordion__item {
  cursor: pointer;
  /* アクティブ状態 */
}
body main .accordion__item.is-active > .accordion__title::before {
  transform: rotate(180deg);
}
body main .accordion__item.is-active > .accordion__title .txt-inner {
  font-size: 0;
}
body main .accordion__item.is-active > .accordion__title .txt-inner:after {
  content: "閉じる";
  font-size: 16px;
}
body main .accordion {
  /* タイトル部分 */
}
body main .accordion__title {
  width: 450px;
  height: 60px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1;
  border: 1px solid #CDCDCD;
  background: #fff;
  margin: 0 auto;
  position: relative;
  cursor: pointer;
  /* (+)アイコン */
}
body main .accordion__title::before {
  content: "";
  position: absolute;
  background: url(../img/accordion-toggle.svg) no-repeat;
  background-size: contain;
  right: 27px;
  top: 0;
  bottom: 0;
  margin: auto 0;
  width: 11px;
  height: 6px;
  transition: all 0.3s;
}
body main .accordion {
  /* コンテンツ部分 */
}
body main .accordion__content {
  display: none;
  cursor: pointer;
  position: relative;
}
body main .accordion__content.is-open {
  display: block;
}
@media screen and (max-width: 950px) {
  body main .accordion .accordion__item.is-active > .accordion__title .txt-inner:after {
    font-size: 4.2105263158vw;
  }
  body main .accordion__title {
    width: 78.9473684211vw;
    height: 12.1052631579vw;
    border-radius: 6.0526315789vw;
    font-size: 4.2105263158vw;
  }
  body main .accordion__title::before {
    right: 4.6052631579vw;
    width: 2.8947368421vw;
    height: 1.5789473684vw;
  }
}
body main section {
  position: relative;
}
body main section h1 span,
body main section h2 span,
body main section h3 span,
body main section h4 span,
body main section h5 span {
  display: block;
}
body main section.mv {
  height: 100vh;
}
body main section.mv * {
  color: #fff;
}
body main section.mv .section-inner {
  position: absolute;
  top: 15.9895833333vw;
  left: 5.2604166667vw;
}
body main section.mv .section-inner img {
  width: 29.4270833333vw;
  object-fit: contain;
  margin-bottom: 3.6979166667vw;
}
body main section.mv .section-inner p {
  font-size: 1.0416666667vw;
  line-height: 1.9;
}
@media screen and (max-width: 950px) {
  body main section.mv .section-inner {
    top: 50%;
    transform: translateY(-50%);
    left: 5.2631578947vw;
  }
  body main section.mv .section-inner img {
    width: 74.4736842105vw;
    height: auto;
    object-fit: contain;
    margin-bottom: 5vw;
  }
  body main section.mv .section-inner p {
    font-size: 2.6315789474vw;
  }
}
body main section.about {
  background: url(../img/about.webp) no-repeat;
  background-size: cover;
  height: 39.0625vw;
}
body main section.about * {
  color: #fff;
}
body main section.about .section-inner {
  position: absolute;
  top: 6.7708333333vw;
  left: 23.9583333333vw;
}
body main section.about .section-inner h2 {
  margin-bottom: 4.1666666667vw;
}
body main section.about .section-inner h2 img {
  width: 23.4375vw;
  height: auto;
  object-fit: contain;
}
body main section.about .section-inner h2 + p {
  font-size: 1.5625vw;
  line-height: 1.4;
  margin-bottom: 1.0416666667vw;
}
body main section.about .section-inner h2 + p + p {
  font-size: 0.78125vw;
  line-height: 2;
}
@media screen and (max-width: 950px) {
  body main section.about {
    background: url(../img/about@sp.webp) no-repeat;
    background-size: cover;
    height: 152.6315789474vw;
  }
  body main section.about .section-inner {
    position: absolute;
    top: 33.4210526316vw;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
  }
  body main section.about .section-inner * {
    text-align: center;
  }
  body main section.about .section-inner h2 {
    margin-bottom: 10.5263157895vw;
  }
  body main section.about .section-inner h2 img {
    width: 63.1578947368vw;
    height: auto;
    margin: 0 auto;
  }
  body main section.about .section-inner h2 + p {
    font-size: 6.3157894737vw;
    margin-bottom: 7.8947368421vw;
  }
  body main section.about .section-inner h2 + p + p {
    font-size: 3.9473684211vw;
  }
}
body main section.cta.type_01 {
  background: #fff;
  padding: 60px 0;
}
body main section.cta.type_01 .flex {
  justify-content: center;
  gap: 3px;
}
body main section.cta.type_01 .flex .flex-item {
  width: 400px;
  padding: 40px 20px;
}
body main section.cta.type_01 .flex .flex-item .ttl {
  margin-bottom: 33px;
}
body main section.cta.type_01 .flex .flex-item .ttl span {
  color: #fff;
  display: block;
  line-height: 1;
}
body main section.cta.type_01 .flex .flex-item .ttl span.sub {
  font-size: 12px;
  margin-bottom: 15px;
}
body main section.cta.type_01 .flex .flex-item .ttl span.main {
  font-size: 18px;
  font-weight: 500;
}
body main section.cta.type_01 .flex .flex-item a {
  width: 200px;
  height: 42px;
  border-radius: 21px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 500;
  font-size: 13px;
  line-height: 1;
  position: relative;
}
body main section.cta.type_01 .flex .flex-item a:before {
  position: absolute;
  content: "";
  top: 50%;
  transform: translateY(-50%);
  background: url(../img/type_01-arrow.svg) no-repeat;
  background-size: contain;
  width: 6px;
  height: 10px;
  right: 16px;
}
body main section.cta.type_01 .flex .flex-item.online {
  background: url(../img/type_01-online.webp) no-repeat;
  background-size: cover;
}
body main section.cta.type_01 .flex .flex-item.online a {
  color: #fff;
}
body main section.cta.type_01 .flex .flex-item.online a:before {
  background: url(../img/type_01-arrow-w.svg) no-repeat;
}
body main section.cta.type_01 .flex .flex-item.catalog {
  background: url(../img/type_01-catalog.webp) no-repeat;
  background-size: cover;
}
body main section.cta.type_01 .flex .flex-item.personal {
  background: url(../img/type_01-personal.webp) no-repeat;
  background-size: cover;
}
body main section.cta.type_02 {
  background: url(../img/type_02-bg.webp) center no-repeat;
  background-size: cover;
}
body main section.cta.type_03 {
  background: url(../img/type_03-bg.webp) center no-repeat;
  background-size: cover;
}
body main section.cta.type_04 {
  background: url(../img/type_04-bg.webp) center no-repeat;
  background-size: cover;
}
body main section.cta.type_02, body main section.cta.type_03, body main section.cta.type_04 {
  padding: 75px 0;
}
body main section.cta.type_02 .flex, body main section.cta.type_03 .flex, body main section.cta.type_04 .flex {
  justify-content: center;
  gap: 60px;
}
body main section.cta.type_02 .flex a, body main section.cta.type_03 .flex a, body main section.cta.type_04 .flex a {
  width: 360px;
  height: 80px;
  border-radius: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 18px;
  position: relative;
}
body main section.cta.type_02 .flex a:before, body main section.cta.type_03 .flex a:before, body main section.cta.type_04 .flex a:before {
  position: absolute;
  content: "";
  top: 50%;
  transform: translateY(-50%);
  background: url(../img/type_02-arrow.svg) no-repeat;
  background-size: contain;
  width: 6px;
  height: 11px;
  right: 30px;
}
body main section.cta.type_02 .flex a.bg-736B5C, body main section.cta.type_03 .flex a.bg-736B5C, body main section.cta.type_04 .flex a.bg-736B5C {
  color: #fff;
}
body main section.cta.type_02 .flex a.bg-736B5C:before, body main section.cta.type_03 .flex a.bg-736B5C:before, body main section.cta.type_04 .flex a.bg-736B5C:before {
  background: url(../img/type_02-arrow-w.svg) no-repeat;
  background-size: contain;
}
@media screen and (min-width: 951px) and (max-width: 1350px) {
  body main section.cta.type_01 .flex {
    justify-content: center;
    gap: 3px;
  }
  body main section.cta.type_01 .flex .flex-item {
    width: 330px;
    padding: 40px 20px;
  }
  body main section.cta.type_01 .flex .flex-item .ttl {
    margin-bottom: 33px;
  }
  body main section.cta.type_01 .flex .flex-item .ttl span {
    color: #fff;
    display: block;
    line-height: 1;
  }
  body main section.cta.type_01 .flex .flex-item .ttl span.sub {
    font-size: 12px;
    margin-bottom: 15px;
  }
  body main section.cta.type_01 .flex .flex-item .ttl span.main {
    font-size: 18px;
    font-weight: 500;
  }
  body main section.cta.type_01 .flex .flex-item a {
    width: 200px;
    height: 42px;
    border-radius: 21px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-weight: 500;
    font-size: 13px;
    line-height: 1;
    position: relative;
  }
  body main section.cta.type_01 .flex .flex-item a:before {
    position: absolute;
    content: "";
    top: 50%;
    transform: translateY(-50%);
    background: url(../img/type_01-arrow.svg) no-repeat;
    background-size: contain;
    width: 6px;
    height: 10px;
    right: 16px;
  }
  body main section.cta.type_01 .flex .flex-item.online {
    background: url(../img/type_01-online.webp) no-repeat;
    background-size: cover;
  }
  body main section.cta.type_01 .flex .flex-item.online a {
    color: #fff;
  }
  body main section.cta.type_01 .flex .flex-item.online a:before {
    background: url(../img/type_01-arrow-w.svg) no-repeat;
  }
  body main section.cta.type_01 .flex .flex-item.catalog {
    background: url(../img/type_01-catalog.webp) no-repeat;
    background-size: cover;
  }
  body main section.cta.type_01 .flex .flex-item.personal {
    background: url(../img/type_01-personal.webp) no-repeat;
    background-size: cover;
  }
  body main section.cta.type_02 .flex, body main section.cta.type_03 .flex, body main section.cta.type_04 .flex {
    gap: 30px;
  }
  body main section.cta.type_02 .flex a, body main section.cta.type_03 .flex a, body main section.cta.type_04 .flex a {
    width: 300px;
  }
}
@media screen and (max-width: 950px) {
  body main section.cta.type_01 {
    padding: 0;
  }
  body main section.cta.type_01 .flex {
    justify-content: center;
    flex-direction: column;
    gap: 0;
  }
  body main section.cta.type_01 .flex .flex-item {
    width: 100%;
    padding: 6.5789473684vw 5.2631578947vw;
  }
  body main section.cta.type_01 .flex .flex-item .ttl {
    margin-bottom: 5.2631578947vw;
  }
  body main section.cta.type_01 .flex .flex-item .ttl span.sub {
    font-size: 1.8421052632vw;
    margin-bottom: 2.1052631579vw;
  }
  body main section.cta.type_01 .flex .flex-item .ttl span.main {
    font-size: 3.6842105263vw;
  }
  body main section.cta.type_01 .flex .flex-item a {
    width: 50vw;
    height: 10.5263157895vw;
    font-size: 3.4210526316vw;
    border-radius: 5.2631578947vw;
  }
  body main section.cta.type_01 .flex .flex-item a:before {
    width: 1.5789473684vw;
    height: 2.6315789474vw;
    right: 4.2105263158vw;
  }
  body main section.cta.type_01 .flex .flex-item.online {
    background: url(../img/type_01-online@sp.webp) no-repeat;
    background-size: cover;
  }
  body main section.cta.type_01 .flex .flex-item.catalog {
    background: url(../img/type_01-catalog@sp.webp) no-repeat;
    background-size: cover;
  }
  body main section.cta.type_01 .flex .flex-item.personal {
    background: url(../img/type_01-personal@sp.webp) no-repeat;
    background-size: cover;
  }
  body main section.cta.type_02 {
    background: url(../img/type_02-bg@sp.webp) center no-repeat;
    background-size: cover;
  }
  body main section.cta.type_03 {
    background: url(../img/type_03-bg@sp.webp) center no-repeat;
    background-size: cover;
  }
  body main section.cta.type_04 {
    background: url(../img/type_04-bg@sp.webp) center no-repeat;
    background-size: cover;
  }
  body main section.cta.type_02, body main section.cta.type_03, body main section.cta.type_04 {
    padding: 7.8947368421vw 0;
  }
  body main section.cta.type_02 .flex, body main section.cta.type_03 .flex, body main section.cta.type_04 .flex {
    justify-content: center;
    gap: 5.2631578947vw;
  }
  body main section.cta.type_02 .flex a, body main section.cta.type_03 .flex a, body main section.cta.type_04 .flex a {
    width: 78.9473684211vw;
    height: 12.1052631579vw;
    border-radius: 6.0526315789vw;
    font-size: 4.2105263158vw;
  }
  body main section.cta.type_02 .flex a:before, body main section.cta.type_03 .flex a:before, body main section.cta.type_04 .flex a:before {
    width: 1.5789473684vw;
    height: 2.8947368421vw;
    right: 5.2631578947vw;
  }
}
body main section.concept * {
  color: #fff;
}
body main section.concept .section-inner {
  padding: 220px 0;
}
body main section.concept .section-inner h2 {
  margin-bottom: 60px;
}
body main section.concept .section-inner h2 span.en {
  line-height: 1;
  font-size: 20px;
  margin-bottom: 10px;
}
body main section.concept .section-inner h2 span.ja {
  font-size: 32px;
}
body main section.concept .section-inner p {
  line-height: 2.2;
}
@media screen and (max-width: 950px) {
  body main section.concept .section-inner {
    padding: 35.5263157895vw 0;
  }
  body main section.concept .section-inner h2 {
    margin-bottom: 10.5263157895vw;
  }
  body main section.concept .section-inner h2 span.en {
    font-size: 3.6842105263vw;
    margin-bottom: 2.6315789474vw;
  }
  body main section.concept .section-inner h2 span.ja {
    font-size: 4.2105263158vw;
  }
  body main section.concept .section-inner p {
    font-size: 3.1578947368vw;
  }
}
body main section.works {
  background: #2C2C2C;
  padding: 150px 0;
}
body main section.works * {
  color: #fff;
}
body main section.works h2 {
  margin-bottom: 110px;
}
body main section.works h2 span.en {
  line-height: 1;
  font-size: 80px;
  margin-bottom: 20px;
}
body main section.works h2 span.ja {
  font-size: 32px;
}
body main section.works .contents .content {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}
body main section.works .contents .content .images {
  position: relative;
}
body main section.works .contents .content .images:before {
  position: absolute;
  content: "";
  top: 50%;
  transform: translateY(-50%);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
  width: 100%;
  height: 260px;
  left: 0;
  bottom: 0;
  top: unset;
  transform: unset;
}
body main section.works .contents .content .images img {
  width: 100%;
}
body main section.works .contents .content .images h3 {
  position: absolute;
  bottom: 50px;
  left: 50px;
  font-size: 32px;
}
body main section.works .contents .content .images .circle {
  padding-top: 7px;
  top: -60px;
  right: -30px;
  position: absolute;
  border: #fff 1px solid;
  background: rgba(44, 44, 44, 0.5);
  width: 200px;
  height: 200px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 9px;
}
body main section.works .contents .content .images .circle span {
  display: block;
  color: #fff;
  text-align: center;
  line-height: 1;
}
body main section.works .contents .content .images .circle span:nth-of-type(1) {
  font-size: 29.09px;
}
body main section.works .contents .content .images .circle span:nth-of-type(2) {
  font-size: 54.55px;
}
body main section.works .contents .content .detail {
  padding: 60px 0;
  align-items: center;
}
body main section.works .contents .content .detail > * {
  width: 50%;
}
body main section.works .contents .content .detail .txt {
  padding-left: 100px;
  padding-right: 60px;
}
body main section.works .contents .content .detail .txt .spec {
  font-size: 14px;
  line-height: 2;
  margin-bottom: 40px;
}
body main section.works .contents .content .detail + .flex {
  justify-content: space-between;
  gap: 5%;
}
body main section.works .contents .content .detail + .flex img {
  width: 47.5%;
  height: auto;
}
body main section.works .contents .content .link {
  margin: 60px auto 0;
  border: 1px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  cursor: pointer;
  width: 450px;
  height: 60px;
  border-radius: 30px;
  color: #fff;
  position: relative;
}
body main section.works .contents .content .link::before {
  position: absolute;
  content: "";
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 10px;
  background: url(../img/modal-open-arrow.svg) no-repeat;
  background-size: contain;
  right: 30px;
}
body main section.works .contents .content + .content {
  margin-top: 110px;
}
@media screen and (min-width: 951px) and (max-width: 1350px) {
  body main section.works .contents .content {
    max-width: 1000px;
  }
}
@media screen and (max-width: 950px) {
  body main section.works {
    padding: 13.1578947368vw 0;
  }
  body main section.works h2 {
    margin-bottom: 13.1578947368vw;
  }
  body main section.works h2 span.en {
    font-size: 10.5263157895vw;
    margin-bottom: 5.2631578947vw;
  }
  body main section.works h2 span.ja {
    font-size: 4.2105263158vw;
  }
  body main section.works .contents .content {
    max-width: calc(100% - 5.2631578947vw);
  }
  body main section.works .contents .content .images:before {
    height: 26.3157894737vw;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
    opacity: 0.7;
  }
  body main section.works .contents .content .images h3 {
    bottom: 3.9473684211vw;
    left: 2.6315789474vw;
    font-size: 4.2105263158vw;
  }
  body main section.works .contents .content .images .circle {
    padding-top: 0vw;
    top: -7.8947368421vw;
    right: -1.3157894737vw;
    width: 26.3157894737vw;
    height: 26.3157894737vw;
    gap: 1.2684210526vw;
  }
  body main section.works .contents .content .images .circle span:nth-of-type(1) {
    font-size: 3.6842105263vw;
  }
  body main section.works .contents .content .images .circle span:nth-of-type(2) {
    font-size: 6.8421052632vw;
  }
  body main section.works .contents .content .detail {
    padding: 5.2631578947vw 0 2.6315789474vw;
  }
  body main section.works .contents .content .detail > * {
    width: 100%;
  }
  body main section.works .contents .content .detail .txt {
    padding-left: 2.6315789474vw;
    padding-right: 2.6315789474vw;
    padding-bottom: 5.2631578947vw;
  }
  body main section.works .contents .content .detail .txt .spec {
    font-size: 2.6315789474vw;
    line-height: 1.8;
    margin-bottom: 5.2631578947vw;
  }
  body main section.works .contents .content .detail .txt .about {
    font-size: 3.1578947368vw;
  }
  body main section.works .contents .content .detail + .flex {
    gap: 2.6315789474vw;
  }
  body main section.works .contents .content .detail + .flex img {
    width: 46.0526315789vw;
    height: 71.0526315789vw;
    object-fit: cover;
  }
  body main section.works .contents .content .link {
    margin: 5.2631578947vw auto 0;
    width: 78.9473684211vw;
    height: 13.1578947368vw;
    font-size: 3.6842105263vw;
    border-radius: 6.5789473684vw;
  }
  body main section.works .contents .content .link::before {
    width: 1.3157894737vw;
    height: 2.6315789474vw;
    right: 5.2631578947vw;
  }
  body main section.works .contents .content + .content {
    margin-top: 18.4210526316vw;
  }
}
body main section.pickup {
  background: #2C2C2C;
  padding: 150px 0;
}
body main section.pickup * {
  color: #fff;
}
body main section.pickup .section-inner h2 {
  margin-bottom: 80px;
}
body main section.pickup .section-inner h2 span.en {
  line-height: 1;
  font-size: 50px;
}
body main section.pickup .section-inner .flex {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  justify-content: space-between;
  row-gap: 100px;
}
body main section.pickup .section-inner .flex .flex-item {
  width: 46.6666666667%;
}
body main section.pickup .section-inner .flex .flex-item img {
  width: 100%;
  margin-bottom: 20px;
}
body main section.pickup .section-inner .flex .flex-item h3 {
  margin-bottom: 20px;
}
body main section.pickup .section-inner .flex .flex-item h3 span {
  display: block;
}
body main section.pickup .section-inner .flex .flex-item h3 .en {
  font-size: 14px;
  margin-bottom: 10px;
}
body main section.pickup .section-inner .flex .flex-item h3 .ja {
  font-size: 18px;
}
body main section.pickup .section-inner .flex .flex-item .modal-open {
  margin: 60px auto 0;
  border: 1px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  cursor: pointer;
  width: 450px;
  height: 60px;
  border-radius: 30px;
  color: #fff;
  position: relative;
  transition: 0.3s;
}
body main section.pickup .section-inner .flex .flex-item .modal-open::before {
  position: absolute;
  content: "";
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 10px;
  background: url(../img/modal-open-arrow.svg) no-repeat;
  background-size: contain;
  right: 25px;
}
body main section.pickup .section-inner .flex .flex-item .modal-open:hover {
  opacity: 0.7;
}
@media screen and (min-width: 951px) and (max-width: 1350px) {
  body main section.pickup .section-inner .flex {
    max-width: 1000px;
  }
}
@media screen and (max-width: 950px) {
  body main section.pickup {
    padding: 13.1578947368vw 0;
  }
  body main section.pickup .section-inner h2 {
    margin-bottom: 7.8947368421vw;
  }
  body main section.pickup .section-inner h2 span.en {
    font-size: 6.3157894737vw;
  }
  body main section.pickup .section-inner .flex {
    max-width: 100%;
    padding: 0 2.6315789474vw;
    row-gap: 7.8947368421vw;
  }
  body main section.pickup .section-inner .flex .flex-item {
    width: 46.0526315789vw;
  }
  body main section.pickup .section-inner .flex .flex-item img {
    margin-bottom: 2.6315789474vw;
  }
  body main section.pickup .section-inner .flex .flex-item h3 {
    margin-bottom: 1.3157894737vw;
  }
  body main section.pickup .section-inner .flex .flex-item h3 .en {
    font-size: 3.1578947368vw;
    margin-bottom: 1.3157894737vw;
  }
  body main section.pickup .section-inner .flex .flex-item h3 .ja {
    font-size: 3.1578947368vw;
  }
  body main section.pickup .section-inner .flex .flex-item .modal-open {
    margin: 2.6315789474vw auto 0;
    width: 100%;
    height: 7.8947368421vw;
    font-size: 3.1578947368vw;
  }
  body main section.pickup .section-inner .flex .flex-item .modal-open::before {
    width: 1.3157894737vw;
    height: 2.6315789474vw;
    right: 2.6315789474vw;
  }
}
body main section.voice {
  background: #fff;
}
body main section.voice .section-inner {
  padding: 150px 0;
}
body main section.voice .section-inner h2 {
  margin-bottom: 20px;
}
body main section.voice .section-inner h2 .en {
  font-size: 80px;
  line-height: 1;
}
body main section.voice .section-inner h2 + p {
  font-weight: 500;
  font-size: 32px;
}
body main section.voice .section-inner .slider {
  margin: 50px auto 0;
  max-width: 1000px;
  width: 100%;
}
body main section.voice .section-inner .slider .slider-item .name {
  text-align: center;
  font-size: 14px;
  line-height: 1;
  margin-bottom: 30px;
  opacity: 0.6;
}
body main section.voice .section-inner .slider .slider-item img {
  width: 100%;
  height: 666px;
  object-fit: cover;
}
body main section.voice .section-inner .slider .slider-item .txt {
  width: 80%;
  margin: 30px auto 0;
}
body main section.voice .section-inner .slider .slider-item .txt .question {
  font-weight: 500;
  font-size: 20px;
}
body main section.voice .section-inner .slider .slider-item .txt .question + p {
  margin-top: 20px;
}
body main section.voice .section-inner .slider .slick-dots {
  position: static;
  bottom: 0;
  margin-top: 85px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
body main section.voice .section-inner .slider .slick-dots li {
  width: 8px;
  height: 8px;
  margin-left: 0;
}
body main section.voice .section-inner .slider .slick-dots li:only-child {
  display: none;
}
body main section.voice .section-inner .slider .slick-dots li:not(:last-child) {
  margin-right: 0;
}
body main section.voice .section-inner .slider .slick-dots li:last-child {
  margin-right: 0;
}
body main section.voice .section-inner .slider .slick-dots li.slick-active button:before {
  background: #000;
}
body main section.voice .section-inner .slider .slick-dots li button {
  margin: 0;
  padding: 0;
  width: 8px;
  height: 8px;
}
body main section.voice .section-inner .slider .slick-dots li button:before {
  height: 8px;
  width: 8px;
  margin: 0;
  background: #A7A7A7;
  opacity: 1;
  border-radius: 50%;
  content: "";
}
body main section.voice .section-inner .slider .slick-prev,
body main section.voice .section-inner .slider .slick-next {
  font-size: 0;
  line-height: 0;
  position: absolute;
  z-index: 10;
  display: block;
  padding: 0;
  cursor: pointer;
  color: transparent;
  border: none;
  outline: none;
  width: 32px;
  height: 56px;
}
body main section.voice .section-inner .slider .slick-prev:before,
body main section.voice .section-inner .slider .slick-next:before {
  font-size: 0;
  opacity: 1;
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 32px;
  height: 56px;
  z-index: 100;
}
body main section.voice .section-inner .slider .slick-next {
  right: -100px;
}
body main section.voice .section-inner .slider .slick-next:before {
  background: url(../img/arrow_right.svg) no-repeat;
  background-size: contain;
}
body main section.voice .section-inner .slider .slick-prev {
  left: -100px;
}
body main section.voice .section-inner .slider .slick-prev:before {
  background: url(../img/arrow_left.svg) no-repeat;
  background-size: contain;
}
@media screen and (min-width: 951px) and (max-width: 1350px) {
  body main section.voice .section-inner .slider {
    max-width: 800px;
  }
  body main section.voice .section-inner .slider .slider-item img {
    height: auto;
  }
}
@media screen and (max-width: 950px) {
  body main section.voice .section-inner {
    padding: 13.1578947368vw 2.6315789474vw;
  }
  body main section.voice .section-inner h2 {
    margin-bottom: 5.2631578947vw;
  }
  body main section.voice .section-inner h2 .en {
    font-size: 10.5263157895vw;
    margin-bottom: 5.2631578947vw;
  }
  body main section.voice .section-inner h2 + p {
    font-size: 4.2105263158vw;
  }
  body main section.voice .section-inner .slider {
    margin: 2.6315789474vw auto 0;
    max-width: 100%;
  }
  body main section.voice .section-inner .slider .slider-item .name {
    font-size: 3.1578947368vw;
    margin-bottom: 5.2631578947vw;
  }
  body main section.voice .section-inner .slider .slider-item img {
    width: 100%;
    height: 63.1578947368vw;
  }
  body main section.voice .section-inner .slider .slider-item .txt {
    width: 73.6842105263vw;
    margin: 3.9473684211vw auto 0;
  }
  body main section.voice .section-inner .slider .slider-item .txt .question {
    font-size: 3.6842105263vw;
  }
  body main section.voice .section-inner .slider .slider-item .txt .question + p {
    font-size: 3.1578947368vw;
    margin-top: 2.6315789474vw;
  }
  body main section.voice .section-inner .slider .slick-dots {
    margin-top: 18.9473684211vw;
    gap: 1.0526315789vw;
  }
  body main section.voice .section-inner .slider .slick-dots li {
    width: 2.1052631579vw;
    height: 2.1052631579vw;
  }
  body main section.voice .section-inner .slider .slick-dots li button {
    width: 2.1052631579vw;
    height: 2.1052631579vw;
  }
  body main section.voice .section-inner .slider .slick-dots li button:before {
    height: 2.1052631579vw;
    width: 2.1052631579vw;
  }
  body main section.voice .section-inner .slider .slick-prev,
  body main section.voice .section-inner .slider .slick-next {
    width: 3.9473684211vw;
    height: 6.8421052632vw;
    top: 88.1578947368vw;
  }
  body main section.voice .section-inner .slider .slick-prev:before,
  body main section.voice .section-inner .slider .slick-next:before {
    width: 3.9473684211vw;
    height: 6.8421052632vw;
  }
  body main section.voice .section-inner .slider .slick-next {
    right: 0vw;
  }
  body main section.voice .section-inner .slider .slick-prev {
    left: 0vw;
  }
}
body main section.merit {
  background: #fff;
}
body main section.merit .section-inner {
  padding: 150px 0;
}
body main section.merit .section-inner h2 {
  margin-bottom: 60px;
}
body main section.merit .section-inner h2 .en {
  font-size: 80px;
  line-height: 1;
}
body main section.merit .section-inner h2 .ja {
  margin-top: 20px;
  font-size: 32px;
  font-weight: 500;
}
body main section.merit .section-inner .accordion__title + .accordion__content {
  margin-top: 80px;
}
body main section.merit .section-inner .accordion__content .flex {
  justify-content: center;
  gap: 60px;
}
body main section.merit .section-inner .accordion__content .flex .flex-item {
  width: 100%;
  max-width: 360px;
}
body main section.merit .section-inner .accordion__content .flex .flex-item img {
  width: 100%;
}
body main section.merit .section-inner .accordion__content .flex .flex-item h3 {
  margin: 30px 0 20px;
  font-size: 18px;
  font-weight: 500;
}
@media screen and (min-width: 951px) and (max-width: 1350px) {
  body main section.merit .section-inner .accordion__content .flex {
    gap: 30px;
  }
  body main section.merit .section-inner .accordion__content .flex .flex-item {
    max-width: 300px;
  }
}
@media screen and (max-width: 950px) {
  body main section.merit .section-inner {
    padding: 13.1578947368vw 0;
  }
  body main section.merit .section-inner h2 {
    margin-bottom: 5.2631578947vw;
  }
  body main section.merit .section-inner h2 .en {
    font-size: 10.5263157895vw;
  }
  body main section.merit .section-inner h2 .ja {
    margin-top: 5.2631578947vw;
    font-size: 4.2105263158vw;
  }
  body main section.merit .section-inner .accordion__title + .accordion__content {
    margin-top: 7.8947368421vw;
  }
  body main section.merit .section-inner .accordion__content .flex {
    flex-direction: column;
    gap: 9.2105263158vw;
    padding: 0 2.6315789474vw;
  }
  body main section.merit .section-inner .accordion__content .flex .flex-item {
    width: 100%;
    max-width: 100%;
    padding: 0 2.6315789474vw;
  }
  body main section.merit .section-inner .accordion__content .flex .flex-item h3 {
    margin: 5.2631578947vw 0 2.6315789474vw;
    font-size: 4.2105263158vw;
  }
  body main section.merit .section-inner .accordion__content .flex .flex-item p {
    font-size: 3.1578947368vw;
  }
}
body main section.flow .section-inner {
  padding: 150px 0 82px;
}
body main section.flow .section-inner h2 {
  margin-bottom: 60px;
}
body main section.flow .section-inner h2 .en {
  font-size: 80px;
  line-height: 1;
}
body main section.flow .section-inner h2 .ja {
  margin-top: 20px;
  font-size: 32px;
  font-weight: 500;
}
body main section.flow .section-inner .accordion__title + .accordion__content {
  margin-top: 50px;
}
body main section.flow .section-inner .accordion__content ul {
  max-width: 720px;
  width: 100%;
  margin: 0 auto;
}
body main section.flow .section-inner .accordion__content ul li {
  width: 100%;
  gap: 30px;
  align-items: center;
  position: relative;
}
body main section.flow .section-inner .accordion__content ul li img {
  position: relative;
  z-index: 10;
}
body main section.flow .section-inner .accordion__content ul li .txt .step {
  font-size: 14px;
  line-height: 1;
  display: block;
  margin-bottom: 15px;
}
body main section.flow .section-inner .accordion__content ul li .txt .detail {
  display: flex;
  align-items: center;
  align-items: flex-end;
  gap: 30px;
}
body main section.flow .section-inner .accordion__content ul li .txt .detail .main {
  line-height: 1;
  font-weight: 500;
  font-size: 22px;
}
body main section.flow .section-inner .accordion__content ul li .txt .detail .main span {
  line-height: 1;
  font-weight: 500;
  font-size: 16px;
}
body main section.flow .section-inner .accordion__content ul li .txt .detail .sub {
  line-height: 1;
}
body main section.flow .section-inner .accordion__content ul li + li {
  margin-top: 30px;
}
body main section.flow .section-inner .accordion__content ul li:before {
  background: #fff;
  width: 2px;
  height: 100%;
  position: absolute;
  content: "";
  left: 59px;
  top: 30px;
}
body main section.flow .section-inner .accordion__content ul li:last-child:before {
  display: none;
}
@media screen and (max-width: 950px) {
  body main section.flow .section-inner {
    padding: 13.1578947368vw 5.2631578947vw;
  }
  body main section.flow .section-inner h2 {
    margin-bottom: 5.2631578947vw;
  }
  body main section.flow .section-inner h2 .en {
    font-size: 10.5263157895vw;
  }
  body main section.flow .section-inner h2 .ja {
    margin-top: 5.2631578947vw;
    font-size: 4.2105263158vw;
  }
  body main section.flow .section-inner .accordion__title + .accordion__content {
    margin-top: 7.8947368421vw;
  }
  body main section.flow .section-inner .accordion__content ul {
    max-width: 100%;
  }
  body main section.flow .section-inner .accordion__content ul li {
    gap: 5.2631578947vw;
  }
  body main section.flow .section-inner .accordion__content ul li img {
    width: 23.6842105263vw;
    height: 23.6842105263vw;
    object-fit: contain;
  }
  body main section.flow .section-inner .accordion__content ul li .txt .step {
    font-size: 2.6315789474vw;
    margin-bottom: 2.6315789474vw;
  }
  body main section.flow .section-inner .accordion__content ul li .txt .detail {
    gap: 2.6315789474vw;
    align-items: flex-start;
    flex-direction: column;
  }
  body main section.flow .section-inner .accordion__content ul li .txt .detail * {
    text-align: left;
  }
  body main section.flow .section-inner .accordion__content ul li .txt .detail .main {
    font-size: 4.2105263158vw;
  }
  body main section.flow .section-inner .accordion__content ul li .txt .detail .main span {
    font-size: 3.1578947368vw;
  }
  body main section.flow .section-inner .accordion__content ul li .txt .detail .sub {
    font-size: 3.1578947368vw;
    line-height: 1.8;
  }
  body main section.flow .section-inner .accordion__content ul li + li {
    margin-top: 2.6315789474vw;
  }
  body main section.flow .section-inner .accordion__content ul li:before {
    left: 11.5789473684vw;
    top: 11.8421052632vw;
  }
}
body main section.area {
  background: #fff;
}
body main section.area .section-inner {
  padding: 150px 0;
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
}
body main section.area .section-inner h2 {
  margin-bottom: 60px;
}
body main section.area .section-inner h2 .en {
  font-size: 80px;
  line-height: 1;
}
body main section.area .section-inner h2 .ja {
  margin-top: 20px;
  font-size: 32px;
  font-weight: 500;
}
body main section.area .section-inner .accordion .accordion__title {
  width: 100%;
  border-radius: unset;
  text-align: left;
  justify-content: flex-start;
  font-size: 20px;
  height: 60px;
  border-left: unset;
  border-right: unset;
  border-bottom: unset;
  font-weight: 500;
  border-top: 1px dashed #CDCDCD;
}
body main section.area .section-inner .accordion .accordion__title:before {
  right: 20px;
}
body main section.area .section-inner .accordion .accordion__content .flex {
  padding: 40px 0;
  align-items: center;
  justify-content: space-between;
  border-top: 1px dashed #CDCDCD;
  border-bottom: 1px solid #CDCDCD;
  margin-bottom: -1px;
}
body main section.area .section-inner .accordion .accordion__content .flex .txt {
  width: 45%;
}
body main section.area .section-inner .accordion .accordion__content .flex img {
  width: 50%;
  height: auto;
}
body main section.area .section-inner .accordion:first-of-type .accordion__title {
  border-top: 1px solid #CDCDCD;
}
body main section.area .section-inner .accordion:last-of-type {
  border-bottom: 1px dashed #CDCDCD;
}
body main section.area .section-inner .accordion.is-active + .accordion .accordion__title {
  border-top: 1px solid #CDCDCD;
}
body main section.area + .cta.type_01 {
  padding: 0;
}
@media screen and (max-width: 950px) {
  body main section.area .section-inner {
    padding: 13.1578947368vw 2.6315789474vw;
    max-width: 100%;
  }
  body main section.area .section-inner h2 {
    margin-bottom: 7.8947368421vw;
  }
  body main section.area .section-inner h2 .en {
    font-size: 10.5263157895vw;
  }
  body main section.area .section-inner h2 .ja {
    margin-top: 5.2631578947vw;
    font-size: 4.2105263158vw;
  }
  body main section.area .section-inner .accordion .accordion__title {
    font-size: 4.7368421053vw;
    height: 15.7894736842vw;
    text-align: center;
    justify-content: center;
  }
  body main section.area .section-inner .accordion .accordion__title:before {
    right: 5.2631578947vw;
  }
  body main section.area .section-inner .accordion .accordion__content .flex {
    flex-direction: column-reverse;
    padding: 2.6315789474vw 0 7.8947368421vw;
    gap: 5.2631578947vw;
  }
  body main section.area .section-inner .accordion .accordion__content .flex .txt {
    width: 100%;
    padding: 0 2.6315789474vw;
    font-size: 3.1578947368vw;
  }
  body main section.area .section-inner .accordion .accordion__content .flex img {
    width: 100%;
  }
}
body main section.q_and_a {
  background: #fff;
  padding: 150px 0 0;
}
body main section.q_and_a h2 {
  margin-bottom: 60px;
}
body main section.q_and_a h2 .en {
  font-size: 80px;
  line-height: 1;
}
body main section.q_and_a h2 .ja {
  margin-top: 20px;
  font-size: 32px;
}
body main section.q_and_a > .accordion .accordion__title + .accordion__content {
  margin-top: 60px;
}
body main section.q_and_a .contents {
  padding: 80px 0 90px;
}
body main section.q_and_a .contents .accordion {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
}
body main section.q_and_a .contents .accordion .accordion__title {
  width: 100%;
  height: auto;
  border-radius: unset;
  display: flex;
  justify-content: flex-start;
  padding-left: 63px;
  min-height: 43px;
  line-height: 1.8;
  border: unset;
  background: unset;
  font-weight: 500;
  font-size: 18px;
}
body main section.q_and_a .contents .accordion .accordion__title:after {
  line-height: 1;
  content: "Q.";
  left: 0;
  position: absolute;
  font-size: 24px;
}
body main section.q_and_a .contents .accordion .accordion__content {
  margin-top: 30px;
  padding-left: 66px;
  font-size: 12px;
}
body main section.q_and_a .contents .accordion .accordion__content p {
  width: 100%;
  max-width: 850px;
}
body main section.q_and_a .contents .accordion .accordion__content a {
  text-decoration: underline;
}
body main section.q_and_a .contents .accordion .accordion__content:before {
  line-height: 1;
  content: "A.";
  left: 3px;
  position: absolute;
  font-size: 24px;
  font-weight: 500;
}
body main section.q_and_a .contents .accordion + .accordion .accordion__title {
  padding-top: 40px;
}
@media screen and (max-width: 950px) {
  body main section.q_and_a {
    padding: 13.1578947368vw 0;
  }
  body main section.q_and_a h2 {
    margin-bottom: 5.2631578947vw;
  }
  body main section.q_and_a h2 .en {
    font-size: 10.5263157895vw;
    line-height: 1;
  }
  body main section.q_and_a h2 .ja {
    font-size: 4.2105263158vw;
    margin-top: 5.2631578947vw;
  }
  body main section.q_and_a > .accordion .accordion__title + .accordion__content {
    margin-top: 7.8947368421vw;
  }
  body main section.q_and_a .contents {
    padding: 7.8947368421vw 5.2631578947vw;
  }
  body main section.q_and_a .contents .accordion {
    max-width: 100%;
  }
  body main section.q_and_a .contents .accordion .accordion__title {
    padding-left: 0vw;
    min-height: 6.5789473684vw;
    font-size: 3.6842105263vw;
    justify-content: flex-start;
    text-align: left;
    max-width: 78.9473684211vw;
  }
  body main section.q_and_a .contents .accordion .accordion__title:before {
    right: -4.7368421053vw;
    bottom: unset;
    top: 2.6315789474vw;
  }
  body main section.q_and_a .contents .accordion .accordion__title:after {
    font-size: 3.6842105263vw;
    left: -5.2631578947vw;
    top: 1.3157894737vw;
  }
  body main section.q_and_a .contents .accordion .accordion__content {
    margin-top: 2.6315789474vw;
    padding-left: 6.0526315789vw;
    font-size: 3.1578947368vw;
  }
  body main section.q_and_a .contents .accordion .accordion__content p {
    max-width: 83.4210526316vw;
  }
  body main section.q_and_a .contents .accordion .accordion__content:before {
    left: 0.7894736842vw;
    font-size: 3.6842105263vw;
  }
  body main section.q_and_a .contents .accordion + .accordion .accordion__title {
    padding-top: 5.2631578947vw;
  }
  body main section.q_and_a .contents .accordion + .accordion .accordion__title:before {
    top: 7.8947368421vw;
  }
  body main section.q_and_a .contents .accordion + .accordion .accordion__title:after {
    top: 6.5789473684vw;
  }
}
body main section.form {
  background: #fff;
}
body main section.form .section-inner {
  padding: 150px 0 60px;
}
body main section.form .section-inner h1,
body main section.form .section-inner h2 {
  margin-bottom: 60px;
}
body main section.form .section-inner h1 .en,
body main section.form .section-inner h2 .en {
  font-size: 80px;
  line-height: 1;
}
body main section.form .section-inner h1 .ja,
body main section.form .section-inner h2 .ja {
  margin-top: 20px;
  font-size: 32px;
}
body main section.form .section-inner .form-content .form-status {
  max-width: 1000px;
  margin: 0 auto 40px;
  width: 100%;
}
body main section.form .section-inner .form-content .form-status .flex-item {
  width: 33.33%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  height: 60px;
  font-weight: 500;
  line-height: 1;
  font-size: 14px;
  background: #A69F92;
}
body main section.form .section-inner .form-content .form-status .flex-item.active {
  background: #2C2C2C;
}
body main section.form .section-inner .form-content .form-status .flex-item:not(.active) + .flex-item {
  background-image: url(../img/form-status.svg);
  background-size: 1px 24px;
  background-repeat: no-repeat;
  background-position: left center;
}
body main section.form .section-inner .form-content .branch-item {
  display: none !important;
}
body main section.form .section-inner .form-content .branch-item.is-show {
  display: flex !important;
}
body main section.form .section-inner .form-content .input-item {
  position: relative;
  height: max-content;
  flex-wrap: wrap;
}
body main section.form .section-inner .form-content .input-item * {
  font-size: 14px;
  cursor: pointer;
}
body main section.form .section-inner .form-content .input-item.text {
  width: 350px;
}
body main section.form .section-inner .form-content .input-item.text.error:after {
  content: "未入力です";
  display: block;
  width: 100%;
  color: #FF0000;
  font-size: 14px;
  font-weight: 500;
  margin-top: 5px;
}
body main section.form .section-inner .form-content .input-item.select.error:after, body main section.form .section-inner .form-content .input-item.checkbox.error:after, body main section.form .section-inner .form-content .input-item.radio.error:after {
  content: "選択してください";
  display: block;
  width: 100%;
  color: #FF0000;
  font-size: 14px;
  font-weight: 500;
  margin-top: 5px;
}
body main section.form .section-inner .form-content .input-item.checkbox {
  display: flex;
}
body main section.form .section-inner .form-content .input-item.checkbox label input {
  display: none;
}
body main section.form .section-inner .form-content .input-item.checkbox label span {
  position: relative;
  padding-left: 18px;
}
body main section.form .section-inner .form-content .input-item.checkbox label span::before {
  content: "";
  display: inline-block;
  width: 13px;
  height: 13px;
  border: 1px solid #707070;
  border-radius: 2px;
  vertical-align: middle;
  transition: 0.2s;
  background: #fff;
  left: 0;
  top: 50%;
  position: absolute;
  transform: translateY(-50%);
}
body main section.form .section-inner .form-content .input-item.checkbox label span::after {
  background: url(../img/check.svg) no-repeat;
  background-size: contain;
  content: "";
  position: absolute;
  width: 10px;
  height: 8px;
  top: 6px;
  left: 2px;
  opacity: 0;
  transition: 0.2s;
}
body main section.form .section-inner .form-content .input-item.checkbox label input:checked + span::before {
  background: #0078D4;
}
body main section.form .section-inner .form-content .input-item.checkbox label input:checked + span::after {
  opacity: 1;
}
body main section.form .section-inner .form-content .input-item.radio {
  display: flex;
  gap: 14px;
}
body main section.form .section-inner .form-content .input-item.radio * {
  line-height: 1;
}
body main section.form .section-inner .form-content .input-item.radio label input {
  display: none;
}
body main section.form .section-inner .form-content .input-item.radio label span {
  position: relative;
  padding-left: 24px;
}
body main section.form .section-inner .form-content .input-item.radio label span::before {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1px solid #707070;
  vertical-align: middle;
  transition: 0.2s;
  background: #fff;
  left: 0;
  top: 50%;
  position: absolute;
  transform: translateY(-50%);
}
body main section.form .section-inner .form-content .input-item.radio label span::after {
  background: #0078D4;
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  top: 6px;
  left: 3px;
  opacity: 0;
  transition: 0.2s;
}
body main section.form .section-inner .form-content .input-item.radio label input:checked + span::before {
  border: 1px solid #0078D4;
  opacity: 1;
}
body main section.form .section-inner .form-content .input-item.radio label input:checked + span::after {
  opacity: 1;
}
body main section.form .section-inner .form-content .input-item.w-100 {
  max-width: 480px;
  width: 100%;
}
body main section.form .section-inner .form-content .input-item.quarters {
  max-width: 480px;
  width: 100%;
}
body main section.form .section-inner .form-content .input-item.quarters.checkbox {
  gap: 0;
}
body main section.form .section-inner .form-content .input-item.quarters.checkbox label {
  width: 25%;
}
body main section.form .section-inner .form-content .input-item.quarters.checkbox p {
  margin-top: 2px;
}
body main section.form .section-inner .form-content .input-item.textarea {
  width: 100%;
  max-width: 480px;
}
body main section.form .section-inner .form-content .input-item input[type=text],
body main section.form .section-inner .form-content .input-item input[type=email],
body main section.form .section-inner .form-content .input-item select,
body main section.form .section-inner .form-content .input-item textarea {
  display: flex;
  align-items: center;
  padding: 0 15px;
  height: 40px;
  border: 1px solid #707070;
}
body main section.form .section-inner .form-content .input-item input[type=text],
body main section.form .section-inner .form-content .input-item select {
  width: 350px;
}
body main section.form .section-inner .form-content .input-item input[type=email] {
  width: 100%;
}
body main section.form .section-inner .form-content .input-item textarea {
  width: 100%;
  min-height: 200px;
  padding: 15px;
}
body main section.form .section-inner .form-content .column {
  flex-direction: column;
}
body main section.form .section-inner .form-content .form-main {
  max-width: 700px;
  width: 100%;
  margin: 0 auto 60px;
}
body main section.form .section-inner .form-content .form-main .flex {
  gap: 18px;
}
body main section.form .section-inner .form-content .form-main .flex .ttl {
  width: 202px;
  display: flex;
  font-size: 14px;
  flex-wrap: wrap;
  align-items: baseline;
  font-weight: 500;
  gap: 10px;
}
body main section.form .section-inner .form-content .form-main .flex .ttl .reqwire {
  color: #FF0000;
  font-weight: 500;
  font-size: 12px;
  line-height: 1;
}
body main section.form .section-inner .form-content .form-main .flex + .flex {
  margin-top: 30px;
}
body main section.form .section-inner .form-content .form-main .date-block {
  margin: 30px auto;
  flex-direction: column;
}
body main section.form .section-inner .form-content .form-main .date-block .flex .flex {
  width: 100%;
  max-width: 480px;
  gap: 15px;
}
body main section.form .section-inner .form-content .form-main .date-block .flex .flex .input-item {
  width: 150px;
  position: relative;
}
body main section.form .section-inner .form-content .form-main .date-block .flex .flex .input-item:before {
  content: "";
  background: url(../img/select.svg) no-repeat;
  background-size: contain;
  width: 9px;
  height: 6px;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
}
body main section.form .section-inner .form-content .form-main .date-block .flex .flex .input-item select,
body main section.form .section-inner .form-content .form-main .date-block .flex .flex .input-item input {
  width: 100%;
}
body main section.form .section-inner .form-content .form-submit {
  padding: 60px 0 100px;
}
body main section.form .section-inner .form-content .form-submit > * {
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
}
body main section.form .section-inner .form-content .form-submit .caution {
  font-size: 15px;
  margin-bottom: 30px;
}
body main section.form .section-inner .form-content .form-submit .caution a {
  font-size: 15px;
  text-decoration: underline;
}
body main section.form .section-inner .form-content .form-submit .confirm-area {
  flex-direction: column;
}
body main section.form .section-inner .form-content .form-submit .confirm-area label span {
  font-size: 14px;
}
body main section.form .section-inner .form-content .form-submit .confirm-area label span:before {
  top: 51%;
}
body main section.form .section-inner .form-content .form-submit .confirm-area label span:after {
  top: 6px;
}
body main section.form .section-inner .form-content .form-submit .buttons {
  margin: 60px auto 50px;
  width: 450px;
  height: 60px;
  border-radius: 30px;
  position: relative;
  opacity: 1;
  pointer-events: all;
  transition: opacity 0.3s;
}
body main section.form .section-inner .form-content .form-submit .buttons:before {
  position: absolute;
  content: "";
  top: 50%;
  transform: translateY(-50%);
  background: url(../img/type_02-arrow-w.svg) no-repeat;
  background-size: contain;
  width: 6px;
  height: 11px;
  right: 30px;
}
body main section.form .section-inner .form-content .form-submit .buttons:hover {
  opacity: 0.7;
}
body main section.form .section-inner .form-content .form-submit .buttons button {
  cursor: pointer;
  background: #2C2C2C;
  width: 450px;
  height: 60px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}
body main section.form .section-inner .form-content .form-submit .buttons.disabled {
  opacity: 0.7;
  pointer-events: none;
}
body main section.form .section-inner .form-content .form-submit .buttons.edit {
  margin-top: -20px;
}
body main section.form .section-inner .form-content .form-submit .buttons.edit:before {
  background-image: url(../img/type_02-arrow.svg);
  left: 30px;
  transform: translateY(-30%) rotate(180deg);
}
body main section.form .section-inner .form-content .form-submit .buttons.edit button {
  background: #D5D5D5;
  color: #000;
}
body main section.form .section-inner .form-content .form-submit .contact-area {
  font-size: 17px;
}
body main section.form .section-inner .form-content .form-submit .contact-area .pc {
  display: inline !important;
}
body main section.form.confirm .section-inner {
  padding-bottom: 0;
}
body main section.form.confirm .section-inner .form-content .input-item {
  font-size: 14px;
}
body main section.form.confirm .section-inner .form-content .input-item * {
  font-size: 14px;
}
body main section.form.confirm .section-inner .form-content .input-item.js-column {
  display: flex;
  gap: 2rem;
}
body main section.form.confirm .section-inner .form-content .input-item.js-column span {
  line-height: 1;
  display: block;
}
body main section.form.confirm .section-inner .form-content .form-status .flex-item:not(.active) + .flex-item {
  background-image: unset;
}
body main section.form.confirm .section-inner .form-content .form-main {
  margin-bottom: 0;
}
body main section.form.confirm .section-inner .form-content .form-main .flex .ttl {
  row-gap: 5px;
}
body main section.form.confirm .section-inner .form-content .form-main > .flex {
  align-items: center;
  border-bottom: 1px dashed #CDCDCD;
  padding: 15px 0;
}
body main section.form.confirm .section-inner .form-content .form-main > .flex + .flex {
  margin-top: 0;
}
body main section.form.confirm .section-inner .form-content .form-main > .flex.textarea {
  padding: 19.3px 0;
}
body main section.form.confirm .section-inner .form-content .form-main + p {
  font-size: 15px;
  max-width: 700px;
  width: 100%;
  margin: 40px auto 60px;
}
body main section.form.confirm .section-inner .form-content .form-main + p a {
  text-decoration: underline;
}
body main section.form.confirm .section-inner .form-content .form-main .date-block {
  margin: 0 auto;
  border-bottom: 1px dashed #CDCDCD;
  padding: 23.5px 0;
}
body main section.form.confirm .section-inner .form-content .form-main .date-block > .flex {
  align-items: center;
}
body main section.form.confirm .section-inner .form-content .form-main .date-block > .flex .flex {
  gap: 2rem;
}
body main section.form.confirm .section-inner .form-content .form-main .date-block > .flex .flex .input-item {
  width: auto;
}
body main section.form.confirm .section-inner .form-content .form-main .date-block > .flex .flex .input-item:before {
  display: none;
}
body main section.form.thanks .section-inner {
  padding-bottom: 260px;
}
body main section.form.thanks .section-inner .form-content .form-status .flex-item:nth-of-type(3) {
  background-image: unset;
}
body main section.form.thanks .section-inner .form-content h2 {
  text-align: center;
  font-size: 32px;
}
@media screen and (max-width: 950px) {
  body main section.form .section-inner {
    padding: 13.1578947368vw 0 0;
  }
  body main section.form .section-inner h1,
  body main section.form .section-inner h2 {
    margin-bottom: 7.8947368421vw;
  }
  body main section.form .section-inner h1 .en,
  body main section.form .section-inner h2 .en {
    font-size: 10.5263157895vw;
  }
  body main section.form .section-inner h1 .ja,
  body main section.form .section-inner h2 .ja {
    margin-top: 5.2631578947vw;
    font-size: 4.2105263158vw;
  }
  body main section.form .section-inner .form-content .form-status {
    max-width: 100%;
    margin: 0 auto 7.8947368421vw;
  }
  body main section.form .section-inner .form-content .form-status .flex-item {
    height: 11.5789473684vw;
    font-size: 3.6842105263vw;
  }
  body main section.form .section-inner .form-content .form-status .flex-item:not(.active) + .flex-item {
    background-size: 0.2631578947vw 6.3157894737vw;
  }
  body main section.form .section-inner .form-content .sp-un-column {
    flex-direction: unset;
  }
  body main section.form .section-inner .form-content .input-item * {
    font-size: 4.2105263158vw;
  }
  body main section.form .section-inner .form-content .input-item.sp-un-column {
    gap: 3.9473684211vw;
  }
  body main section.form .section-inner .form-content .input-item.sp-un-column label {
    min-width: 27.1052631579vw;
  }
  body main section.form .section-inner .form-content .input-item.text {
    width: 100%;
  }
  body main section.form .section-inner .form-content .input-item.checkbox label span {
    padding-left: 4.7368421053vw;
  }
  body main section.form .section-inner .form-content .input-item.checkbox label span::before {
    width: 3.4210526316vw;
    height: 3.4210526316vw;
    border-radius: 0.5263157895vw;
  }
  body main section.form .section-inner .form-content .input-item.checkbox label span::after {
    width: 2.6315789474vw;
    height: 2.1052631579vw;
    top: 2.1052631579vw;
    left: 0.5263157895vw;
  }
  body main section.form .section-inner .form-content .input-item.radio {
    gap: 3.6842105263vw;
  }
  body main section.form .section-inner .form-content .input-item.radio label span {
    padding-left: 6.3157894737vw;
  }
  body main section.form .section-inner .form-content .input-item.radio label span::before {
    width: 4.2105263158vw;
    height: 4.2105263158vw;
  }
  body main section.form .section-inner .form-content .input-item.radio label span::after {
    width: 2.1052631579vw;
    height: 2.1052631579vw;
    top: 2.1052631579vw;
    left: 1.0526315789vw;
  }
  body main section.form .section-inner .form-content .input-item.w-100 {
    max-width: 100%;
    width: 100%;
  }
  body main section.form .section-inner .form-content .input-item.quarters {
    max-width: 100%;
    width: 100%;
    flex-direction: unset !important;
  }
  body main section.form .section-inner .form-content .input-item.quarters.checkbox {
    gap: 5.2631578947vw;
    row-gap: 1.3157894737vw;
  }
  body main section.form .section-inner .form-content .input-item.quarters.checkbox label {
    width: 26.3157894737vw;
  }
  body main section.form .section-inner .form-content .input-item.quarters.checkbox p {
    font-size: 3.1578947368vw;
    margin-top: 0vw;
  }
  body main section.form .section-inner .form-content .input-item.textarea {
    width: 100%;
    max-width: 126.3157894737vw;
  }
  body main section.form .section-inner .form-content .input-item input[type=text],
  body main section.form .section-inner .form-content .input-item input[type=email],
  body main section.form .section-inner .form-content .input-item select,
  body main section.form .section-inner .form-content .input-item textarea {
    padding: 0 3.9473684211vw;
    height: 11.8421052632vw;
  }
  body main section.form .section-inner .form-content .input-item input[type=text],
  body main section.form .section-inner .form-content .input-item select {
    width: 100%;
  }
  body main section.form .section-inner .form-content .input-item textarea {
    min-height: 52.6315789474vw;
  }
  body main section.form .section-inner .form-content .form-main {
    max-width: 100%;
    padding: 0 5.2631578947vw 7.8947368421vw;
    margin: 0 auto;
  }
  body main section.form .section-inner .form-content .form-main .flex {
    flex-direction: column;
    gap: 2.6315789474vw;
  }
  body main section.form .section-inner .form-content .form-main .flex .ttl {
    width: 100%;
    font-size: 3.6842105263vw;
    gap: 2.6315789474vw;
  }
  body main section.form .section-inner .form-content .form-main .flex .ttl .reqwire {
    font-size: 3.1578947368vw;
  }
  body main section.form .section-inner .form-content .form-main .flex .ttl br {
    display: none;
  }
  body main section.form .section-inner .form-content .form-main .flex + .flex {
    margin-top: 7.8947368421vw;
  }
  body main section.form .section-inner .form-content .form-main .date-block {
    margin: 9.2105263158vw auto;
  }
  body main section.form .section-inner .form-content .form-main .date-block .flex .flex {
    flex-direction: column;
    max-width: 100%;
    gap: 2.6315789474vw;
  }
  body main section.form .section-inner .form-content .form-main .date-block .flex .flex .input-item {
    width: 100%;
  }
  body main section.form .section-inner .form-content .form-main .date-block .flex .flex .input-item:before {
    width: 2.1052631579vw;
    height: 1.3157894737vw;
    right: 2.6315789474vw;
  }
  body main section.form .section-inner .form-content .form-main .date-block .flex + .flex {
    margin-top: 9.2105263158vw;
  }
  body main section.form .section-inner .form-content .form-submit {
    padding: 7.8947368421vw 5.2631578947vw 13.1578947368vw;
  }
  body main section.form .section-inner .form-content .form-submit > * {
    max-width: 100%;
  }
  body main section.form .section-inner .form-content .form-submit .caution {
    font-size: 3.1578947368vw;
    margin-bottom: 7.8947368421vw;
  }
  body main section.form .section-inner .form-content .form-submit .caution a {
    font-size: 3.1578947368vw;
    text-decoration: underline;
  }
  body main section.form .section-inner .form-content .form-submit .confirm-area.input-item.checkbox label span {
    font-size: 3.6842105263vw;
  }
  body main section.form .section-inner .form-content .form-submit .confirm-area.input-item.checkbox label span:before {
    top: 1.0526315789vw;
    transform: unset;
  }
  body main section.form .section-inner .form-content .form-submit .confirm-area.input-item.checkbox label span:after {
    top: 1.8421052632vw;
  }
  body main section.form .section-inner .form-content .form-submit .buttons {
    margin: 7.8947368421vw auto 13.1578947368vw;
    width: 84.2105263158vw;
    height: 15.7894736842vw;
    border-radius: 7.8947368421vw;
  }
  body main section.form .section-inner .form-content .form-submit .buttons:before {
    width: 1.5789473684vw;
    height: 2.8947368421vw;
    right: 6.5789473684vw;
  }
  body main section.form .section-inner .form-content .form-submit .buttons button {
    width: 84.2105263158vw;
    height: 15.7894736842vw;
    border-radius: 7.8947368421vw;
    font-size: 4.2105263158vw;
  }
  body main section.form .section-inner .form-content .form-submit .buttons.edit {
    margin-top: -5.2631578947vw;
  }
  body main section.form .section-inner .form-content .form-submit .buttons.edit:before {
    left: 6.5789473684vw;
  }
  body main section.form .section-inner .form-content .form-submit .contact-area {
    font-size: 3.6842105263vw;
  }
  body main section.form .section-inner .form-content .form-submit .contact-area .pc {
    display: none !important;
  }
  body main section.form.confirm .section-inner {
    padding-bottom: 0vw;
  }
  body main section.form.confirm .section-inner .form-content .input-item {
    width: 100%;
    font-size: 3.6842105263vw;
  }
  body main section.form.confirm .section-inner .form-content .input-item * {
    font-size: 3.6842105263vw;
  }
  body main section.form.confirm .section-inner .form-content .input-item.js-column {
    gap: 3.6842105263vw;
  }
  body main section.form.confirm .section-inner .form-content .form-main {
    padding-right: 2.6315789474vw;
    padding-left: 2.6315789474vw;
  }
  body main section.form.confirm .section-inner .form-content .form-main * {
    font-size: 3.6842105263vw;
  }
  body main section.form.confirm .section-inner .form-content .form-main > .flex {
    padding: 3.5263157895vw 2.6315789474vw 5vw;
    gap: 2.6315789474vw;
  }
  body main section.form.confirm .section-inner .form-content .form-main > .flex.textarea {
    padding: 3.5263157895vw 2.6315789474vw 5vw;
  }
  body main section.form.confirm .section-inner .form-content .form-main .flex .ttl {
    row-gap: 1.3157894737vw;
  }
  body main section.form.confirm .section-inner .form-content .form-main .flex .ttl.column {
    flex-direction: unset;
  }
  body main section.form.confirm .section-inner .form-content .form-main .date-block {
    padding: 5vw 2.6315789474vw;
  }
  body main section.form.confirm .section-inner .form-content .form-main .date-block > .flex {
    padding: 0;
  }
  body main section.form.confirm .section-inner .form-content .form-main .date-block > .flex .flex {
    gap: 3.6842105263vw;
    flex-direction: column;
  }
  body main section.form.confirm .section-inner .form-content .form-main .date-block > .flex .flex .input-item {
    line-height: 1;
    width: auto;
  }
  body main section.form.confirm .section-inner .form-content .form-main .date-block > .flex + .flex {
    margin-top: 0vw;
  }
  body main section.form.confirm .section-inner .form-content .form-main .date-block > .flex.textarea {
    padding: 5.0789473684vw 0;
  }
  body main section.form.confirm .section-inner .form-content .form-main + p {
    font-size: 3.9473684211vw;
    max-width: 100%;
    margin: 0 auto 21.0526315789vw;
    padding: 0 5.2631578947vw;
  }
  body main section.form.confirm .section-inner .form-content .form-submit {
    padding: 13.1578947368vw 7.8947368421vw 39.4736842105vw;
  }
  body main section.form.confirm .section-inner .form-content .form-submit .buttons {
    margin: 0 auto;
  }
  body main section.form.confirm .section-inner .form-content .form-submit .buttons + .buttons {
    margin-top: 7.8947368421vw;
  }
  body main section.form.thanks .section-inner {
    padding-bottom: 75.2631578947vw;
  }
  body main section.form.thanks .section-inner .form-content h2 {
    padding-top: 2.6315789474vw;
    font-size: 4.7368421053vw;
  }
  body main section.form.thanks .section-inner .form-content h2 + p {
    margin-top: 7.8947368421vw;
    font-size: 3.6842105263vw;
  }
}
body main section.events {
  background: #fff;
  padding: 100px 0;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  border-bottom: 1px dashed #B4B4B4;
}
body main section.events h2 {
  margin-bottom: 30px;
}
body main section.events h2 .en {
  font-size: 50px;
  line-height: 1;
  margin-bottom: 20px;
}
body main section.events h2 .ja {
  font-size: 32px;
}
body main section.events .btn {
  background: #DAD6CD;
  width: 450px;
  height: 60px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin: 0 auto;
  font-weight: 400;
  font-size: 16px;
  color: #000;
}
body main section.events .btn:before {
  position: absolute;
  content: "";
  top: 50%;
  transform: translateY(-50%);
  background: url(../img/type_02-arrow.svg) no-repeat;
  background-size: contain;
  width: 6px;
  height: 11px;
  right: 30px;
}
@media screen and (max-width: 950px) {
  body main section.events {
    padding: 13.1578947368vw 0;
    max-width: 100%;
  }
  body main section.events h2 {
    margin-bottom: 2.6315789474vw;
  }
  body main section.events h2 .en {
    font-size: 5.2631578947vw;
    margin-bottom: 5.2631578947vw;
  }
  body main section.events h2 .ja {
    font-size: 4.2105263158vw;
  }
  body main section.events .btn {
    width: 78.9473684211vw;
    height: 12.1052631579vw;
    border-radius: 6.0526315789vw;
    font-size: 4.2105263158vw;
  }
  body main section.events .btn:before {
    width: 1.5789473684vw;
    height: 2.8947368421vw;
    right: 5.2631578947vw;
  }
}
body main section.sns-area {
  background: #fff;
  padding: 100px 0;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}
body main section.sns-area .flex {
  justify-content: center;
  gap: 85px;
}
body main section.sns-area .flex .flex-item h2 * {
  display: inline;
  line-height: 1;
}
body main section.sns-area .flex .flex-item h2 .en {
  font-size: 50px;
}
body main section.sns-area .flex .flex-item h2 .ja {
  font-size: 24px;
}
body main section.sns-area .flex .flex-item .catch {
  font-size: 24px;
  text-align: center;
}
body main section.sns-area .flex .flex-item .catch + p {
  font-size: 14px;
  margin-top: 30px;
  max-width: 450px;
  width: 100%;
}
body main section.sns-area .flex .flex-item .catch + p + .btn {
  margin-top: 64px;
}
body main section.sns-area .flex .flex-item .catch.small {
  font-size: 18px;
}
body main section.sns-area .flex .flex-item .catch.small + .btn {
  margin-top: 20px;
}
body main section.sns-area .flex .flex-item .catch.small + .btn + .catch {
  margin-top: 40px;
}
body main section.sns-area .flex .flex-item .btn {
  width: 400px;
  height: 60px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin: 0 auto;
  color: #fff;
  font-size: 18px;
  font-weight: 400;
}
body main section.sns-area .flex .flex-item .btn:before {
  position: absolute;
  content: "";
  top: 50%;
  transform: translateY(-50%);
  background: url(../img/type_02-arrow-w.svg) no-repeat;
  background-size: contain;
  width: 6px;
  height: 11px;
  right: 30px;
}
body main section.sns-area .flex .flex-item:nth-of-type(1) h2 {
  margin-bottom: 22px;
}
body main section.sns-area .flex .flex-item:nth-of-type(2) h2 {
  margin-bottom: 30px;
}
@media screen and (max-width: 950px) {
  body main section.sns-area {
    padding: 13.1578947368vw 5.2631578947vw;
    max-width: 100%;
  }
  body main section.sns-area .flex {
    gap: 13.1578947368vw;
  }
  body main section.sns-area .flex .flex-item h2 .en {
    font-size: 5.2631578947vw;
    display: block;
  }
  body main section.sns-area .flex .flex-item h2 .ja {
    margin-top: 5.2631578947vw;
    font-size: 4.2105263158vw;
  }
  body main section.sns-area .flex .flex-item .catch {
    font-size: 4.2105263158vw;
  }
  body main section.sns-area .flex .flex-item .catch + p {
    font-size: 3.1578947368vw;
    margin-top: 2.6315789474vw;
    max-width: 100%;
  }
  body main section.sns-area .flex .flex-item .catch + p + .btn {
    margin-top: 5.2631578947vw;
  }
  body main section.sns-area .flex .flex-item .catch.small {
    font-size: 4.7368421053vw;
  }
  body main section.sns-area .flex .flex-item .catch.small + .btn {
    margin-top: 5.2631578947vw;
  }
  body main section.sns-area .flex .flex-item .catch.small + .btn + .catch {
    margin-top: 10.5263157895vw;
  }
  body main section.sns-area .flex .flex-item .btn {
    width: 78.9473684211vw;
    height: 12.1052631579vw;
    border-radius: 6.0526315789vw;
    font-size: 4.2105263158vw;
  }
  body main section.sns-area .flex .flex-item .btn:before {
    width: 1.5789473684vw;
    height: 2.8947368421vw;
    right: 5.2631578947vw;
  }
  body main section.sns-area .flex .flex-item:nth-of-type(1) h2 {
    margin-bottom: 5.2631578947vw;
  }
  body main section.sns-area .flex .flex-item:nth-of-type(2) h2 {
    margin-bottom: 2.6315789474vw;
  }
}

.thanks-cont {
  max-width: 1040px;
  padding-inline: 20px;
  margin: 0 auto;
}
@media screen and (max-width: 950px) {
  .thanks-cont {
    padding-inline: 5.2631578947vw;
  }
}

.thanks-text {
  font-size: 20px;
  max-width: 1000px;
  margin-bottom: 50px;
}
@media screen and (max-width: 950px) {
  .thanks-text {
    font-size: 3.6842105263vw;
    margin-bottom: 7.8947368421vw;
  }
}

.thanks-caution {
  font-size: 20px;
  margin-bottom: 50px;
}
.thanks-caution .title {
  display: block;
  font-size: 32px;
  text-align: center;
  margin-bottom: 40px;
}
@media screen and (max-width: 950px) {
  .thanks-caution {
    font-size: 3.6842105263vw;
    margin-bottom: 7.8947368421vw;
  }
  .thanks-caution .title {
    font-size: 4.7368421053vw;
    margin-bottom: 7.8947368421vw;
  }
}

.thanks-contact {
  font-size: 20px;
}
.thanks-contact span {
  display: block;
  font-size: 20px;
}
@media screen and (max-width: 950px) {
  .thanks-contact {
    font-size: 3.6842105263vw;
  }
  .thanks-contact span {
    font-size: 3.6842105263vw;
  }
}/*# sourceMappingURL=style.css.map */