@charset "UTF-8";
/* CSS Document */

/*--------------------------------------------------------------------

////////////////　BASE

--------------------------------------------------------------------*/

*,
*:before,
*:after {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
}

body {
  font-feature-settings: "palt";
  line-height: 1;
  color: #000;
  margin: 0;
  padding: 0;
  text-align: center;
  font-size: 1.6em;
  min-width: 100%;
  width: 100%;
  height: 100%;
  position: relative;
  background: #fff;
}

h1,
h2,
h3,
h4,
ul,
ol,
dl,
li,
dt,
dd,
p,
div,
span,
em,
img,
a,
table,
tr,
th,
td,
article,
header,
footer,
aside,
figure,
figcaption,
nav,
section {
  margin: 0;
  padding: 0;
  border: 0;
  font-weight: normal;
  font-size: 100%;
  vertical-align: baseline;
}

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

picture {
  display: block;
}

figure {
  margin: 0;
}

img {
  vertical-align: bottom;
  width: 100%;
  height: auto;
}
span {
  font-size: inherit;
  font-weight: inherit;
}

/*--------------------------------------------------------------------

////////////////　CMN

--------------------------------------------------------------------*/
body > .wrapper {
  width: 100%;
  max-width: 100%;
  min-width: 100%;
}
header,
main {
  font-family:
    "游ゴシック体", "Yu Gothic", "YuGothic", "ヒラギノ角ゴシック Pro",
    "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "Osaka",
    "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: normal;
  box-sizing: border-box;
}
a {
  text-decoration: none;
  color: #000;
  transition: 0.3s ease-in-out;
}
a:hover {
  opacity: 0.75;
}
:root {
  --keyColor: #708097;
}

