@charset "UTF-8";
/*日本語*/
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@media screen and (max-width: 950px) {
  .sp_flex {
    display: flex !important;
  }
}
@media screen and (min-width: 951px) {
  .sp_flex {
    display: none !important;
  }
}

@media screen and (max-width: 950px) {
  .pc_flex {
    display: none !important;
  }
}
@media screen and (min-width: 951px) {
  .pc_flex {
    display: flex !important;
  }
}

@media screen and (max-width: 950px) {
  .sp {
    display: block !important;
  }
}
@media screen and (min-width: 951px) {
  .sp {
    display: none !important;
  }
}

@media screen and (max-width: 950px) {
  .pc {
    display: none !important;
  }
}
@media screen and (min-width: 951px) {
  .pc {
    display: block !important;
  }
}

body a {
  text-decoration: unset;
  cursor: pointer;
  transition: 0.3s;
}
body a:hover {
  opacity: 0.8;
}
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;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
}
body .flex.jc-center {
  justify-content: center !important;
}
body .flex.ai-fs {
  align-items: flex-start !important;
}
body .flex.gap-15 {
  gap: 15px;
}
body img {
  display: block;
}
body .inner {
  max-width: 1200px;
  margin: 0 auto;
}
body section {
  box-sizing: border-box;
}

:root {
  --main-red: #ae082c;
  --main-clearred: #da3316;
  --main-gold: #ba8136;
  --main-skyblue: #ecf4fa;
  --main-blue: #003067;
  --main-deepblue: #242628;
}

body .bg-red {
  background: #ae082c !important;
  color: #fff;
}
body .bg-red * {
  color: #fff;
}
body .bg-red-clear {
  background: var(--main-clearred);
  color: #fff;
}
body .bg-red-clear * {
  color: #fff;
}
body .bg-blue {
  background: linear-gradient(0deg, #003067 0%, #295f9d 100%);
  color: #fff;
}
body .bg-blue * {
  color: #fff;
}
body .bg-blue.btn {
  background: linear-gradient(90deg, #003067 0%, #295f9d 100%);
}
body .bg-deepblue {
  background-color: var(--main-deepblue);
}
body .bg-brown {
  background: #ba8136 !important;
  color: #fff;
}
body .bg-brown * {
  color: #fff;
}
body .bg-fff {
  background: #fff !important;
}
body .bg-cream {
  background: #ece9e3 !important;
}
body .bg-yellow {
  background: #f6d643 !important;
  color: #573921 !important;
}
body .bg-yellow * {
  color: #573921 !important;
}
body .bg-org {
  background: #f39800 !important;
  color: #fff !important;
}
body .bg-org * {
  color: #fff !important;
}
body .red {
  color: #ae082c !important;
}
body .red-clear {
  color: var(--main-clearred);
}
body .org {
  color: #f39800 !important;
}
body .gold {
  color: #ba8136;
}
body .green {
  color: #23943e !important;
}
body .attention {
  color: #da3316;
}

body .p-0 {
  padding: 0 !important;
}
body .mt-20 {
  margin-top: 20px !important;
}
body .mt-30 {
  margin-top: 30px !important;
}
body .mt-35 {
  margin-top: 35px !important;
}
body .fz-23 {
  font-size: 23px !important;
}
body .fz-24 {
  font-size: 24px !important;
}
body .fz-26 {
  font-size: 26px !important;
}
body .fz-27 {
  font-size: 27px !important;
}
body .fz-32 {
  font-size: 32px !important;
}
body .fz-35 {
  font-size: 35px !important;
}
body .fz-50 {
  font-size: 50px !important;
}
body .fz-70 {
  font-size: 70px !important;
}
body .revert-layer {
  width: revert-layer !important;
}
body .underline {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}
body .en {
  font-family: "Poppins", sans-serif;
  text-transform: uppercase;
}
body .split {
  display: block;
  margin: 0 auto;
  text-align: center;
}
body .split * {
  letter-spacing: 0.2em;
}
body .center {
  text-align: center;
}
body small {
  line-height: 1.6;
  font-size: 10px;
}

/*日本語*/
body .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 700;
  position: relative;
  width: 300px;
  height: 60px;
  border-radius: 30px;
  margin: 0 auto;
  line-height: 1;
  cursor: pointer;
  transition: 0.3s;
}
body .btn:before {
  position: absolute;
  content: "";
  top: 50%;
  transform: translateY(-50%);
}
body .btn:hover {
  opacity: 0.8;
}
body .mv .btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 500px;
  height: 70px;
  background: #ffffff;
  border-radius: 50px;
  text-decoration: none;
  color: #003067;
  font-size: 24px;
  font-weight: 700;
  box-sizing: border-box;
  transition: none;
  margin-right: auto;
  margin-left: auto;
  left: calc(50% - 250px);
  top: -60px;
}
body .mv .btn:hover {
  opacity: 0.9;
}
body .mv .btn:hover::after {
  opacity: 0.3;
  background: #e3c975;
}
body .mv .btn::before {
  background: url(../img/arrow-mv.svg) no-repeat;
  background-size: contain;
  width: 8px;
  height: 14px;
  right: 30px;
}
body .mv .btn::before {
  pointer-events: none;
  z-index: 2;
}
body .mv .btn::after {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 53px;
  background: linear-gradient(90deg, #ba8136 0%, #e3c975 70%, #b77b34 100%);
  z-index: -1;
  pointer-events: none;
}
body .btn-mini {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 700;
  position: relative;
  width: 140px;
  height: 30px;
  border-radius: 15px;
  margin: 0 auto;
  line-height: 1;
}
body .btn-mini.bg-blue {
  background: var(--main-blue);
}
body .btn-mini::before {
  position: absolute;
  content: "";
  top: 50%;
  transform: translateY(-50%);
  background: url(../img/arrow-fff.svg) no-repeat;
  background-size: contain;
  width: 6px;
  height: 10px;
  right: 30px;
}

body *,
body :before,
body :after {
  line-height: 1.6;
  font-family: "Noto Sans JP", sans-serif;
  color: #242628;
}

/*日本語*/
body #modal_bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.439);
  transition: all 0.3s ease;
  backface-visibility: hidden;
  z-index: 10;
  opacity: 0;
  pointer-events: none;
}
body #modal_bg.on {
  opacity: 1;
  pointer-events: auto;
}
body .modal {
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 15;
  transition: 0.3s;
  transform: translate(-50%, -50%) scale(0);
  background: #fff;
  border-radius: 10px;
  width: 300px;
  height: 585px;
  opacity: 0;
  pointer-events: none;
}
body .modal.on {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
}
body .modal .modal-inner {
  width: 100%;
  height: 100%;
  padding: 30px 20px;
  overflow: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
body .modal .modal-inner::-webkit-scrollbar {
  display: none;
}
body .modal .close {
  width: 16px;
  height: 16px;
  position: absolute;
  cursor: pointer;
  right: 16px;
  top: 17px;
}
body .modal .close span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 22px;
  height: 1px;
  background-color: #242628;
  display: block;
  content: "";
}
body .modal .close span:first-child {
  transform: translate(-50%, -50%) rotate(45deg);
}
body .modal .close span + span {
  transform: translate(-50%, -50%) rotate(-45deg);
}
body .modal .ttl {
  margin-bottom: 30px;
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  line-height: 1;
}
body .modal .txt {
  line-height: 1.8;
  font-size: 14px;
}
@media screen and (min-width: 951px) {
  body .modal {
    width: 60%;
    max-width: 850px;
  }
  body .modal .modal-inner {
    padding: 50px;
  }
  body .modal .close {
    right: 25px;
    top: 25px;
  }
}

