@charset "UTF-8";
/*BREAK POINT*/
.pc {
  display: block;
}
@media screen and (max-width: 769px) {
  .pc {
    display: none !important;
  }
}

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

html {
  scroll-behavior: smooth;
}

body {
  background-color: #fff;
  color: #000;
  margin: 0;
  font-family: "Zen Kaku Gothic New", sans-serif !important;
}

header, div, span, applet, object, iframe, input[type=file], h1, h2, h3, h4, h5, h6, p, select, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q, s, samp, small, strike, sub, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, aside {
  font-family: "Zen Kaku Gothic New", sans-serif !important;
  color: #000;
  box-sizing: border-box;
  letter-spacing: 0.1em;
  line-height: 1.7em;
}

a {
  text-decoration: none;
}

ul {
  list-style: none;
}

img {
  width: 100%;
}

.fadein,
.fadein02,
.fadein03 {
  opacity: 0;
  visibility: hidden;
  transform: translateY(30px);
  transition: opacity 1s, visibility 1s, transform 1s;
}

.is-fadein {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.en {
  font-family: "urw-din", sans-serif !important;
}

.flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media screen and (max-width: 769px) {
  .flex {
    display: block;
  }
}

.flex02 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media screen and (max-width: 769px) {
  .flex02 {
    display: block;
  }
}
.flex02 li,
.flex02 .img,
.flex02 .text,
.flex02 .flex-item {
  width: 48%;
}
@media screen and (max-width: 769px) {
  .flex02 li,
  .flex02 .img,
  .flex02 .text,
  .flex02 .flex-item {
    width: 100%;
  }
}

.flex03 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media screen and (max-width: 769px) {
  .flex03 {
    display: block;
  }
}
.flex03 li,
.flex03 .flex-item {
  width: 32%;
}
@media screen and (max-width: 769px) {
  .flex03 li,
  .flex03 .flex-item {
    width: 100%;
  }
}

.flex-rev {
  flex-direction: row-reverse;
}

section {
  position: relative;
  padding: 80px 0;
}
@media screen and (max-width: 769px) {
  section {
    padding: 50px 0;
  }
}
section .box {
  position: relative;
  width: 90vw;
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
}
section .box .title-box {
  margin-bottom: 50px;
}
section .box .title-box h2 {
  font-size: 60px;
  font-weight: bold;
  font-family: "urw-din", sans-serif !important;
  color: #000;
  margin-bottom: 10px;
  letter-spacing: normal;
}
@media screen and (max-width: 769px) {
  section .box .title-box h2 {
    font-size: 40px;
    margin-bottom: 5px;
  }
}
section .box .title-box h2 span {
  color: #2c3d41;
  font-family: "Zen Kaku Gothic New", sans-serif !important;
  display: inline;
  font-size: 16px;
  letter-spacing: 0.1em;
  font-weight: normal;
  padding: 0 20px;
}
@media screen and (max-width: 769px) {
  section .box .title-box h2 span {
    font-size: 13px;
  }
}
section .box .title-box span {
  display: block;
  font-family: "Zen Kaku Gothic New", sans-serif !important;
  font-size: 14px;
  text-align: center;
  color: #2c3d41;
}
@media screen and (max-width: 769px) {
  section .box .title-box span {
    font-size: 12px;
  }
}
section .box .title-wh h2 {
  color: #fff;
}
section .box .title-wh span {
  color: #fff;
}

/*--------------------anime----------------------*/
/* Loading背景画面設定　*/
#anime {
  /*fixedで全面に固定*/
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 999;
  background: #fff;
  text-align: center;
  color: #fff;
}

/* Loading画像中央配置　*/
/* Loading アイコンの大きさ設定　*/
#anime-logo svg {
  width: 60vw;
  height: 50vh;
  margin-top: 10vh;
  transform: rotate(-5deg);
}
@media screen and (max-width: 769px) {
  #anime-logo svg {
    width: 80vw;
    height: 30vh;
  }
}

#anime-logo02 {
  margin-top: 15vh;
}
#anime-logo02 img {
  max-width: 800px;
  width: 30%;
}
@media screen and (max-width: 769px) {
  #anime-logo02 img {
    width: 70%;
  }
}

/*========= SVG操作手書き風にするためのCSS ===============*/
#mask .st0 {
  fill: none;
  stroke: #fff;
  stroke-width: 90; /*線の太さを指定する*/
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-miterlimit: 10;
  stroke-dasharray: 1500; /* 線の間隔を指定する */
  stroke-dashoffset: 1500; /* 線の位置を指定する */
}