@media screen and (max-width: 767px) {
  .br-pc {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
  .br-sp {
    display: none;
  }
}

/*--------------------------------------------------------------------

////////////////　HEADER

--------------------------------------------------------------------*/
header {
  position: relative;
}
.heimLogo {
  line-height: 1;
  position: absolute;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .heimLogo {
    width: 48dvw;
    left: 4.3vw;
    top: 3.6vw;
  }
}
@media screen and (min-width: 768px) {
  .heimLogo {
    width: 250px;
    left: 15px;
    top: 12px;
  }
}
/* img */
.mainImgBox {
  overflow: hidden;
  position: relative;
  color: #595757;
}
.mainImgBox .imgBox {
  transform-origin: center center;
  transform: scale(1.1);
  animation: mainFade 3s ease-out forwards;
}
@keyframes mainFade {
  from {
    transform: scale(1.1);
  }
  to {
    transform: scale(1);
  }
}
@media screen and (max-width: 767px) {
  .mainImgBox {
    aspect-ratio: 390 / 510;
  }
}
@media screen and (min-width: 768px) {
  .mainImgBox {
    height: 600px;
  }
  .mainImgBox .imgBox {
    width: 100%;
    height: 100%;
  }
  .mainImgBox .imgBox img {
    width: 100%;
    height: 600px;
    object-fit: cover;
  }
}

/* text */
.mainImgBox .txtBox {
  display: flex;
  align-items: center;
  flex-direction: column;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
.mainImgBox .txtBox .b-en {
  width: 100%;
}
.mainImgBox .txtBox .line {
  opacity: 0;
  transform: translateY(15px);
  animation: mainTxt 1s ease-out forwards;
}
.mainImgBox .txtBox .line01 {
  animation-delay: 0.4s;
}
.mainImgBox .txtBox .line02 {
  animation-delay: 0.8s;
}
.mainImgBox .txtBox .line03 {
  animation-delay: 1.2s;
}
@keyframes mainTxt {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.mainImgBox .txtBox .b-jpBox {
  display: inline-block;
}
.mainImgBox .txtBox .e-shoulder,
.mainImgBox .txtBox .b-jp {
  font-weight: bold;
  line-height: 1;
  overflow: hidden;
}
.mainImgBox .txtBox .e-shoulder span:last-of-type {
  display: inline-block;
  padding: 0 0.5em;
  margin-left: 0.6em;
  border-left: 2px solid;
  border-right: 2px solid;
}
.mainImgBox .txtBox .b-jp {
  animation: typingEffect 0.5s steps(17) forwards;
  animation-delay: 2s;
  white-space: nowrap;
  width: 0;
}
/* 2026.6 九州版のため追記 */
.mainImgBox .e-balloon {
  animation: balloonEffect 0.5s forwards;
  animation-delay: 2.5s;
  opacity: 0;
  position: absolute;
  right: -35%;
  top: 5%;
  transform: translateX(-5px);
}
.mainImgBox .e-balloon img {
  max-width: 135px;
  min-width: 135px;
  width: 9vw;
}
@keyframes typingEffect {
  to {
    width: 100%;
  }
}
@keyframes balloonEffect {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@media screen and (max-width: 767px) {
  .mainImgBox .txtBox {
    top: 19.2vw;
    width: 100%;
  }
  .mainImgBox .txtBox .b-en {
    width: 56.4dvw;
  }
  .mainImgBox .txtBox .line-welcome {
    margin-bottom: 6vw;
  }
  .mainImgBox .txtBox .e-shoulder {
    font-size: 4.1vw;
    margin-bottom: 1em;
  }
  .mainImgBox .txtBox .b-jp {
    margin-bottom: 8.5vw;
    font-size: 5.64vw;
  }
  .mainImgBox .e-balloon {
    bottom: -30%;
    right: 10px;
    top: unset;
    transform: translateY(5px);
  }
  .mainImgBox .e-balloon img {
    max-width: 135px;
    min-width: unset;
    width: 23.8vw;
  }
}
@media screen and (min-width: 768px) {
  .mainImgBox .txtBox {
    top: 55px;
  }
  .mainImgBox .txtBox .b-en {
    width: 358px;
  }
  .mainImgBox .txtBox .line-welcome {
    margin-bottom: 30px;
  }
  .mainImgBox .txtBox .e-shoulder {
    font-size: 18px;
    margin-bottom: 1em;
  }
  .mainImgBox .txtBox .b-jp {
    margin-bottom: 40px;
    font-size: 32px;
  }
}

/*--------------------------------------------------------------------

////////////////　MAIN

--------------------------------------------------------------------*/
.mainCont {
  position: relative;
}

/* sliderWrap
--------------------------------------------------------------------*/
.b-sliderWrap {
  width: 100%;
  position: absolute;
  left: 0;
  z-index: 10;
}
.b-mainSlider .b-item {
  opacity: 1;
  transition: 1s all;
}
.b-mainSlider:not(.slick-initialized) .b-item {
  opacity: 0;
}
@media screen and (max-width: 767px) {
  .b-sliderWrap {
    top: 0;
    transform: translateY(-100%);
  }
  .b-mainSlider .b-item {
    width: calc(120 / 390 * 100vw);
    margin: 0 2vw;
  }
}
@media screen and (min-width: 768px) {
  .b-sliderWrap {
    top: calc(-180px + 75px);
  }
  .b-sliderInner {
    position: relative;
  }
  .b-sliderInner::before {
    content: "";
    display: block;
    width: 100%;
    height: 28px;
    background: url(../images/scale.png) left top repeat-x;
    position: absolute;
    top: 28px;
    left: 0;
    z-index: 1;
  }

  .b-mainSlider .b-item {
    width: 180px;
    margin: 0 40px;
  }
}

/* introBox
--------------------------------------------------------------------*/

.introBox {
  background: #183b51;
  position: relative;
  z-index: 2;
}
.introBox .inner {
  max-width: 1500px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

/* 背景専用レイヤー */
.introBg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.introBg-item {
  position: absolute;
  inset: 0;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;

  animation-duration: 12s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}

/* 1枚目 */
.introBg-item01 {
  background-image: url(../images/intro-pc.jpg);
  animation-name: introFade01;
}

/* 2枚目 */
.introBg-item02 {
  background-image: url(../images/intro-pc-02.jpg);
  animation-name: introFade02;
}

.introBox-inner {
  display: flex;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .introBox .inner {
    padding-bottom: 81vw;
  }

  .introBg-item01 {
    background-image: url(../images/intro-sp.jpg);
    background-position: center bottom;
    background-size: contain;
  }

  .introBg-item02 {
    background-image: url(../images/intro-sp-02.jpg);
    background-position: center bottom;
    background-size: contain;
  }
}

@media screen and (min-width: 768px) {
  .introBox .inner {
    padding: 75px 0;
  }
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
  .introBg-item01 {
    background-image: url(../images/intro-pc-m.jpg);
  }

  .introBg-item02 {
    background-image: url(../images/intro-pc-m-02.jpg);
  }
}
/* アニメーション */

/* フェードだけ制御 */
@keyframes introFade01 {
  0% {
    opacity: 1;
  }
  42% {
    opacity: 1;
  }
  52% {
    opacity: 0;
  }
  90% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes introFade02 {
  0% {
    opacity: 0;
  }
  42% {
    opacity: 0;
  }
  52% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

.introBox-inner {
  display: flex;
  position: relative;
  z-index: 1;
}
.introBox .txtBox {
  color: #fff;
  backdrop-filter: blur(20px);
}
.introBox .txtBox .e-mds {
  font-weight: bold;
  line-height: 1.71;
  margin-bottom: 1.2em;
}
.introBox .txtBox .b-txt {
  line-height: 2.05;
}
.introBox .txtBox p + p {
  margin-top: 1.8em;
}

.introBox .img01,
.introBox .img02 {
  position: relative;
}
.introBox .img01 picture:nth-of-type(2),
.introBox .img02 picture:nth-of-type(2) {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
}

.introBox .img01 picture:nth-of-type(2) {
  animation: imgFade01 8s infinite;
}
.introBox .img02 picture:nth-of-type(2) {
  animation: imgFade01 9s 3s infinite;
}
@keyframes imgFade01 {
  0% {
    opacity: 0;
  }
  25% {
    opacity: 1;
  }
  45% {
    opacity: 1;
  }
  65% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

@media screen and (max-width: 767px) {
  .introBox .inner {
    padding-bottom: 81vw;
  }
  .introBox-inner {
    flex-direction: column-reverse;
  }
  .introBox .txtBox {
    width: 90%;
    margin: 0 auto 0;
    padding: 6.5vw 0 12vw;
    border-radius: 0 0 10vw 10vw;
    filter: drop-shadow(0 0 15px #000);
  }
  .introBox .txtBox .e-mds {
    font-size: 7.179vw;
  }
  .introBox .txtBox .b-txt {
    font-size: 4.615vw;
  }
  .introBox .imgBox {
    /* display: flex; */
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .introBox-inner {
    flex-direction: row-reverse;
  }
  .introBox .txtBox {
    display: inline-flex;
    flex-direction: column;
    padding: 80px 50px;
    text-align: left;
    border-radius: 0 0 150px 0;
    margin-right: auto;
  }
  .introBox .txtBox .e-mds {
    font-size: 26px;
  }
  .introBox .txtBox .b-txt {
    font-size: 20px;
  }
  .introBox .imgBox {
    width: 325px;
    margin: 0;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .introBox .imgBox {
    display: none;
  }
}

/* アンダーライン */

.introBox .e-lineText {
  position: relative;
  display: inline-block;
}

.introBox .e-lineText::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0.15em;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.8s ease;
}

.introBox .e-lineText.is-active::after {
  transform: scaleX(1);
}
/* 1行目 */
.introBox .e-lineText:nth-of-type(1)::after {
  transition-delay: 0s;
}

/* 2行目 */
.introBox .e-lineText:nth-of-type(2)::after {
  transition-delay: 0.3s;
}

/* LinkBtn toFormBtn
--------------------------------------------------------------------*/
.LinkBtn a {
  display: flex;
  align-items: center;
}
.LinkBtn .b-mark {
  background: #1aa8b7;
  border-radius: 50%;
}
.toFormBtn {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 100%);
}
.toFormBtn a {
  justify-content: center;
  background: #fff;
  border-radius: 200px;
  text-align: center;
  font-weight: bold;
  color: #595757;
  position: relative;
}
.toFormBtn .e-1stLine,
.toFormBtn .e-2ndLine {
  font-weight: bold;
  line-height: 1.2;
}
.toFormBtn .e-1stLine {
  margin-bottom: 0.3em;
}
.toFormBtn .b-mark {
  position: absolute;
  /* transform: rotate(90deg); */
}
@media screen and (max-width: 767px) {
  .LinkBtn .b-mark {
    width: 9.744vw;
  }
  .LinkBtn .b-mark img {
    transform: scale(1.5) translateX(3%);
  }
  .toFormBtn {
    width: 90%;
    transform: translate(-50%, 70%);
  }
  .toFormBtn a {
    filter: drop-shadow(0 0 20px rgb(255 255 255 / 0.4));
  }
  .toFormBtn .b-txt {
    margin: 5vw auto 3.5vw;
  }
  .toFormBtn .e-1stLine {
    font-size: 6.41vw;
  }
  /* 2026.6 コメントアウト
  .toFormBtn .e-1stLine span {
    display: block;
  }
  */
  .toFormBtn .e-2ndLine {
    display: block;
    font-size: 3.846vw;
    margin-top: -1vw;
  }
  .toFormBtn .b-mark {
    right: 3vw;
  }
}
@media screen and (min-width: 768px) {
  .LinkBtn .b-mark {
    width: 62px;
  }
  .LinkBtn .b-mark img {
    transition: transform 0.3s ease;
  }
  .LinkBtn a:hover .b-mark img {
    transition: 0.3s all;
    transform: translateX(10%);
  }
  .toFormBtn {
    width: 720px;
    transform: translate(-50%, 70%);
  }
  .toFormBtn a {
    filter: drop-shadow(0 0 40px rgb(255 255 255 / 0.4));
  }
  .toFormBtn .b-txt {
    margin: 30px auto 32px;
  }
  .toFormBtn .e-1stLine {
    font-size: 30px;
    margin-bottom: 0.3em;
  }
  .toFormBtn .e-2ndLine {
    font-size: 22px;
  }
  .toFormBtn .b-mark {
    right: 30px;
  }
}
/* fixBtn
--------------------------------------------------------------------*/
.b-fixBtn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;

  opacity: 0;
  transform: translateY(100px);
  transition:
    opacity 0.5s ease,
    transform 0.5s ease;
  pointer-events: none;
}

.b-fixBtn.is-show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.b-fixBtn.hide {
  opacity: 0;
  transform: translateY(100px);
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .b-fixBtn {
    bottom: 10px;
    right: 10px;
    width: 115px;
  }
}
@media screen and (min-width: 768px) {
  .b-fixBtn {
    width: 180px;
  }
}

/* pickup
--------------------------------------------------------------------*/
.pickupBox {
  background-repeat: no-repeat;
  background-position: bottom center;
  background-color: #708097;
  position: relative;
  z-index: 0;
}
.pickupBox::before {
  content: "";
  display: block;
  width: 100%;
  background: #62768e;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.pickupBox::after {
  content: "";
  display: block;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  background: #708097;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 99%);
}
.pickupBox .e-mds {
  color: #fff;
  font-weight: bold;
}
.pickupBox .e-conclusion {
  color: #fff;
  font-weight: bold;
  line-height: 1.81;
}
.pickupBox .e-conclusion span {
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .pickupBox {
    background-image: url(../images/pickup-bg-sp.png);
    background-size: contain;
    padding: 63vw 0 15vw;
  }
  .pickupBox::before {
    height: 52.56vw;
    clip-path: polygon(0 0, 100% 0, 100% 38.4vw, 50% 100%, 0 38.4vw);
  }
  .pickupBox::after {
    aspect-ratio: 131/42;
    width: 132px;
  }
  .pickupBox .e-mds {
    font-size: 7.69vw;
  }
  .pickupBox .e-conclusion {
    font-size: 5.64vw;
    margin-top: 15vw;
  }
}
@media screen and (min-width: 768px) {
  .pickupBox {
    background-image: url(../images/pickup-bg-pc.png);
    background-size: 2000px;
    padding: 430px 0 65px;
  }
  .pickupBox::before {
    height: 355px;
    clip-path: polygon(0 0, 100% 0, 100% 150px, 50% 100%, 0 150px);
  }
  .pickupBox::after {
    aspect-ratio: 195/42;
    width: 195px;
  }
  .pickupBox .e-mds {
    font-size: 45px;
  }
  .pickupBox .e-conclusion {
    font-size: 30px;
    margin-top: 90px;
  }
}
@media screen and (max-width: 1300px) {
  .pickupBox .e-mds {
    margin-bottom: 1.3em;
  }
}
@media screen and (min-width: 1301px) {
  .pickupBox .e-mds {
    margin-bottom: 1.7em;
  }
}

/* panels */
.pickupBox .b-panels {
  max-width: 1500px;
  margin: 0 auto;
}
.pickupBox .b-panels .b-item {
  background: #fff;
  color: #708097;
  text-align: left;
  display: flex;
}
.pickupBox .b-panels .b-img {
  position: relative;
}
.pickupBox .b-panels .e-img {
  overflow: hidden;
}
.pickupBox .e-imgTxt {
  position: absolute;
  z-index: 1;
  bottom: 0;
}
.pickupBox .b-panels dt {
  display: inline-block;
  padding: 0.25em 0.3em 0.2em;
  line-height: 1;
  background: rgb(112 128 151 / 0.15);
}
.pickupBox .b-panels dt h3 {
  font-weight: bold;
}
.pickupBox .b-panels dd {
  line-height: 1.68;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .pickupBox .b-panels {
    width: 82.05dvw;
  }
  .pickupBox .b-panels .b-item,
  .pickupBox .b-panels .e-img {
    border-radius: 3.85vw;
  }
  .pickupBox .b-panels .b-item {
    margin-top: 8.974vw;
    padding: 6.4vw 3.8vw 8vw;
    flex-direction: column-reverse;
  }
  .pickupBox .b-panels dt {
    font-size: 5.64vw;
    border-radius: 2vw;
    margin: 1.2em 0 0.5em;
    width: 100%;
    text-align: center;
    padding: 2vw 0;
  }
  .pickupBox .b-panels dd {
    font-size: 3.846vw;
  }
  .pickupBox .b-panels dd br {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .pickupBox .b-panels {
    width: 90%;
  }
  .pickupBox .b-panels .b-item,
  .pickupBox .b-panels .e-img {
    border-radius: 20px;
  }
  .pickupBox .b-panels .b-item {
    width: 100%;
    max-width: 900px;
    padding: 0 54px 25px;
    margin-top: 90px;
    justify-content: space-between;
  }
  .pickupBox .b-panels .b-txts {
    padding-top: 90px;
    margin: 0;
  }
  .pickupBox .b-panels dt {
    font-size: 35px;
    margin-bottom: 30px;
    border-radius: 11px;
  }
  .pickupBox .b-panels dd {
    font-size: 20px;
  }
  .pickupBox .b-panels .b-img {
    width: calc(100% * (600 / 976.6));
    transform: translateY(-30px);
  }
  .pickupBox .b-panels .b-item.m-Layout,
  .pickupBox .b-panels .b-item.m-Size {
    margin-left: auto;
  }
  .pickupBox .b-panels .b-item.m-Window,
  .pickupBox .b-panels .b-item.m-Storage {
    flex-direction: row-reverse;
  }
  .pickupBox .b-panels .b-item.m-Window .b-txts,
  .pickupBox .b-panels .b-item.m-Storage .b-txts {
    margin-left: 0;
    margin-right: auto;
    padding-left: 45px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1000px) {
  .pickupBox .b-panels .b-item {
    padding: 25px 4vw;
    margin-top: 40px;
    align-items: center;
  }
  .pickupBox .b-panels .b-txts {
    width: 50%;
    min-width: 50%;
    padding-top: 0;
  }
  .pickupBox .b-panels .b-img {
    width: auto;
    min-width: auto;
    transform: translateY(0);
  }
  .pickupBox .b-panels dt {
    margin-bottom: 20px;
  }
  .pickupBox .b-panels dd br {
    display: none;
  }
  .pickupBox .b-panels .b-item.m-Layout .b-txts,
  .pickupBox .b-panels .b-item.m-Size .b-txts {
    padding-right: 1em;
  }
  .pickupBox .b-panels .b-item.m-Window .b-txts,
  .pickupBox .b-panels .b-item.m-Storage .b-txts {
    margin-left: 0;
    margin-right: auto;
    padding-left: 4vw;
  }
}

.pickupBox .b-panels .b-item:nth-of-type(1) {
  margin-top: 0;
}

.pickupBox .m-Layout .e-imgTxt {
  width: calc(100% * (515 / 600));
  right: 0;
  transform: translate(1%, 16%);
}
.pickupBox .m-Window .e-imgTxt {
  width: calc(100% * (576 / 600));
  right: 0;
  transform: translate(-0.5%, -1%);
}
.pickupBox .m-Size .e-imgTxt {
  width: calc(100% * (439 / 600));
  left: 0;
  transform: translate(2%, -5%);
}
.pickupBox .m-Storage .e-imgTxt {
  width: calc(100% * (552 / 600));
  left: 0;
  transform: translate(1%, 4%);
}

/* information
--------------------------------------------------------------------*/
.infomationBox {
  background: #e8f6f7;
}
.info-inner {
  background: #fff;
}
.info-inner > p {
  font-weight: bold;
  color: #1aa8b7;
}
.info-inner > p > span {
  background: #1aa8b7;
  color: #fff;
}
.infomationBox .inner {
  width: 90%;
  max-width: 750px;
  margin: auto;
}
.infomationBox .e-mds {
  color: #708097;
  font-weight: bold;
}
.infomationBox .b-img {
  position: relative;
}
.infomationBox .b-img .caution {
  display: inline-block;
  color: #fff;
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 0;
  line-height: 1em;
  background: linear-gradient(
    90deg,
    rgba(35, 24, 21, 0) 0%,
    rgba(35, 24, 21, 1) 100%
  );
  padding: 0.3em 0.3em 0.3em 2em;
}
.infomationBox figcaption,
.infomationBox .LinkBtn a {
  color: #595757;
}
.infomationBox figcaption {
  text-align: center;
  margin-top: 1em;
}
.infomationBox .LinkBtn {
  margin-top: 0.5em;
  display: flex;
  justify-content: center;
}
.infomationBox .LinkBtn a {
  font-weight: bold;
  justify-content: flex-end;
  text-decoration: underline;
}
.infomationBox .LinkBtn .b-mark {
  margin-left: 0.5em;
}
.LinkBtnLab {
  background: #1aa8b7;
  font-weight: bold;
  color: #fff;
}
.LinkBtnLab {
  display: block;
  background: #1aa8b7;
  font-weight: bold;
  color: #fff;
  line-height: 1.2;
}
.LinkBtnLab > span {
  display: block;
}
@media screen and (max-width: 767px) {
  .infomationBox {
    padding: 25.5vw 0;
  }
  .info-inner {
    width: 90%;
    padding: 8vw 5vw 5vw;
    border-radius: 35px;
    margin: 0 auto 5vw;
    box-shadow: 0 0 15px 0 rgba(206, 221, 221, 1);
  }
  .info-inner > p {
    font-size: 5vw;
    margin-bottom: 3.5vw;
  }
  .info-inner > p > span {
    font-size: 3.5vw;
    display: inline-block;
    padding: 5px 15px;
    margin-right: 5px;
    border-radius: 15px;
  }
  .infomationBox .e-mds {
    font-size: 7.692vw;
  }
  .infomationBox .e-mds .e-en {
    width: 46.667vw;
    margin: 0 auto 8.974vw;
  }
  .infomationBox .b-img .caution {
    font-size: 3.0769vw;
  }
  .infomationBox figcaption {
    font-size: 3.6vw;
  }
  .infomationBox .LinkBtn a {
    font-size: 3.5vw;
  }
  .LinkBtnLab {
    font-size: 3.5vw;
    padding: 5vw 0;
    border-radius: 40px;
    margin-top: 4vw;
    line-height: 1.2;
    position: relative;
  }
  .info .LinkBtn .b-mark {
    width: 7vw;
  }
  .LinkBtnLab > span {
    font-size: 5vw;
  }

  .LinkBtnLab .b-mark {
    width: 9.744vw;
    right: 3vw;
    background: #fff;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
  }
  .LinkBtnLab .b-mark img {
    transform: scale(1.5) translateX(3%);
  }
  .LinkBtnLab a {
    filter: drop-shadow(0 0 20px rgb(255 255 255 / 0.4));
  }
}
@media screen and (min-width: 768px) {
  .infomationBox {
    padding: 105px 0 130px;
    margin: 0 auto;
  }
  .infomationBox .e-mds {
    font-size: 45px;
  }
  .infomationBox .e-mds .e-en {
    width: 300px;
    margin: 10px auto 65px;
  }
  .infomationBox .b-img .caution {
    font-size: 12px;
  }
  .infomationBox figcaption,
  .infomationBox .LinkBtn a {
    font-size: 18px;
  }
  .info {
    display: flex;
    justify-content: space-between;
  }
  .infomationBox-inner {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
  }
  .info-inner {
    width: calc((100% - 30px) / 2);
    padding: 2.5em;
    border-radius: 40px;
    margin-bottom: 1em;
    box-shadow: 0 0 30px 0 rgba(206, 221, 221, 1);
  }
  .info-inner > p {
    font-size: 25px;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
  }
  .info-inner > p > span {
    font-size: 15px;
    display: inline-block;
    padding: 5px 15px;
    margin-right: 5px;
    border-radius: 15px;
  }
  .info .LinkBtn .b-mark {
    width: 30px;
  }
  .LinkBtnLab {
    font-size: 15px;
    padding: 20px 0;
    border-radius: 45px;
    margin-top: 15px;
    line-height: 1.5;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
    position: relative;
  }
  .LinkBtnLab > span {
    font-size: 25px;
  }

  .LinkBtnLab .b-mark {
    width: 50px;
    right: 15px;
    background: #fff;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
  }
  .LinkBtnLab .b-mark img {
    transform: scale(1.5) translateX(3%);
  }
}

/* 2026.6 infoシングル用 */
.info.m-single .info-inner {
  background: transparent;
}
.info.m-single .e-1stLine,
.info.m-single .e-2ndLine {
  font-weight: bold;
  line-height: 1.2;
}
.info.m-single .e-1stLine {
  margin-bottom: 0.3em;
}
.info.m-single .LinkBtnLab {
  border-radius: 120px;
}
@media screen and (max-width: 767px) {
  .info.m-single .info-inner {
    box-shadow: unset;
    padding: 0;
  }
  .info.m-single .e-1stLine {
    font-size: 6.41vw;
  }
}
@media screen and (min-width: 768px) {
  .info.m-single {
    justify-content: center;
  }
  .info.m-single .info-inner {
    box-shadow: unset;
    max-width: 750px;
    padding: 0;
    width: 100%;
  }
  .infomationBox .info.m-single figcaption {
    margin: 20px 0 30px;
  }
  .infomationBox .info.m-single .LinkBtn {
    margin: 0 0 40px;
  }
  .info.m-single .e-1stLine {
    font-size: 30px;
    margin-bottom: 0.3em;
  }
}

/* ctaBox
---------------------------------------- */
.ctaBox {
  background: #1aa8b7;
  position: relative;
}
.ctaBox > p {
  color: #fff;
  line-height: 1.5;
  font-weight: bold;
}
.ctaBox > p > span {
  display: block;
}
.ctaBox .toFormBtn {
  transform: none;
  position: relative;
  left: auto;
  right: auto;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .ctaBox {
    padding: 10vw 0;
  }
  .ctaBox > p {
    font-size: 4vw;
  }
  .ctaBox > p > span {
    font-size: 6vw;
    margin: 2vw 0 4vw;
  }
}
@media screen and (min-width: 768px) {
  .ctaBox {
    padding: 3em 0 6em;
  }
  .ctaBox > p {
    font-size: 25px;
  }
  .ctaBox > p > span {
    font-size: 38px;
    margin: 0.2em 0 0.5em;
  }
}