/*日本語*/
html {
  background: #003167;
}

body .main-flex > * {
  height: 100vh;
}
body .main-flex #top {
  height: auto;
}
body .main-flex .mv {
  width: calc(100% - 500px);
  position: relative;
}
body .main-flex .mv::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: url(../img/mv_moyou.png);
  background-repeat: no-repeat;
  background-position: center bottom 60px;
  background-size: contain;
}
@media screen and (min-width: 1401px) {
  body .main-flex .mv::before {
    background-size: 100%;
  }
}
@media screen and (max-width: 950px) {
  body .main-flex .mv::before {
    background-image: url(../img/mv_moyou@sp.png);
    background-position: center bottom 75px;
    z-index: -1;
  }
}
body .main-flex .mv .slide-area * {
  font-size: 0;
}
body .main-flex .mv .slide-area .slider-top .slider-item,
body .main-flex .mv .slide-area .slider-bottom .slider-item {
  width: 260px;
}
body .main-flex .mv .slide-area .slider-top .slider-item img,
body .main-flex .mv .slide-area .slider-bottom .slider-item img {
  margin: 0 auto;
  width: 250px;
  height: auto;
}
body .main-flex .mv .slide-area .slider-bottom {
  margin-top: 10px;
  transform: scaleX(-1);
}
body .main-flex .mv .slide-area .slider-bottom .slider-item {
  transform: scaleX(-1);
  /* 表示だけ戻す */
}
body .main-flex .mv .text {
  height: auto;
}
body .main-flex .mv .text h1 {
  transform: translateY(-20px);
}
body .main-flex .mv .text h1 img {
  width: 53.125vw;
  max-width: 850px;
  margin: 0 auto;
}
@media screen and (min-width: 1201px) and (max-width: 1400px) {
  body .main-flex .mv .text {
    top: 350px;
  }
}
@media screen and (min-width: 951px) and (max-width: 1200px) {
  body .main-flex .mv .text {
    top: 350px;
  }
  body .main-flex .mv .text h1 img {
    width: 46.875vw;
    margin: 0 auto;
  }
  body .main-flex .mv .text .btn {
    width: 31.25vw;
    height: 4.375vw;
    font-size: 1.5vw;
    border-radius: 2.1875vw;
    left: calc(50% - 15.625vw);
  }
}
body .main-flex main {
  position: fixed;
  top: 0;
  right: 0;
  width: 500px;
  overflow: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
  background: #fff;
}
body .main-flex main::-webkit-scrollbar {
  display: none;
}
body .main-flex main * {
  max-width: 100%;
}
body .main-flex main footer {
  height: 220px;
  padding-top: 50px;
}
body .main-flex main footer img {
  display: block;
  width: fit-content;
  margin: 0 auto 48px;
}
body .main-flex main footer .copy {
  font-size: 11px;
}
body .main-flex main .to-top {
  position: fixed;
  z-index: 50;
  bottom: 85px;
  right: 20px;
  opacity: 0;
  pointer-events: none;
  transition: 0.3s;
}
body .main-flex main .to-top img {
  width: 50px;
  height: 50px;
}
body .main-flex main .to-top.active {
  opacity: 1;
  pointer-events: auto;
}
@media screen and (max-width: 950px) {
  body .main-flex {
    flex-direction: column;
  }
  body .main-flex > * {
    height: auto;
    position: relative;
  }
  body .main-flex .logo {
    position: absolute;
    top: 4vw;
    left: 2.5333333333vw;
  }
  body .main-flex .logo img {
    width: 42.6666666667vw;
    height: 6vw;
    object-fit: contain;
  }
  body .main-flex .mv {
    width: 100%;
    height: 144vw !important;
    background-image: url(../img/bg-mv@sp.svg), url(../img/bg-washi-muji.png);
    background-repeat: no-repeat !important, repeat-y;
    background-size: contain, cover !important;
    background-position: center bottom, center bottom;
    margin-bottom: 0px;
    z-index: -5;
    position: relative;
  }
  body .main-flex .mv .slide-area .slider-top .slider-item,
  body .main-flex .mv .slide-area .slider-bottom .slider-item {
    width: 44vw;
  }
  body .main-flex .mv .slide-area .slider-top .slider-item img,
  body .main-flex .mv .slide-area .slider-bottom .slider-item img {
    width: 42.6666666667vw;
  }
  body .main-flex .mv .slide-area .slider-bottom {
    margin-top: 1.3333333333vw;
  }
  body .main-flex .mv .text {
    top: 45.3333333333vw;
    position: absolute;
  }
  body .main-flex .mv .text h1 {
    transform: translateX(calc(50vw - 50%));
  }
  body .main-flex .mv .text h1 img {
    width: 92vw;
  }
  body .main-flex .mv .text .btn {
    display: none;
  }
  body .main-flex main {
    position: relative;
    width: 100%;
    z-index: 5;
    overflow: unset;
  }
}