/*--------------------header----------------------*/
header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  margin: 0 auto;
  transition: 0.5s;
  padding: 10px 0;
}
header.is-scroll {
  background-color: #fff;
}
header .header-box {
  width: 90%;
  max-width: 1200px;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
}
@media screen and (max-width: 769px) {
  header .header-box {
    display: none;
  }
}
header .header-box .logo {
  display: flex;
  justify-content: center;
  align-items: center;
}
header .header-box .logo img {
  height: 60px;
}
header .header-box ul {
  display: flex;
  justify-content: center;
  position: relative;
}
header .header-box ul li {
  display: flex;
  align-items: center;
  color: #000;
  font-size: 14px;
  font-weight: bold;
  margin-right: 3vw;
}
header .header-box ul li:last-of-type {
  margin-right: 0;
}
header .header-box ul li a {
  color: #000;
  font-size: 16px;
  font-weight: bold;
  transition: 0.2s;
  text-align: center;
  font-family: "urw-din", sans-serif !important;
  letter-spacing: normal;
}
header .header-box ul li a span {
  display: block;
  font-size: 12px;
  font-family: "Zen Kaku Gothic New", sans-serif !important;
  font-weight: normal;
}
header .header-box ul li a:hover {
  color: #99b9aa;
}
header .header-box ul li a:hover span {
  color: #99b9aa;
}
header .header-box ul li.btn {
  width: 10em;
  flex-wrap: wrap;
  justify-content: center;
}
header .header-box ul li.btn small {
  color: #c00;
  position: relative;
}
header .header-box ul li.btn small::before {
  content: "";
  width: 1.5px;
  height: 1.2em;
  background-color: #c00;
  position: absolute;
  left: -10px;
  top: 50%;
  transform: translateY(-50%) rotate(-15deg);
  border-radius: 50px;
}
header .header-box ul li.btn small::after {
  content: "";
  width: 1.5px;
  height: 1.2em;
  background-color: #c00;
  position: absolute;
  right: -10px;
  top: 50%;
  transform: translateY(-50%) rotate(15deg);
  border-radius: 50px;
}
header .header-box ul li.btn a {
  border: 2px solid #2c3d41;
  background-color: #2c3d41;
  color: #fff;
  font-weight: normal;
  padding: 10px 20px;
  border-radius: 5px;
}
header .header-box ul li.btn a:hover {
  border: 2px solid #2c3d41;
  background-color: #fff;
  color: #2c3d41;
}
header .sp-logo {
  width: 100%;
  text-align: left;
  padding: 10px 20px;
}
@media screen and (max-width: 769px) {
  header .sp-logo {
    padding: 0;
    display: flex !important;
    justify-content: center;
    align-items: center;
  }
}
header .sp-logo a {
  margin: 0;
}
header .sp-logo img {
  height: 40px;
  vertical-align: bottom;
}
header .hamburger-menu {
  display: none;
}
@media screen and (max-width: 769px) {
  header .hamburger-menu {
    display: block;
  }
}
header .hamburger-menu .menu-content ul li a {
  font-size: 15px;
  font-weight: bold;
}
header .hamburger-menu .menu-content ul li a span {
  color: #fff;
  padding-left: 15px;
  font-size: 12px;
  font-weight: normal;
}

/*--------------------splash----------------------*/
#splash {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 99900;
  background: #FFF;
  text-align: center;
}
#splash #splash_logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#splash #splash_logo img.splash01 {
  width: 20vw;
  height: 100%;
  max-width: 800px;
}
@media screen and (max-width: 769px) {
  #splash #splash_logo img.splash01 {
    width: 50vw;
    height: 100%;
  }
}
#splash #splash_logo img.splash02 {
  width: 40vw;
  height: 100%;
  max-width: 800px;
  margin-top: 50px;
}
@media screen and (max-width: 769px) {
  #splash #splash_logo img.splash02 {
    width: 80vw;
    height: 100%;
  }
}

/*--------------------mv----------------------*/
#mv .box {
  max-width: none;
  margin: 0 auto 0 0;
  height: 70vh;
  position: relative;
}
#mv .box .mv-bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 70vw;
}
@media screen and (max-width: 769px) {
  #mv .box .mv-bg {
    top: 10vh;
    width: 90vw;
    height: 60vh;
  }
}
#mv .box .mv-bg h2 {
  font-family: "Zen Old Mincho", serif !important;
  position: absolute;
  bottom: -50px;
  left: 0;
  z-index: 1;
  background-color: #fff;
  padding: 20px;
}
#mv .box .mv-bg ul li {
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  overflow: hidden;
}
#mv .box .mv-bg ul li img {
  width: 100%;
  height: 80vh;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 769px) {
  #mv .box .mv-bg ul li img {
    height: 60vh;
  }
}
#mv .box .mv-bg ul li.rev img {
  transform: scaleX(-1);
}
#mv .box .mv-title {
  position: absolute;
  right: -5vw;
  top: 2vw;
  text-align: right;
}
@media screen and (max-width: 769px) {
  #mv .box .mv-title {
    top: 5vh;
  }
}
#mv .box .mv-title h1 {
  width: 50vw;
}
@media screen and (max-width: 769px) {
  #mv .box .mv-title h1 {
    width: 80vw;
  }
}
#mv .box .mv-title h1 img {
  width: 100%;
  transform: rotate(-5deg);
  max-width: 800px;
}
#mv .box .mv-title h2 {
  font-size: 20px;
  font-family: "Zen Old Mincho", serif !important;
  display: inline-block;
  text-align: left;
  margin-top: 1em;
}
@media screen and (max-width: 769px) {
  #mv .box .mv-title h2 {
    display: none;
  }
}

/*--------------------intro----------------------*/
#intro {
  margin-top: 50px;
  padding-top: 120px;
}
@media screen and (max-width: 769px) {
  #intro {
    padding-top: 0;
  }
}
#intro .box {
  width: 100%;
  max-width: none;
  padding-left: 10%;
}
@media screen and (max-width: 769px) {
  #intro .box {
    width: 84%;
    padding: 0;
    margin: 0 auto;
  }
}
#intro .box .flex02 {
  align-items: center;
}
#intro .box .flex02 .text h2 {
  font-size: 40px;
  font-family: "Zen Old Mincho", serif !important;
  margin-bottom: 1em;
}
@media screen and (max-width: 769px) {
  #intro .box .flex02 .text h2 {
    font-size: 28px;
  }
}
#intro .box .flex02 .text p {
  font-size: 14px;
  line-height: 2.2em;
  letter-spacing: 0.12em;
}
@media screen and (max-width: 769px) {
  #intro .box .flex02 .text p {
    font-size: 14px;
    margin-bottom: 3em;
  }
}
#intro .box .flex02 .text img.intro-img-sp {
  width: 80%;
  margin: 30px auto;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}
