@charset "utf-8";

:root {
  --main-color: #004ea8;
}

:root {
  --sub-color: #1696d5;
}

:root {
  --accent-color: #f5a407;
}

:root {
  --text-color: #1f1f1f;
}

:root {
  --text-font: "noto-sans-cjk-jp", sans-serif;
}

:root {
  --main-font: "fot-tsukuardgothic-std", sans-serif;
}

:root {
  --sub-font: 'Cabin', sans-serif;
}

section {
  display: block;
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.inner {
  width: 90%;
  max-width: 930px;
  position: relative;
  margin: 0 auto;
}

p {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.1em;
}

@media screen and (max-width: 820px) {
  section {
    padding: 40px 0;
  }

  p {
    font-size: 14px;
  }
}

/*=============================================*/
.title {
  font-family: var(--main-font);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.4;
  text-align: center;
  color: var(--main-color);
  margin: 0 0 40px;
}

.title span {
  display: block;
  font-family: var(--sub-font);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-align: center;
  color: var(--sub-color);
}

.title+p {
  text-align: center;
  margin: 0 0 30px;
}

.title02 {
  width: 280px;
  font-family: var(--main-font);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-align: center;
  color: var(--main-color);
  padding: 0 0 15px;
  border-bottom: solid 1px #cccccc;
  margin: 0 auto 30px;
  position: relative;
}

.title02 span {
  width: fit-content;
  padding: 0 0 15px;
  border-bottom: solid 3px var(--main-color);
  margin: 0 auto;
  position: relative;
  bottom: 1px;
}

/*=============================================*/
.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 560px;
  height: 65px;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #FFF;
  border-radius: 13px;
  background: var(--accent-color);
  margin: 0 auto;
  position: relative;
}

.btn.mail::before {
  display: block;
  content: "";
  width: 19px;
  height: 15px;
  background: center / contain no-repeat url("../img/icon-mail.svg");
  margin: 0 10px 0 0;
}

.btn.mail::after, .btn.line::after {
  display: block;
  content: "";
  width: 6px;
  height: 15px;
  background: center / contain no-repeat url("../img/icon-arrow.svg");
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}

.btn.white {
  justify-content: flex-start;
  font-size: 13px;
  color: #FFF;
  padding: 0 20px;
  border: solid 1px #FFF;
  border-radius: 13px;
  background: none;
  margin: 0 0 20px;
}

.btn.white::after {
  display: block;
  content: "";
  width: 35px;
  height: 35px;
  background: center / contain no-repeat url("../img/icon-arrow03.svg");
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}

.dot {
  position: relative;
}

