@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
/* -----------------------------------------------------
variables
----------------------------------------------------- */
* {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  word-break: break-word;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  vertical-align: top;
  background: transparent;
}

html, body {
  /* font-size: 62.5%; */
  text-align: center;
  color: #0d386d;
  overflow-x: hidden;
}

body h1, body h2, body h3, body p, body ul, body li, body a, body .advice_txt {
  font-family: "Zen Maru Gothic", serif;
  font-weight: 500;
  font-style: normal;
}

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

li {
  list-style-type: none;
}

blockquote, q {
  quotes: none;
}

blockquote::before, blockquote::after, q::before, q::after {
  content: '';
  content: none;
}

a {
  text-decoration: none;
  color: inherit;
}

img, picture {
  vertical-align: middle;
  max-width: 100%;
}

img {
  height: auto;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

input, select {
  vertical-align: middle;
}

br {
  line-height: 0;
}

input, textarea, select, button {
  font: inherit;
}

/* safariでのデフォルトスタイルをリセット */
input[type="submit"],
input[type="button"] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  -moz-appearance: button;
  appearance: button;
  border: none;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
  display: none;
}

input[type="submit"]::focus,
input[type="button"]::focus {
  outline-offset: -2px;
}

/* パソコンで見たときは"pc"のclassがついた画像が表示される */
.pc {
  display: block !important;
}

.sp {
  display: none !important;
}

/* スマートフォンで見たときは"sp"のclassがついた画像が表示される */
@media only screen and (max-width: 768px) {
  .pc {
    display: none !important;
  }
  .sp {
    display: block !important;
  }
}

img {
  max-width: 100%;
  vertical-align: middle;
}

a {
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  cursor: pointer;
}

a:hover {
  opacity: 0.8;
}

picture {
  display: block;
}

.center {
  text-align: center;
}

.left {
  text-align: left;
}

.indent {
  padding-left: 1em;
  text-indent: -1em;
}

body {
  font-family: "Zen Maru Gothic", serif;
  font-weight: 500;
  font-style: normal;
  font-size: 16px;
}

.small {
  font-size: 18px;
}

@media screen and (max-width: 768px) {
  .small {
    font-size: 2.86458vw;
    margin-bottom: 1.30208vw;
  }
}

header {
  width: 100%;
  height: 100px;
  background: rgba(255, 255, 255, 0.9);
  position: fixed;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  z-index: 999;
}

@media (min-width: 769px) and (max-width: 1400px) {
  header {
    height: 7.14vw;
  }
}

@media screen and (max-width: 768px) {
  header {
    height: 14.58333vw;
  }
}