@media screen and (max-width: 769px) {
  #intro .box .flex02 .text img.intro-img-sp {
    width: 109%;
    margin-bottom: 30px;
    position: relative;
    right: 0;
  }
}
#intro .box .flex02 .img {
  position: relative;
}
#intro .box .flex02 .img::before {
  content: "";
  position: absolute;
  bottom: -10%;
  left: -10%;
  width: 20%;
  aspect-ratio: 11/15;
  z-index: 1;
  background-image: url(../img/acc01.svg);
  background-repeat: no-repeat;
  background-size: cover;
}
#intro .box .flex02 .img .intro-img01 {
  width: 40%;
  margin-bottom: 15%;
  border-radius: 10px;
}
@media screen and (max-width: 769px) {
  #intro .box .flex02 .img .intro-img01 {
    display: none;
  }
}
#intro .box .flex02 .img .intro-img02 {
  width: 100%;
  border-radius: 10px;
}
@media screen and (max-width: 769px) {
  #intro .box .flex02 .img .intro-img02 {
    aspect-ratio: 16/9;
  }
}

/*--------------------reason----------------------*/
#reason {
  padding-bottom: 160px;
  position: relative;
}
#reason:after {
  content: "";
  position: absolute;
  background: url("../img/chara.png") no-repeat;
  background-size: 100%;
  width: 150px;
  height: 180px;
  z-index: 1;
  left: calc(80% - 100px);
  bottom: 0;
}
@media screen and (max-width: 769px) {
  #reason:after {
    width: 100px;
    height: 150px;
    left: auto;
    right: 20px;
  }
}
#reason .box .title-box h2 {
  text-align: center;
}
#reason .box .title-box h2 span {
  display: block;
}
#reason .box .inner-box {
  display: flex;
  align-items: center;
}
#reason .box .inner-box .img img {
  background-color: #f8f8f8;
  padding: 30px;
  border-radius: 15px;
}
#reason .box .inner-box .text h3 {
  font-size: 18px;
  margin-bottom: 1em;
}
#reason .box .inner-box .text h3 span {
  font-size: 1.2em;
  font-weight: bold;
}
#reason .box .inner-box .text p {
  margin-bottom: 1em;
}
#reason .box .inner-box .text p span {
  display: block;
  padding: 30px;
  border: 2px solid #000;
  border-radius: 10px;
  position: relative;
}
#reason .box .inner-box .text p span::before {
  content: "";
  position: absolute;
  bottom: -10%;
  right: -5%;
  width: 10%;
  aspect-ratio: 4/5;
  z-index: 1;
  background-image: url(../img/acc03.svg);
  background-repeat: no-repeat;
  background-size: cover;
}
#reason .box .inner-box .text p.center {
  text-align: center;
}
#reason .box .inner-box .text ul {
  margin-bottom: 1em;
}
#reason .box .inner-box .text ul li {
  width: 100%;
}

/*--------------------meaning----------------------*/
#meaning {
  background-color: #ecf0ec;
  padding-bottom: 160px;
  position: relative;
}
@media screen and (max-width: 769px) {
  #meaning {
    padding-top: 50px;
  }
}
#meaning:after {
  content: "";
  position: absolute;
  background: url("../img/chara3.png") no-repeat;
  background-size: 100%;
  width: 150px;
  height: 180px;
  z-index: 1;
  left: 50px;
  bottom: 0;
}
@media screen and (max-width: 769px) {
  #meaning:after {
    width: 100px;
    height: 150px;
  }
}
#meaning .box .title-box h2 {
  text-align: center;
}
#meaning .box .title-box h2 span {
  display: block;
}
#meaning .box .img {
  height: 200px;
  max-width: 800px;
  text-align: center;
  margin: 0 auto 30px;
  background: #fff;
  padding: 50px 0;
  border-radius: 10px;
}
@media screen and (max-width: 769px) {
  #meaning .box .img {
    height: auto;
    padding: 30px;
  }
}
#meaning .box .img img {
  height: 100%;
}
#meaning .box .text {
  text-align: center;
  margin: 0 auto;
  max-width: 800px;
}
#meaning .box .text p {
  text-align: left;
}
@media screen and (max-width: 769px) {
  #meaning .box .text p {
    font-size: 14px;
  }
}

/*--------------------feature----------------------*/
#feature {
  position: relative;
  background-image: url(../img/fe-bg.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #f8f8f8;
}
#feature .box .inner-box ul li {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto 50px 0;
  align-items: center;
}
@media screen and (max-width: 769px) {
  #feature .box .inner-box ul li {
    width: 95%;
    margin: 0 auto 30px;
  }
}
#feature .box .inner-box ul li:nth-of-type(even) {
  margin: 0 0 50px auto;
}
@media screen and (max-width: 769px) {
  #feature .box .inner-box ul li:nth-of-type(even) {
    margin: 0 auto 30px;
  }
}
#feature .box .inner-box ul li .img img {
  vertical-align: bottom;
  border-radius: 10px;
}
#feature .box .inner-box ul li .text span.num {
  color: #99b9aa;
  font-family: "urw-din", sans-serif !important;
  font-size: 2.5em;
  font-weight: bold;
  letter-spacing: normal;
}
@media screen and (max-width: 769px) {
  #feature .box .inner-box ul li .text span.num {
    line-height: 1;
  }
}
#feature .box .inner-box ul li .text h3 {
  font-size: 1.4em;
  font-weight: bold;
  margin: 0.5em 0 1em;
}
@media screen and (max-width: 769px) {
  #feature .box .inner-box ul li .text h3 {
    margin: 0;
  }
}
#feature .box .inner-box ul li .text p {
  font-size: 14px;
}
#feature .box .inner-box .movie-box {
  text-align: center;
  margin-top: 100px;
}
@media screen and (max-width: 769px) {
  #feature .box .inner-box .movie-box {
    margin-top: 50px;
  }
}
#feature .box .inner-box .movie-box iframe {
  width: 70%;
  height: auto;
  aspect-ratio: 16/9;
  border-radius: 15px;
}
@media screen and (max-width: 769px) {
  #feature .box .inner-box .movie-box iframe {
    width: 100%;
    border-radius: 10px;
  }
}