.dot::after {
  display: inline-block;
  height: 10px;
  content: "";
  background: radial-gradient(circle farthest-side, #bebebe, #bebebe 25%, transparent 25%, transparent);
  background-size: 6px 10px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

@media screen and (max-width: 820px) {
  .title {
    font-size: 20px;
    margin: 0 0 20px;
  }

  .title span {
    margin: 0 0 3px;
  }

  .title02 {
    font-size: 18px;
    padding: 0 0 10px;
    margin: 0 auto 20px;
  }

  .title02 span {
    padding: 0 0 10px;
  }

  .btn {
    font-size: 16px;
    padding: 0 20px;
    border-radius: 10px;
  }

  .dot::after {
    background: radial-gradient(circle farthest-side, #bebebe, #bebebe 35%, transparent 35%, transparent);
    background-size: 6px 10px;
  }
}

@media screen and (max-width: 520px) {
  .btn {
    justify-content: flex-start;
  }
}

/*=============================================*/
.attention {
  padding: 50px 30px;
  border-radius: 30px;
  background: #f0f7fc;
}

.attention h3 {
  width: fit-content;
  font-family: var(--main-font);
  font-size: 20px;
  font-weight: bold;
  color: var(--main-color);
  margin: 0 auto 15px;
  position: relative;
}

.attention h3 span {
  display: block;
  font-size: 16px;
  text-align: center;
}

.attention h3::before,
.attention h3::after {
  display: inline-block;
  content: "";
  width: 18px;
  height: 18px;
  background: center / contain no-repeat url("../img/logo-mark.svg");
  position: absolute;
  top: 2px;
}

.attention h3::before {
  left: -24px;
}

.attention h3::after {
  right: -24px;
}

.attention h3+p {
  margin: 0 0 20px;
}

.attention p {
  text-align: center;
}

.attention h3+p span {
  font-size: 14px;
}

@media screen and (max-width: 820px) {
  .attention {
    max-width: 620px;
  }

  .attention h3 {
    font-size: 18px;
  }
}

@media screen and (max-width: 520px) {
  .attention h3 {
    font-size: 17px;
  }
}

/*=============================================*/
.circleColumn {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: flex-start;
  max-width: 710px;
  margin: 0 auto;
}

.circleColumn li {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  width: 30%;
  max-width: 200px;
}

.circleColumn li img {
  width: 180px;
  border-radius: 50%;
  border: solid 12px #FFF;
  margin: 0 auto 20px;
}

.circleColumn li h4 {
  font-family: var(--main-font);
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  letter-spacing: 0;
  line-height: 1.4;
  color: var(--main-color);
  margin: 0 auto 10px;
}

.circleColumn li p {
  font-size: 13px;
}

@media screen and (max-width: 820px) {
  .circleColumn {
    justify-content: center;
  }

  .circleColumn li {
    width: 50%;
    max-width: 260px;
  }

  .circleColumn li:nth-child(1) {
    margin: 0 20px 0 0;
  }

  .circleColumn li:nth-child(3) {
    margin: 20px 0 0 0;
  }

  .circleColumn li img {
    width: 200px;
  }
}

@media screen and (max-width: 520px) {
  .circleColumn {
    margin: 0 auto;
  }

  .circleColumn li {
    width: 100%;
    max-width: 100%;
  }

  .circleColumn li:nth-child(1),
  .circleColumn li:nth-child(2) {
    margin: 0 auto 20px;
  }

  .circleColumn li:nth-child(3) {
    margin: 0 auto;
  }

  .circleColumn li h4 {
    margin: 0 auto 10px;
  }
}

/*=========================================================================================*/
/*header*/
header {
  width: 100%;
  height: 130px;
  padding: 0 60px;
  position: fixed;
  top: 0;
  z-index: 1000;
}

header h1 {
  width: 70px;
  position: relative;
  top: 20px;
  z-index: 1;
}

header h1 a {
  display: block;
}

header h1 img:nth-child(2),
header h1 img:nth-child(3) {
  display: none;
}

header nav {
  width: calc(100% - 100px);
  max-width: 1020px;
}

header nav ul {
  width: calc(100% - 240px);
  max-width: 575px;
}

header nav .btn {
  width: 220px;
  height: 40px;
  font-size: 14px;
  border-radius: 20px;
  margin: 0;
}

header nav .btn.mail::before {
  width: 15px;
  height: 12px;
}

header nav .btn.mail::after {
  display: none;
}

header nav .btn.line {
  width: 180px;
}

.btn.line {
  background: #07b53b;
}

.btn.line::before {
  display: block;
  content: "";
  width: 20px;
  height: 20px;
  background: center / contain no-repeat url("../img/icon-line.svg");
  margin: 0 10px 0 0;
}

header nav .btn.line::before {
  position: relative;
  top: 1px;
  margin: 0 5px 0 0;
}

header nav li {
  width: fit-content;
}

header nav li a {
  display: block;
  width: fit-content;
  font-size: 14px;
  font-weight: 500;
}

header .btn.btnline,
header .btn.btnmail,
.openbtn1 {
  display: none;
}

header .btn.line::after,
header .btn.mail::after {
  display: none;
}

@media screen and (max-width: 1200px) {
  header {
    padding: 0 4%;
  }

  header h1 {
    top: 5px;
  }

  header nav.flex {
    justify-content: flex-end;
  }

  header nav ul {
    width: 100%;
    max-width: 581px;
    margin: 0 0 10px;
  }

  header nav ul {
    max-width: 530px;
  }

  header nav .btn {
    font-size: 13px;
    width: 195px;
    height: 35px;
  }

  header nav .btn.line {
    width: 150px;
    margin: 0 8px 0 10px;
  }
}

@media screen and (max-width: 1100px) {
  header {
    height: 90px;
    padding: 0;
  }

  header h1 {
    width: 56px;
    top: 10px;
    left: 23px;
  }

  header.movement h1,
  .page header h1 {
    width: 114px;
    top: 0;
    left: 20px;
  }

  header.movement h1 img:nth-child(1),
  .page header h1 img:nth-child(1) {
    display: none;
  }

  header.movement h1 img:nth-child(2),
  .page header h1 img:nth-child(2) {
    display: block;
  }

  .pcNav header h1 img:nth-child(2) {
    display: none;
  }

  .pcNav header h1 img:nth-child(3) {
    display: block;
  }

  /*header btn*/
  header nav+.btn {
    display: flex;
    justify-content: center;
    width: 220px;
    height: 36px;
    font-size: 14px;
    border-radius: 20px;
    margin: 0;
    position: relative;
    right: 15px;
  }

  header .btn.btnline,
  header .btn.btnmail {
    display: block;
    width: 70px;
    height: 70px;
    border-radius: 0;
    padding: 0;
    position: fixed;
    top: 0;
    right: 65px;
  }

  header .btn.btnmail {
    right: 0;
  }

  .btn.line::before, .btn.mail::before {
    display: none;
  }

  /*pointまでスクロールした時の記述*/
  header.movement,
  .page header {
    height: 70px;
    background: #FFF;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.30);
  }

  header.movement nav+.btn,
  header.movement nav+.btn,
  .page header nav+.btn,
  .page header nav+.btn+.btn {
    width: 70px;
    padding: 0;
    position: absolute;
    top: 50%;
    right: 140px;
    transform: translateY(-50%);
    z-index: -1;
  }

  header.movement nav+.btn+.btn,
  .page header nav+.btn+.btn {
    width: 70px;
    right: 70px;
  }

  .page header nav+.btn span {
    display: none;
  }

  header.movement nav+.btn span,
  .page header nav+.btn span {
    display: none;
  }

  header.movement nav+.btn.mail::before,
  .page header nav+.btn.mail::before {
    margin: 0;
  }

  header nav .btn.line {
    width: 100%;
    margin-bottom: 20px;
  }

  /*nav中身*/
  header nav.flex {
    align-content: flex-start;
    justify-content: center;
    width: 100%;
    height: 100svh;
    padding: 120px 0 0;
    background: rgba(0, 78, 168, 0.96);
    position: fixed;
    top: -100svh;
    transition: top 1s;
  }

  header nav ul {
    width: 90%;
    max-width: 630px;
    margin: 0 auto 40px;
  }

  header nav li {
    width: 100%;
    border-bottom: solid 2px #2165aa;
    margin: 0 0 15px;
  }

  header nav li a {
    width: 100%;
    font-size: 16px;
    letter-spacing: 0.14em;
    color: #FFF;
    padding: 10px 0;
    position: relative;
  }

  header nav li a::before {
    display: block;
    content: "";
    width: 5px;
    height: 13px;
    background: center / contain no-repeat url("../img/icon-arrow.svg");
    position: absolute;
    bottom: 15px;
    right: 5px;
  }

  .pcNav header nav.flex {
    top: 0;
  }

  header nav .btn {
    width: 100%;
    max-width: 325px;
    height: 65px;
    font-size: 16px;
    border-radius: 13px;
  }

  header nav .btn.mail::after,
  header nav .btn.line::after {
    display: block;
  }

  /*ハンバーガーメニュー*/
  .movement .openbtn1,
  .page .openbtn1 {
    display: block;
    cursor: pointer;
    width: 35px;
    height: 17px;
    position: relative;
    top: -6px;
    right: 15px;
  }

  .movement .openbtn1 span,
  .page .openbtn1 span {
    display: block;
    width: 100%;
    height: 2.5px;
    border-radius: 2px;
    background: #1f1f1f;
    position: absolute;
    top: 0;
    transition: all .4s;
  }

  .openbtn1 span:nth-of-type(2) {
    top: 50%;
    transform: translateY(-50%);
  }

  .openbtn1 span:nth-of-type(3) {
    top: auto;
    bottom: 0;
  }

  .openbtn1::after {
    width: 48px;
    display: block;
    content: "MENU";
    font-family: var(--main-font);
    font-size: 10px;
    font-weight: bold;
    text-align: center;
    letter-spacing: 0.2em;
    position: absolute;
    bottom: -20px;
    left: 53%;
    transform: translateX(-50%);
  }

  .openbtn1.active span:nth-of-type(1) {
    transform: translateY(6px) rotate(-25deg);
  }

  .openbtn1.active span:nth-of-type(2) {
    opacity: 0;
  }

  .openbtn1.active span:nth-of-type(3) {
    bottom: 2.5px;
    transform: translateY(-6px) rotate(25deg);
  }

  .openbtn1.active span {
    background: #FFF;
  }

  .openbtn1.active::after {
    content: "CLOSE";
    letter-spacing: 0.1em;
    color: #FFF;
  }

  /* header nav .btn.line.pc{
      display: none;
    } */
}

@media screen and (max-width: 520px) {
  header nav ul {
    max-width: 280px;
  }
}

/*=========================================================================================*/
/*fv*/
#fv {
  height: 900px;
  padding: 0;
}

#fv .inner {
  align-content: center;
  max-width: 1240px;
  height: 100%;
  z-index: 1;
}

#fv h2 {
  font-family: 'BIZ UDPMincho', serif;
  font-size: 77px;
  font-weight: 500;
  letter-spacing: 0.1em;
  margin: 0 0 20px;
}

#fv h2 span {
  display: block;
  font-size: 60px;
  margin: 0 0 10px;
}

#fv p:nth-child(2) {
  font-family: var(--sub-font);
  font-size: 17px;
  letter-spacing: 0.2em;
  color: var(--main-color);
  margin: 0 0 120px;
}

.randomAnime {
  visibility: hidden;
}

#fv .inner div {
  padding-top: px;
  position: relative;
}

#fv img {
  display: block;
  border-radius: 50%;
  position: absolute;
}

#fv img:nth-child(2) {
  width: 945px;
  top: -40px;
  right: -75px;
}

#fv img:nth-child(3) {
  width: 398px;
  position: absolute;
  bottom: 0;
  left: -43px;
}

#fv img:nth-child(4) {
  display: none;
}

@media screen and (max-width: 1200px) {
  #fv {
    height: 680px;
  }

  #fv p:nth-child(3) {
    margin: 0 0 120px;
  }

  #fv img:nth-child(2) {
    width: 650px;
  }

  #fv img:nth-child(3) {
    width: 320px;
  }
}

@media screen and (max-width: 1024px) {
  #fv img:nth-child(2) {
    width: 530px;
  }
}

@media screen and (max-width: 820px) {
  #fv {
    height: 540px;
  }

  #fv .inner {
    justify-content: center;
  }

  #fv h2 {
    width: fit-content;
    font-size: 44px;
  }

  #fv h2 span {
    font-size: 35px;
  }

  #fv p:nth-child(2) {
    font-size: 11px;
    letter-spacing: 2.4px;
    text-align: center;
    margin: 0 0 70px;
  }

  #fv img:nth-child(2) {
    width: 300px;
    top: auto;
    bottom: 40px;
    right: auto;
    left: -65px;
  }

  #fv img:nth-child(3) {
    width: 340px;
    font-size: 9px;
    bottom: auto;
    top: -41px;
    left: auto;
    right: -70px;
  }

  #fv img:nth-child(4) {
    display: block;
    width: 180px;
    position: absolute;
    bottom: 0;
    right: -18px;
  }
}