/*日本語*/
body .main-flex main .showroom {
  background: url(../img/bg-showroom.webp) no-repeat;
  background-size: cover;
}
body .main-flex main .showroom .sections-inner {
  padding: 74px 0;
  position: relative;
}
body .main-flex main .showroom .sections-inner * {
  color: #fff;
  font-weight: 700;
  text-align: center;
}
body .main-flex main .showroom .sections-inner .head_h2 {
  margin-bottom: 17px;
}
body .main-flex main .showroom .sections-inner .head_h2 .en {
  line-height: 1;
  letter-spacing: 0.2em;
  font-size: 35px;
}
body .main-flex main .showroom .sections-inner p {
  font-size: 18px;
  letter-spacing: 0.04em;
}
body .main-flex main .showroom .sections-inner .btn {
  margin-top: 12px;
}
body .main-flex main .showroom .sections-inner .btn:before {
  position: absolute;
  content: "";
  top: 50%;
  transform: translateY(-50%);
  background: url(../img/arrow-fff.svg) no-repeat;
  background-size: contain;
  width: 6px;
  height: 10px;
  right: 20px;
}
body .main-flex main .showroom.showroom-type02 {
  background-color: var(--main-blue);
  background-image: url(../img/bg-blue.png);
  background-repeat: repeat-y;
  background-size: contain;
  background-position: center 290px;
}
body .main-flex main .showroom.showroom-type02 > img {
  width: 100%;
  margin-bottom: 30px;
}
body .main-flex main .showroom.showroom-type02 .sections-inner {
  padding: 0 0 50px;
}
body .main-flex main .showroom.showroom-type02 .sections-inner .head_h2 {
  font-size: 35px;
  margin-bottom: 30px;
  height: 35px;
  letter-spacing: 0.2em;
  color: #496c94;
}
body .main-flex main .showroom.showroom-type02 .sections-inner p {
  font-size: 18px;
  text-align: center;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: 0.04em;
}
body .main-flex main .showroom.showroom-type02 .sections-inner img {
  margin: 0 auto;
  width: 335px;
  height: auto;
  margin-bottom: 25px;
}
body .main-flex main .showroom.showroom-type02 .sections-inner .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
  box-sizing: border-box;
  transition: none;
  margin-right: auto;
  margin-left: auto;
  margin-top: 0;
  width: 300px;
  height: 60px;
  left: calc(50% - 150px);
  color: var(--main-blue);
  position: relative;
  z-index: 1;
  background: #fff;
  appearance: none;
  -webkit-appearance: none;
}
body .main-flex main .showroom.showroom-type02 .sections-inner .btn:hover {
  opacity: 0.9;
}
body .main-flex main .showroom.showroom-type02 .sections-inner .btn:hover::after {
  opacity: 0.3;
  background: #e3c975;
}
body .main-flex main .showroom.showroom-type02 .sections-inner .btn::before {
  position: absolute;
  content: "";
  top: 50%;
  transform: translateY(-50%);
  background: url(../img/arrow-mv.svg) no-repeat;
  background-size: contain;
  width: 6px;
  height: 10px;
  right: 20px;
  pointer-events: none;
  z-index: 2;
}
body .main-flex main .showroom.showroom-type02 .sections-inner .btn::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 50px;
  border: 3px solid transparent;
  background: linear-gradient(90deg, #ba8136, #e3c975, #b77b34) border-box;
  mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  z-index: -1;
}
body .main-flex main .showroom.showroom-type02 .sections-inner .head_h3 {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 18px;
  background: #9d7b47;
  line-height: 1;
  border-radius: 7.5px;
  width: 275px;
  height: 45px;
  margin: 0 auto 25px;
}
body .main-flex main .showroom.showroom-type02 .sections-inner > ul {
  width: 335px;
  margin: 0 auto;
}
body .main-flex main .showroom.showroom-type02 .sections-inner > ul > li {
  background: #fff;
  border-radius: 10px;
  padding: 20px;
}
body .main-flex main .showroom.showroom-type02 .sections-inner > ul > li .ttl {
  color: #573921;
  text-align: left;
  font-size: 18px;
  line-height: 1;
  padding-bottom: 10px;
  margin-bottom: 15px;
  border-bottom: 1px solid #9d9d9d;
}
body .main-flex main .showroom.showroom-type02 .sections-inner > ul > li .ttl span {
  color: #573921;
  font-size: 10px;
  letter-spacing: 0;
}
body .main-flex main .showroom.showroom-type02 .sections-inner > ul > li .flex {
  gap: 15px;
  align-items: flex-start;
}
body .main-flex main .showroom.showroom-type02 .sections-inner > ul > li .flex img {
  width: 132px;
  height: auto;
  margin: 0;
}
body .main-flex main .showroom.showroom-type02 .sections-inner > ul > li .flex .txt {
  width: calc(100% - 132px - 15px);
}
body .main-flex main .showroom.showroom-type02 .sections-inner > ul > li .flex .txt * {
  text-align: left;
  letter-spacing: 0;
}
body .main-flex main .showroom.showroom-type02 .sections-inner > ul > li .flex .txt .tel {
  margin-bottom: 6px;
}
body .main-flex main .showroom.showroom-type02 .sections-inner > ul > li .flex .txt .tel span {
  color: #573921;
  font-size: 12px;
}
body .main-flex main .showroom.showroom-type02 .sections-inner > ul > li .flex .txt .tel a {
  color: #ae082c !important;
  font-size: 18px;
  text-decoration: underline;
}
body .main-flex main .showroom.showroom-type02 .sections-inner > ul > li .flex .txt address {
  color: #573921;
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
}
body .main-flex main .showroom.showroom-type02 .sections-inner > ul > li ul {
  margin-top: 15px;
  justify-content: center;
}
body .main-flex main .showroom.showroom-type02 .sections-inner > ul > li ul li a {
  display: flex;
  width: 140px;
  height: 30px;
  font-size: 14px;
}
body .main-flex main .showroom.showroom-type02 .sections-inner > ul > li ul li a:before {
  right: 10px;
}
body .main-flex main .showroom.showroom-type02 .sections-inner > ul > li ul li + li a {
  font-size: 12px;
}
body .main-flex main .showroom.showroom-type02 .sections-inner > ul > li + li {
  margin-top: 10px;
}
@media screen and (max-width: 950px) {
  body .main-flex main .showroom {
    background: url(../img/bg-showroom@sp.webp) no-repeat;
    background-size: cover;
    height: 66.6666666667vw;
  }
  body .main-flex main .showroom .sections-inner {
    display: flex;
    flex-direction: column;
    padding: 0;
    height: inherit;
    justify-content: center;
  }
  body .main-flex main .showroom.showroom-type02 {
    height: auto;
  }
  body .main-flex main .showroom.showroom-type02 .sections-inner .btn {
    left: 0;
  }
}