/*--------------------profile----------------------*/
#profile {
  background-color: #ecf0ec;
}
#profile .box .title-box h2 {
  text-align: center;
}
#profile .box .title-box h2 span {
  display: block;
}
#profile .box .inner-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  width: 80%;
  margin: 0 auto;
  padding: 50px;
  border: 2px solid #000;
  border-radius: 10px;
  background-color: #fff;
  position: relative;
}
@media screen and (max-width: 769px) {
  #profile .box .inner-box {
    width: 100%;
    padding: 30px;
  }
}
#profile .box .inner-box .img {
  width: 45%;
}
@media screen and (max-width: 769px) {
  #profile .box .inner-box .img {
    width: 100%;
  }
}
#profile .box .inner-box .img img {
  width: 100%;
  border-radius: 10px;
}
#profile .box .inner-box .text {
  width: 50%;
}
@media screen and (max-width: 769px) {
  #profile .box .inner-box .text {
    width: 100%;
  }
}
#profile .box .inner-box .text span {
  color: #99b9aa;
  font-size: 14px;
  font-weight: bold;
}
#profile .box .inner-box .text h3 {
  font-family: "Zen Old Mincho", serif !important;
  font-weight: bold;
  font-size: 1.8em;
  margin-bottom: 0.7em;
  line-height: 1.2em;
}
@media screen and (max-width: 769px) {
  #profile .box .inner-box .text h3 {
    font-size: 1.5em;
  }
}
#profile .box .inner-box .text h3 small {
  font-size: 14px;
}
#profile .box .inner-box .text p {
  font-size: 14px;
  font-weight: normal;
  word-break: break-all;
}

/*--------------------staff----------------------*/
#staff .box .inner-box ul li {
  margin-bottom: 120px;
  align-items: center;
}
#staff .box .inner-box ul li .img {
  text-align: center;
}
#staff .box .inner-box ul li .img img {
  border-radius: 10px;
  width: 80%;
  margin: 0 auto;
}
#staff .box .inner-box ul li .text h3 {
  font-size: 1.5em;
  font-weight: bold;
  margin-bottom: 1em;
}
@media screen and (max-width: 769px) {
  #staff .box .inner-box ul li .text h3 {
    text-align: center;
  }
}
#staff .box .inner-box ul li .text p {
  font-size: 14px;
  margin-bottom: 3em;
}
#staff .box .inner-box ul li .text .have {
  padding: 30px;
  border: 2px solid #000;
  border-radius: 10px;
  position: relative;
}
#staff .box .inner-box ul li .text .have::before {
  content: "";
  position: absolute;
  bottom: -10%;
  right: -5%;
  width: 15%;
  aspect-ratio: 4/5;
  z-index: 1;
  background-image: url(../img/acc03.svg);
  background-repeat: no-repeat;
  background-size: cover;
}
#staff .box .inner-box ul li .text .have h4 {
  font-size: 1.2em;
  font-weight: bold;
  margin-bottom: 0.5em;
}
#staff .box .inner-box ul li .text .have .have-img {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
#staff .box .inner-box ul li .text .have .have-img img {
  width: 48%;
  margin: 30px 0 0;
}
@media screen and (max-width: 769px) {
  #staff .box .inner-box ul li .text .have .have-img img {
    width: 100%;
  }
}
#staff .box .inner-box ul li:nth-of-type(2) {
  margin-bottom: 0;
}
#staff .box .inner-box ul li:nth-of-type(2) .have::before {
  aspect-ratio: 73/75;
  background-image: url(../img/acc02.svg);
}

/*--------------------sns----------------------*/
#sns {
  background-image: url(../img/sns-bg.svg);
  background-size: cover;
  background-repeat: no-repeat;
  padding-top: 130px;
}
@media screen and (max-width: 769px) {
  #sns {
    padding-top: 50px;
  }
}
#sns .box .title-box h2 {
  text-align: center;
}
#sns .box .title-box h2 span {
  display: block;
}
#sns .box .inner-box {
  display: flex;
  justify-content: center;
  width: 80%;
  margin: 0 auto;
  padding: 50px;
  border: 2px solid #000;
  border-radius: 10px;
  background-color: #fff;
  position: relative;
}
@media screen and (max-width: 769px) {
  #sns .box .inner-box {
    width: 100%;
    padding: 0;
  }
}
#sns .box .inner-box .ig-box {
  min-width: 0;
}
#sns .box .inner-box .ig-box span {
  font-weight: bold;
  display: block;
  text-align: center;
  margin-bottom: 1em;
}
#sns .box .inner-box .acc-left {
  position: absolute;
  top: 10%;
  left: 0;
  width: 6vw;
}
@media screen and (max-width: 769px) {
  #sns .box .inner-box .acc-left {
    display: none;
  }
}
#sns .box .inner-box .acc-right {
  position: absolute;
  bottom: 10%;
  right: 0;
  width: 6vw;
}
@media screen and (max-width: 769px) {
  #sns .box .inner-box .acc-right {
    display: none;
  }
}

