@charset "UTF-8";
/* =====================

共通部分

=========================*/
body {
  background: #fff;
}

h1 {
  font-size: 32px;
}

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

main, body {
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
}

a:visited {
  color: #333333;
}

a:hover {
  opacity: 0.7;
}

img {
  max-width: 100%;
}

a, p, th, td, li {
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-style: normal;
  color: #333333;
}

h1, h2, h3, h4 {
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  font-style: normal;
}

.wrapper {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}

.sec__ttl {
  font-size: 2rem;
  padding-bottom: 1vw;
  margin: 0 auto;
  white-space: nowrap;
}
@media screen and (max-width: 890px) {
  .sec__ttl {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 768px) {
  .sec__ttl {
    font-size: 1.5rem;
  }
}

/*=========================

index.html

=========================*/
/* header
-------------------------------*/
.header {
  position: fixed;
  z-index: 100;
}

.header__nav {
  display: flex;
  list-style-type: none;
  justify-content: flex-end;
  height: 8vh;
  max-height: 80px;
  width: 100vw;
  background-color: #fff;
  margin: 0 auto;
  padding: 3px;
}
.header__nav li {
  display: flex;
  text-align: center;
  align-items: center;
  justify-content: center;
  margin: 0 5px;
}
.header__nav a {
  display: block;
  font-weight: 600;
  font-size: 1.1rem;
}
.header__nav a img {
  display: flex;
  justify-content: center;
  text-align: center;
  height: 7.8vh;
  max-height: 75px;
  max-width: 30vw;
}
@media screen and (max-width: 768px) {
  .header__nav a img {
    height: auto;
  }
}
.header__nav a span {
  display: block;
  line-height: 0.8em;
  font-size: 1rem;
}
.header__nav li:nth-child(4) a {
  margin: 0;
}
.header__nav .hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 24px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
}
.header__nav .hamburger span {
  display: block;
  height: 4px;
  background: #333;
  border-radius: 2px;
}