/*日本語*/
body .main-flex main .present {
  background: url(../img/bg-washi.png) repeat-y top center;
  background-size: 100% auto;
}
body .main-flex main .present .sections-inner .enquete {
  position: relative;
  width: calc(100% - 20px);
  padding: 60px 0 50px;
  margin: 0 auto 0px;
}
body .main-flex main .present .sections-inner .enquete .head_h2 .square {
  background: #ba8136;
  width: 335px;
  height: 45px;
  border-radius: 7.5px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  font-weight: 700;
  line-height: 1;
  font-size: 16px;
  margin: 0 auto 16px;
}
body .main-flex main .present .sections-inner .enquete .head_h2 + img {
  margin: 0 auto 30px;
}
body .main-flex main .present .sections-inner .enquete .btn {
  border: 1px solid #ba8136;
  width: 275px;
  height: 55px;
}
body .main-flex main .present .sections-inner .enquete .btn:before {
  background: url(../img/arrow-btn.svg) no-repeat;
  background-size: contain;
  width: 6px;
  height: 9px;
  right: 20px;
}
body .main-flex main .present .sections-inner .enquete p {
  width: 300px;
  margin: 30px auto 0px;
  text-align: center;
  font-weight: bold;
}
body .main-flex main .present .sections-inner .ribon-line {
  display: block;
  width: 500px;
  height: 50px;
  margin-left: calc(50% - 250px);
  background: url(../img/line_ribon.png) no-repeat center bottom;
  background-size: contain;
}
@media screen and (max-width: 950px) {
  body .main-flex main .present .sections-inner .ribon-line {
    margin-top: 20px;
    margin-left: auto;
    margin-right: auto;
    background-size: auto 40px;
  }
}
body .main-flex main .present .sections-inner .special {
  margin-top: 25px;
}
body .main-flex main .present .sections-inner .special * {
  position: relative;
  z-index: 1;
}
body .main-flex main .present .sections-inner .special .head_h2 {
  text-align: center;
}
body .main-flex main .present .sections-inner .special .head_h2 span.small {
  font-size: 30px;
  letter-spacing: 1px;
  margin-bottom: 16px;
  display: block;
  text-align: center;
  color: #242628;
}
body .main-flex main .present .sections-inner .special .head_h2 span.square {
  border-radius: 7.5px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 280px;
  height: 45px;
  margin: 0 auto 14px;
  padding-top: 5px;
}
body .main-flex main .present .sections-inner .special .head_h2 span.square span {
  font-size: 20px;
}
body .main-flex main .present .sections-inner .special .head_h2 span.square span.num {
  margin-left: -2.5px;
  margin-right: -5px;
  font-size: 35px;
  font-family: "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", sans-serif;
}
body .main-flex main .present .sections-inner .special .head_h2 span.middle {
  font-size: 32px;
  text-align: center;
  margin: 0 auto;
  display: block;
  letter-spacing: 1px;
}
body .main-flex main .present .sections-inner .special .head_h2 span.middle.inline {
  display: inline;
}
body .main-flex main .present .sections-inner .special .head_h2 span.middle .large {
  font-size: 42px;
  text-align: center;
}
body .main-flex main .present .sections-inner .special .head_h2 span.normal {
  font-size: 27px;
  text-align: center;
  margin: 0 auto;
  display: block;
}
body .main-flex main .present .sections-inner .special .head_h2 span.normal .num {
  text-align: center;
  font-size: 35px;
}
body .main-flex main .present .sections-inner .special .head_h2.slash {
  background: url(../img/slash.svg) no-repeat;
  background-size: 305px 86px;
  background-position: center bottom;
  margin-bottom: 35px;
}
body .main-flex main .present .sections-inner .special .head_h2.slash.slash-335 {
  background: url(../img/slash-335.svg) no-repeat;
  background-size: 335px 85px;
  background-position: center bottom;
}
body .main-flex main .present .sections-inner .special .head_h2 + picture {
  display: block;
  z-index: 0;
  width: 400px;
  margin: -103px auto 25px;
}
body .main-flex main .present .sections-inner .special .course {
  width: 375px;
  border-radius: 7.5px;
  margin: 65px auto 0;
  padding: 60px 40px 27.5px;
}
body .main-flex main .present .sections-inner .special .course .head_h3 {
  position: relative;
  text-align: center;
  font-size: 20px;
}
body .main-flex main .present .sections-inner .special .course .head_h3 span {
  font-size: 15px;
}
body .main-flex main .present .sections-inner .special .course .head_h3 img {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -70px;
}
body .main-flex main .present .sections-inner .special .course img {
  margin: 0 auto;
}
body .main-flex main .present .sections-inner .special .course img + img {
  margin-top: 25px;
}
body .main-flex main .present .sections-inner .special .course img + p {
  margin-top: 10px;
}
body .main-flex main .present .sections-inner .special .course p {
  font-size: 14px;
}
body .main-flex main .present .sections-inner .special .course + .course {
  margin-top: 65px;
}
body .main-flex main .present .sections-inner .special .solar_system {
  width: 375px;
  margin: 20px auto 0;
  border-radius: 7.5px;
  padding-bottom: 32px;
}
body .main-flex main .present .sections-inner .special .solar_system > img {
  width: 100%;
  height: auto;
  border-radius: 7px 7px 0 0;
}
body .main-flex main .present .sections-inner .special .solar_system > p {
  margin-top: 20px;
  font-size: 14px;
  max-width: 295px;
  margin: 19.5px auto 11.5px;
}
body .main-flex main .present .sections-inner .special .solar_system > small {
  display: block;
  font-size: 10px;
  max-width: 295px;
  margin: 0 auto;
  margin-bottom: 30px;
}
body .main-flex main .present .sections-inner .special .solar_system .content {
  padding-top: 20px;
  margin: 0 auto;
  width: calc(100% - 60px);
  border-top: 1px #b2b2b2 dashed;
}
body .main-flex main .present .sections-inner .special .solar_system .content .head_h3 {
  text-align: center;
  font-size: 27px;
}
body .main-flex main .present .sections-inner .special .solar_system .content .head_h3 + img {
  margin-top: 15px;
}
body .main-flex main .present .sections-inner .special .solar_system .content img {
  margin: 0 auto;
}
body .main-flex main .present .sections-inner .special .solar_system .content img + p {
  margin-top: 20px;
}
body .main-flex main .present .sections-inner .special .solar_system .content p {
  font-size: 14px;
  max-width: 295px;
  margin: 0 auto;
}
body .main-flex main .present .sections-inner .special .solar_system .content + .content {
  margin-top: 33px;
}
body .main-flex main .present .sections-inner .special > .ribbon .content {
  width: 335px;
  border-radius: 7.5px;
  margin: 0 auto;
  background: #fff;
  padding: 30px 0 22px;
}
body .main-flex main .present .sections-inner .special > .ribbon .content > * {
  padding: 0 20px;
}
body .main-flex main .present .sections-inner .special > .ribbon .content img {
  margin: 0 auto;
  padding: 0;
}
body .main-flex main .present .sections-inner .special > .ribbon .content img.fukidashi {
  position: absolute;
}
body .main-flex main .present .sections-inner .special > .ribbon .content img.fukidashi.iiie-01 {
  right: 30px;
  top: 218px;
}
body .main-flex main .present .sections-inner .special > .ribbon .content img.fukidashi.iiie-03 {
  left: 35px;
  top: 190px;
}
body .main-flex main .present .sections-inner .special > .ribbon .content .head_h3 span {
  text-align: center;
  display: block;
}
body .main-flex main .present .sections-inner .special > .ribbon .content .head_h3 span.ribbon {
  width: 150px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  background: url(../img/ribbon.png);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -50px;
  font-size: 16px;
}
body .main-flex main .present .sections-inner .special > .ribbon .content .head_h3 span.ribbon.ribbon-red {
  color: #fff;
  background: url(../img/ribbon-red.png);
}
body .main-flex main .present .sections-inner .special > .ribbon .content .head_h3 span.ribbon.ribbon-bordeaux {
  width: 151px;
  color: #fff;
  background: url(../img/ribbon-bordeaux.png);
}
body .main-flex main .present .sections-inner .special > .ribbon .content .head_h3 span.ribbon.ribbon-green {
  color: #fff;
  width: 325px;
  height: 35px;
  background: url(../img/ribbon-green.png);
}
body .main-flex main .present .sections-inner .special > .ribbon .content .head_h3 span.ribbon.short {
  width: 150px !important;
  height: 32px !important;
}
body .main-flex main .present .sections-inner .special > .ribbon .content .head_h3 span.ribbon.short.ribbon-green {
  background: url(../img/ribbon-green-short.png);
  color: #fff !important;
}
body .main-flex main .present .sections-inner .special > .ribbon .content .head_h3 span.small {
  line-height: 1;
  font-size: 16px;
  margin-bottom: 10px;
}
body .main-flex main .present .sections-inner .special > .ribbon .content .head_h3 span.middle {
  font-size: 21px;
  word-break: keep-all;
}
body .main-flex main .present .sections-inner .special > .ribbon .content .head_h3 span.large {
  font-size: 24px;
  word-break: keep-all;
}
body .main-flex main .present .sections-inner .special > .ribbon .content .head_h3 span.inline {
  display: inline;
}
body .main-flex main .present .sections-inner .special > .ribbon .content .head_h3.inline {
  text-align: center;
  display: inline;
  font-size: 24px;
  padding: 0;
}
body .main-flex main .present .sections-inner .special > .ribbon .content .head_h3.inline.block {
  display: block;
}
body .main-flex main .present .sections-inner .special > .ribbon .content .head_h3.inline * {
  display: inline;
  font-size: 24px;
}
body .main-flex main .present .sections-inner .special > .ribbon .content .head_h3.inline .ribbon {
  top: -41px;
}
body .main-flex main .present .sections-inner .special > .ribbon .content .head_h3.inline .small {
  display: block;
  width: 100%;
  line-height: 1.6;
}
body .main-flex main .present .sections-inner .special > .ribbon .content .head_h3.inline .small * {
  font-size: 16px;
}
body .main-flex main .present .sections-inner .special > .ribbon .content .head_h3.inline + p {
  margin-top: 10px;
  margin-bottom: 22px;
  padding: 23px 0 0;
  border-top: 1px #573921 dashed;
  text-align: center;
  font-size: 11px;
  width: 100%;
}
body .main-flex main .present .sections-inner .special > .ribbon .content .head_h3.inline + .flex {
  padding: 0;
  margin-top: 0;
  margin-bottom: 0;
  align-items: center;
}
body .main-flex main .present .sections-inner .special > .ribbon .content .head_h3.inline + .flex .txt {
  width: calc(100% - 120px);
}
body .main-flex main .present .sections-inner .special > .ribbon .content .head_h3.inline + .flex .txt * {
  font-weight: bold;
  text-align: left;
}
body .main-flex main .present .sections-inner .special > .ribbon .content .head_h3.inline + .flex .txt p {
  margin-top: 0;
  font-size: 23px;
  white-space: pre;
}
body .main-flex main .present .sections-inner .special > .ribbon .content .head_h3.inline + .flex .txt img + p {
  margin-top: 10px;
}
body .main-flex main .present .sections-inner .special > .ribbon .content .head_h3.inline + .flex .txt span.small {
  font-size: 7.5px;
}
body .main-flex main .present .sections-inner .special > .ribbon .content .head_h3.inline + .flex .txt span.middle {
  font-size: 27px;
}
body .main-flex main .present .sections-inner .special > .ribbon .content .head_h3.inline + .flex .txt span.large {
  font-size: 35px;
}
body .main-flex main .present .sections-inner .special > .ribbon .content .head_h3 + img {
  margin-top: 16px;
}
body .main-flex main .present .sections-inner .special > .ribbon .content.flex {
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 25px 40px 20px;
  width: 375px;
}
body .main-flex main .present .sections-inner .special > .ribbon .content.flex + .flex {
  margin-top: 20px;
}
body .main-flex main .present .sections-inner .special > .ribbon .content .flex {
  margin: 16px auto 23.5px;
}
body .main-flex main .present .sections-inner .special > .ribbon .content .flex p {
  width: 160px;
}
body .main-flex main .present .sections-inner .special > .ribbon .content .flex img {
  margin: 0;
}
body .main-flex main .present .sections-inner .special > .ribbon .content .flex .flex-item {
  width: 140px;
}
body .main-flex main .present .sections-inner .special > .ribbon .content .flex .flex-item img {
  width: 100% !important;
}
body .main-flex main .present .sections-inner .special > .ribbon .content .flex .flex-item p {
  width: auto;
  text-align: left;
  margin-top: 10px;
  font-weight: bold;
  font-size: 12px;
}
body .main-flex main .present .sections-inner .special > .ribbon .content .flex .flex-item p.center {
  text-align: center;
}
body .main-flex main .present .sections-inner .special > .ribbon .content .flex .flex-item p span {
  font-size: 10px;
}
body .main-flex main .present .sections-inner .special > .ribbon .content .flex + p {
  margin-top: 20px;
  font-weight: bold;
  font-size: 18px;
}
body .main-flex main .present .sections-inner .special > .ribbon .content .flex + p.center {
  text-align: center;
}
body .main-flex main .present .sections-inner .special > .ribbon .content img + p {
  margin-top: 20px;
}
body .main-flex main .present .sections-inner .special > .ribbon .content p {
  font-size: 14px;
}
body .main-flex main .present .sections-inner .special > .ribbon .content + .content {
  margin-top: 30px;
}
body .main-flex main .present .sections-inner .special small {
  display: block;
  max-width: 335px;
  margin: 20px auto 0;
}
body .main-flex main .present .sections-inner .special.under {
  padding-bottom: 60px;
}
body .main-flex main .present .sections-inner .area_present {
  padding-bottom: 25px;
}
body .main-flex main .present .sections-inner .area_present * {
  text-align: center;
}
body .main-flex main .present .sections-inner .area_present img {
  width: 227px;
  height: auto;
  margin: 0 auto 15px;
}
body .main-flex main .present .sections-inner .area_present p {
  display: block;
  width: max-content;
  text-align: center;
  margin-right: auto;
  margin-left: auto;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 15px;
}
@media screen and (max-width: 950px) {
  body .main-flex main .present .sections-inner .area_present p {
    text-align: left;
  }
}
body .main-flex main .present .sections-inner .area_present p .underline {
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
body .main-flex main .present .sections-inner .area_present small {
  display: block;
}
@media screen and (max-width: 950px) {
  body .main-flex main .present .sections-inner .enquete {
    width: calc(100% - 75px);
    padding: 0 0 50px;
    border-bottom: unset;
    margin: -25px auto 0;
  }
  body .main-flex main .present .sections-inner .enquete .head_h2 .square {
    margin: 0 auto 15px;
    width: 285px;
  }
  body .main-flex main .present .sections-inner .special {
    padding: 0px 0;
  }
  body .main-flex main .present .sections-inner .special .head_h2 + picture {
    margin-bottom: 0;
  }
  body .main-flex main .present .sections-inner .special .course {
    width: 335px;
    padding: 60px 20px 27.5px;
  }
  body .main-flex main .present .sections-inner .special .solar_system {
    width: 89.3333333333vw;
    padding: 0 0 27.5px;
  }
  body .main-flex main .present .sections-inner .special .solar_system small {
    max-width: 100%;
  }
  body .main-flex main .present .sections-inner .special .solar_system .content {
    width: calc(100% - 20px);
    padding: 33px 10px 0;
  }
  body .main-flex main .present .sections-inner .special > .ribbon .content img {
    width: calc(100% - 20px);
    height: auto;
  }
  body .main-flex main .present .sections-inner .special > .ribbon .content img.fukidashi.iiie-01 {
    width: 110px;
    right: 10px;
    top: 218px;
  }
  body .main-flex main .present .sections-inner .special > .ribbon .content img.fukidashi.iiie-03 {
    width: 85px;
    left: 15px;
    top: 190px;
  }
  body .main-flex main .present .sections-inner .special > .ribbon .content .head_h3.inline + .flex {
    padding-left: 10px;
    padding-right: 10px;
  }
  body .main-flex main .present .sections-inner .special > .ribbon .content .head_h3.inline + .flex img {
    width: 120px;
  }
  body .main-flex main .present .sections-inner .special > .ribbon .content.flex {
    width: 335px;
    padding: 25px 10px 20px;
  }
  body .main-flex main .present .sections-inner .special small {
    max-width: 100%;
    width: 100%;
    padding: 0 20px;
  }
  body .main-flex main .present .sections-inner .special.under {
    padding-bottom: 40px;
  }
  body .main-flex main .present .sections-inner .area_present {
    padding-top: 25px;
    padding-bottom: 50px;
  }
}

.present_more_head {
  margin-top: 20px;
  width: 131px;
}

.present_more {
  margin-top: 10px;
  width: 100%;
  border-radius: 5px;
  background-color: #fff;
  padding: 20px 15px 20px;
}

.present_more_img {
  width: 295px;
}

body .main-flex.region.toukatsu .present .sections-inner .special .present_more > small {
  margin-top: 10px;
  text-align: center;
}

/*日本語*/
body .main-flex main .normal .normal-navigation .sections-inner {
  padding: 60px 0 68px;
}
body .main-flex main .normal .normal-navigation .sections-inner .head_h2 {
  text-align: center;
  margin-bottom: 30px;
}
body .main-flex main .normal .normal-navigation .sections-inner .head_h2 span {
  line-height: 1;
}
body .main-flex main .normal .normal-navigation .sections-inner .head_h2 span.small {
  font-size: 18px;
  display: block;
  margin-bottom: 25px;
}
body .main-flex main .normal .normal-navigation .sections-inner .head_h2 span.large {
  font-size: 30px;
}
body .main-flex main .normal .normal-navigation .sections-inner .nav li a {
  width: 300px;
  height: 75px;
  border-radius: 50px;
  position: relative;
  display: flex;
  background: #003067;
  padding-left: 75px;
  flex-direction: column;
  align-items: flex-start;
  padding-left: 75px;
  margin-left: 118px;
}
body .main-flex main .normal .normal-navigation .sections-inner .nav li a:before {
  position: absolute;
  content: "";
  top: 50%;
  transform: translateY(-50%);
  background: url(../img/arrow-fff.svg) no-repeat;
  background-size: contain;
  width: 6px;
  height: 10px;
  right: 23px;
}
body .main-flex main .normal .normal-navigation .sections-inner .nav li a img {
  position: absolute;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  padding: 2px;
  background: #fff;
  left: -35px;
  outline: 1px solid #33495d; /* 外側に線 */
  outline-offset: 0px; /* 外側へ距離を広げる */
}
body .main-flex main .normal .normal-navigation .sections-inner .nav li a span {
  color: #fff;
  font-weight: 700;
  display: block;
  line-height: 1;
}
body .main-flex main .normal .normal-navigation .sections-inner .nav li a span.sub {
  font-size: 13px;
  margin-bottom: 9px;
}
body .main-flex main .normal .normal-navigation .sections-inner .nav li a span.main {
  font-size: 20px;
}
body .main-flex main .normal .normal-navigation .sections-inner .nav li + li {
  margin-top: 25px;
}
body .main-flex main .normal .content > picture {
  display: block;
  margin: 0 auto;
}
body .main-flex main .normal .content > picture img {
  margin: 0 auto;
}
body .main-flex main .normal .content .head_h2 {
  width: 100%;
  height: 90px;
  background: #003067;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-direction: column;
}
body .main-flex main .normal .content .head_h2 span {
  color: #fff;
  display: block;
  line-height: 1;
}
body .main-flex main .normal .content .head_h2 span.sub {
  font-size: 13px;
  margin-bottom: 10px;
}
body .main-flex main .normal .content .head_h2 span.main {
  font-size: 30px;
}
body .main-flex main .normal .content .sections-inner p.center {
  margin-top: 24.5px;
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: 700;
}
body .main-flex main .normal .content .sections-inner .circle {
  justify-content: center;
  gap: 10px;
  margin: 0 auto 20px;
}
body .main-flex main .normal .content .sections-inner .circle .flex-item {
  border-radius: 50%;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--main-blue);
  font-size: 13px;
  font-weight: 700;
  background-color: var(--main-skyblue);
}
body .main-flex main .normal .content .sections-inner .circle + p {
  margin: 0 auto;
  max-width: 335px;
  font-size: 14px;
}
body .main-flex main .normal .content .sections-inner .circle + p + .border {
  margin-top: 60px;
}
body .main-flex main .normal .content .sections-inner .border {
  border: 1px solid #33495d;
  width: 100%;
  max-width: 337px;
  margin: 0 auto;
  border-radius: 10px;
  padding: 0 0 20px;
}
body .main-flex main .normal .content .sections-inner .border .head_h3 {
  position: relative;
}
body .main-flex main .normal .content .sections-inner .border .head_h3.ribbon {
  height: 50px;
  border-radius: 7px 7px 0 0;
  margin-bottom: 15px;
  background: #003067;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 20px;
}
body .main-flex main .normal .content .sections-inner .border .head_h3 .fukidashi {
  border-radius: 7.5px;
  position: absolute;
  left: 50%;
  top: -70px;
  transform: translateX(-50%);
  width: 275px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  background: var(--main-blue);
  font-weight: 700;
  font-size: 18px;
}
body .main-flex main .normal .content .sections-inner .border .head_h3 .fukidashi:before {
  position: absolute;
  content: "";
  top: 50%;
  transform: translateY(-50%);
  background: url(../img/arrow-border.svg) no-repeat;
  left: 50%;
  transform: translateX(-50%);
  top: unset;
  bottom: -10px;
  width: 25px;
  height: 14px;
}
body .main-flex main .normal .content .sections-inner .border .head_h3 + img {
  width: calc(100% - 40px);
  margin: 0 auto 0px;
}
body .main-flex main .normal .content .sections-inner .border .head_h4 {
  margin-top: 30px;
  padding: 0 20px;
  letter-spacing: 0.04em;
}
body .main-flex main .normal .content .sections-inner .border .head_h4 + p {
  margin-top: 9px;
  padding: 0 20px;
  font-size: 14px;
}
body .main-flex main .normal .content .sections-inner .border .head_h4 + p + .head_h4 {
  margin-top: 30px;
}
body .main-flex main .normal .content .sections-inner .border .head_h4 + p + img {
  width: calc(100% - 40px);
  margin: 0 auto 0px;
}
body .main-flex main .normal .content .sections-inner .border .head_h4 .point {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  height: 35px;
  margin: 0 auto 20px;
  color: #003067;
  background-color: #ecf4fa;
  border-radius: 7.5px;
}
body .main-flex main .normal .content .sections-inner .border .head_h4 + .head_h4 {
  margin-top: 25px;
}
body .main-flex main .normal .content .sections-inner .border .head_h4 + .flex {
  margin-top: 9.5px;
}
body .main-flex main .normal .content .sections-inner .border p.note {
  font-size: 12px;
  margin-bottom: 20px;
}
body .main-flex main .normal .content .sections-inner .border .flex {
  gap: 15.5px;
  justify-content: center;
}
body .main-flex main .normal .content .sections-inner .border .flex img {
  width: 92px;
  height: auto;
  object-fit: contain;
}
body .main-flex main .normal .content .sections-inner .border .flex p {
  font-size: 12px;
  width: 187.5px;
}
body .main-flex main .normal .content .sections-inner .border .flex + .head_h4 {
  margin-top: 25px;
}
body .main-flex main .normal .content#tile .head_h2 {
  margin-bottom: 15px;
}
body .main-flex main .normal .content#tile .sections-inner > p {
  font-size: 24px;
  margin-bottom: 20px;
  font-weight: 700;
  text-align: center;
}
body .main-flex main .normal .content#tile .sections-inner > p span {
  font-size: 30px;
  font-weight: 700;
  text-align: center;
}
body .main-flex main .normal .content#tile .sections-inner > p span.large {
  line-height: 1;
  margin-top: 5.5px;
}
body .main-flex main .normal .content#tile .sections-inner > p + img {
  margin: 0 auto 30px;
}
body .main-flex main .normal .content#two-six {
  margin-top: 70px;
}
body .main-flex main .normal .content#two-six .head_h2 {
  margin-bottom: 25px;
}
body .main-flex main .normal .content#two-six .sections-inner {
  padding-bottom: 60px;
}
body .main-flex main .normal .content#two-six .sections-inner > p:first-of-type {
  font-size: 18px;
  margin-bottom: 20px;
  font-weight: 700;
  text-align: center;
}
body .main-flex main .normal .content#two-six .sections-inner .border {
  border: none;
  background-color: var(--main-skyblue);
  margin-top: 80px;
  padding-top: 48px;
  padding-left: 15px;
  padding-right: 15px;
  padding-bottom: 30px;
}
body .main-flex main .normal .content#two-six .sections-inner .border .head_h3 {
  margin-bottom: 20px;
}
body .main-flex main .normal .content#two-six .sections-inner .border .head_h3 span {
  display: block;
  line-height: 1;
  text-align: center;
}
body .main-flex main .normal .content#two-six .sections-inner .border .head_h3 span.fukidashi {
  display: flex;
}
body .main-flex main .normal .content#two-six .sections-inner .border .head_h3 span.small {
  color: #454545;
  font-size: 13px;
  margin-bottom: 15px;
}
body .main-flex main .normal .content#two-six .sections-inner .border .head_h3 span.large {
  color: #33495d;
  font-size: 21px;
  margin-bottom: 15px;
}
body .main-flex main .normal .content#two-six .sections-inner .border .head_h3 + img {
  width: 100%;
}
body .main-flex main .normal .content#two-six .sections-inner .border img {
  margin-bottom: 26px;
}
body .main-flex main .normal .content#two-six .sections-inner .border img + p {
  padding: 0 5px;
  color: #454545;
  font-size: 14px;
}
body .main-flex main .normal .content + .content {
  margin-top: 50px;
}
body .main-flex .tyle-head {
  width: 280px;
}
@media screen and (max-width: 950px) {
  body .main-flex main .normal .normal-navigation .sections-inner {
    padding: 50px 0 60px;
  }
  body .main-flex main .normal .normal-navigation .sections-inner .nav li a {
    margin-left: 0;
    transform: translateX(calc(50vw - 50% + 15px));
  }
  body .main-flex main .normal .content#tile .head_h2 {
    margin-bottom: 40px;
  }
  body .main-flex main .normal .content#tile .point {
    margin-bottom: 10px;
  }
  body .main-flex main .normal .content#tile .head_h4 {
    margin-top: 20px;
  }
  body .main-flex main .normal .content#tile .head_h4 + p + .head_h4 {
    margin-top: 20px;
  }
}