/*--------------------flow----------------------*/
#flow {
  background-image: url(../img/flow-bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
}
#flow .box .inner-box {
  position: relative;
}
#flow .box .inner-box ol {
  justify-content: center;
}
@media screen and (max-width: 769px) {
  #flow .box .inner-box ol {
    display: flex;
    justify-content: flex-start;
  }
}
#flow .box .inner-box ol li {
  border-radius: 50%;
  width: 15vw;
  height: 15vw;
  margin-right: 8%;
  margin-bottom: 5%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  position: relative;
}
@media screen and (max-width: 769px) {
  #flow .box .inner-box ol li {
    width: 40vw;
    height: 40vw;
  }
}
#flow .box .inner-box ol li::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -30%;
  transform: translateY(-50%);
  width: 14px;
  height: auto;
  aspect-ratio: 91/150;
  background-image: url(../img/arrow02-wh.svg);
  background-size: cover;
  background-repeat: no-repeat;
}
#flow .box .inner-box ol li span.num {
  position: absolute;
  left: 0;
  top: 0;
  color: #fff;
  background-color: #000;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "urw-din", sans-serif !important;
}
@media screen and (max-width: 769px) {
  #flow .box .inner-box ol li span.num {
    width: 40px;
    height: 40px;
  }
}
#flow .box .inner-box ol li a {
  border: 1.5px solid #000;
  border-radius: 50%;
  background-color: #fff;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-content: center;
  align-items: center;
  cursor: pointer;
  text-align: center;
  width: 100%;
  height: 100%;
  transition: 0.2s;
}
#flow .box .inner-box ol li a img {
  height: 50px;
  margin-bottom: 1em;
  width: auto;
  background-color: #fff;
  padding: 10px;
  border-radius: 10px;
  box-sizing: content-box;
}
#flow .box .inner-box ol li a h3 {
  text-align: center;
  width: 100%;
  transition: 0.2s;
}
#flow .box .inner-box ol li a:hover {
  background-color: #000;
}
#flow .box .inner-box ol li a:hover h3 {
  color: #fff;
}
#flow .box .inner-box ol li:nth-of-type(7) {
  margin-right: 0;
}
#flow .box .inner-box ol li:nth-of-type(7)::after {
  display: none;
}
@media screen and (max-width: 769px) {
  #flow .box .inner-box ol li:nth-of-type(odd) {
    margin: -15% 7% 0 2%;
  }
  #flow .box .inner-box ol li:nth-of-type(odd)::after {
    display: none;
  }
}
@media screen and (max-width: 769px) {
  #flow .box .inner-box ol li:nth-of-type(even) {
    margin: 10% 0 0;
  }
  #flow .box .inner-box ol li:nth-of-type(even)::after {
    display: none;
  }
}
#flow .box .inner-box .modal-wrap .modal-content .textarea {
  width: 80%;
  padding: 0;
}
@media screen and (max-width: 769px) {
  #flow .box .inner-box .modal-wrap .modal-content .textarea .modal-title-box {
    text-align: center;
  }
}
#flow .box .inner-box .modal-wrap .modal-content .textarea .modal-title-box h3 {
  display: inline-block;
  padding: 10px 20px;
  border: 1.5px solid #000;
  border-radius: 10px;
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 1em;
}
#flow .box .inner-box .modal-wrap .modal-content .textarea .modal-title-box h3 span {
  font-family: "urw-din", sans-serif !important;
  font-size: 20px;
  border-right: 1.5px solid #000;
  padding-right: 1em;
  margin-right: 1em;
}
#flow .box .inner-box .modal-wrap .modal-content .textarea .modal-title-box p {
  text-align: left;
}
#flow .box .inner-box .note p {
  font-weight: bold;
  text-align: center;
}

/*--------------------price----------------------*/
#price {
  position: relative;
}
#price .acc-left {
  position: absolute;
  top: 10%;
  left: 0;
  width: 6vw;
}
@media screen and (max-width: 769px) {
  #price .acc-left {
    width: 15vw;
  }
}
#price .acc-right {
  position: absolute;
  bottom: 10%;
  right: 0;
  width: 6vw;
}
@media screen and (max-width: 769px) {
  #price .acc-right {
    width: 10vw;
  }
}
#price .box .title-box h2 {
  text-align: center;
}
#price .box .title-box h2 span {
  display: block;
}
#price .box .inner-box {
  width: 80%;
  margin: 0 auto;
  padding: 50px;
  border: 2px solid #000;
  border-radius: 10px;
  padding-bottom: 160px;
  position: relative;
}
@media screen and (max-width: 769px) {
  #price .box .inner-box {
    width: 100%;
    padding: 20px;
  }
}
#price .box .inner-box:after {
  content: "";
  position: absolute;
  background: url("../img/chara3.png") no-repeat;
  background-size: 100%;
  width: 150px;
  height: 180px;
  z-index: 1;
  left: 50px;
  bottom: 0;
}
@media screen and (max-width: 769px) {
  #price .box .inner-box:after {
    display: none;
  }
}
#price .box .inner-box table {
  min-width: 300px;
  margin-bottom: 50px;
}
@media screen and (max-width: 769px) {
  #price .box .inner-box table {
    min-width: none;
  }
}
#price .box .inner-box table tr {
  border-bottom: 2px solid #f8f8f8;
}
#price .box .inner-box table tr th {
  padding: 10px;
}
@media screen and (max-width: 769px) {
  #price .box .inner-box table tr th {
    padding-right: 1em;
    width: 8em;
  }
}
#price .box .inner-box table tr td {
  text-align: right;
}
#price .box .inner-box table tr.red01 {
  border-bottom: none;
}
#price .box .inner-box table tr.red01 th {
  padding-bottom: 0;
}
#price .box .inner-box table tr.red02 td {
  color: #c00;
  font-size: 12px;
  font-weight: bold;
}
#price .box .inner-box p.note {
  text-align: center;
  font-size: 14px;
}