@media screen and (max-width: 520px) {
  #fv img:nth-child(2) {
    width: 225px;
    left: -32px;
  }

  #fv img:nth-child(3) {
    width: 263px;
  }

  #fv img:nth-child(4) {
    width: 132px;
    bottom: 0;
  }
}

@media screen and (max-width: 385px) {
  #fv p:nth-child(2) {
    font-size: 10px;
  }
}

/*=========================================================================================*/
/*message*/
#message {
  padding-top: 380px;
  padding-bottom: 150px;
  margin-top: -380px;
}

#message::before {
  display: block;
  content: "";
  width: 1900px;
  height: 1900px;
  border-radius: 50%;
  background: var(--sub-color);
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}

.deco {
  display: flex;
  align-items: center;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  bottom: 20px;
  z-index: -1;
  margin: 0 0 60px;
}

.deco ul {
  animation: flowing 50s linear infinite;
  transform: translateX(100%);
}

.deco ul li {
  width: 2640px;
  display: inline-block;
}

.deco ul li img {
  width: auto;
  height: 120px;
}

@keyframes flowing {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-100%);
  }
}

@media screen and (max-width: 1024px) {
  #message {
    padding-top: 170px;
    margin-top: -280px;
  }
}

@media screen and (max-width: 820px) {
  #message {
    padding-top: 60px;
    padding-bottom: 60px;
    margin-top: -200px;
  }

  #message::before {
    width: 100%;
    height: 630px;
  }

  #message::after {
    display: block;
    content: "";
    width: 100%;
    height: calc(100% - 150px);
    background: var(--sub-color);
    position: absolute;
    bottom: 0;
    z-index: -10;
  }

  .deco {
    bottom: -40px;
    margin: 0 0 40px;
  }

  .deco ul li img {
    height: 60px;
  }
}

@media screen and (max-width: 520px) {
  #message {
    padding-top: 80px;
    margin: -165px 0 0;
  }

  #message::before {
    width: 530px;
    height: 409px;
  }

  #message::after {
    height: calc(100% - 220px);
  }
}

/*=============================================*/
.message {
  width: 90%;
  max-width: 900px;
  position: relative;
  margin: 0 auto 30px;
}

.message h2 {
  width: fit-content;
  font-family: 'BIZ UDPMincho', serif;
  font-size: 57px;
  line-height: 1.6;
  letter-spacing: 0.14em;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  color: #FFF;
}

.message p {
  width: fit-content;
  font-family: 'BIZ UDPMincho', serif;
  font-size: 24px;
  line-height: 2;
  color: #FFF;
}

@media screen and (max-width: 900px) {
  .message h2 {
    font-size: 46px;
  }

  .message p {
    font-size: 22px;
  }
}

@media screen and (max-width: 820px) {
  .message {
    justify-content: center;
    margin: 0 auto;
  }

  .message h2 {
    font-size: 26px;
    margin: 0 0 20px;
  }

  .message p {
    width: 100%;
    font-size: 14px;
    line-height: 2.2;
    text-align: center;
  }
}

/*=========================================================================================*/
/*point*/
#point {
  background: #FFF;
  padding: 0 0 60px;
  overflow: inherit;
}

#point::before {
  display: block;
  content: "";
  width: 94%;
  max-width: 1200px;
  height: 61px;
  border-radius: 130px 130px 0 0;
  background: #FFF;
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
}

#point ul li {
  margin: 0 0 30px;
}

#point ul li:nth-child(even) {
  flex-direction: row-reverse;
}

#point ul li:last-child {
  margin: 0;
}

#point ul li .imgBox {
  width: 350px;
  border-radius: 30px 0 30px 0;
  overflow: hidden;
  position: relative;
}

#point ul li .imgBox::before {
  display: block;
  content: "";
  width: 50px;
  height: 50px;
  background: center / contain no-repeat url("../img/point-tag01.svg");
  position: absolute;
  top: 10px;
  left: 10px;
}

#point ul li:nth-child(2) .imgBox::before {
  background: center / contain no-repeat url("../img/point-tag02.svg");
}

#point ul li:nth-child(3) .imgBox::before {
  background: center / contain no-repeat url("../img/point-tag03.svg");
}

#point ul li:nth-child(4) .imgBox::before {
  background: center / contain no-repeat url("../img/point-tag04.svg");
}

#point ul li:nth-child(5) .imgBox::before {
  background: center / contain no-repeat url("../img/point-tag05.svg");
}

/**/
#point ul li .textBox {
  width: calc(100% - 395px);
}

#point ul li .textBox h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 20px;
}

#point ul li:nth-child(3) p {
  letter-spacing: 0;
}

@media screen and (max-width: 820px) {
  #point {
    padding: 60px 0;
  }

  #point::before {
    display: none;
  }

  #point ul {
    max-width: 520px;
    margin: 0 auto;
  }

  #point ul li .imgBox,
  #point ul li .textBox {
    width: 100%;
  }

  #point ul li .imgBox {
    margin: 0 0 20px;
  }

  #point ul li .textBox h3 {
    font-size: 18px;
    text-align: center;
    margin: 0 0 10px;
  }
}

/*=========================================================================================*/
/*price*/
#price {
  max-width: calc(100% - 80px);
  border-radius: 40px;
  background: #fafafa;
  margin: 20px auto 40px;
}

#price::before,
#price::after {
  display: block;
  content: "";
  width: 637px;
  height: 637px;
  background: center / contain no-repeat url("../img/logo-mark-gray.svg");
  position: absolute;
}

#price::before {
  top: -207px;
  right: -307px;
}

#price::after {
  bottom: -200px;
  left: -200px;
}

#price .title {
  margin: 0 0 20px;
}

@media screen and (max-width: 820px) {
  #price {
    max-width: 100%;
    border-radius: 0;
    margin: 0 auto;
  }

  #price::before,
  #price::after {
    width: 312px;
    height: 312px;
  }

  #price::before {
    top: 0;
    right: -132px;
  }

  #price::after {
    bottom: -60px;
    left: -70px;
  }

  #price .inner::before,
  #price .inner::after {
    display: block;
    content: "";
    width: 312px;
    height: 312px;
    background: center / contain no-repeat url("../img/logo-mark-gray.svg");
    position: absolute;
  }

  #price .inner::before {
    top: 300px;
    left: -105px;
  }

  #price .inner::after {
    top: 540px;
    right: -150px;
  }

  #price .title {
    margin: 0 0 10px;
  }

  #price .title+p {
    margin: 0 0 20px;
  }
}

#price .priceImg {
  width: 100%;
  margin: 0 auto 40px;
  position: relative;
  z-index: 1;
  overflow: scroll;
}

#price .priceImg img {
  min-width: 930px;
}

#price .priceImgList {
  margin-top: 30px;
}

/*--202410_追加-- */
.priceImgList.sp {
  display: none;
}

#price .priceImgList li {
  max-width: 730px;
  margin: 0 auto;
}

#price .priceImgList li:last-of-type {
  padding-top: 30px;
}

#price .price_info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 650px;
  margin: 0 auto;
  padding: 40px 0;
}

#price .price_info .imgBox {
  max-width: 110px;
}

#price .price_info .textBox {
  max-width: 500px;
}

#price .price_info .textBox p:first-of-type {
  font-size: 22px;
  letter-spacing: 0.08em;
}

#price .price_info .textBox p span {
  font-size: 20px;
}