@media screen and (max-width: 890px) {
  .hamburger {
    display: block;
    position: fixed;
    width: 50px;
    height: 50px;
    z-index: 10020;
    top: 17px;
    right: 17px;
    cursor: pointer;
    transition: all 0.5s ease;
  }
  .hamburger span {
    position: absolute;
    content: "";
    width: 25px;
    height: 2px;
    background: #333;
    right: 10px;
    top: 15px;
    transition: 0.3s ease-in-out;
    border-radius: 10px;
  }
  .hamburger span:nth-child(1) {
    top: 10px;
  }
  .hamburger span:nth-child(2) {
    top: 19px;
  }
  .hamburger span:nth-child(3) {
    top: 28px;
  }
  .hamburger.active span:nth-child(1) {
    top: 10px;
    right: 3px;
    height: 1.5px;
    background: #fff;
    transform: rotate(45deg);
  }
  .hamburger.active span:nth-child(2),
.hamburger.active span:nth-child(3) {
    top: 10px;
    right: 3px;
    background: #fff;
    transform: rotate(-45deg);
  }
  .header__nav {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 60%;
    background: #092648;
    transition: all 0.3s ease;
    z-index: 2;
    display: none;
    display: block;
    text-align: center;
    transform: translateX(100%);
    max-height: 100vh;
  }
  .header__nav li {
    margin: 20px auto;
    height: 10%;
    color: #fff;
  }
  .header__nav li a {
    font-size: 15px;
    color: #fff;
  }
  .header__nav li a:visited {
    color: #fff;
  }
  .header__nav.active {
    transform: translate(0, 0);
    opacity: 1;
    z-index: 300;
    display: block;
  }
}
.fv {
  height: 100vh;
  max-height: 630px;
  background: url("../image/fv_bg.jpg") center center/cover no-repeat;
}
.fv__box {
  display: flex;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .fv__box {
    display: none;
  }
}
.fv__box__img {
  margin: auto auto 0 0;
  aspect-ratio: 350/541;
  width: auto;
  height: 95%;
  z-index: 101;
  max-height: 585px;
}
@media screen and (max-width: 1200px) {
  .fv__box__img {
    height: 80%;
  }
}
@media screen and (max-width: 890px) {
  .fv__box__img {
    height: 80%;
  }
}
.fv__box__txt {
  width: 65%;
  margin: 10vh 5vw 0 auto;
}
.fv__box__txt p {
  white-space: nowrap;
}
@media screen and (max-width: 890px) {
  .fv__box__txt {
    margin: 10vh 5vw 0 auto;
  }
}
.fv__box__txt__sub-top {
  font-size: 2.1rem;
  background-color: #092648;
  color: #fff;
  font-weight: 400;
  margin: 5px auto;
  display: block;
  text-align: center;
  width: 82%;
}
@media screen and (max-width: 1200px) {
  .fv__box__txt__sub-top {
    font-size: 2.5vw;
  }
}
.fv__box__txt__sub-top span {
  font-size: 1.6rem;
}
@media screen and (max-width: 1200px) {
  .fv__box__txt__sub-top span {
    font-size: 2vw;
  }
}
.fv__box__txt__sub-bottom {
  font-size: 3rem;
  background-color: #092648;
  color: #fff;
  font-weight: 400;
  display: block;
  letter-spacing: -0.4rem;
  margin: 5px auto;
  text-align: center;
}
@media screen and (max-width: 1200px) {
  .fv__box__txt__sub-bottom {
    font-size: 3.5vw;
  }
}
.fv__box__txt__sub-bottom span {
  font-size: 2.5rem;
}
@media screen and (max-width: 1200px) {
  .fv__box__txt__sub-bottom span {
    font-size: 3vw;
  }
}
.fv__box__txt h1 {
  margin: 1vw auto 0;
}
.fv__box__txt__ttl {
  width: 100%;
  aspect-ratio: 900/145;
  margin-bottom: 0;
}
.fv__box__txt__sub-contents {
  position: relative;
  margin: 0 auto;
}
.fv__box__txt__sub-contents h2 {
  font-size: 2rem;
  display: block;
  width: 50%;
  color: #fff;
  background-color: #092648;
  font-weight: 400;
  text-align: center;
  margin: 0 auto;
  padding: 0 0.3rem 0.3rem 0.3rem;
  position: absolute;
  left: 25%;
  right: 25%;
  top: -8%;
  z-index: 2;
  border-radius: 5px;
  white-space: nowrap;
}
@media screen and (max-width: 1200px) {
  .fv__box__txt__sub-contents h2 {
    font-size: 2.5vw;
    top: -5%;
  }
}
@media screen and (max-width: 890px) {
  .fv__box__txt__sub-contents h2 {
    width: 60%;
  }
}
.fv__box__txt__sub-contents h2 span {
  font-size: 1.5rem;
}
@media screen and (max-width: 1200px) {
  .fv__box__txt__sub-contents h2 span {
    font-size: 2vw;
  }
}
.fv__box__txt__sub-contents p {
  margin-top: 0.5vw;
  width: 100%;
  font-size: 1.25rem;
  background-color: #fff;
  line-height: 2.5rem;
  padding: 3vw 2vw 2vw;
  z-index: 1;
  border-radius: 5px;
}
@media screen and (max-width: 1200px) {
  .fv__box__txt__sub-contents p {
    font-size: 1.3rem;
    line-height: 2.1rem;
    white-space: inherit;
    padding: 4vw 2vw 2vw;
  }
  .fv__box__txt__sub-contents p .smpc-br {
    display: none;
  }
}
.fv__box__txt__sub-contents p .site__color__bg {
  background-color: #092648;
  color: #fff;
  padding: 0 0.3vw 0.2vw;
  text-align: center;
  line-height: 2.5rem;
}
.fv__box__txt__sub-contents-gldbg {
  background-image: url("../image/fv_txt_bg-50.jpg");
  font-size: 1.5rem;
  text-align: center;
  padding: 0 0.3vw 0.2vw;
}
@media screen and (max-width: 1200px) {
  .fv__box__txt__sub-contents-gldbg {
    font-size: 2.5vw;
    line-height: 2.5rem;
  }
}
.fv__box-responsive {
  display: none;
}
@media screen and (max-width: 768px) {
  .fv__box-responsive {
    display: block;
    background: url("../image/fv_bg.jpg") center center/cover no-repeat;
  }
  .fv__box-responsive-box {
    display: flex;
  }
  .fv__box-responsive-box .fv__box__img {
    width: 25%;
    z-index: 50;
  }
  .fv__box-responsive__txt {
    margin: 0 auto;
    padding: 12vw 0 0 0;
  }
  .fv__box-responsive__txt p {
    margin: 0 auto 0;
    white-space: nowrap;
  }
  .fv__box-responsive__txt__sub-top {
    background-color: #092648;
    color: #fff;
    font-size: 3.5vw;
    text-align: center;
    margin: 0 auto;
    display: block;
    width: 80%;
  }
  .fv__box-responsive__txt__sub-top span {
    font-size: 2.5vw;
  }
  .fv__box-responsive__txt__sub-bottom {
    background-color: #092648;
    color: #fff;
    font-size: 5vw;
    text-align: center;
    margin: 0 auto;
    display: block;
    letter-spacing: -1vw;
    padding: 0 1vw;
    width: 100%;
  }
  .fv__box-responsive__txt__sub-bottom span {
    font-size: 4vw;
    letter-spacing: -0.5vw;
  }
  .fv__box-responsive__txt h1 {
    margin: 1vw auto;
  }
  .fv__box-responsive__txt__ttl {
    width: 97%;
    margin: 1.5vw auto;
  }
  .fv__box-responsive__contents-box {
    position: relative;
    width: 99%;
    margin: -2vh auto 3vw;
    padding-bottom: 0.3vh;
    z-index: 51;
  }
  .fv__box-responsive__contents-box h2 {
    position: absolute;
    top: -20%;
    right: 2vw;
    border-radius: 5px;
    background-color: #092648;
    color: #fff;
    font-size: 4.5vw;
    padding: 0.5vw 1vw;
    z-index: 52;
    font-weight: 400;
  }
  .fv__box-responsive__contents-box h2 span {
    font-size: 4vw;
  }
  .fv__box-responsive__contents-box p {
    background-color: #fff;
    padding: 7% 5%;
    border-radius: 5px;
    line-height: 2rem;
  }
  .fv__box-responsive__contents-box .site__color__bg {
    background-color: #092648;
    color: #fff;
    line-height: 2rem;
  }
  .fv__box-responsive__contents-box .fv__box__txt__sub-contents-gldbg {
    font-size: 1.3rem;
    line-height: 2.2rem;
  }
}
@media screen and (max-width: 480px) {
  .fv__box-responsive .fv__box__img {
    margin-top: 4vh;
  }
  .fv__box-responsive__contents-box h2 {
    top: -5%;
    margin-top: 0;
    margin-bottom: 0;
  }
  .fv__box-responsive__contents-box p {
    margin-top: 0;
    line-height: 1.6rem;
    margin-bottom: 0.3vh;
  }
  .fv__box-responsive__contents-box p .smpc-br {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .fv {
    height: auto;
  }
}

.worries {
  padding-top: 5vw;
  background: url("../image/nayami_bg-50.jpg") no-repeat bottom;
  background-size: cover;
}
@media screen and (max-width: 768px) {
  .worries {
    height: 620px;
  }
}
.worries .sec__ttl {
  background: url("../image/nayami_line-50.jpg") bottom no-repeat;
  width: 40%;
  max-width: 567px;
  text-align: center;
  white-space: nowrap;
}
@media screen and (max-width: 890px) {
  .worries .sec__ttl {
    width: 50%;
  }
}
@media screen and (max-width: 768px) {
  .worries .sec__ttl {
    width: 80%;
  }
}
.worries__box {
  display: flex;
  justify-content: center;
  margin: 0 auto;
  font-size: 1.2rem;
  padding: 5vw 3vw 3vw;
}
@media screen and (max-width: 890px) {
  .worries__box {
    font-size: 1rem;
    white-space: nowrap;
  }
}
@media screen and (max-width: 768px) {
  .worries__box {
    position: relative;
    display: block;
    height: 100%;
  }
}
.worries__box img {
  margin: 0 2vw;
  aspect-ratio: 199/610;
  height: 40vw;
}
@media screen and (max-width: 890px) {
  .worries__box img {
    height: 50vw;
  }
}
@media screen and (max-width: 768px) {
  .worries__box img {
    position: absolute;
    z-index: 49;
    height: 50%;
    right: 0;
    bottom: 10%;
  }
}
@media screen and (max-width: 768px) {
  .worries__box__contents-lf {
    right: 0;
    z-index: 53;
    top: 5%;
  }
}
.worries__box__contents-lf__sitecolor-bg {
  background-color: #092648;
  color: #fff;
  padding: 10px;
  text-align: center;
  margin: 2vw auto 2vw 2vw;
}
@media screen and (max-width: 768px) {
  .worries__box__contents-lf__sitecolor-bg {
    margin: 10px auto 10px 20px;
    text-align: center;
    width: 80%;
  }
}
.worries__box__contents-lf__sitecolor-line {
  background-color: #fff;
  border: 3px solid #092648;
  padding: 2vw;
  text-align: center;
  margin: 3.5vw 2vw 3.5vw auto;
}
@media screen and (max-width: 768px) {
  .worries__box__contents-lf__sitecolor-line {
    margin: 10px auto 10px 20px;
    text-align: center;
    width: 80%;
  }
}
@media screen and (max-width: 768px) {
  .worries__box__contents-rg {
    right: 5%;
    bottom: 10%;
    z-index: 53;
  }
}
.worries__box__contents-rg__sitecolor-bg {
  background-color: #092648;
  color: #fff;
  padding: 2vw;
  text-align: center;
  margin: 2vw 2vw 2vw auto;
}
@media screen and (max-width: 768px) {
  .worries__box__contents-rg__sitecolor-bg {
    margin: 10px auto 10px 20px;
    text-align: center;
    width: 80%;
  }
}
.worries__box__contents-rg__sitecolor-line {
  background-color: #fff;
  border: 3px solid #092648;
  padding: 2vw;
  text-align: center;
  margin: 4vw auto 4vw 2vw;
}
@media screen and (max-width: 768px) {
  .worries__box__contents-rg__sitecolor-line {
    margin: 10px auto 10px 20px;
    text-align: center;
    width: 80%;
  }
}

.risk__txt {
  background: url("../image/worries_txt_bg-50.jpg") center no-repeat;
  background-size: cover;
  padding: 5vw;
  text-align: center;
  font-size: 1.2rem;
  line-height: 2rem;
}
.risk__txt .sp-br {
  display: none;
}
@media screen and (max-width: 768px) {
  .risk__txt .sp-br {
    display: block;
  }
}
.risk__txt__bgline-bottom {
  background-image: linear-gradient(90deg, #ffc754, #fff89b, #ffc754);
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: 100% 30%;
  display: inline;
}
.risk__txt__bg-sitecolor {
  background-color: #092648;
  display: inline;
  color: #fff;
  margin: 1vw auto 0;
  text-align: center;
}
@media screen and (max-width: 1200px) {
  .risk__txt__bg-sitecolor {
    line-height: 2.3rem;
  }
}
.risk__txt__bg-color {
  background-color: #333333;
  display: inline;
  color: #fff;
  margin: 4vw auto 0;
  text-align: center;
  font-size: 2.5rem;
  line-height: 5rem;
  padding-left: 0.7vw;
}

.soudan {
  padding: 3vw;
  margin: 0 auto;
  width: 90vw;
}
@media screen and (max-width: 1200px) {
  .soudan {
    width: 95%;
    margin: 0 auto;
  }
}
.soudan .sec__ttl {
  text-align: center;
  background: url("../image/soudan_line-50.jpg") no-repeat bottom;
  padding-top: 3vw;
}
.soudan .soudan__box {
  position: relative;
  margin: 1vw auto 0;
  padding: 7.5vw 3vw 3vw 3vw;
}
.soudan .soudan__box .sp-br {
  display: none;
}
@media screen and (max-width: 768px) {
  .soudan .soudan__box .sp-br {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .soudan .soudan__box {
    padding: 0.5vw 3vw 3vw 3vw;
  }
}
.soudan .soudan__box h3 {
  border-bottom: 3px solid #092648;
  display: block;
  padding-right: 15vw;
  width: 50%;
}
@media screen and (max-width: 768px) {
  .soudan .soudan__box h3 {
    width: 70%;
  }
}
.soudan .soudan__box h3 img {
  aspect-ratio: 161/72;
  width: 10vw;
}
@media screen and (max-width: 768px) {
  .soudan .soudan__box h3 img {
    width: 50%;
  }
}
.soudan .soudan__box h4 {
  font-size: 1.8rem;
  margin: 1.5vw 0 3vw;
}
@media screen and (max-width: 1200px) {
  .soudan .soudan__box h4 {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 768px) {
  .soudan .soudan__box h4 {
    font-size: 1.2rem;
    width: 70%;
  }
}
.soudan .soudan__box h4 span {
  display: block;
}
.soudan .soudan__box__txt {
  position: relative;
}
.soudan .soudan__box__txt p:first-child {
  border: 3px solid #092648;
  margin: 0;
  padding: 3vw;
  font-size: 1.5rem;
  background-color: #fff;
}
@media screen and (max-width: 1200px) {
  .soudan .soudan__box__txt p:first-child {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 768px) {
  .soudan .soudan__box__txt p:first-child {
    font-size: 1rem;
  }
}
.soudan .soudan__box__txt__answer {
  background-color: #092648;
  color: #fff;
  margin: 0;
  padding: 3vw;
  font-size: 1.5rem;
}
@media screen and (max-width: 1200px) {
  .soudan .soudan__box__txt__answer {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 768px) {
  .soudan .soudan__box__txt__answer {
    font-size: 1rem;
  }
}
.soudan .soudan__box__txt__answer-img {
  position: absolute;
  right: 8%;
  bottom: 0;
  height: 30%;
  width: auto;
}
@media screen and (max-width: 890px) {
  .soudan .soudan__box__txt__answer-img {
    right: 0;
  }
}
@media screen and (max-width: 480px) {
  .soudan .soudan__box__txt__answer-img {
    height: 15%;
    right: -5%;
  }
}
.soudan .soudan__box__txt__answer-img-center {
  position: absolute;
  right: 8%;
  bottom: 0;
  height: 34%;
}
.soudan .soudan__box-bgillust {
  position: absolute;
  right: 0;
  top: -10%;
  z-index: -100;
}
@media screen and (max-width: 768px) {
  .soudan .soudan__box-bgillust {
    height: 60%;
    right: 0;
    top: 5%;
  }
}
@media screen and (max-width: 480px) {
  .soudan .soudan__box-bgillust {
    height: 50%;
    right: -7%;
    top: 10%;
  }
}
.soudan .soudan__box-bgillust-zeimu {
  position: absolute;
  right: 3%;
  top: -5%;
  z-index: -100;
}
@media screen and (max-width: 768px) {
  .soudan .soudan__box-bgillust-zeimu {
    height: 60%;
    top: 0;
    right: 0;
  }
}
@media screen and (max-width: 480px) {
  .soudan .soudan__box-bgillust-zeimu {
    height: 40%;
    top: 0;
    right: 0;
  }
}
.soudan .soudan__box-aditional {
  position: relative;
  margin: 0 auto;
  padding: 7.5vw 3vw 3vw 3vw;
}
.soudan .soudan__box-aditional h3 {
  border-bottom: 3px solid #092648;
  display: block;
  text-align: right;
  width: 50%;
  margin: 0 0 0 auto;
}
@media screen and (max-width: 768px) {
  .soudan .soudan__box-aditional h3 {
    width: 60%;
  }
}
.soudan .soudan__box-aditional h3 img {
  aspect-ratio: 161/72;
  width: 10vw;
}
@media screen and (max-width: 768px) {
  .soudan .soudan__box-aditional h3 img {
    width: 50%;
  }
}
.soudan .soudan__box-aditional h4 {
  font-size: 1.8rem;
  margin: 1.5vw 0 3vw;
  text-align: right;
}
@media screen and (max-width: 1200px) {
  .soudan .soudan__box-aditional h4 {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 768px) {
  .soudan .soudan__box-aditional h4 {
    font-size: 1.2rem;
    width: 70%;
    margin: 1.5vw 0 3vw auto;
  }
}
.soudan .soudan__box-aditional h4 span {
  display: block;
}
.soudan .soudan__box-aditional__txt {
  position: relative;
}
.soudan .soudan__box-aditional__txt p:first-child {
  border: 3px solid #092648;
  margin: 0;
  padding: 3vw;
  font-size: 1.5rem;
  background-color: #fff;
}
@media screen and (max-width: 1200px) {
  .soudan .soudan__box-aditional__txt p:first-child {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 768px) {
  .soudan .soudan__box-aditional__txt p:first-child {
    font-size: 1rem;
  }
}
.soudan .soudan__box-aditional__txt__answer {
  background-color: #092648;
  color: #fff;
  margin: 0;
  padding: 3vw;
  font-size: 1.5rem;
}
@media screen and (max-width: 1200px) {
  .soudan .soudan__box-aditional__txt__answer {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 768px) {
  .soudan .soudan__box-aditional__txt__answer {
    font-size: 1rem;
  }
}
.soudan .soudan__box-aditional__txt__answer-img {
  position: absolute;
  right: 8%;
  bottom: 0;
  height: 30%;
  width: auto;
}
.soudan .soudan__box-aditional__txt__answer-img-center {
  position: absolute;
  right: 8%;
  bottom: 0;
  height: 34%;
}
@media screen and (max-width: 768px) {
  .soudan .soudan__box-aditional__txt__answer-img-center {
    height: 25%;
    right: 0;
  }
}
@media screen and (max-width: 480px) {
  .soudan .soudan__box-aditional__txt__answer-img-center {
    right: -5%;
    height: 15%;
  }
}
.soudan .soudan__box-aditional-bgillust {
  position: absolute;
  left: 0;
  top: -5%;
  z-index: -100;
}
@media screen and (max-width: 768px) {
  .soudan .soudan__box-aditional-bgillust {
    left: -5%;
    top: 0;
    height: 80%;
  }
}
@media screen and (max-width: 480px) {
  .soudan .soudan__box-aditional-bgillust {
    height: 50%;
  }
}

.appeal {
  background: url("../image/appeal_bg.jpeg") no-repeat;
  background-size: cover;
}
.appeal p {
  font-size: 1.2rem;
  padding: 3vw;
  margin: 0 auto 6vw auto;
  width: 90%;
  line-height: 2.5rem;
  text-align: center;
}
@media screen and (max-width: 1200px) {
  .appeal p {
    width: 95%;
    font-size: 1rem;
    line-height: 2rem;
  }
}
.appeal .site__color__bg {
  background-color: #092648;
  color: #fff;
  padding-left: 10px;
}
.appeal .appeal__line {
  background-image: linear-gradient(90deg, #ffc754, #fff89b, #ffc754);
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: 100% 30%;
  display: inline;
  padding-left: 10px;
  font-size: 1.5rem;
}

.shoukai {
  position: relative;
  height: 990px;
  width: 100%;
  z-index: 1;
}
@media screen and (max-width: 1200px) {
  .shoukai {
    height: 1000px;
  }
}
@media screen and (max-width: 890px) {
  .shoukai {
    height: 950px;
  }
}
@media screen and (max-width: 768px) {
  .shoukai {
    height: 950px;
  }
}
@media screen and (max-width: 480px) {
  .shoukai {
    height: 1170px;
  }
}
.shoukai__ttl {
  background-color: #fff;
  border: 1px solid #092648;
  padding: 2vw;
  width: 500px;
  margin: 1vw auto auto 10vw;
  font-size: 2.4rem;
}
@media screen and (max-width: 768px) {
  .shoukai__ttl {
    width: 300px;
    padding: 20px;
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 480px) {
  .shoukai__ttl {
    width: 250px;
    padding: 10px;
    font-size: 1.3rem;
  }
}
.shoukai__ttl span {
  background: url("../image/shoukai_ttl_bg-50.jpg") no-repeat;
  background-size: cover;
  display: block;
  font-size: 3.5rem;
  width: 80%;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .shoukai__ttl span {
    font-size: 2.5rem;
    width: 90%;
  }
}
@media screen and (max-width: 480px) {
  .shoukai__ttl span {
    font-size: 1.9rem;
  }
}
.shoukai__box {
  background: url("../image/shoukai_bg-50.jpg") no-repeat;
  background-size: cover;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 150px;
  z-index: -100;
  padding-bottom: 3vh;
}
@media screen and (max-width: 1200px) {
  .shoukai__box {
    height: auto;
  }
}
@media screen and (max-width: 890px) {
  .shoukai__box {
    height: auto;
  }
}
@media screen and (max-width: 768px) {
  .shoukai__box {
    padding-bottom: 5vh;
    top: 110px;
  }
}
@media screen and (max-width: 480px) {
  .shoukai__box {
    top: 100px;
  }
}
.shoukai__box p {
  color: #fff;
  width: 80%;
  margin: 14vw auto 0;
  font-size: 1.5rem;
  height: 100%;
}
@media screen and (max-width: 890px) {
  .shoukai__box p {
    font-size: 1.3rem;
  }
}
.shoukai__box p img {
  float: right;
  margin: 2vw;
}
@media screen and (max-width: 1200px) {
  .shoukai__box p img {
    width: 40%;
  }
}
.shoukai__box a {
  color: #fff;
  cursor: pointer;
  text-decoration: underline;
  z-index: 100;
}
.shoukai__box a:visited {
  color: #fff;
}

.fee {
  margin: 25vh auto 5vw;
  width: 80%;
}
@media screen and (max-width: 1200px) {
  .fee {
    margin: 0 auto 5vw;
  }
}
@media screen and (max-width: 480px) {
  .fee {
    width: 95%;
  }
}
.fee .sec__ttl {
  text-align: center;
  background: url("../image/fee__ttl.png") no-repeat bottom;
  width: 65%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .fee .sec__ttl {
    width: 75%;
  }
}
@media screen and (max-width: 480px) {
  .fee .sec__ttl {
    width: 95%;
    font-size: 1.3rem;
  }
}
.fee__ttl {
  background-color: #092648;
  border-radius: 5px;
  text-align: center;
  color: #fff;
  font-size: 2rem;
  font-weight: 600;
  width: 10%;
  padding: 0.5rem 0.7rem 0.7rem 0.7rem;
  margin: 2vw auto 1vw;
  position: relative;
}
@media screen and (max-width: 1200px) {
  .fee__ttl {
    width: 15%;
  }
}
@media screen and (max-width: 768px) {
  .fee__ttl {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 480px) {
  .fee__ttl {
    font-size: 1.2rem;
    width: 20%;
  }
}
.fee__ttl::after {
  position: absolute;
  content: "";
  top: 50%;
  left: -445%;
  width: 990%;
  height: 3px;
  border: 3px solid #092648;
  z-index: -100;
  max-width: 1280px;
}
@media screen and (max-width: 1200px) {
  .fee__ttl::after {
    width: 650%;
    left: -275%;
  }
}
@media screen and (max-width: 480px) {
  .fee__ttl::after {
    width: 500%;
    left: -200%;
  }
}
.fee__box__group {
  display: flex;
  margin: 0 auto;
  gap: 1vw;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .fee__box__group {
    flex-wrap: wrap;
  }
}
.fee__box__group p {
  padding: 1rem;
  background-color: #092648;
  color: #fff;
  font-size: 1.3rem;
  border-radius: 5px;
  text-align: center;
  width: 23%;
  white-space: nowrap;
}
@media screen and (max-width: 1200px) {
  .fee__box__group p {
    padding: 1rem;
    font-size: 1.1rem;
    width: 25%;
  }
}
@media screen and (max-width: 890px) {
  .fee__box__group p {
    width: 40%;
  }
}
@media screen and (max-width: 480px) {
  .fee__box__group p {
    width: 45%;
    padding: 0.7rem 0.2rem;
    font-size: 0.9rem;
  }
}
.fee__box__group p:nth-child(3) {
  padding: 2rem;
}
@media screen and (max-width: 768px) {
  .fee__box__group p:nth-child(3) {
    padding: 1.6rem 0.2rem;
  }
}
@media screen and (max-width: 480px) {
  .fee__box__group p:last-child {
    padding: 0, 8rem 0.1rem;
  }
}
.fee__box__merit {
  background-image: linear-gradient(90deg, #ffc754, #fff89b, #ffc754);
  font-size: 1.2rem;
  font-weight: 600;
  width: 60%;
  margin: 1rem auto;
  box-sizing: border-box;
  padding: 1rem 2rem 1rem 4rem;
  line-height: 1.9rem;
}
@media screen and (max-width: 768px) {
  .fee__box__merit {
    width: 95%;
  }
}
.fee__box__merit p {
  position: relative;
}
.fee__box__merit p:before {
  position: absolute;
  content: "";
  background-image: url("../image/fee_check.png");
  height: 20px;
  width: 20px;
  background-size: contain;
  left: -25px;
  top: 6px;
}
.fee__list {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0;
}
.fee__box__txt {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 3vw;
  margin-top: 1vw;
}
.fee__box__txt a {
  text-decoration: underline;
  font-weight: 800;
}
.fee__box__txt p {
  margin: 0;
  display: block;
}
.fee__box__txt p:first-child {
  background-image: linear-gradient(90deg, #ffc754, #fff89b, #ffc754);
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: 100% 30%;
  display: inline;
}
.fee__box__txt p:last-child {
  background-image: linear-gradient(90deg, #ffc754, #fff89b, #ffc754);
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: 100% 30%;
  display: inline;
}
.fee .fee__box__contents {
  overflow-x: auto;
}
.fee__box__table {
  width: 100%;
  margin: 0 auto;
  text-align: center;
  border-collapse: collapse;
  white-space: nowrap;
  min-width: 790px;
}
@media screen and (max-width: 768px) {
  .fee__box__table {
    min-width: 500px;
  }
}
.fee__box__table th {
  font-size: 1.5rem;
  font-weight: 700;
  background-color: rgba(255, 194, 88, 0.8);
  border: 3px solid rgba(128, 120, 106, 0.6);
}
@media screen and (max-width: 1200px) {
  .fee__box__table th {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 768px) {
  .fee__box__table th {
    font-size: 0.8rem;
    width: 10%;
  }
}
.fee__box__table td {
  font-size: 1.5rem;
  font-weight: 500;
  border: 3px solid rgba(128, 120, 106, 0.6);
}
@media screen and (max-width: 1200px) {
  .fee__box__table td {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 768px) {
  .fee__box__table td {
    font-size: 1rem;
  }
}
.fee__box__table tr:first-child td {
  font-size: 2.2rem;
  font-weight: 700;
  background-color: rgba(113, 135, 170, 0.6);
}
@media screen and (max-width: 1200px) {
  .fee__box__table tr:first-child td {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 768px) {
  .fee__box__table tr:first-child td {
    font-size: 1rem;
  }
}
.fee__box__table tr:first-child a {
  text-decoration: underline;
  font-weight: 700;
}
.fee__box__table tr:nth-child(2) td {
  font-size: 2rem;
  padding: 1.5vw;
}
@media screen and (max-width: 1200px) {
  .fee__box__table tr:nth-child(2) td {
    font-size: 1.2rem;
  }
}
.fee__box__table tr:nth-child(3) td {
  font-size: 2rem;
  padding: 1.5vw;
}
@media screen and (max-width: 1200px) {
  .fee__box__table tr:nth-child(3) td {
    font-size: 1.2rem;
  }
}
.fee__box__table tr:nth-child(3) td:nth-child(2) {
  font-size: 3.5rem;
  font-weight: 400;
}
@media screen and (max-width: 1200px) {
  .fee__box__table tr:nth-child(3) td:nth-child(2) {
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 768px) {
  .fee__box__table tr:nth-child(3) td:nth-child(2) {
    font-size: 1.5rem;
    padding: 0;
    width: 30%;
  }
}
.fee__box__table tr:nth-child(3) td:last-child {
  line-height: 2.5rem;
}
@media screen and (max-width: 1200px) {
  .fee__box__table tr:nth-child(3) td:last-child {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 768px) {
  .fee__box__table tr:nth-child(3) td:last-child {
    font-size: 1.5rem;
    line-height: 1.4rem;
  }
}
.fee__box__table tr:nth-child(3) span {
  display: block;
}
.fee__box__table tr:last-child td:nth-child(2) {
  font-size: 2.5rem;
  line-height: 1.7rem;
  padding: 0.5rem;
}
@media screen and (max-width: 1200px) {
  .fee__box__table tr:last-child td:nth-child(2) {
    font-size: 2rem;
  }
}
@media screen and (max-width: 768px) {
  .fee__box__table tr:last-child td:nth-child(2) {
    font-size: 1.7rem;
    padding: 0.4rem 0.2rem 0.2rem 0.2rem;
    width: 20%;
  }
}
.fee__box__table tr:last-child td:nth-child(2) span {
  font-size: 1rem;
}
.fee__box__table tr:last-child td:nth-child(2) .fee__table__attention {
  font-size: 1.1rem;
  line-height: 1.1rem;
}
@media screen and (max-width: 1200px) {
  .fee__box__table tr:last-child td:nth-child(2) .fee__table__attention {
    font-size: 1rem;
  }
}
.fee__box__table tr:last-child td:nth-child(2) .fee__table__attention span {
  display: block;
  font-size: 1.1rem;
}
@media screen and (max-width: 1200px) {
  .fee__box__table tr:last-child td:nth-child(2) .fee__table__attention span {
    font-size: 1rem;
  }
}
.fee__box__table tr:last-child td:nth-child(3) {
  font-size: 4rem;
  line-height: 2.2vw;
  background: url("../image/fee_bg.jpg") no-repeat center;
  background-size: cover;
  padding: 3.5vw;
  position: relative;
}
@media screen and (max-width: 1200px) {
  .fee__box__table tr:last-child td:nth-child(3) {
    font-size: 3rem;
    padding: 1.5rem;
  }
}
@media screen and (max-width: 768px) {
  .fee__box__table tr:last-child td:nth-child(3) {
    padding: 1rem 0.4rem 0 0.4rem;
    font-size: 2rem;
    width: 30%;
  }
}
.fee__box__table tr:last-child td:nth-child(3)::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border: rgba(255, 194, 88, 0.6) 1vw solid;
}
.fee__box__table tr:last-child td:nth-child(3) a {
  z-index: 40;
  position: -webkit-sticky;
  position: sticky;
}
.fee__box__table tr:last-child td:nth-child(3) span {
  font-size: 2rem;
}
@media screen and (max-width: 1200px) {
  .fee__box__table tr:last-child td:nth-child(3) span {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 768px) {
  .fee__box__table tr:last-child td:nth-child(3) span {
    font-size: 1rem;
  }
}
.fee__box__table tr:last-child td:nth-child(3) .fee__table__attention-vip {
  font-size: 1.5rem;
  margin: 0;
  font-weight: 600;
  margin-top: 0.7rem;
  line-height: 1.6rem;
}
@media screen and (max-width: 1200px) {
  .fee__box__table tr:last-child td:nth-child(3) .fee__table__attention-vip {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 768px) {
  .fee__box__table tr:last-child td:nth-child(3) .fee__table__attention-vip {
    font-size: 1rem;
    line-height: 1rem;
    margin-top: 0.5rem;
    margin-bottom: 0;
  }
}
.fee__box__table tr:last-child td:nth-child(3) .fee__table__attention-vip span {
  display: block;
  font-size: 1.5rem;
  line-height: 1.6rem;
  font-weight: 600;
}
@media screen and (max-width: 1200px) {
  .fee__box__table tr:last-child td:nth-child(3) .fee__table__attention-vip span {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 768px) {
  .fee__box__table tr:last-child td:nth-child(3) .fee__table__attention-vip span {
    font-size: 1rem;
    line-height: 1rem;
  }
}
.fee__box__table tr:last-child td:last-child {
  font-size: 4rem;
}
@media screen and (max-width: 1200px) {
  .fee__box__table tr:last-child td:last-child {
    font-size: 3rem;
  }
}
@media screen and (max-width: 768px) {
  .fee__box__table tr:last-child td:last-child {
    font-size: 2rem;
    padding: 0;
    width: 30%;
  }
}
.fee__box__table tr:last-child td:last-child span {
  font-size: 2.8rem;
}
@media screen and (max-width: 1200px) {
  .fee__box__table tr:last-child td:last-child span {
    font-size: 2.3rem;
  }
}
@media screen and (max-width: 768px) {
  .fee__box__table tr:last-child td:last-child span {
    font-size: 1rem;
  }
}
.fee p {
  margin: 0;
}
.fee p a {
  text-decoration: underline;
}

.flow {
  background: url("../image/flow_bg-50.jpg") center no-repeat;
  background-size: cover;
  padding-top: 3vw;
}
.flow .sec__ttl {
  text-align: center;
  position: relative;
  width: 50%;
  margin: 0 auto;
  padding: 3vw;
}
.flow .sec__ttl::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 5%;
  background: url("../image/flow_ttl_line-50.jpg") no-repeat bottom;
  background-size: cover;
  bottom: 20%;
  left: 0;
}
@media screen and (max-width: 768px) {
  .flow .sec__ttl {
    width: 98%;
  }
}
.flow__box {
  display: flex;
  width: 95%;
  margin: 0 auto;
  justify-content: center;
  padding-bottom: 5vw;
  gap: 1.5rem;
}
@media screen and (max-width: 1200px) {
  .flow__box {
    gap: 0;
    justify-content: space-between;
    width: 700px;
  }
  .flow__box p {
    margin: 0;
  }
}
@media screen and (max-width: 768px) {
  .flow__box {
    display: block;
    width: 100%;
    margin: 0 auto;
  }
}
.flow__box .flow__box__contents-first {
  background: url("../image/flow_01_bg.png") no-repeat center;
  background-size: cover;
  padding: 6rem 4rem 4rem 2rem;
}
@media screen and (max-width: 1200px) {
  .flow__box .flow__box__contents-first {
    padding: 0;
    width: 32%;
    padding: 3.2rem 0 2.5rem 0.7rem;
    font-size: 1rem;
  }
  .flow__box .flow__box__contents-first p {
    font-size: 0.8rem;
  }
  .flow__box .flow__box__contents-first h3 {
    margin-bottom: 0.3rem;
  }
}
@media screen and (max-width: 768px) {
  .flow__box .flow__box__contents-first {
    background: url("../image/sp_flow_bg01.png") no-repeat center;
    background-size: contain;
    width: 340px;
    height: 300px;
    padding: 0;
    margin: auto;
  }
  .flow__box .flow__box__contents-first p, .flow__box .flow__box__contents-first h3 {
    text-align: center;
    font-size: 1rem;
  }
  .flow__box .flow__box__contents-first h3 {
    padding-top: 100px;
    font-size: 1.2rem;
    font-weight: 900;
  }
}
.flow__box .flow__box__contents-sec {
  background: url("../image/flow_02_bg.png") no-repeat center;
  background-size: cover;
  padding: 6rem 4rem 3rem 3.9rem;
  color: #fff;
}
.flow__box .flow__box__contents-sec p {
  color: #fff;
  margin-left: -1rem;
}
.flow__box .flow__box__contents-sec h3 {
  margin-left: -1rem;
}
@media screen and (max-width: 1200px) {
  .flow__box .flow__box__contents-sec {
    padding: 0;
    width: 32%;
    padding: 3.2rem 0 2.5rem 2rem;
    font-size: 1rem;
  }
  .flow__box .flow__box__contents-sec p {
    font-size: 0.8rem;
  }
  .flow__box .flow__box__contents-sec h3 {
    margin-bottom: 0.3rem;
  }
}
@media screen and (max-width: 768px) {
  .flow__box .flow__box__contents-sec {
    background: url("../image/sp_flow_bg02.png") no-repeat center;
    background-size: contain;
    width: 340px;
    height: 300px;
    padding: 0;
    margin: auto;
  }
  .flow__box .flow__box__contents-sec p, .flow__box .flow__box__contents-sec h3 {
    text-align: center;
    font-size: 1rem;
    margin-left: 0;
  }
  .flow__box .flow__box__contents-sec h3 {
    padding-top: 100px;
    font-size: 1.2rem;
    font-weight: 900;
    margin-left: 0;
  }
}
.flow__box .flow__box__contents-third {
  background: url("../image/flow_03_bg.png") no-repeat center;
  background-size: cover;
  padding: 6rem 4rem 3rem 3.9rem;
  color: #fff;
}
.flow__box .flow__box__contents-third p {
  color: #fff;
  margin-left: -1rem;
}
.flow__box .flow__box__contents-third h3 {
  margin-left: -1rem;
}
@media screen and (max-width: 1200px) {
  .flow__box .flow__box__contents-third {
    padding: 0;
    width: 32%;
    padding: 3.2rem 0 2.5rem 2rem;
    font-size: 1rem;
  }
  .flow__box .flow__box__contents-third p {
    font-size: 0.8rem;
  }
  .flow__box .flow__box__contents-third h3 {
    margin-bottom: 0.3rem;
  }
}
@media screen and (max-width: 768px) {
  .flow__box .flow__box__contents-third {
    background: url("../image/sp_flow_bg03.png") no-repeat center;
    background-size: contain;
    width: 340px;
    height: 300px;
    padding: 0;
    margin: auto;
  }
  .flow__box .flow__box__contents-third p, .flow__box .flow__box__contents-third h3 {
    text-align: center;
    font-size: 1rem;
    margin-left: 0;
  }
  .flow__box .flow__box__contents-third h3 {
    padding-top: 100px;
    font-size: 1.2rem;
    font-weight: 900;
    margin-left: 0;
  }
}

.footer {
  background: url("../image/cta_bg-50.jpg") no-repeat center;
  background-size: cover;
}
.footer p {
  font-size: 2.5rem;
  text-align: center;
  line-height: 3.5rem;
  color: #fff;
  padding: 5vw 0 3vw;
  margin: 0 auto;
}
.footer p .sp_br {
  display: none;
}
@media screen and (max-width: 768px) {
  .footer p {
    font-size: 2rem;
  }
}
@media screen and (max-width: 890px) {
  .footer p {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 768px) {
  .footer p {
    font-size: 1.1rem;
    line-height: 2rem;
  }
  .footer p .sp_br {
    display: block;
  }
}
.footer p:nth-child(2) {
  width: 80%;
  margin: 0 auto 5rem;
}
.footer a {
  display: block;
}
.footer small {
  display: block;
  text-align: center;
  color: #fff;
  font-size: 1vw;
  padding-bottom: 0.5vw;
}
/*# sourceMappingURL=style.css.map */