/*--------------------access----------------------*/
#access {
  background-color: #ecf0ec;
}
#access .box .inner-box {
  align-items: center;
}
#access .box .inner-box .text .title-box h2 {
  line-height: 1;
}
#access .box .inner-box .text h3 {
  font-size: 1.2em;
  font-weight: bold;
  margin-bottom: 1em;
}
@media screen and (max-width: 769px) {
  #access .box .inner-box .text h3 {
    letter-spacing: 0;
  }
}
@media screen and (max-width: 769px) {
  #access .box .inner-box .text p {
    font-size: 14px;
  }
}
@media screen and (max-width: 769px) {
  #access .box .inner-box .img {
    margin-top: 1em;
  }
}
#access .box .inner-box .img iframe {
  width: 100%;
  aspect-ratio: 4/3;
}

/*--------------------faq----------------------*/
#faq {
  padding-bottom: 17vw;
}
#faq .acc-left {
  position: absolute;
  top: 10%;
  left: 0;
  width: 10vw;
}
#faq .acc-right {
  position: absolute;
  bottom: 0%;
  right: 0;
  width: 10vw;
}
#faq .box .title-box h2 {
  text-align: center;
}
#faq .box .title-box h2 span {
  display: block;
}
#faq .box .inner-box ul li {
  position: relative;
  margin-bottom: 25px;
  border-bottom: 1px solid #000;
  padding-bottom: 15px;
}
#faq .box .inner-box ul li dl dt {
  font-weight: bold;
  font-size: 20px;
  margin-bottom: 15px;
  cursor: pointer;
  position: relative;
}
@media screen and (max-width: 769px) {
  #faq .box .inner-box ul li dl dt {
    font-size: 14px;
    font-weight: normal;
    text-indent: -1.8em;
    padding-left: 1.8em;
    padding-right: 20px;
  }
}
#faq .box .inner-box ul li dl dt:after {
  content: "";
  position: absolute;
  right: 0;
  top: 8px;
  background-image: url(../img/plus.svg);
  background-repeat: no-repeat;
  background-size: cover;
  width: 20px;
  aspect-ratio: 1/1;
  transition: 0.2s;
}
@media screen and (max-width: 769px) {
  #faq .box .inner-box ul li dl dt:after {
    width: 15px;
  }
}
#faq .box .inner-box ul li dl dt.on:after {
  background-image: url(../img/minus.svg);
  top: 16px;
  aspect-ratio: 31/4;
}
#faq .box .inner-box ul li dl dd {
  padding: 20px 0;
  display: none;
}
@media screen and (max-width: 769px) {
  #faq .box .inner-box ul li dl dd {
    font-size: 14px;
  }
}

/*--------------------about----------------------*/
#about {
  background-image: url(../img/fe-bg.svg);
  background-repeat: no-repeat;
  background-size: cover;
}
#about .box .title-box h2 {
  text-align: center;
}
#about .box .title-box h2 span {
  display: block;
}
#about .box .inner-box dl {
  display: flex;
  align-items: center;
  width: 35em;
  margin: 0 auto;
  border-bottom: 1px solid #ddd;
}
@media screen and (max-width: 769px) {
  #about .box .inner-box dl {
    width: auto;
  }
}
#about .box .inner-box dl dt {
  width: 10em;
  text-align: left;
  font-weight: bold;
  padding: 10px;
}
@media screen and (max-width: 769px) {
  #about .box .inner-box dl dt {
    font-size: 14px;
  }
}
#about .box .inner-box dl dd {
  padding: 10px;
  text-align: left;
}
@media screen and (max-width: 769px) {
  #about .box .inner-box dl dd {
    font-size: 13px;
    width: calc(100% - 10em);
  }
}
#about .box .inner-box p {
  margin: 30px auto 0;
  max-width: 800px;
  font-size: 14px;
}