#price .price_info .textBox p:last-of-type {
  font-size: 15px;
  font-weight: normal;
  line-height: 1.6;
  letter-spacing: 0.12em;
}
/*--202504_追加-- */
#price .pr_notes{
  max-width: 730px;
  margin: 0 auto;
  justify-content: flex-end;
  padding: 10px 0;
  text-align: center;
}
#price .pr_notes p{
  font-size: 13px;
  color: #848484;
  font-weight: 200;
  line-height: normal;
}

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

  .priceImgList.sp {
    display: block;
  }

  #price .priceImgList {
    margin-top: 20px;
  }

  #price .priceImgList li {
    max-width: 300px;
  }

  #price .priceImgList li:last-of-type {
    padding-top: 15px;
  }

  #price .price_info {
    max-width: 355px;
    padding: 30px 0;
  }

  #price .price_info .imgBox {
    max-width: 85px;
  }

  #price .price_info .textBox {
    max-width: 255px;
    margin-left: 15px;
  }

  #price .price_info .textBox p:first-of-type {
    font-size: 15px;
    line-height: 1.4;
  }

  #price .price_info .textBox p span {
    font-size: 13px;
  }

  #price .price_info .textBox p:last-of-type {
    font-size: 12px;
    line-height: 1.45;
    padding-top: 8px;
  }
  #price .pr_notes {
    padding: 6px 0;
  }
  #price .pr_notes p {
    font-size: 12px;
  }
}

/*--/202410_追加-- */
/*=============================================*/
/*費用の詳細〜*/
.priceList {
  max-width: 760px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.priceList li {
  border: solid 1px #e0e0e0;
  border-radius: 20px;
  background: #FFF;
}

.priceList li:nth-child(1) {
  max-width: 100%;
  padding: 10px 35px;
  margin: 0 0 30px;
}

.priceList dl {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  padding: 20px 0;
}

.priceList .dot::after {
  width: 100%;
  bottom: -5px;
}

.priceList dl dt {
  width: 168px;
  font-size: 16px;
  font-weight: 700;
  padding: 0 15px;
}

.priceList dl dd {
  width: calc(100% - 168px);
  font-size: 16px;
  font-weight: 500;
}

.priceList dl dd a {
  color: var(--sub-color);
  text-decoration: underline;
}

@media screen and (max-width: 820px) {
  .priceList {
    justify-content: center;
    max-width: 520px;
  }

  .priceList li:nth-child(2) {
    margin: 0 0 20px;
  }

  .priceList dl dt {
    width: 100%;
    font-size: 14px;
    padding: 0;
  }

  .priceList dl dd {
    width: 100%;
    font-size: 15px;
    letter-spacing: 0.1em;
  }
}

@media screen and (max-width: 520px) {
  .priceList li {
    max-width: 100%;
  }

  .priceList li:nth-child(1),
  .priceList li:nth-child(2) {
    margin: 0 0 30px;
  }

  .attentionList a {
    font-size: 14px;
    padding: 0 20px;
  }
}

/*=============================================*/
.stepPopUp {
  width: 48%;
  max-width: 360px;
  padding: 0;
  margin: 0;
  position: relative;
  overflow: hidden;
}

.stepPopUp a {
  display: block;
  padding: 25px;
  overflow: hidden;
}

.stepPopUp a::before {
  display: block;
  content: "";
  width: 48px;
  height: 48px;
  background: var(--accent-color);
  border-radius: 0 0 0 20px;
  position: absolute;
  top: 0;
  right: 0;
}

.stepPopUp a::after {
  display: block;
  content: "";
  width: 22px;
  height: 22px;
  background: center / contain no-repeat url(../img/icon-plus.svg);
  position: absolute;
  top: 13px;
  right: 13px;
}

.stepPopUp img {
  border-radius: 30px 0 30px 0;
  margin: 0 0 20px;
}

.stepPopUp h4 {
  display: flex;
  align-items: center;
  font-size: 18px;
  font-weight: bold;
  margin: 0 0 10px;
  position: relative;
}

.stepPopUp h4::before {
  display: block;
  content: "";
  width: 25px;
  height: 25px;
  background: center / contain no-repeat url(../img/icon-school02.svg);
  margin: 0 10px 0 0;
}

.stepPopUp:nth-child(3) h4::before {
  background: center / contain no-repeat url(../img/icon-voice.svg);
}

.stepPopUp h4+p {
  line-height: 1.6;
}

@media screen and (max-width: 820px) {
  .stepPopUp {
    width: 100%;
    max-width: 380px;
  }
}

/*--202410_追加-- */
.stepCta {
  max-width: 840px;
  margin: 0 auto;
}

.stepCta .btn {
  max-width: 400px;
  width: 100%;
  margin: 0;
}

@media screen and (max-width: 820px) {
  .stepCta {
    display: block;
  }

  .stepCta .btn.mail {
    margin-top: 15px;
  }
}

/*--/202410_追加-- */
/*=========================================================================================*/
/*aside*/
aside {
  text-align: center;
  background: linear-gradient(to bottom right, #1696d5, #004ea8);
  position: relative;
  padding: 40px 0 50px;
  z-index: 1;
}

aside .inner {
  width: 94%;
  max-width: 950px;
}

aside h2 {
  color: #FFF;
  font-size: 26px;
  font-weight: 500;
  letter-spacing: 0.12rem;
  line-height: 1.4;
  margin: 0 auto 25px;
}

aside h2 span {
  display: block;
  font-size: 18px;
  margin: 0 0 5px;
}

aside h2+p {
  color: #FFF;
  margin: 0 auto 20px;
}

aside .inner .asideList {
  display: flex;
  justify-content: space-between;
}

aside .inner .asideList li {
  max-width: 460px;
  background: #FFF;
  border-radius: 20px;
  padding: 25px;
}

aside .inner .asideList li:last-of-type {
  margin-left: 2%;
}

aside .inner div p {
  font-weight: normal;
  line-height: 1.6;
  margin: 0 0 20px;
}

aside .inner .asideList li .txt-line {
  color: #07b53b;
  font-weight: 600;
}

aside .inner .asideList li .btn.line span {
  font-size: 26px;
  margin-right: 3px;
  font-weight: 600;
}

aside .inner .btn.line::before {
  width: 24px;
  height: 25px;
  margin: 0px 6px 0 0;
}

@media screen and (max-width: 820px) {
  aside {
    padding-top: 30px 0 40px;
    ;
  }

  aside h2 {
    font-size: 20px;
    margin-bottom: 15px;
    line-height: 1.4;
    margin-bottom: 20px;
  }

  aside h2 span {
    font-size: 14px;
    margin: 0 0 5px;
  }

  aside .inner div {
    max-width: 520px;
    border-radius: 20px;
    margin: 0 auto;
  }

  aside .inner div p {
    margin: 0 0 10px;
  }

  aside .inner .asideList {
    display: block;
  }

  aside .inner .asideList li {
    border-radius: 15px;
    padding: 20px 5%;
  }

  aside .inner .asideList li:last-of-type {
    margin-top: 20px;
  }
}

@media screen and (max-width: 520px) {
  aside .inner div {
    padding: 0 2%;
  }

  aside .inner .asideList .btn {
    height: 60px;
  }

  aside .inner .btn.line::before {
    width: 22px;
    height: 22px;
  }

  aside .inner .asideList li .btn.line span {
    font-size: 20px;
  }
}

/*=========================================================================================*/
.scroll {
  width: 100%;
  height: 166px;
}

.scroll img {
  width: auto;
  border-radius: 30px 0 30px 0;
  padding: 0 1px;
}

.scroll img:nth-child(even) {
  width: auto;
  border-radius: 0 30px 0 30px;
}

@media screen and (max-width: 820px) {
  .scroll {
    height: 87px;
  }

  .scroll img {
    width: auto;
    border-radius: 10px 0 10px 0;
  }

  .scroll img:nth-child(even) {
    width: auto;
    border-radius: 0 10px 0 10px;
  }
}

/*=========================================================================================*/
/*about*/
#about {
  background: #fffaf0;
}

#about .inner {
  max-width: 680px;
}

#about .title {
  margin: 0 0 20px;
}

.aboutSlider {
  margin-bottom: 8px !important;
}

.aboutSlider img {
  border-radius: 50px 0 50px 0;
}

.aboutThumbnail {
  margin: 0 0 20px;
}

.aboutThumbnail li {
  margin: 0 2px;
}

.aboutThumbnail img {
  border-radius: 10px 0 10px 0;
}