/*日本語*/
body .main-flex .c-title-panel {
  width: 335px;
  height: 45px;
  border-radius: 7.5px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  font-weight: 700;
  line-height: 1;
  font-size: 16px;
  margin: 0 auto 16px;
}
body .main-flex .c-border {
  border: 1px solid #33495d;
  width: 100%;
  max-width: 337px;
  margin: 0 auto;
  border-radius: 10px;
  padding: 20px;
}
body .main-flex .c-border.--red {
  border-color: var(--main-clearred);
}

/*日本語*/
body .main-flex.region .mv .text {
  top: 320px;
}
body .main-flex.region main .present .sections-inner .enquete {
  padding-bottom: 20px;
}
body .main-flex.region .gift {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
body .main-flex.region .gift .fukubukuro {
  max-width: 400px;
  width: 100%;
}
body .main-flex.region .gift .step-more {
  margin-top: 30px;
  width: 131px;
}
body .main-flex.region .gift .head_h2 {
  margin-top: 15px;
}
body .main-flex.region .gift .tokyo-step {
  margin-top: 20px;
  max-width: 335px;
  width: 100%;
}
body .main-flex.region .constraints {
  margin-right: auto;
  margin-left: auto;
  max-width: 337px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
  padding-bottom: 60px;
}
body .main-flex.region .constraints .head_h2 {
  text-align: center;
}
body .main-flex.region .constraints .head_h2 span {
  line-height: 1.2;
}
body .main-flex.region .constraints .head_h2-txt {
  margin-top: 15px;
  letter-spacing: 0.05em;
}
body .main-flex.region .constraints .head_h2-txt .inline {
  margin-left: -5px;
}
body .main-flex.region .constraints .square {
  margin-top: 15px;
  width: 275px;
  margin-right: auto;
  margin-left: auto;
}
body .main-flex.region .constraints .tokyo-subsidy {
  margin-top: 20px;
}
body .main-flex.region .constraints .tokyo-subsidy .flex-wrap {
  display: flex;
  justify-content: space-between;
  margin-bottom: 16px;
}
body .main-flex.region .constraints .tokyo-subsidy .flex-wrap .sets {
  width: 90px;
}
body .main-flex.region .constraints .tokyo-subsidy .flex-wrap .sets p {
  text-align: center;
}
body .main-flex.region .constraints .tokyo-subsidy .flex-wrap .sets img {
  width: 90px;
}
body .main-flex.region .constraints .tokyo-subsidy .flex-wrap .sets .under-text {
  font-size: 12px;
  margin-top: 0;
}
body .main-flex.region .constraints .tokyo-subsidy img + p {
  margin-top: 20px;
  font-size: 14px;
}
body .main-flex.region .constraints .tokyo-subsidy .red-clear {
  font-weight: 700;
}
body .main-flex.region .constraints .note {
  margin-top: 15px;
  font-size: 10px;
}
body .main-flex.region .constraints > small {
  margin-top: 20px;
}
body .main-flex.region main .showroom.showroom-type02 {
  background: var(--main-blue);
}
body .main-flex.region main .showroom.showroom-type02 .head_h3 {
  background: none;
  color: #fff;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  border-radius: 0;
  max-width: 335px;
  width: 100%;
  margin-top: 40px;
  margin-bottom: 20px;
}
body .main-flex.region main .showroom.showroom-type02 ul li .ttl {
  color: #242628;
}
body .main-flex.region main .showroom.showroom-type02 ul li .flex .txt .tel a {
  color: var(--main-gold) !important;
}
body .main-flex.region main .showroom.showroom-type02 ul li .flex li {
  width: 140px;
  height: 30px;
}
body .main-flex.region.saitama .gift .step-more {
  margin-top: 20px;
}
body .main-flex.region.saitama main .present .sections-inner .enquete {
  padding-bottom: 50px;
}
body .main-flex.region.saitama .saitama-present1 {
  margin-top: 5px;
  margin-bottom: 15px;
}
body .main-flex.region.chiba .present .sections-inner .enquete {
  padding-bottom: 40px;
}
body .main-flex.region.chiba .present .sections-inner .enquete .btn {
  margin-top: 30px;
}
body .main-flex.region.chiba .present .sections-inner .special {
  margin-top: 30px;
}
body .main-flex.region.chiba .constraints .head_h2 span {
  margin-bottom: 20px;
}
body .main-flex.region.chiba .constraints .square {
  margin-top: 10px;
}
body .main-flex.region.chiba .present .sections-inner .special p {
  font-size: 16px;
}
body .main-flex.region.chiba .present .sections-inner .special small {
  margin-top: 30px;
}
body .main-flex.region.chiba .present .sections-inner .special > .ribbon .content .flex .flex-item p {
  margin-top: 5px;
}
body .main-flex.region.chiba .present .sections-inner .special.under {
  padding-bottom: 50px;
}
body .main-flex.region.toukatsu .present .sections-inner .enquete {
  padding-bottom: 40px;
}
body .main-flex.region.toukatsu .present .sections-inner .enquete .btn {
  margin-top: 30px;
}
body .main-flex.region.toukatsu .present .sections-inner .special {
  margin-top: 30px;
}
body .main-flex.region.toukatsu .constraints .head_h2 span {
  margin-bottom: 20px;
}
body .main-flex.region.toukatsu .constraints .square {
  margin-top: 10px;
}
body .main-flex.region.toukatsu .present .sections-inner .special p {
  font-size: 16px;
}
body .main-flex.region.toukatsu .present .sections-inner .special small {
  margin-top: 20px;
}
body .main-flex.region.toukatsu .present .sections-inner .special > .ribbon .content .flex .flex-item p {
  margin-top: 5px;
}
body .main-flex.region.toukatsu .present .sections-inner .special.under {
  padding-bottom: 50px;
}
body .main-flex.region.kanagawa .present .sections-inner .enquete {
  padding-bottom: 50px;
}
body .main-flex.region.kanagawa .present .sections-inner .special .head_h2 span.normal {
  letter-spacing: 0.05em;
}
body .main-flex.region.kanagawa .present .sections-inner .special .head_h2 span.normal .num {
  font-size: 45px;
  line-height: 1;
}
body .main-flex.region.kanagawa .present .sections-inner .special .solar_system {
  margin-top: 15px;
}
body .main-flex.region.kanagawa .present .sections-inner .special.under {
  padding-bottom: 50px;
}
body .main-flex.region.yamanashi .constraints .square {
  margin-top: 20px;
  margin-bottom: 10px;
}
body .main-flex.region.yamanashi .constraints .head_h2 {
  letter-spacing: 0.05em;
}
body .main-flex.region.yamanashi .constraints .head_h2 span {
  line-height: 1;
}
body .main-flex.region.yamanashi .present .sections-inner .special .course {
  margin-top: 40px;
  padding-top: 40px;
  padding-left: 20px;
  padding-right: 20px;
  position: relative;
}
body .main-flex.region.yamanashi .present .sections-inner .special .course + .course {
  margin-top: 50px;
}
body .main-flex.region.yamanashi .present .sections-inner .special .course .head_h3 {
  width: 270px;
  margin-right: auto;
  margin-left: auto;
}
body .main-flex.region.yamanashi .present .sections-inner .special .course.other {
  margin-top: 20px;
  padding: 11px 20px;
  text-align: center;
  line-height: 1.8;
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  background-color: var(--main-gold);
}
body .main-flex.region.yamanashi .present .sections-inner .special.under {
  padding-bottom: 50px;
}

@media screen and (max-width: 950px) {
  body .main-flex.region .mv .text {
    top: 45.3333333333vw;
  }
  body .main-flex.region main .present .sections-inner .enquete {
    width: calc(100% - 40px);
    padding-bottom: 50px;
    margin-top: -25px;
  }
  body .main-flex.region main .present .sections-inner .enquete .head_h2 .square {
    max-width: 335px;
  }
  body .main-flex.region .gift .fukubukuro {
    width: auto;
    overflow: hidden;
  }
  body .main-flex.region .constraints {
    padding-bottom: 50px;
  }
  body .main-flex.region main .showroom.showroom-type02 .head_h3 {
    margin-top: 0px;
    margin-bottom: 25px;
  }
  body .main-flex.chiba {
    overflow: hidden;
  }
  body .main-flex.toukatsu {
    overflow: hidden;
  }
}
/*日本語*/
.js-pagetop {
  background-image: url(/pages/lp/2025-autumn-cp/img/pagetop.png);
}

.p-page__btn {
  width: 50px;
  height: 50px;
  cursor: pointer;
  transition: 0.5s;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  position: fixed;
  z-index: 100;
}
@media screen and (min-width: 951px) {
  .p-page__btn {
    bottom: 30px;
    right: 20px;
  }
}
@media screen and (max-width: 950px) {
  .p-page__btn {
    bottom: 85px;
    right: 4vw;
  }
}

.scroll {
  position: absolute;
  bottom: 10px;
  width: 3em;
  height: 3em;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 950px) {
  .scroll {
    display: none;
  }
}
.scroll span {
  width: 30px;
  height: 19px;
  position: absolute;
  top: 25%;
  left: 33%;
  transform: translateY(0);
  background: url(../img/next.svg) no-repeat;
  z-index: 2;
  animation: popping-arrow 2s infinite ease-out;
}
.scroll:hover span {
  transform: translateY(0.5em);
  animation: paused;
}

@keyframes popping-arrow {
  0% {
    transform: translateY(0);
  }
  30% {
    transform: translateY(0.5em);
  }
  60% {
    transform: translateY(0);
  }
}/*# sourceMappingURL=style.css.map */