header .inner {
  width: 100%;
  max-width: 1400px;
  padding: 0;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media (min-width: 769px) and (max-width: 1400px) {
  header .inner {
    padding: 0 2.86vw;
  }
}

@media screen and (max-width: 768px) {
  header .inner {
    max-width: 100%;
    margin: 100%;
    margin: 0 auto;
    padding: 0;
    display: block;
    position: relative;
  }
}

header .fujicco_logo {
  font-size: 100%;
}

@media screen and (max-width: 768px) {
  header .fujicco_logo {
    position: absolute;
    top: 50%;
    left: 8.33333vw;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
  }
}

header .fujicco_logo a img {
  width: 100px;
}

@media (min-width: 769px) and (max-width: 1400px) {
  header .fujicco_logo a img {
    width: 7.14vw;
  }
}

@media screen and (max-width: 768px) {
  header .fujicco_logo a img {
    width: 18.22917vw;
  }
}

header .site_logo {
  font-size: 100%;
  margin-left: 5%;
  width: 114px;
}

@media (min-width: 769px) and (max-width: 1400px) {
  header .site_logo {
    width: 8.14vw;
  }
}

@media screen and (max-width: 768px) {
  header .site_logo {
    width: 16.92708vw;
    margin-left: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
}

header .site_logo a {
  display: block;
}

@media screen and (max-width: 768px) {
  header .menu {
    position: absolute;
    top: 50%;
    right: 5.20833vw;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
  }
}

header nav {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}

@media screen and (max-width: 768px) {
  header nav {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    opacity: 0;
    width: 100%;
    height: 100vh;
    background: #fff;
    /* margin-top: 14.58333vw; */
    /* padding: 5.20833vw 0 26.04167vw; */
  }
}

header nav .nav_menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-left: 1.71%;
}

@media screen and (max-width: 768px) {
  header nav .nav_menu {
    width: 85%;
    margin: 0 auto;
    display: block;
  }
}

header nav .nav_menu li a {
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 1;
  color: #002f87;
  text-align: center;
  display: block;
  padding-bottom: 8px;
  position: relative;
}

@media (min-width: 769px) and (max-width: 1400px) {
  header nav .nav_menu li a {
    font-size: 1.21vw;
  }
}

@media screen and (max-width: 768px) {
  header nav .nav_menu li a {
    font-size: 4.16667vw;
    line-height: 1.5;
    text-align: left;
    border-bottom: solid 0.26042vw #002f87;
    padding: 5.20833vw 0;
    position: relative;
  }
}

header nav .nav_menu li a::before {
  content: '';
  background: rgba(19, 137, 211, 0.22);
  width: 100%;
  height: 1.2rem;
  position: absolute;
  z-index: 0;
  left: 0;
  bottom: 49%;
  -webkit-transform: scale(1, 0);
  -ms-transform: scale(1, 0);
  transform: scale(1, 0);
  -webkit-transform-origin: center bottom;
  -ms-transform-origin: center bottom;
  transform-origin: center bottom;
  -webkit-transition: -webkit-transform .3s ease;
  transition: -webkit-transform .3s ease;
  -o-transition: transform .3s ease;
  transition: transform .3s ease;
  transition: transform .3s ease, -webkit-transform .3s ease;
}

@media screen and (max-width: 768px) {
  header nav .nav_menu li a::before {
    content: none;
  }
}

header nav .nav_menu li a .en {
  font-size: 1.6rem;
  line-height: 1;
  color: #1389d3;
  display: block;
  margin-top: 10px;
}

@media (min-width: 769px) and (max-width: 1400px) {
  header nav .nav_menu li a .en {
    font-size: 1.14vw;
  }
}

@media screen and (max-width: 768px) {
  header nav .nav_menu li a .en {
    font-size: 3.64583vw;
    margin-top: 1.04167vw;
  }
}

header nav .nav_menu li a:hover::before {
  -webkit-transform: scale(1, 1);
  -ms-transform: scale(1, 1);
  transform: scale(1, 1);
}

@media screen and (max-width: 768px) {
  header.open {
    border-bottom: solid 0.26042vw #e3e3e3;
  }
}

.menu {
  display: none;
}

@media screen and (max-width: 768px) {
  .menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 14.58333vw;
    height: 14.58333vw;
  }
  .menu .menu-trigger, .menu .menu-trigger span {
    display: inline-block;
    -webkit-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
  .menu .menu-trigger {
    position: relative;
    width: 7.29167vw;
    height: 26px;
    z-index: 4;
  }
  .menu .menu-trigger span {
    position: absolute;
    right: 0;
    width: 100%;
    height: 0.52083vw;
    background-color: #002f87;
  }
  .menu .menu-trigger span:nth-of-type(1) {
    top: 0;
  }
  .menu .menu-trigger span:nth-of-type(2) {
    top: 11px;
  }
  .menu .menu-trigger span:nth-of-type(3) {
    bottom: 0;
  }
  .menu .menu-trigger span:nth-of-type(1) {
    -webkit-animation: menu-bar01 .75s forwards;
    animation: menu-bar01 .75s forwards;
  }
  @-webkit-keyframes menu-bar01 {
    0% {
      -webkit-transform: translateY(8px) rotate(45deg);
      transform: translateY(8px) rotate(45deg);
    }
    50% {
      -webkit-transform: translateY(8px) rotate(0);
      transform: translateY(8px) rotate(0);
    }
    100% {
      -webkit-transform: translateY(0) rotate(0);
      transform: translateY(0) rotate(0);
    }
  }
  @keyframes menu-bar01 {
    0% {
      -webkit-transform: translateY(8px) rotate(45deg);
      transform: translateY(8px) rotate(45deg);
    }
    50% {
      -webkit-transform: translateY(8px) rotate(0);
      transform: translateY(8px) rotate(0);
    }
    100% {
      -webkit-transform: translateY(0) rotate(0);
      transform: translateY(0) rotate(0);
    }
  }
  .menu .menu-trigger span:nth-of-type(2) {
    -webkit-transition: all .25s .25s;
    -o-transition: all .25s .25s;
    transition: all .25s .25s;
    opacity: 1;
  }
  .menu .menu-trigger span:nth-of-type(3) {
    -webkit-animation: menu-bar02 .75s forwards;
    animation: menu-bar02 .75s forwards;
  }
  @-webkit-keyframes menu-bar02 {
    0% {
      -webkit-transform: translateY(-8px) rotate(-45deg);
      transform: translateY(-8px) rotate(-45deg);
    }
    50% {
      -webkit-transform: translateY(-8px) rotate(0);
      transform: translateY(-8px) rotate(0);
    }
    100% {
      -webkit-transform: translateY(0) rotate(0);
      transform: translateY(0) rotate(0);
    }
  }
  @keyframes menu-bar02 {
    0% {
      -webkit-transform: translateY(-8px) rotate(-45deg);
      transform: translateY(-8px) rotate(-45deg);
    }
    50% {
      -webkit-transform: translateY(-8px) rotate(0);
      transform: translateY(-8px) rotate(0);
    }
    100% {
      -webkit-transform: translateY(0) rotate(0);
      transform: translateY(0) rotate(0);
    }
  }
  .menu .active span:nth-of-type(1) {
    -webkit-animation: active-menu-bar01 .75s forwards;
    animation: active-menu-bar01 .75s forwards;
    background-color: #002f87;
  }
  @-webkit-keyframes active-menu-bar01 {
    0% {
      -webkit-transform: translateY(0) rotate(0);
      transform: translateY(0) rotate(0);
    }
    50% {
      -webkit-transform: translateY(12px) rotate(0);
      transform: translateY(12px) rotate(0);
    }
    100% {
      -webkit-transform: translateY(12px) rotate(45deg);
      transform: translateY(12px) rotate(45deg);
    }
  }
  @keyframes active-menu-bar01 {
    0% {
      -webkit-transform: translateY(0) rotate(0);
      transform: translateY(0) rotate(0);
    }
    50% {
      -webkit-transform: translateY(12px) rotate(0);
      transform: translateY(12px) rotate(0);
    }
    100% {
      -webkit-transform: translateY(12px) rotate(45deg);
      transform: translateY(12px) rotate(45deg);
    }
  }
  .menu .active span:nth-of-type(2) {
    opacity: 0;
  }
  .menu .active span:nth-of-type(3) {
    -webkit-animation: active-menu-bar03 .75s forwards;
    animation: active-menu-bar03 .75s forwards;
    background-color: #002f87;
  }
  @-webkit-keyframes active-menu-bar03 {
    0% {
      -webkit-transform: translateY(0) rotate(0);
      transform: translateY(0) rotate(0);
    }
    50% {
      -webkit-transform: translateY(-12px) rotate(0);
      transform: translateY(-12px) rotate(0);
    }
    100% {
      -webkit-transform: translateY(-12px) rotate(-45deg);
      transform: translateY(-12px) rotate(-45deg);
    }
  }
  @keyframes active-menu-bar03 {
    0% {
      -webkit-transform: translateY(0) rotate(0);
      transform: translateY(0) rotate(0);
    }
    50% {
      -webkit-transform: translateY(-12px) rotate(0);
      transform: translateY(-12px) rotate(0);
    }
    100% {
      -webkit-transform: translateY(-12px) rotate(-45deg);
      transform: translateY(-12px) rotate(-45deg);
    }
  }
}

@media screen and (max-width: 768px) {
  header.open nav {
    overflow: scroll;
    visibility: visible;
    display: block;
    opacity: 0;
    pointer-events: inherit;
    -webkit-animation: fade .5s ease-in-out .2s forwards;
    animation: fade .5s ease-in-out .2s forwards;
  }
}

@media screen and (max-width: 768px) {
  header nav {
    visibility: visible;
    display: block;
    opacity: 0;
    pointer-events: none;
    /* -webkit-animation: fadeout .2s ease-in-out 0s forwards; */
    /* animation: fadeout .2s ease-in-out 0s forwards; */
  }
}

@-webkit-keyframes fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes fadeout {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes fadeout {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

footer {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-weight: 400;
  -webkit-font-feature-settings: "palt" 1;
  font-feature-settings: "palt" 1;
  position: relative;
  text-align: justify;
  line-height: 1.1;
  letter-spacing: .08em;
  /* letter-spacing: .14em; */
}

body footer a {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
}

footer .inner {
  max-width: 1140px;
}

footer .sitemap {
  background: #002f87;
  color: #fff;
  /* padding: 70px 0; */
}

@media screen and (max-width: 768px) {
  footer .sitemap {
    padding: 7.29167vw 0;
  }
}

footer .sitemap .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 auto;
  padding: 0 40px;
}

@media screen and (max-width: 768px) {
  footer .sitemap .inner {
    display: block;
    /* padding: 0 5.20833vw; */
  }
}

@media screen and (max-width: 768px) {
  footer .sitemap .inner .site_logo {
    text-align: center;
  }
  footer .sitemap .inner .site_logo img {
    width: 20.83333vw;
  }
}

footer .sitemap .inner nav {
  width: 100%;
  padding-left: 90px;
}

@media screen and (max-width: 768px) {
  footer .sitemap .inner nav {
    width: 80%;
    margin: 10.41667vw auto 0;
    padding-left: 0;
  }
}

footer .sitemap .inner nav .col3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media screen and (max-width: 768px) {
  footer .sitemap .inner nav .col3 {
    display: block;
  }
}

footer .sitemap .inner nav .col3 .col {
  width: calc(100% / 3);
}

@media screen and (max-width: 768px) {
  footer .sitemap .inner nav .col3 .col {
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  footer .sitemap .inner nav .col3 .col .box {
    position: relative;
  }
  footer .sitemap .inner nav .col3 .col .box .toggle {
    position: absolute;
    top: 0;
    right: 0;
    width: 15.625vw;
    height: 15.625vw;
  }
  footer .sitemap .inner nav .col3 .col .box .toggle::before, footer .sitemap .inner nav .col3 .col .box .toggle::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    display: block;
    width: 3.125vw;
    height: 0.39063vw;
    background-color: #fff;
  }
  footer .sitemap .inner nav .col3 .col .box .toggle::after {
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    margin-top: -0.13021vw;
  }
  footer .sitemap .inner nav .col3 .col .box.open .toggle::after {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
  }
}

footer .sitemap .inner nav .col3 .col .box + .box {
  margin-top: 24px;
}

@media screen and (max-width: 768px) {
  footer .sitemap .inner nav .col3 .col .box + .box {
    margin-top: 0;
  }
}

footer .sitemap .inner nav .col3 .col .box + .ttl {
  margin-top: 56px;
}

@media screen and (max-width: 768px) {
  footer .sitemap .inner nav .col3 .col .box + .ttl {
    margin-top: 0;
  }
}

footer .sitemap .inner nav .col3 .col .ttl {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 8px;
}

footer .sitemap .inner nav .col3 .col .ttl a {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-weight: 700;
}

@media screen and (max-width: 768px) {
  footer .sitemap .inner nav .col3 .col .ttl {
    font-size: 3.64583vw;
    line-height: 1.5;
    margin-bottom: 0;
    border-bottom: solid 0.26042vw rgba(255, 255, 255, 0.3);
  }
  footer .sitemap .inner nav .col3 .col .ttl a {
    width: 100%;
    display: block;
    padding: 5.20833vw 0;
  }
}

@media screen and (max-width: 768px) {
  footer .sitemap .inner nav .col3 .col .ttl.ac_ttl {
    padding-right: 15.625vw;
  }
}

footer .sitemap .inner nav .col3 .col .ttl.ac_ttl a {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-weight: 700;
}

footer .sitemap .inner nav .col3 .col .item {
  font-size: 1.2rem;
  line-height: 1.5;
}

@media screen and (max-width: 768px) {
  footer .sitemap .inner nav .col3 .col .item {
    font-size: 3.64583vw;
    background: rgba(255, 255, 255, 0.15);
    display: none;
  }
}

footer .sitemap .inner nav .col3 .col .item li {
  padding-left: 1em;
}

@media screen and (max-width: 768px) {
  footer .sitemap .inner nav .col3 .col .item li {
    padding-left: 0;
    border-bottom: solid 0.26042vw rgba(255, 255, 255, 0.3);
  }
}

footer .sitemap .inner nav .col3 .col .item li + li {
  margin-top: 4px;
}

@media screen and (max-width: 768px) {
  footer .sitemap .inner nav .col3 .col .item li + li {
    margin-top: 0;
  }
}

footer .sitemap .inner nav .col3 .col .item li a {
  position: relative;
  margin-left: -0.5em;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-weight: 400;
}

@media screen and (max-width: 768px) {
  footer .sitemap .inner nav .col3 .col .item li a {
    margin-left: 0;
  }
}

footer .sitemap .inner nav .col3 .col .item li a::before {
  content: '・';
}

@media screen and (max-width: 768px) {
  footer .sitemap .inner nav .col3 .col .item li a {
    display: block;
    padding: 5.20833vw 3.125vw 5.20833vw 5.20833vw;
  }
}

footer .sitemap .inner nav .col3 .col .col2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

@media screen and (max-width: 768px) {
  footer .sitemap .inner nav .col3 .col .col2 {
    display: none;
  }
}

footer .sitemap .inner nav .col3 .col .col2 .item {
  width: 50%;
}

@media screen and (max-width: 768px) {
  footer .sitemap .inner nav .col3 .col .col2 .item {
    width: 100%;
    display: block;
  }
}

footer .sitemap .inner nav .col3 .col .btn_contact {
  text-align: right;
  margin-top: 24px;
}

@media screen and (max-width: 768px) {
  footer .sitemap .inner nav .col3 .col .btn_contact {
    text-align: center;
    margin-top: 7.29167vw;
  }
}

footer .sitemap .inner nav .col3 .col .btn_contact a img {
  width: 140px;
}

@media screen and (max-width: 768px) {
  footer .sitemap .inner nav .col3 .col .btn_contact a img {
    width: 34.63542vw;
  }
}

footer .copyright {
  background: #e0e0e0;
  padding: 16px 56px;
  font-size: 1.1rem;
  line-height: 1;
  color: #000;
  letter-spacing: .02em;
}

@media screen and (max-width: 768px) {
  footer .copyright {
    font-size: 2.60417vw;
    padding: 5.20833vw;
  }
}

footer .copyright .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0 auto;
  padding: 0 40px;
}

@media screen and (max-width: 768px) {
  footer .copyright .inner {
    display: block;
    padding: 0 5.20833vw;
  }
}

footer .copyright ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

footer .copyright ul img {
  width: 70px;
}

@media screen and (max-width: 768px) {
  footer .copyright ul img {
    width: 23.4375vw;
  }
}

footer .copyright ul li a {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
}

footer .copyright ul li + li {
  margin-left: 16px;
}

@media screen and (max-width: 768px) {
  footer .copyright ul li + li {
    margin-left: 5.20833vw;
  }
}

footer .copyright p {
  margin-left: 40px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
}

@media screen and (max-width: 768px) {
  footer .copyright p {
    display: block;
    margin: 1.04167vw 0 0 0;
    text-align: center;
  }
}

#pagetop-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  padding: 10px 20px;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  display: none;
  /* ここから削除 */
  z-index: 100;
}