.aboutThumbnail li:nth-child(even) img {
  border-radius: 0 10px 0 10px;
}

#about .slider+p {
  line-height: 1.6;
  margin: 0 0 30px;
}

@media screen and (max-width: 820px) {
  #about {
    padding: 60px 0 40px;
  }
}

@media screen and (max-width: 520px) {
  .slick-dotted.slick-slider.aboutSlider {
    margin-bottom: 4px !important;
  }

  .aboutSlider img {
    border-radius: 20px 0 20px 0;
  }

  .aboutThumbnail {
    margin: 0 0 15px;
  }

  .aboutThumbnail li {
    margin: 0 1px;
  }

  .aboutThumbnail img {
    border-radius: 5px 0 5px 0;
  }

  .aboutThumbnail li:nth-child(even) img {
    border-radius: 0 5px 0 5px;
  }

  #about .slider+p {
    line-height: 2;
    margin: 0 0 25px;
  }
}

/*=============================================*/
.btnBox li {
  width: 48%;
  max-width: 320px;
}

.btnBox li a {
  display: flex;
  align-items: center;
  height: 70px;
  font-size: 14px;
  font-weight: bold;
  padding: 0 20px;
  border: solid 1px #d0cbba;
  border-radius: 10px;
  position: relative;
}

.btnBox li a::before {
  display: block;
  content: "";
  width: 22px;
  height: 20px;
  background: center / contain no-repeat url("../img/icon-parasol.svg");
  margin: 0 10px 0 0;
}

.btnBox li:nth-child(2) a::before {
  background: center / contain no-repeat url("../img/icon-school.svg");
}

.icon-plus {
  display: block;
  content: "";
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #ffc806;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}

.icon-plus::before,
.icon-plus::after {
  display: block;
  content: "";
  width: 10px;
  height: 2px;
  border-radius: 2px;
  background: #FFF;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.icon-plus::after {
  width: 2px;
  height: 10px;
}

.btnBox li:nth-child(2) .icon-plus {
  background: var(--main-color);
}

.btnBox li:nth-child(3) .icon-plus {
  background: var(--main-color);
}

@media screen and (max-width: 820px) {
  .btnBox li a {
    padding: 0 10px;
  }

  .btnBox li a::before {
    width: 20px;
    height: 20px;
  }

  .icon-plus {
    width: 20px;
    height: 20px;
    right: 10px;
  }

  .icon-plus::before {
    width: 7px;
    height: 1.5px;
  }

  .icon-plus::after {
    width: 1.5px;
    height: 7px;
  }
}

@media screen and (max-width: 520px) {
  .btnBox li {
    width: 100%;
    max-width: 100%;
  }

  .btnBox li:first-child {
    margin: 0 0 10px;
  }

  .btnBox li a {
    height: 60px;
    padding: 0 20px;
  }

  .icon-plus {
    width: 25px;
    height: 25px;
    right: 20px;
  }
}

/*=============================================*/
#about .attention {
  width: 90%;
  max-width: 930px;
  padding: 40px 30px;
  background: #fcf5eb;
  margin: 60px auto 0;
}

#about .attention h3 {
  width: fit-content;
  line-height: 1.2;
  padding: 10px 40px;
  border: solid 1px var(--main-color);
  border-radius: 20px;
  background: #FFF;
  margin: 0 auto 24px;
}

#about .attention h3::before,
#about .attention h3::after {
  top: 13px;
}

#about .attention h3::before {
  left: 14px;
}

#about .attention h3::after {
  right: 14px;
}

#about .circleColumn {
  max-width: 810px;
  margin: 0 auto;
}

#about .circleColumn li {
  width: 32%;
  max-width: 244px;
}

#about .circleColumn li h4 {
  letter-spacing: 0;
}

#about .circleColumn li p {
  text-align: left;
  letter-spacing: 0.08em;
}

@media screen and (max-width: 820px) {
  #about .attention {
    max-width: 680px;
  }

  #about .circleColumn li {
    width: 50%;
    max-width: 260px;
  }
}

@media screen and (max-width: 520px) {
  #about .attention {
    margin: 40px auto 0;
  }

  #about .attention h3 {
    text-align: center;
    border-radius: 40px;
  }

  #about .attention h3::before,
  #about .attention h3::after {
    top: 20px;
  }

  #about .circleColumn li {
    width: 100%;
  }

  #about .circleColumn li p {
    letter-spacing: 0.08em;
  }

  #about .circleColumn li:nth-child(3) {
    margin: 0 auto;
  }
}

/*=========================================================================================*/
/*hotel*/
#hotel .title,
#hotel .title span {
  text-align: left;
}

#hotel .title {
  position: relative;
}

#hotel .title::after {
  display: block;
  content: "";
  width: calc(100% - 400px);
  height: 2px;
  background: var(--main-color);
  position: absolute;
  top: 44px;
  right: 0;
}

#hotel ul li {
  margin: 0 0 30px;
}

#hotel ul li .imgBox {
  width: 356px;
}

#hotel ul li .imgBox img {
  border-radius: 30px 0 30px 0;
}

#hotel ul li .textBox {
  width: calc(100% - 406px);
}

#hotel ul li h3 {
  font-size: 20px;
  margin: 0 0 15px;
}

#hotel ul li h3 img {
  width: 20px;
  height: 20px;
  margin: 0 0 0 5px;
}

#hotel ul li p:nth-child(2) {
  letter-spacing: 0;
}

#hotel ul li p:last-child {
  font-size: 14px;
  padding: 15px 20px;
  background: #fafafa;
  margin: 15px 0 0;
}

#hotel .slider .slick-prev,
#hotel .slider .slick-next {
  display: none !important;
}

@media screen and (max-width: 820px) {
  #hotel .inner {
    max-width: 520px;
  }

  #hotel .title,
  #hotel .title span {
    text-align: center;
  }

  #hotel .title::after {
    display: none;
  }

  #hotel ul li:last-child {
    margin: 0;
  }

  #hotel ul li .imgBox {
    width: 100%;
    margin: 0 0 20px;
  }

  #hotel ul li .textBox {
    width: 100%;
  }

  #hotel ul li h3 {
    font-size: 18px;
    text-align: center;
    margin: 0 0 5px;
  }

  #hotel ul li p:nth-child(2) {
    font-size: 15px;
    line-height: 2;
    letter-spacing: 0.1em;
  }

  #hotel ul li p:last-child {
    margin: 5px 0 0;
  }
}

/*=========================================================================================*/
/*service*/
#service {
  padding: 100px 0 110px;
}

#service .inner {
  width: 96%;
  max-width: 840px;
  z-index: 10;
}

#service::before, #service::after {
  display: block;
  content: "";
  width: 310px;
  height: 310px;
  background: center / contain no-repeat url(../img/logo-mark-gray.svg);
  position: absolute;
}

#service::before {
  top: -40px;
  left: -40px;
}

#service::after {
  width: 430px;
  height: 430px;
  position: absolute;
  bottom: -120px;
  right: -100px;
}

#service img.bg01 {
  width: 460px;
  height: 460px;
  border-radius: 50%;
  position: absolute;
  top: 380px;
  left: -180px;
  z-index: 1;
}

#service img.bg02 {
  width: 330px;
  height: 330px;
  border-radius: 50%;
  position: absolute;
  top: -35px;
  right: -35px;
  z-index: 1;
}

#service h2 {
  width: fit-content;
  font-family: var(--main-font);
  font-size: 30px;
  font-weight: 600;
  color: var(--main-color);
  padding: 0 0 10px;
  border-bottom: solid 3px var(--main-color);
  margin: 0 auto 30px;
}

#service p {
  text-align: center;
}

#service h2+p {
  font-size: 20px;
  margin: 0 auto 20px;
}

@media screen and (max-width: 620px) {
  #service .inner {
    width: 90%;
  }

  #service p:nth-child(3) {
    text-align: left;
  }
}