/*--------------------footer----------------------*/
footer {
  font-size: 14px;
}
footer .footer-top {
  background-image: url(../img/contact-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom;
  text-align: center;
  padding: 80px 0;
}
footer .footer-top h3 {
  color: #fff;
  font-size: 20px;
  margin-bottom: 3em;
}
@media screen and (max-width: 769px) {
  footer .footer-top h3 {
    font-size: 16px;
  }
}
footer .footer-top button {
  border: none;
}
footer .footer-top button a {
  background-color: #fff;
  padding: 20px 80px;
  position: relative;
  border: 2px solid #fff;
  border-radius: 5px;
  color: #2c3d41;
  font-size: 20px;
  font-weight: bold;
  transition: 0.2s;
}
@media screen and (max-width: 769px) {
  footer .footer-top button a {
    font-size: 16px;
    padding: 15px 50px;
  }
}
footer .footer-top button a::before {
  content: "";
  position: absolute;
  left: 30px;
  top: 50%;
  transform: translateY(-50%);
  width: 25px;
  aspect-ratio: 41/30;
  z-index: 1;
  background-image: url(../img/mail-icon.svg);
  background-repeat: no-repeat;
  background-size: cover;
  transition: 0.2s;
}
@media screen and (max-width: 769px) {
  footer .footer-top button a::before {
    left: 15px;
    width: 20px;
  }
}
footer .footer-top button a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 30px;
  transform: translateY(-50%);
  width: 7px;
  height: auto;
  aspect-ratio: 91/150;
  background-image: url(../img/arrow02.svg);
  background-size: cover;
  background-repeat: no-repeat;
  transition: 0.2s;
}
@media screen and (max-width: 769px) {
  footer .footer-top button a::after {
    right: 25px;
  }
}
footer .footer-top button a small {
  font-weight: normal;
  color: #2c3d41;
  transition: 0.2s;
}
footer .footer-top button a:hover {
  border: 2px solid #fff;
  background-color: #2c3d41;
  color: #fff;
}
footer .footer-top button a:hover::before {
  background-image: url(../img/mail-icon-wh.svg);
}
footer .footer-top button a:hover::after {
  background-image: url(../img/arrow02-wh.svg);
}
footer .footer-top button a:hover small {
  color: #fff;
}
footer .footer-middle {
  padding: 50px;
  background-color: #2c3d41;
  color: #fff;
  align-items: center;
}
@media screen and (max-width: 769px) {
  footer .footer-middle {
    padding: 20px;
  }
}
footer .footer-middle .f-m-01 h1 {
  max-width: 300px;
  margin-bottom: 2em;
}
@media screen and (max-width: 769px) {
  footer .footer-middle .f-m-01 h1 {
    margin: 0 auto 2em;
  }
}
footer .footer-middle .f-m-01 p {
  color: #fff;
  font-size: 14px;
}
@media screen and (max-width: 769px) {
  footer .footer-middle .f-m-02 {
    margin-top: 50px;
  }
}
footer .footer-middle .f-m-02 ul li {
  margin-bottom: 1em;
}
footer .footer-middle .f-m-02 ul li a {
  color: #fff;
  padding: 5px 10px;
  padding-left: 30px;
  background-color: #2c3d41;
  border-radius: 5px;
  font-size: 18px;
  font-weight: bold;
  font-family: "urw-din", sans-serif !important;
  transition: 0.2s;
  letter-spacing: normal;
  position: relative;
}
footer .footer-middle .f-m-02 ul li a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
  width: 7px;
  height: auto;
  aspect-ratio: 91/150;
  background-image: url(../img/arrow02-wh.svg);
  background-size: cover;
  background-repeat: no-repeat;
}
footer .footer-middle .f-m-02 ul li a span {
  font-size: 12px;
  font-weight: normal;
  font-family: "Zen Kaku Gothic New", sans-serif !important;
  padding: 0 10px;
  color: #fff;
}
footer .footer-middle .f-m-02 ul li a:hover {
  background-color: #fff;
  color: #2c3d41;
}
footer .footer-middle .f-m-02 ul li a:hover::before {
  background-image: url(../img/arrow02.svg);
}
footer .footer-middle .f-m-02 ul li a:hover span {
  color: #2c3d41;
}
footer .footer-bottom {
  text-align: center;
  padding: 10px 0;
}
footer .footer-bottom a img {
  width: auto;
}

/*--------------------underpage----------------------*/
.underpage .bread_list {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  margin: 10px auto;
  overflow: hidden;
  width: 90vw;
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
}
.underpage .bread_list li {
  color: #3e3a39;
  font-size: 14px;
}
.underpage .bread_list li a {
  box-sizing: border-box;
  font-size: 14px;
  padding: 1em 2em 1em 0;
  position: relative;
}
.underpage .bread_list li a::before {
  color: #3e3a39;
  content: ">";
  display: block;
  font-size: 12px;
  font-weight: normal;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%) scale(0.8, 1);
  right: 0.5em;
  line-height: 1;
}
.underpage #under-mv {
  padding-top: 75px;
}
@media screen and (max-width: 769px) {
  .underpage #under-mv {
    padding-top: 80px;
    padding-bottom: 30px;
  }
}
.underpage #under-mv .box {
  width: 100%;
  max-width: none;
  background-image: url(../img/mv-sp01.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding: 100px 0;
}
@media screen and (max-width: 769px) {
  .underpage #under-mv .box {
    padding: 0;
  }
}
.underpage #under-mv .box h1 {
  font-size: 4vw;
  font-weight: bold;
  color: #2c3d41;
  letter-spacing: 0.1em;
  text-align: center;
}
@media screen and (max-width: 769px) {
  .underpage #under-mv .box h1 {
    font-size: 7vw;
    letter-spacing: 0;
  }
}