@media screen and (max-width: 768px) {
  #pagetop-btn {
    padding: 1.30208vw 2.60417vw;
    bottom: 2.60417vw;
    right: 2.60417vw;
    width: 20.83333vw;
    height: 20.83333vw;
  }
}

.kv_main {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(30%, #fdb9d4), color-stop(60%, #fa719f));
  background: -webkit-linear-gradient(top, #fdb9d4 30%, #fa719f 60%);
  background: -o-linear-gradient(top, #fdb9d4 30%, #fa719f 60%);
  background: linear-gradient(to bottom, #fdb9d4 30%, #fa719f 60%);
  position: relative;
  z-index: 1;
  /* margin-top: 100px; */
  margin-bottom: 40px;
}

/* @media screen and (max-width: 768px) {
  .kv_main {
    margin-top: 14.58333vw;
  }
} */

.kv_main:after {
  display: inline-block;
  content: "";
  position: absolute;
  bottom: -20vw;
  left: 0;
  background: url(../img/kv_wave.png) no-repeat;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-size: 100%;
}

@media screen and (max-width: 768px) {
  .kv_main:after {
    background: url(../img/sp/kv_wave.png) no-repeat;
    bottom: -91vw;
    background-size: 100%;
  }
}

.kv_main img {
  width: 100%;
}

h2 {
  margin-bottom: 60px;
}

@media screen and (max-width: 768px) {
  h2 {
    margin-bottom: 7.8125vw;
  }
}

.kv_item {
  position: relative;
  z-index: 1;
  margin-bottom: 60px;
}

@media screen and (max-width: 768px) {
  .kv_item {
    padding: 0 13.02083vw 0 5.20833vw;
  }
}

.nav {
  position: relative;
  z-index: 3;
  max-width: 1000px;
  margin: 0 auto 100px;
  background: #fefefe;
  -webkit-box-shadow: 0 5px 25px rgba(142, 143, 144, 0.3);
  box-shadow: 0 5px 25px rgba(142, 143, 144, 0.3);
  border-radius: 35px;
}

@media screen and (max-width: 768px) {
  .nav {
    margin: 0 5.20833vw 13.02083vw;
    padding: 3.90625vw;
    border-radius: 10.41667vw;
  }
}

.nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  min-height: 70px;
}

@media screen and (max-width: 768px) {
  .nav ul {
    -ms-flex-flow: wrap;
    flex-flow: wrap;
    min-height: auto;
    gap: 2.60417vw 0;
  }
}

.nav ul li {
  position: relative;
  margin-right: 55px;
  padding-right: 55px;
}

@media screen and (max-width: 768px) {
  .nav ul li {
    margin-right: 4.55729vw;
    padding-right: 4.55729vw;
  }
}

.nav ul li:last-child {
  margin-right: 0;
  padding-right: 0;
}

.nav ul li:last-child:after {
  border-right: none;
}

.nav ul li:after {
  display: block;
  content: "";
  border-right: 2px solid #0d386d;
  height: 15px;
  position: absolute;
  right: 0;
  top: 7px;
}

@media screen and (max-width: 768px) {
  .nav ul li:after {
    border-right: 0.52083vw solid #0d386d;
    height: 3.90625vw;
    top: 1.30208vw;
  }
}

.nav ul li a {
  font-size: 18px;
  font-weight: 700;
  color: #0d386d;
}

@media screen and (max-width: 768px) {
  .nav ul li a {
    font-size: 4.16667vw;
  }
}

.common_btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 364px;
  height: 60px;
  font-size: 20px;
  background: #64a9da;
  color: #fff;
  border-radius: 30px;
  position: relative;
  top: 0;
  -webkit-box-shadow: 0 9px #328ac9;
  box-shadow: 0 9px #328ac9;
  line-height: 1;
  margin-top: 60px;
}

@media screen and (max-width: 768px) {
  .common_btn {
    margin-top: 0 !important;
    width: 80vw;
    height: 13.02083vw;
    line-height: 1.4;
    margin: 0 auto;
    font-size: 3.64583vw;
    padding-right: 6.51042vw;
    -webkit-box-shadow: 0 1.5625vw #328ac9;
    box-shadow: 0 1.5625vw #328ac9;
  }
}

@media screen and (max-width: 768px) {
  .common_btn.first {
    margin-bottom: 6.51042vw;
  }
}

.common_btn:hover {
  top: 9px;
  -webkit-box-shadow: 0 0 #328ac9;
  box-shadow: 0 0 #328ac9;
}

.common_btn .small {
  display: contents;
  font-size: 16px;
}

.common_btn .arrow {
  display: inline-block;
  vertical-align: middle;
  color: #333;
  line-height: 1;
  position: absolute;
  right: 20px;
  top: 18px;
  width: 27px;
  height: 27px;
  background: #fff;
  border-radius: 50%;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

@media screen and (max-width: 768px) {
  .common_btn .arrow {
    right: 3.90625vw;
    top: 4.16667vw;
    width: 4.6875vw;
    height: 4.6875vw;
  }
}

.common_btn .arrow:before {
  content: "";
  color: #64a9da;
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent;
  border-width: 6px 10px;
  border-left-color: currentColor;
  border-right: 0;
  -webkit-transform: translateX(15%);
  -ms-transform: translateX(15%);
  transform: translateX(15%);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.disabled {
  position: relative;
  pointer-events: none;
}

.disabled::after {
  content: 'キャンペーンは終了しました';
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 20px;
  color: #fff;
  background: rgba(58, 58, 58, 0.8);
  border-radius: 30px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-box-shadow: 0 9px #8e8e8e;
  box-shadow: 0 9px #8e8e8e;
}

@media screen and (max-width: 768px) {
  .disabled::after {
    font-size: 3.64583vw;
    -webkit-box-shadow: 0 1.5625vw #8e8e8e;
    box-shadow: 0 1.5625vw #8e8e8e;
  }
}

.btn {
  position: absolute;
  bottom: 60px;
  right: 60px;
}

@media screen and (max-width: 768px) {
  .btn {
    right: 0;
    left: 0;
    bottom: 9.11458vw;
    margin: auto;
  }
}

.btn .about_btn {
  display: block;
  width: 364px;
  height: 60px;
  line-height: 60px;
  font-size: 16px;
  background: #64a9da;
  color: #fff;
  border-radius: 30px;
  position: relative;
  top: 0;
  padding-right: 40px;
  -webkit-box-shadow: 0 9px #328ac9;
  box-shadow: 0 9px #328ac9;
  letter-spacing: 0;
}

@media screen and (max-width: 768px) {
  .btn .about_btn {
    width: 80vw;
    height: 13.02083vw;
    line-height: 13.02083vw;
    margin: 0 auto;
    font-size: 3.64583vw;
    padding-right: 6.51042vw;
    -webkit-box-shadow: 0 1.5625vw #328ac9;
    box-shadow: 0 1.5625vw #328ac9;
  }
}

.btn .about_btn:hover {
  top: 9px;
  -webkit-box-shadow: 0 0 #328ac9;
  box-shadow: 0 0 #328ac9;
}

.btn .about_btn .arrow {
  display: inline-block;
  vertical-align: middle;
  color: #333;
  line-height: 1;
  position: absolute;
  right: 20px;
  top: 18px;
  width: 27px;
  height: 27px;
  background: #fff;
  border-radius: 50%;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

@media screen and (max-width: 768px) {
  .btn .about_btn .arrow {
    right: 3.90625vw;
    top: 4.16667vw;
    width: 4.6875vw;
    height: 4.6875vw;
  }
}

.btn .about_btn .arrow:before {
  content: "";
  color: #64a9da;
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent;
  border-width: 6px 10px;
  border-left-color: currentColor;
  border-right: 0;
  -webkit-transform: translateX(15%);
  -ms-transform: translateX(15%);
  transform: translateX(15%);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

@media screen and (max-width: 768px) {
  .btn .about_btn .arrow:before {
    border-width: 1.30208vw 1.82292vw;
  }
}

.spoon_area {
  position: relative;
  margin-bottom: 250px;
  z-index: 2;
}

@media screen and (max-width: 768px) {
  .spoon_area {
    margin-bottom: 26.04167vw;
  }
}

.spoon_area .about {
  max-width: 1000px;
  margin: 0 auto;
  padding: 70px 60px;
  background: rgba(212, 231, 244, 0.3);
  border-radius: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}

@media screen and (max-width: 768px) {
  .spoon_area .about {
    padding: 7.8125vw 5.20833vw 28.64583vw;
    margin: 0 5.20833vw;
  }
}

.spoon_area .about:before {
  display: block;
  content: "";
  position: absolute;
  top: -32px;
  right: -56px;
  background: url(../img/spoon_01.png) no-repeat;
  width: 360px;
  height: 360px;
  z-index: 1;
  background-size: cover;
}

@media screen and (max-width: 768px) {
  .spoon_area .about:before {
    top: -5.20833vw;
    right: -3.125vw;
    width: 31.25vw;
    height: 31.25vw;
    z-index: 1;
    background-size: 31.25vw;
    pointer-events: none;
  }
}

.spoon_area .about:after {
  display: block;
  content: "";
  position: absolute;
  background: url(../img/kv_sizuku.png) no-repeat;
  width: 603px;
  height: 343px;
  z-index: -1;
  right: -292px;
  bottom: -100px;
}

@media screen and (max-width: 768px) {
  .spoon_area .about:after {
    width: 70vw;
    background-size: 70vw;
    height: 40vw;
    z-index: -1;
    right: -32vw;
    bottom: -15vw;
  }
}

.spoon_area .about .block p {
  text-align: left;
  letter-spacing: -1px;
}

.spoon_area .about .block p:nth-of-type(1) {
  font-weight: 700;
  font-size: 32px;
  margin-bottom: 30px;
}

@media screen and (max-width: 768px) {
  .spoon_area .about .block p:nth-of-type(1) {
    font-size: 5.20833vw;
    margin-bottom: 5.20833vw;
  }
}

.spoon_area .about .block p:nth-of-type(2) {
  font-size: 19px;
}

@media screen and (max-width: 768px) {
  .spoon_area .about .block p:nth-of-type(2) {
    font-size: 3.64583vw;
  }
}

.receipt {
  position: relative;
  padding-top: 20px;
  padding-bottom: 180px;
  background: #fc9cc0;
  z-index: 1;
}

@media screen and (max-width: 768px) {
  .receipt {
    padding-top: 2.60417vw;
    padding-bottom: 32.55208vw;
  }
}

.receipt:before {
  display: block;
  content: "";
  position: absolute;
  top: -10vw;
  left: 0;
  background: url(../img/wave.png) no-repeat;
  width: 100%;
  height: 201px;
  background-size: 100%;
  z-index: -2;
}

.receipt .receipt_flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 30px;
  margin-bottom: 50px;
}

@media screen and (max-width: 768px) {
  .receipt .receipt_flex {
    padding: 0 5.20833vw;
    gap: 13.02083vw;
    margin-bottom: 7.8125vw;
  }
}

.receipt .receipt_flex .block:nth-of-type(1) {
  position: relative;
}

.receipt .receipt_flex .block:nth-of-type(1):after {
  display: block;
  content: "";
  position: absolute;
  top: 120px;
  right: -30px;
  background: url(../img/receipt_arrow.png) no-repeat;
  width: 32px;
  height: 31px;
}

@media screen and (max-width: 768px) {
  .receipt .receipt_flex .block:nth-of-type(1):after {
    top: 16vw;
    right: -9vw;
    width: 4.5vw;
    height: 4.5vw;
    background-size: 4.5vw;
  }
}

.receipt .recepit_btn {
  padding-bottom: 30px;
}

.receipt p {
  font-size: 16px;
}

@media screen and (max-width: 768px) {
  .receipt p {
    font-size: 2.86458vw;
  }
}

.receipt p:nth-of-type(1) {
  font-size: 40px;
  background: #fc9cc0;
  margin-bottom: 60px;
}

@media screen and (max-width: 768px) {
  .receipt p:nth-of-type(1) {
    font-size: 6.25vw;
    line-height: 1.6;
    margin-bottom: 7.8125vw;
    padding-top: 2.60417vw;
  }
}

.receipt p:nth-of-type(1) span {
  font-size: 55px;
  font-weight: 700;
  color: #e70719;
  text-decoration: underline;
  vertical-align: text-top;
  line-height: 1;
}

@media screen and (max-width: 768px) {
  .receipt p:nth-of-type(1) span {
    font-size: 8.33333vw;
  }
}

section.premium {
  position: relative;
  z-index: 1;
  margin-bottom: 240px;
  padding: 0 40px;
}

@media screen and (max-width: 768px) {
  section.premium {
    padding: 0 5.20833vw;
    margin-bottom: 20.83333vw;
  }
}

section.premium:before {
  display: block;
  content: "";
  position: absolute;
  top: -370px;
  left: 0px;
  background: url(../img/wave02.png) no-repeat;
  width: 100vw;
  height: 650px;
  background-size: cover;
  background-position: top center;
  z-index: -1;
  pointer-events: none;
  /* 追加 */
}

@media screen and (max-width: 768px) {
  section.premium:before {
    background: url(../img/sp/wave02.png) no-repeat;
    background-size: contain;
    height: 41vw;
    top: -25vw;
  }
}

section.premium .inner {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}

section.premium .inner:before, section.premium .inner:after {
  display: block;
  content: "";
  position: absolute;
  z-index: -1;
}

section.premium .inner:before {
  right: -380px;
  top: 280px;
  background: url(../img/premium_course_heart.png) no-repeat;
  width: 546px;
  height: 632px;
}

@media screen and (max-width: 768px) {
  section.premium .inner:before {
    right: -21vw;
    top: 11vw;
    width: 42vw;
    background-size: 42vw;
    height: 53vw;
  }
}

section.premium .inner:after {
  left: -364px;
  top: 1790px;
  background: url(../img/premium_course_spoon.png) no-repeat;
  width: 676px;
  height: 821px;
}

@media screen and (max-width: 768px) {
  section.premium .inner:after {
    background: url(../img/sp/premium_course_spoon.png) no-repeat;
    width: 100vw;
    height: 470vw;
    top: 273vw;
    left: -5vw;
    background-size: 108vw;
  }
}

section.premium .inner .txt {
  margin-bottom: 30px;
}

section.premium .inner .kikan {
  margin-bottom: 80px;
}

@media screen and (max-width: 768px) {
  section.premium .inner .kikan {
    margin-bottom: 39.0625vw;
  }
}

section.premium .inner .course._01 {
  margin-bottom: 130px;
}

@media screen and (max-width: 768px) {
  section.premium .inner .course._01 {
    margin-bottom: 15.625vw;
  }
}

section.premium .inner .course._01 .course_inner:before {
  background: url(../img/premium_course_01_fukidashi_01.png) no-repeat;
}

section.premium .inner .course._01 .course_inner:after {
  background: url(../img/premium_course_01_midashi_01.png) no-repeat;
}

@media screen and (max-width: 768px) {
  section.premium .inner .course._01 .course_inner .block:nth-of-type(1) img {
    width: 82.55208vw;
  }
}

@media screen and (max-width: 768px) {
  section.premium .inner .course._01 .course_inner .block:nth-of-type(2) img {
    width: 55.46875vw;
  }
}

section.premium .inner .course._02 {
  margin-bottom: 80px;
}

@media screen and (max-width: 768px) {
  section.premium .inner .course._02 {
    margin-bottom: 39.0625vw;
  }
}

section.premium .inner .course._02 .course_inner:before {
  background: url(../img/premium_course_02_fukidashi_01.png) no-repeat;
}

section.premium .inner .course._02 .course_inner:after {
  background: url(../img/premium_course_02_midashi_01.png) no-repeat;
}

section.premium .inner .course._02 .course_inner .flex {
  gap: 60px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media screen and (max-width: 768px) {
  section.premium .inner .course._02 .course_inner .flex {
    gap: 2.60417vw;
  }
}

section.premium .inner .course._02 .course_inner .flex .block:nth-of-type(1):before {
  display: none;
}

section.premium .inner .course._03 {
  margin-bottom: 100px;
}

@media screen and (max-width: 768px) {
  section.premium .inner .course._03 {
    margin-bottom: 13.02083vw;
  }
}

section.premium .inner .course._03 .course_inner:before {
  background: url(../img/premium_course_03_fukidashi_01.png) no-repeat;
}

section.premium .inner .course._03 .course_inner:after {
  background: url(../img/premium_course_03_midashi_01.png) no-repeat;
}

section.premium .inner .course._04 {
  margin-bottom: 130px;
}

section.premium .inner .course._04 .course_inner:before {
  background: url(../img/premium_course_01_fukidashi_01.png) no-repeat;
}

section.premium .inner .course._04 .course_inner:after {
  background: url(../img/premium_course_01_midashi_01.png) no-repeat;
}

@media screen and (max-width: 768px) {
  section.premium .inner .course._05 .course_inner .block:nth-of-type(1) img {
    width: 43.22917vw;
  }
}

@media screen and (max-width: 768px) {
  section.premium .inner .course._05 .course_inner .block:nth-of-type(2) img {
    width: 53.64583vw;
  }
}

section.premium .inner .course {
  border: 3px solid #0d386d;
  border-radius: 30px;
  padding: 70px 70px 40px;
  position: relative;
  background: #fff;
}

@media screen and (max-width: 768px) {
  section.premium .inner .course {
    border: 0.52083vw solid #0d386d;
    border-radius: 2.60417vw;
    padding: 10.41667vw 5.20833vw 7.8125vw;
  }
}

section.premium .inner .course:before, section.premium .inner .course:after {
  display: block;
  content: "";
  position: absolute;
}

section.premium .inner .course:before {
  left: 0;
  bottom: 0;
  background: url(../img/premium_course_ribon_02.png) no-repeat;
  width: 112px;
  height: 84px;
}

@media screen and (max-width: 768px) {
  section.premium .inner .course:before {
    display: none;
  }
}

section.premium .inner .course:after {
  right: 0;
  top: 0;
  background: url(../img/premium_course_ribon_01.png) no-repeat;
  width: 232px;
  height: 113px;
}

@media screen and (max-width: 768px) {
  section.premium .inner .course:after {
    width: 30vw;
    height: 15vw;
    background-size: 30vw;
  }
}

section.premium .inner .course .course_inner:before, section.premium .inner .course .course_inner:after {
  display: block;
  content: "";
  position: absolute;
  z-index: 1;
}

section.premium .inner .course .course_inner:before {
  top: -50px;
  left: 20px;
  width: 234px;
  height: 138px;
}

@media screen and (max-width: 768px) {
  section.premium .inner .course .course_inner:before {
    width: 41.66667vw;
    background-size: 41.66667vw !important;
    top: -34vw;
    left: 0;
    right: 0;
    margin: auto;
    height: 25vw;
  }
}

section.premium .inner .course .course_inner:after {
  top: -30px;
  left: 0;
  right: 0;
  margin: auto;
  width: 333px;
  height: 60px;
}

@media screen and (max-width: 768px) {
  section.premium .inner .course .course_inner:after {
    top: -5.20833vw;
    width: 53.77604vw;
    background-size: 53.77604vw !important;
    height: 10.41667vw;
  }
}

section.premium .inner .course .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 100px;
}

@media screen and (max-width: 768px) {
  section.premium .inner .course .flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
    gap: 22.13542vw;
  }
}

section.premium .inner .course .flex .block {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  position: relative;
}

section.premium .inner .course .flex .block:nth-of-type(1):before {
  display: block;
  content: "";
  position: absolute;
  top: 90px;
  right: -65px;
  background: url(../img/premium_course_or.png) no-repeat;
  width: 35px;
  height: 35px;
  background-size: 35px;
}

@media screen and (max-width: 768px) {
  section.premium .inner .course .flex .block:nth-of-type(1):before {
    top: auto;
    bottom: -15.625vw;
    right: 0;
    left: 0;
    margin: auto;
    width: 10.41667vw;
    height: 10.41667vw;
    background-size: 10.41667vw;
  }
}

section.premium .inner .course .flex .block p {
  text-align: left;
}

section.premium .inner .course .flex .block .pa1 {
  font-size: 16px;
  margin-top: 20px;
}

@media screen and (max-width: 768px) {
  section.premium .inner .course .flex .block .pa1 {
    font-size: 3.64583vw;
    margin-top: 2.60417vw;
  }
}

section.premium .inner .course .flex .block .pa2 {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 15px;
  text-align: center;
}

@media screen and (max-width: 768px) {
  section.premium .inner .course .flex .block .pa2 {
    font-size: 5.20833vw;
    margin-bottom: 1.95313vw;
  }
}

section.premium .inner .course .flex .block .pa2 span {
  display: block;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
}

@media screen and (max-width: 768px) {
  section.premium .inner .course .flex .block .pa2 span {
    font-size: 2.60417vw;
  }
}

section.premium .inner .course .flex .block .pa3 {
  margin-top: 15px;
}

section.premium .inner .course .flex .block .img01 {
  width: 180px;
}

@media screen and (max-width: 768px) {
  section.premium .inner .course .flex .block .img01 {
    width: 33.46354vw;
  }
}

section.premium .inner .course .flex .block .cap {
  font-size: 1.4rem;
}

section.product {
  margin-bottom: 140px;
  position: relative;
}

@media screen and (max-width: 768px) {
  section.product {
    margin-bottom: 10.41667vw;
    padding: 0 10.41667vw;
  }
}

section.product:before {
  display: block;
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  background: url(../img/wave03.png) no-repeat;
  width: 100%;
  height: 1100px;
  z-index: -1;
  background-size: 100%;
  background-size: cover;
  background-position: top center;
}

@media screen and (max-width: 768px) {
  section.product:before {
    background: url(../img/sp/wave03.png) no-repeat;
    background-size: cover;
    height: 50vw;
    top: -20vw;
    width: 100vw;
  }
}

section.join {
  padding: 100px 40px;
  background: #ffe0ec;
  position: relative;
}

@media screen and (max-width: 768px) {
  section.join {
    padding: 11.71875vw 5.20833vw;
  }
}

section.join:before {
  display: block;
  content: "";
  position: absolute;
  left: 0;
  top: -60px;
  background: url(../img/join_thread.png) no-repeat;
  width: 100vw;
  height: 100%;
  background-size: 100vw;
  background-position: center top;
  pointer-events: none;
}

@media screen and (max-width: 768px) {
  section.join:before {
    top: -4vw;
    background: url(../img/sp/join_thread.png) no-repeat;
    width: 100vw;
    height: 18vw;
    background-size: 100%;
  }
}

section.join .flow {
  margin-bottom: 60px;
}

@media screen and (max-width: 768px) {
  section.join .flow {
    margin-bottom: 7.8125vw;
    padding: 0 7.8125vw;
  }
}

section.join ul {
  display: inline-block;
}

@media screen and (max-width: 768px) {
  section.join ul {
    margin-top: 2.60417vw;
    margin-bottom: 5.20833vw;
  }
}

section.join ul li {
  text-align: left;
  text-indent: -1em;
  padding-left: 1em;
  margin-bottom: 10px;
  font-size: 14px;
}

@media screen and (max-width: 768px) {
  section.join ul li {
    font-size: 3.125vw;
    margin-bottom: 1.30208vw;
  }
}

@media screen and (min-width: 769px) {
  section.join ul li a {
    pointer-events: none;
  }
}

@media screen and (max-width: 768px) {
  section.join ul li a {
    color: #64a9da;
    text-decoration: underline;
  }
}

section.join .common_flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 30px;
}

@media screen and (max-width: 768px) {
  section.join .common_flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
    gap: 0;
  }
}

.join_receipt {
  padding: 80px 40px;
  position: relative;
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  .join_receipt {
    padding: 10.41667vw 5.20833vw;
  }
}

.join_receipt:before {
  display: block;
  content: "";
  position: absolute;
  left: 0;
  bottom: -690px;
  background: url(../img/join_thread_02.png) no-repeat;
  width: 100vw;
  height: 100%;
  background-size: 100vw;
  background-position: center top;
  pointer-events: none;
  z-index: -1;
}

@media screen and (max-width: 768px) {
  .join_receipt:before {
    display: none;
  }
}

.join_receipt p {
  font-weight: 700;
  margin-bottom: 50px;
}

@media screen and (max-width: 768px) {
  .join_receipt p {
    margin-bottom: 6.51042vw;
  }
}

.join_receipt p:nth-of-type(1) {
  font-size: 18px;
  margin-bottom: 10px;
}

@media screen and (max-width: 768px) {
  .join_receipt p:nth-of-type(1) {
    font-size: 3.125vw;
    margin-bottom: 1.30208vw;
  }
}

.join_receipt p:nth-of-type(2) {
  font-size: 24px;
  color: #e70719;
}

@media screen and (max-width: 768px) {
  .join_receipt p:nth-of-type(2) {
    font-size: 4.16667vw;
  }
}

section.guidline {
  padding: 100px 40px;
  background: #fc9cc0;
}

@media screen and (max-width: 768px) {
  section.guidline {
    padding: 10.41667vw 5.20833vw;
  }
}

section.guidline .guid_inner {
  max-width: 1000px;
  margin: 0 auto;
  background: #fff;
  border-radius: 30px;
  padding: 55px;
}

@media screen and (max-width: 768px) {
  section.guidline .guid_inner {
    padding: 6.51042vw;
  }
}

section.guidline .guid_inner dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px solid #d8d8d8;
  padding-bottom: 30px;
  margin-bottom: 30px;
}

@media screen and (max-width: 768px) {
  section.guidline .guid_inner dl {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
    padding-bottom: 3.90625vw;
    margin-bottom: 5.20833vw;
  }
}

section.guidline .guid_inner dl:last-child {
  border-bottom: none;
  padding: 0;
  margin-bottom: 0;
}

section.guidline .guid_inner dl dt {
  min-width: 130px;
  height: 38px;
  line-height: 38px;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  background: #e70719;
  border-radius: 20px;
  margin-right: 40px;
}

@media screen and (max-width: 768px) {
  section.guidline .guid_inner dl dt {
    width: 31.25vw;
    height: 6.51042vw;
    line-height: 6.51042vw;
    font-size: 3.125vw;
    margin-right: 0;
    margin-bottom: 1.30208vw;
  }
}

section.guidline .guid_inner dl dd {
  font-size: 18px;
  margin-top: 5px;
  text-align: left;
  line-height: 1.8;
  width: 100%;
}

@media screen and (max-width: 768px) {
  section.guidline .guid_inner dl dd {
    font-size: 3.38542vw;
    margin-top: 0;
  }
}

section.guidline .guid_inner dl dd .indent {
  text-indent: -4.5em;
  padding-left: 4.5em;
}

section.guidline .guid_inner dl dd .indent02 {
  text-indent: -9em;
  padding-left: 9em;
}

section.guidline .guid_inner dl dd .dan {
  margin-top: 30px;
}

section.guidline .guid_inner dl dd ul li {
  text-indent: -0.5em;
  padding-left: 0.5em;
}

section.guidline .kiyaku .box {
  max-width: 1100px;
  margin: 0 auto;
  border: 1px solid #b5b5b5;
  padding: 30px 15px 30px 30px;
  text-align: left;
  background: #fff;
  border: 2px solid #0d386d;
  border-radius: 10px;
}

@media screen and (max-width: 1080px) {
  section.guidline .kiyaku .box {
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  section.guidline .kiyaku .box {
    max-width: 100%;
    padding: 3.90625vw 2.60417vw 3.90625vw 3.90625vw;
    border: 0.52083vw solid #0d386d;
    border-radius: 3.90625vw;
    margin: 2.60417vw auto 0;
  }
}

section.guidline .kiyaku .box .scroll_area {
  width: 100%;
  height: 300px;
  padding-right: 30px;
}

@media screen and (max-width: 768px) {
  section.guidline .kiyaku .box .scroll_area {
    padding-right: 3.90625vw;
    height: 52.08333vw;
  }
}

section.guidline .kiyaku .box .scroll_area p {
  font-size: 16px;
}

@media screen and (max-width: 768px) {
  section.guidline .kiyaku .box .scroll_area p {
    font-size: 3.38542vw;
  }
}

section.guidline .kiyaku .box .scroll_area a {
  text-decoration: underline;
}

section.guidline .kiyaku .box .scroll_area span {
  display: block;
  text-align: center;
  margin-bottom: 10px;
  font-weight: 700;
}

@media screen and (max-width: 768px) {
  section.guidline .kiyaku .box .scroll_area span {
    margin-bottom: 1.30208vw;
  }
}

section.guidline .kiyaku .box .scroll_area .simplebar-track {
  background: #eeeeee;
}

section.guidline .kiyaku .box .scroll_area .simplebar-track.simplebar-vertical {
  width: 8px;
}

@media screen and (max-width: 768px) {
  section.guidline .kiyaku .box .scroll_area .simplebar-track.simplebar-vertical {
    width: 1.04167vw;
  }
}

@media screen and (max-width: 768px) {
  section.guidline .kiyaku .box .scroll_area .simplebar-content {
    padding: 0 3.90625vw 0 0 !important;
  }
}

section.guidline .kiyaku .box .scroll_area .simplebar-scrollbar:before {
  background: #0d386d;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  opacity: 1;
  border-radius: 0;
}

section.faq {
  padding: 100px 40px 200px;
}

@media screen and (max-width: 768px) {
  section.faq {
    padding: 10.41667vw 5.20833vw 23.4375vw;
  }
}

section.faq .faq_inner {
  max-width: 1000px;
  margin: 0 auto;
}

section.faq .faq_inner .toggle_contents {
  border: 2px solid #0d386d;
  border-radius: 20px;
  margin-bottom: 20px;
}

@media screen and (max-width: 768px) {
  section.faq .faq_inner .toggle_contents {
    border: 0.39063vw solid #0d386d;
    border-radius: 2.60417vw;
    margin-bottom: 2.60417vw;
  }
}

section.faq .faq_inner .toggle_title {
  position: relative;
  cursor: pointer;
  font-size: 20px;
  text-align: left;
  line-height: 1;
  bottom: 3px;
  padding: 20px;
}

@media screen and (max-width: 768px) {
  section.faq .faq_inner .toggle_title {
    font-size: 3.64583vw;
    padding: 2.60417vw 10.41667vw 2.60417vw 11.71875vw;
    text-indent: -2.1em;
  }
}

section.faq .faq_inner .toggle_title span.q {
  color: #e70719;
  font-size: 40px;
  vertical-align: sub;
  margin-right: 25px;
}

@media screen and (max-width: 768px) {
  section.faq .faq_inner .toggle_title span.q {
    font-size: 7.29167vw;
    margin-right: 2.60417vw;
  }
}

section.faq .faq_inner .toggle_btn {
  position: absolute;
  top: 54%;
  right: 20px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  background: #0052a4;
  display: block;
  width: 35px;
  height: 35px;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  border-radius: 50%;
}

@media screen and (max-width: 768px) {
  section.faq .faq_inner .toggle_btn {
    top: 7vw;
    width: 5.20833vw;
    height: 5.20833vw;
    right: 3.90625vw;
  }
}

section.faq .faq_inner .toggle_btn:before,
section.faq .faq_inner .toggle_btn:after {
  display: block;
  content: "";
  background-color: #fff;
  position: absolute;
  width: 20px;
  height: 2px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

@media screen and (max-width: 768px) {
  section.faq .faq_inner .toggle_btn:before,
  section.faq .faq_inner .toggle_btn:after {
    width: 2.60417vw;
    height: 0.39063vw;
  }
}

section.faq .faq_inner .toggle_btn:before {
  width: 2px;
  height: 20px;
}

@media screen and (max-width: 768px) {
  section.faq .faq_inner .toggle_btn:before {
    width: 0.39063vw;
    height: 2.60417vw;
  }
}

section.faq .faq_inner .toggle_title.selected .toggle_btn:before {
  content: normal;
}

section.faq .faq_inner .toggle_contents dd {
  display: none;
  text-align: left;
  font-size: 16px;
  padding-top: 20px;
  margin: 0 20px 20px;
  border-top: 1px solid #d8d8d8;
}

@media screen and (max-width: 768px) {
  section.faq .faq_inner .toggle_contents dd {
    font-size: 3.125vw;
    padding-top: 2.60417vw;
    margin: 0 3.90625vw 3.90625vw;
  }
}

section.faq .faq_inner .faq_bnr {
  margin-top: 140px;
  position: relative;
}

@media screen and (max-width: 768px) {
  section.faq .faq_inner .faq_bnr {
    margin-top: 10.41667vw;
  }
}

section.faq .faq_inner .faq_bnr a {
  position: absolute;
  top: 48%;
  left: 0;
  right: 0;
  margin: auto;
  width: 323px;
  pointer-events: none;
}

@media screen and (max-width: 768px) {
  section.faq .faq_inner .faq_bnr a {
    top: 26.04167vw;
    width: 57.42188vw;
    pointer-events: all;
  }
}