@media screen and (max-width: 520px) {
  #service {
    padding: 120px 0 40px;
  }

  #service img.bg01 {
    display: none;
  }

  #service img.bg02 {
    width: 180px;
    height: 180px;
    top: -30px;
    right: -30px;
  }

  #service h2 {
    font-size: 26px;
    text-align: center;
    line-height: 2;
    border-bottom: none;
    margin: 0 auto 10px;
  }

  #service h2 span {
    letter-spacing: 0.14em;
    padding: 0 0 5px;
    border-bottom: solid 2px var(--main-color);
  }

  #service h2+p {
    font-size: 16px;
    text-align: center;
    margin: 0 auto 15px;
  }

  #service p:nth-child(3) {
    line-height: 2.4;
    margin: 0 auto 20px;
  }

  #service p {
    text-align: left;
    margin: 0 auto 25px;
  }

  #service p:last-child {
    line-height: 2;
    text-align: center;
  }

  #service::after {
    display: none;
  }
}

/*=============================================*/
.fukidashi {
  justify-content: center;
  position: relative;
  right: -10px;
  margin: 40px auto 0;
}

.fukidashi li {
  width: 260px;
  font-family: var(--main-font);
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  color: var(--sub-color);
  padding: 10px 20px;
  border-radius: 30px;
  border: solid 1px var(--sub-color);
  background: #FFF;
  margin: 0 20px 30px 0;
  position: relative;
}

.fukidashi li::after {
  display: block;
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 2px;
  border-right: solid 1px var(--sub-color);
  border-bottom: solid 1px var(--sub-color);
  background: #FFF;
  transform: rotate(45deg);
  position: absolute;
  bottom: -7px;
  left: 120px;
}

.fukidashi+p {
  margin: 0 auto 40px;
}

@media screen and (max-width: 520px) {
  .fukidashi {
    margin: 20px auto 10px;
    right: 0;
  }

  .fukidashi li {
    margin: 0 auto 20px;
    position: relative;
  }

  .fukidashi li:nth-child(odd) {
    left: -30px;
  }

  .fukidashi li:nth-child(even) {
    right: -30px;
  }
}

/*=============================================*/
#service .attention {
  margin: 0 auto 20px;
}

#service .circleColumn+p {
  margin: 10px 0 0;
}

.attention02 {
  align-items: inherit;
  border-radius: 20px;
  background: #fffaf0;
  overflow: hidden;
  margin: 0 auto;
  position: relative;
}

.attention02::before {
  display: inline-block;
  content: "FOR MOM";
  font-size: 45px;
  font-weight: bold;
  color: #f5a407;
  position: absolute;
  top: -25px;
  right: -5px;
  opacity: .3;
}

.attention02 img {
  width: 260px;
  height: 163px;
}

.attention02 div {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  align-content: center;
  width: calc(100% - 260px);
  padding: 0 30px;
}

.attention02 div h4 {
  font-family: var(--main-font);
  font-size: 22px;
  font-weight: 600;
  color: #f5a407;
  margin: 0 0 20px;
}

#service .attention02 div p {
  text-align: left;
}

@media screen and (max-width: 820px) {
  .attention02 {
    max-width: 620px;
  }
}

@media screen and (max-width: 768px) {
  .attention02 {
    padding: 60px 5% 30px;
  }

  .attention02 img {
    width: 100%;
    border-radius: 15px 0 15px 0;
    margin: 0 0 15px;
  }

  .attention02 div {
    width: 100%;
    padding: 0;
  }

  .attention02 div h4 {
    font-size: 18px;
    text-align: center;
  }

  #service .attention02 div p {
    width: fit-content;
    margin: 0 auto;
  }
}

@media screen and (max-width: 620px) {
  #service .attention {
    width: 100%;
    padding: 30px;
    margin: 0 auto 20px;
  }

  #service .attention h3 {
    font-size: 18px;
    text-align: center;
    line-height: 1.4;
  }

  #service p+.attention h3::before {
    top: 3px;
    left: 3px;
  }

  #service p+.attention h3::after {
    top: 3px;
    right: 3px;
  }

  #service .attention+.attention h3+p {
    text-align: center;
  }

  #service .attention p:last-child {
    margin: 0;
  }
}

@media screen and (max-width: 520px) {
  #service .attention02 div p {
    width: 100%;
  }
}

/*=========================================================================================*/
/*flow*/
#flow {
  background: #fafafa;
  overflow: inherit;
}

#flow .inner {
  max-width: 887px;
}

#flow::before {
  display: block;
  content: "";
  width: 100%;
  height: 50px;
  background: bottom / contain no-repeat url("../img/flow-bg.svg");
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
}

.flowList {
  margin: 0 0 60px;
}

.flowList li {
  margin: 0 0 65px;
  position: relative;
}

.flowList li:last-child {
  margin: 0;
}

.flowList li::after {
  display: inline-block;
  width: 11px;
  height: 50px;
  content: "";
  background: radial-gradient(circle farthest-side, #cccccc, #cccccc 50%, transparent 50%, transparent);
  background-size: 11px 10px;
  position: absolute;
  bottom: -57px;
  left: 140px;
}

.flowList li:last-child::after {
  display: none;
}

.flowList li .imgBox {
  width: 280px;
  border-radius: 20px 0 20px 0;
  position: relative;
  overflow: hidden;
}

.flowList li .imgBox::before {
  display: block;
  content: "contact";
  font-family: var(--sub-font);
  font-size: 12px;
  letter-spacing: 0.1em;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  position: absolute;
  top: 22px;
  left: 5px;
}

.flowList li .imgBox::after {
  display: block;
  content: "・";
  position: absolute;
  top: 6px;
  left: 13px;
}

.flowList li:nth-child(even) .imgBox::before,
.flowList li:nth-child(even) .imgBox::after {
  color: #FFF;
}

.flowList li:nth-child(2) .imgBox::before {
  content: "counseling";
}

.flowList li:nth-child(3) .imgBox::before {
  content: "procedure";
}

.flowList li:nth-child(4) .imgBox::before {
  content: "preparation";
}

.flowList li:nth-child(5) .imgBox::before {
  content: "check in advance";
}

.flowList li:nth-child(6) .imgBox::before {
  content: "voyage";
}

.flowList li .textBox {
  width: calc(100% - 300px);
  max-width: 570px;
}

.flowList li .textBox h3 {
  font-size: 18px;
  margin: 0 0 15px;
  padding: 0 0 0 30px;
  position: relative;
}

.flowList li .textBox h3::before {
  display: block;
  content: "";
  width: 31px;
  height: 30px;
  background: center / contain no-repeat url("../img/flow-tag01.svg");
  position: absolute;
  top: -10px;
  left: 0;
}

.flowList li:nth-child(2) .textBox h3::before {
  background: center / contain no-repeat url("../img/flow-tag02.svg");
}

.flowList li:nth-child(3) .textBox h3::before {
  background: center / contain no-repeat url("../img/flow-tag03.svg");
}

.flowList li:nth-child(4) .textBox h3::before {
  background: center / contain no-repeat url("../img/flow-tag04.svg");
}

.flowList li:nth-child(5) .textBox h3::before {
  background: center / contain no-repeat url("../img/flow-tag05.svg");
}

.flowList li:nth-child(6) .textBox h3::before {
  background: center / contain no-repeat url("../img/flow-tag06.svg");
}

.flowList li .textBox div {
  border-radius: 15px;
  padding: 20px 29px;
  background: #FFF;
}

.flowList li .textBox div p {
  font-size: 15px;
}

.flowList .btnList {
  padding: 20px 0 0 !important;
  display: flex;
}

.flowList .btn {
  justify-content: flex-start;
  width: 200px;
  height: 40px;
  border-radius: 5px;
  font-size: 13px;
  padding: 0 15px;
  margin: 0;
}

.flowList .btn:last-of-type {
  margin-left: 10px;
}

.flowList .btn.mail::before {
  width: 14px;
  height: 11px;
}

.flowList .btn.mail::after {
  width: 3.5px;
  height: 10px;
}

/**/
@media screen and (max-width: 820px) {
  .flowList {
    margin: 0 0 40px;
  }

  .flowList li {
    justify-content: center;
  }

  .flowList li::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .flowList li .imgBox,
  .flowList li .textBox {
    width: 100%;
    max-width: 520px;
  }

  .flowList li .imgBox {
    margin: 0 0 30px;
  }

  .flowList li .textBox h3 {
    padding: 0 0 0 40px;
  }

  .flowList li .textBox h3::before {
    left: 5px;
  }

  .flowList li .textBox div p {
    font-size: 14px;
  }
}

@media screen and (max-width: 520px) {
  .flowList li .textBox h3 {
    font-weight: 700;
    letter-spacing: 0;
  }

  .flowList .btnList {
    display: block;
  }

  .flowList .btn {
    width: 100%;
    height: 50px;
  }

  .flowList .btn:last-of-type {
    margin-left: 0;
    margin-top: 10px;
  }
}

/*=========================================================================================*/
/**/
#flow .flowList+.attention {
  background: #FFF;
}