/*--------------------page-contact----------------------*/
#page-contact .bread_list {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  margin: 10px auto;
  overflow: hidden;
}
#page-contact .bread_list li {
  color: #3e3a39;
  font-size: 14px;
}
#page-contact .bread_list li a {
  box-sizing: border-box;
  font-size: 14px;
  padding: 1em 2em 1em 0;
  position: relative;
}
#page-contact .bread_list li a::before {
  color: #3e3a39;
  content: ">";
  display: block;
  font-size: 12px;
  font-weight: normal;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%) scale(0.8, 1);
  right: 0.5em;
  line-height: 1;
}
#page-contact #contact-box {
  padding-top: 0;
}
#page-contact #contact-box .contact_wrap {
  box-sizing: border-box;
  max-width: 1024px;
  margin: 0 auto;
  padding: 5vh 0 15vh;
}
#page-contact #contact-box .contact_wrap .contact_flow ul {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 5vh;
}
#page-contact #contact-box .contact_wrap .contact_flow ul li {
  box-sizing: border-box;
  color: #3e3a39;
  font-size: 14px;
  font-weight: normal;
  letter-spacing: 0.1em;
  text-align: center;
  margin: 0 20px;
}
#page-contact #contact-box .contact_wrap .contact_flow ul li span {
  color: #2c3d41;
  font-size: 16px;
  font-weight: normal;
  line-height: 60px;
  box-sizing: border-box;
  display: block;
  border: 1px solid #2c3d41;
  border-radius: 100%;
  width: 60px;
  height: 60px;
  text-align: center;
  margin-bottom: 5px;
  position: relative;
}
#page-contact #contact-box .contact_wrap .contact_flow ul li.active span {
  background: #2c3d41;
  color: #FFF;
}
#page-contact #contact-box .contact_wrap form .contact_table {
  max-width: 580px;
  margin: 0 auto 5vh;
  width: 100%;
}
#page-contact #contact-box .contact_wrap form .contact_table label {
  position: relative;
  cursor: pointer;
  padding-left: 30px;
}
#page-contact #contact-box .contact_wrap form .contact_table label::before, #page-contact #contact-box .contact_wrap form .contact_table label::after {
  content: "";
  display: block;
  border-radius: 50%;
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
}
#page-contact #contact-box .contact_wrap form .contact_table label::before {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  left: 5px;
}
#page-contact #contact-box .contact_wrap form .contact_table label::after {
  background: #2c3d41;
  border-radius: 50%;
  opacity: 0;
  width: 12px;
  height: 12px;
  left: 0;
  transform: translate(75%, -50%);
}
#page-contact #contact-box .contact_wrap form .contact_table input[type=radio]:checked + label::after {
  opacity: 1;
}
#page-contact #contact-box .contact_wrap form .contact_table input[type=text],
#page-contact #contact-box .contact_wrap form .contact_table input[type=date],
#page-contact #contact-box .contact_wrap form .contact_table textarea {
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  box-sizing: border-box;
  padding: 4px 8px;
  line-height: 1.5;
  width: 100%;
}
#page-contact #contact-box .contact_wrap form .contact_table .req, #page-contact #contact-box .contact_wrap form .contact_table .must_contact {
  font-size: 0.8rem;
  color: #c62b25;
  letter-spacing: normal;
}
#page-contact #contact-box .contact_wrap form .contact_table tr th, #page-contact #contact-box .contact_wrap form .contact_table tr td {
  box-sizing: border-box;
  padding: 15px 0;
  font-size: 16px;
}
@media screen and (max-width: 769px) {
  #page-contact #contact-box .contact_wrap form .contact_table tr th, #page-contact #contact-box .contact_wrap form .contact_table tr td {
    display: block;
    width: 90%;
    margin: 0 auto;
    padding: 5px 0;
  }
}
#page-contact #contact-box .contact_wrap form .contact_table tr th {
  padding-right: 40px;
  font-weight: bold;
  width: 45%;
}
@media screen and (max-width: 769px) {
  #page-contact #contact-box .contact_wrap form .contact_table tr th {
    width: 90%;
  }
}
#page-contact #contact-box .contact_wrap form .contact_table tr td {
  width: 55%;
}
@media screen and (max-width: 769px) {
  #page-contact #contact-box .contact_wrap form .contact_table tr td {
    width: 90%;
  }
}
#page-contact #contact-box .contact_wrap form .contact_table tr td .radiobtn-wrap input[type=radio] {
  display: none;
}
#page-contact #contact-box .contact_wrap form .contact_table tr td .radiobtn-wrap label {
  padding-right: 60px;
  margin-bottom: 20px;
}
#page-contact #contact-box .contact_wrap form .check {
  text-align: center;
  margin-bottom: 20px;
}
#page-contact #contact-box .contact_wrap form .check input[type=checkbox] {
  display: none;
}
#page-contact #contact-box .contact_wrap form .check input[type=checkbox]:checked + label::after {
  content: "";
  position: absolute;
  display: block;
  box-sizing: border-box;
  width: 15px;
  height: 9px;
  top: 50%;
  left: 3px;
  transform: rotate(-45deg);
  border-bottom: 2px solid;
  border-left: 2px solid;
  border-color: #2c3d41;
  margin-top: -7px;
}
#page-contact #contact-box .contact_wrap form .check label {
  display: inline-block;
  position: relative;
  cursor: pointer;
  padding-left: 30px;
}
#page-contact #contact-box .contact_wrap form .check label::before {
  content: "";
  position: absolute;
  display: block;
  box-sizing: border-box;
  width: 16px;
  height: 16px;
  left: 0px;
  top: 50%;
  border: 1px solid;
  border-color: rgba(0, 0, 0, 0.2);
  background: #FFF;
  margin-top: -7px;
}
#page-contact #contact-box .contact_wrap form .check label a {
  text-decoration: underline;
}
#page-contact #contact-box .contact_wrap form .submit_btn {
  text-align: center;
}
#page-contact #contact-box .contact_wrap form .submit_btn #submit_button,
#page-contact #contact-box .contact_wrap form .submit_btn .gradation {
  cursor: pointer;
  border: none;
  background: #2c3d41;
  box-sizing: border-box;
  border-radius: 40px;
  display: block;
  height: 65px;
  max-width: 240px;
  margin: 0 auto;
  width: 100%;
  text-align: center;
  color: #FFF;
  font-weight: bold;
}
#page-contact #contact-box .contact_wrap .thanks h3 {
  font-size: 20px;
  font-weight: bold;
  text-align: center;
}
#page-contact #contact-box .contact_wrap .thanks p {
  margin: 30px 0;
}

/*--------------------page-contact----------------------*/
#page-tokushoho .box .inner-box ul li {
  margin-bottom: 30px;
}
#page-tokushoho .box .inner-box ul li h2 {
  font-size: 20px;
  font-weight: bold;
}
@media screen and (max-width: 769px) {
  #page-tokushoho .box .inner-box ul li h2 {
    font-size: 18px;
  }
}
#page-tokushoho .box .inner-box ul li p {
  font-size: 14px;
}
#page-tokushoho .box .inner-box ul li dl {
  display: flex;
  flex-wrap: wrap;
}
#page-tokushoho .box .inner-box ul li dl dt {
  width: 8em;
  font-size: 14px;
  font-weight: bold;
}
#page-tokushoho .box .inner-box ul li dl dd {
  font-size: 14px;
}/*# sourceMappingURL=layout.css.map */