#flow .attention {
  position: relative;
  margin: 0 0 40px;
}

#flow .attention h3+p {
  font-size: 13px;
  color: #848484;
  text-align: center;
  margin: -10px 0 260px;
}

@media screen and (max-width: 820px) {
  #flow .attention {
    padding: 30px 20px;
    margin: 0 auto 20px;
  }

  #flow .attention:last-child {
    margin: 0 auto;
  }

  #flow .attention h3+p {
    margin: -5px 0 20px;
  }
}

.conditionsList01 ul {
  width: 980px;
  position: absolute;
  top: 130px;
  left: 50%;
  transform: translateX(-50%);
}

.conditionsList01 ul li {
  width: 20%;
  position: relative;
}

.conditionsList01 ul li:nth-child(even) {
  position: relative;
  top: 60px;
}

.conditionsList01 ul li::before {
  display: block;
  content: "";
  width: 40px;
  height: 40px;
  background: center / contain no-repeat url("../img/airport-tag01.svg");
  position: absolute;
  top: 5px;
  left: 25px;
}

.conditionsList01 ul li:nth-child(2)::before {
  background: center / contain no-repeat url("../img/airport-tag02.svg");
}

.conditionsList01 ul li:nth-child(3)::before {
  background: center / contain no-repeat url("../img/airport-tag03.svg");
}

.conditionsList01 ul li:nth-child(4)::before {
  background: center / contain no-repeat url("../img/airport-tag04.svg");
}

.conditionsList01 ul li:nth-child(5)::before {
  background: center / contain no-repeat url("../img/airport-tag05.svg");
}

.conditionsList01 ul li::after {
  display: block;
  content: "";
  width: 100px;
  border: solid 5px #f0f7fc;
  transform: rotate(20deg);
  position: absolute;
  top: 95px;
  right: -50px;
  z-index: -1;
}

.conditionsList01 ul li:nth-child(even)::after {
  transform: rotate(-20deg);
  top: 40px;
}

.conditionsList01 ul li:last-child::after {
  display: none;
}

.conditionsList01 ul li img {
  display: block;
  width: 145px;
  height: 145px;
  border-radius: 50%;
  border: solid 10px #f0f7fc;
  background: #eee;
  margin: 0 auto 10px;
}

.conditionsList01 ul li p {
  font-size: 13px;
  line-height: 1.4;
  text-align: center;
}

@media screen and (max-width: 1000px) {
  .conditionsList01 ul {
    width: 770px;
  }

  .conditionsList01 ul li p {
    font-size: 12px;
  }
}

@media screen and (max-width: 820px) {
  .conditionsList01 ul {
    width: 100%;
    max-width: 350px;
    position: relative;
    top: 0;
  }

  .conditionsList01 ul li {
    width: 47%;
    margin: 0 0 40px;
    position: relative;
  }

  .conditionsList01 ul li:last-child {
    margin: 0;
  }

  .conditionsList01 ul li:nth-child(even) {
    top: 60px;
  }

  .conditionsList01 ul li::after {
    transform: rotate(30deg);
  }

  .conditionsList01 ul li:nth-child(even)::after {
    transform: rotate(-40deg);
    top: 140px;
    right: auto;
    left: -50px;
  }

  .conditionsList01 ul li img {
    width: 135px;
    height: 135px;
  }

  .conditionsList01 ul li:last-child img {
    margin: 0 auto;
  }

  .conditionsList01 ul li p {
    font-size: 13px;
  }

  .conditionsList01 ul li:last-child p {
    width: 165px;
    text-align: left;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -175px;
  }
}

/**/
.conditionsList02 {
  width: fit-content;
  margin: 0 auto;
}

.conditionsList02 li {
  font-size: 16px;
  list-style: decimal;
}

@media screen and (max-width: 520px) {
  #flow .conditionsList02 {
    padding: 0 20px 0 25px;
  }

  .conditionsList02 li {
    font-size: 14px;
  }
}

/*=========================================================================================*/
/*tesda*/
#tesda {
  padding: 120px 0;
}

#tesda .inner_wrap {
  display: flex;
  justify-content: space-between;
  max-width: 800px;
  margin: 0 auto;
}

#tesda .textWrap .label {
  color: #fff;
  line-height: 1.2;
  background: var(--main-color);
  max-width: 175px;
  border-radius: 0 30px 30px 0;
  padding: 8px 10px 8px 12px;
}

#tesda .textWrap .txt-tesda {
  color: var(--main-color);
  font-size: 45px;
  font-weight: bold;
  line-height: normal;
  letter-spacing: 0.4rem;
  border-bottom: solid 2px var(--main-color);
  max-width: 315px;
}

#tesda .inner_wrap .imgBox {
  max-width: 260px;
}

#tesda .textBox {
  font-size: 16px;
  max-width: 420px;
  margin-top: 20px;
  letter-spacing: 0.1rem;
  line-height: 2.5;
}

#tesda .textBox span {
  font-weight: bold;
}

@media screen and (max-width: 820px) {
  #tesda {
    padding: 60px 0;
  }

  #tesda .inner_wrap {
    display: block;
    max-width: 520px;
    margin: 0 auto;
  }

  #tesda .textWrap .label {
    font-size: 16px;
    text-align: center;
    max-width: 175px;
    border-radius: 30px;
    padding: 8px 10px;
    margin: 0 auto;
    margin-bottom: 5px;
  }

  #tesda .textWrap .txt-tesda {
    margin: 0 auto;
  }

  #tesda .textBox {
    margin: 0 auto;
    padding: 25px 0;
  }

  #tesda .inner_wrap .imgBox {
    max-width: 200px;
    margin: 0 auto;
  }
}

@media screen and (max-width: 440px) {
  #tesda .textWrap .label {
    font-size: 15px;
    max-width: 165px;
    padding: 7px;
    margin-bottom: 8px;
  }

  #tesda .textWrap .txt-tesda {
    font-size: 34px;
    max-width: 229px;
    letter-spacing: 0.2rem;
  }

  #tesda .textBox {
    font-size: 16px;
    line-height: 2.2;
    max-width: 355px;
    padding: 20px 0 10px;
  }

  #tesda .textBox .sp-les {
    display: none;
  }

  #tesda .inner_wrap .imgBox {
    max-width: 165px;
  }
}

/*=========================================================================================*/
/*faq*/
#faq {
  background: #fafafa;
}

/*ベース*/
.toggle {
  display: none;
}

.Label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: bold;
  border-radius: 10px;
  background: #FFF;
}

.Label:hover {
  cursor: pointer;
}

.Label::before {
  display: inline-block;
  content: "";
  width: 36px;
  height: 36px;
  background: center / contain no-repeat url("../img/icon-q.svg");
  position: absolute;
  top: 50%;
  left: 30px;
  transform: translateY(-50%);
}

.Label::after {
  display: block;
  content: "";
  width: 8px;
  height: 4px;
  position: relative;
  background: center / contain no-repeat url("../img/icon-arrow01.svg");
  transform: rotate(0deg);
  transition: .5s;
}

.Label,
.accordion .box {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
  transition: all 0.3s;
  padding: 15px 30px 15px 80px;
  margin: 0 0 15px;
}

.accordion .box {
  height: 0;
  padding: 0 30px 0 80px;
  overflow: hidden;
}

.toggle:checked+.Label+.box {
  height: auto;
  padding: 15px 30px 15px 80px;
  transition: all .3s;
}

.toggle:checked+.Label::after {
  transform: rotate(180deg) !important;
}

/*1つ目の記述*/
.accordion .box01 {
  height: auto;
  padding: 15px 30px 15px 80px;
  transition: all .3s;
}

/*answer*/
.accordion .box p {
  font-size: 15px;
  line-height: 1.6;
}

.accordion .box::before {
  display: inline-block;
  content: "";
  width: 36px;
  height: 36px;
  background: center / contain no-repeat url("../img/icon-a.svg");
  position: absolute;
  top: 10px;
  left: 30px;
}

/*1つ目の記述*/
.Label.label01::after {
  transform: rotate(180deg) !important;
}

.toggle:checked+.Label+.box01 {
  height: 0;
  margin: 0 0 10px;
  padding: 0 30px 0 80px;
  overflow: hidden;
}

.Label.label01::after {
  transform: rotate(180deg) !important;
}

.toggle:checked+.label01::after {
  transform: rotate(0deg) !important;
}

@media screen and (max-width: 520px) {

  .Label,
  .accordion .box {
    padding: 15px 20px 15px 54px;
  }

  .accordion .box {
    padding: 0 20px 0 54px;
  }

  .toggle:checked+.Label+.box {
    padding: 15px 20px 15px 54px;
  }

  .Label::before,
  .accordion .box::before {
    width: 30px;
    height: 30px;
    left: 12px;
  }

  /*1つ目の記述*/
  .accordion .box01 {
    padding: 15px 20px 15px 54px;
  }

  .toggle:checked+.Label+.box01 {
    padding: 0 20px 0 54px;
  }

  .Label p,
  .accordion .box p {
    font-size: 13px;
  }

  .Label p {
    width: 90%;
  }

  .accordion .box p {
    width: 94%;
  }
}

/*=========================================================================================*/
/*global*/
#global {
  padding: 140px 0 180px;
}

#global img {
  width: 260px;
}

#global .textBox {
  width: calc(100% - 300px);
  max-width: 600px;
}

#global .title {
  font-family: var(--text-font);
  font-size: 45px;
  letter-spacing: 0.04em;
  text-align: left;
  line-height: 1.4;
  color: var(--text-color);
  margin: 0 0 50px;
}

#global .title span {
  text-align: left;
}

#global .textBox p {
  font-size: 18px;
  text-align: left;
  line-height: 3.5;
  letter-spacing: 0.08em;
  margin: 0;
}

@media screen and (max-width: 1000px) {
  #global .title {
    font-size: 40px;
  }
}

@media screen and (max-width: 820px) {
  #global {
    padding: 50px 0 100px;
  }

  #global .inner {
    justify-content: center;
  }

  #global img {
    width: 260px;
    margin: 0 auto 20px;
  }

  #global .textBox {
    width: 100%;
    max-width: 520px;
    position: relative;
  }

  #global .title {
    line-height: 1.6;
    text-align: center;
    margin: 0 0 10px;
  }

  #global .title span {
    text-align: center;
  }

  #global .textBox p {
    width: 90%;
    font-size: 15px;
    line-height: 2.5;
    margin: 0 auto;
  }
}

@media screen and (max-width: 520px) {
  #global img {
    width: 113px;
  }

  #global .title {
    font-size: 28px;
    padding: 30px 0 0;
  }

  #global .title span {
    text-align: center;
    line-height: 1;
    margin: 0 0 3px;
  }
}

.pageTop {
  display: block;
  width: 110px;
  height: 110px;
  position: absolute;
  top: -130px;
  right: 20px;
  z-index: 1;
}

@media screen and (max-width: 520px) {
  .pageTop {
    width: 68px;
    height: 68px;
    top: -160px;
  }
}

/*=========================================================================================*/
/*footer*/
footer {
  padding: 60px 0 120px;
  background: var(--main-color);
  position: relative;
  overflow: hidden;
}

footer .inner {
  max-width: 1150px;
  z-index: 10;
}

footer::before {
  display: block;
  content: "";
  width: 100%;
  height: 200px;
  background: #FFF;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

footer::after {
  display: block;
  content: "";
  width: 1900px;
  height: 800px;
  border-radius: 50% 50% 0 0;
  background: var(--main-color);
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

footer p,
footer a {
  color: #FFF;
}

footer h2 {
  width: 100%;
}

footer img {
  display: block;
  width: 78px;
  margin: 0 auto 60px;
}

footer .inner div {
  width: 310px;
}

footer .inner div h3 {
  font-size: 16px;
  color: #FFF;
  margin: 0 0 15px;
}

footer .inner div p {
  font-size: 14px;
  line-height: 1.4;
  margin: 0 0 30px;
}

footer .inner div .btn+a {
  font-size: 12px;
}

footer ul {
  width: calc(100% - 400px);
}

footer ul li {
  width: 33%;
  max-width: 205px;
  border-top: solid 3px #3a7296;
  padding: 10px 0 0;
  margin: 0 0 40px;
}

footer ul li dt {
  font-size: 14px;
  font-weight: 700;
  color: #FFF;
  margin: 0 0 10px;
  position: relative;
}

footer ul li dt::before {
  display: inline-block;
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #FFF;
  margin: 0 10px 0 0;
}

footer ul li dd a {
  display: block;
  font-size: 13px;
  padding: 0 0 0 16px;
  margin: 0 0 5px;
}

footer ul+div {
  display: none;
}

small {
  display: block;
  width: 100%;
  font-size: 10px;
  text-align: center;
  color: #FFF;
  padding: 5px;
  background: #003e74;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

@media screen and (max-width: 1150px) {
  footer ul {
    width: calc(100% - 340px);
  }
}

@media screen and (max-width: 1000px) {
  footer .inner div {
    margin: 0 0 50px;
  }

  footer ul {
    width: 100%;
    margin: 0 auto;
  }
}

@media screen and (max-width: 520px) {
  footer .inner div {
    width: 100%;
  }

  footer::after {
    width: 700px;
    height: 700px;
  }

  footer img {
    margin: 0 auto 40px;
  }

  footer .inner div {
    text-align: center;
    margin: 0;
  }

  footer .inner div .btn,
  footer .inner div .btn+a {
    display: none;
  }

  footer ul li {
    width: 44%;
    margin: 0 0 40px;
    border-top: none;
  }

  footer ul li dt {
    padding: 0 0 10px;
    border-bottom: solid 3px #3a7296;
  }

  footer ul li dt::before {
    display: none;
  }

  footer ul li dt::after {
    display: inline-block;
    content: "";
    width: 16px;
    height: 5px;
    background: center / contain no-repeat url("../img/icon-arrow04.svg");
    position: absolute;
    top: 43%;
    right: 0;
    transform: translateY(-50%);
  }

  footer ul li dd {
    height: 0;
    overflow: hidden;
    transition: .5s;
  }

  footer ul li .openNav+dd,
  footer ul li .openNav02+dd,
  footer ul li .openNav03+dd,
  footer ul li .openNav04+dd,
  footer ul li .openNav05+dd,
  footer ul li .openNav06+dd {
    height: auto;
  }

  footer ul li dd a {
    padding: 0;
  }

  footer ul+div {
    display: block;
  }

  footer .inner ul+div .btn {
    display: flex;
  }

  footer .inner ul+div .btn+a {
    display: block;
  }
}

.modaal-inner-wrapper{
  padding-top: 10%;
}
