@charset "UTF-8";
/* アニメーションベンダープレフィックス込み指定 */
/* アニメーションベンダープレフィックス込み指定 */
/********************/
html {
  scroll-behavior: smooth;
}

body {
  color: #202121;
  font-family: "IBM Plex Sans JP", "YakuHanJP", Lato, "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 1.6rem;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  font-weight: 500;
  position: relative;
}

a {
  color: #131414;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

#wrapper {
  position: relative;
}
@media screen and (max-width: 1100px) {
  #wrapper {
    overflow: hidden;
  }
}

#l-main {
  position: relative;
  z-index: 1;
}

@keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
em {
  font-style: normal;
}

.number {
  font-family: "Afacad", sans-serif;
  font-weight: 500;
}

img {
  max-width: 100%;
  height: auto;
}

.bold {
  font-weight: 600;
}

h2,
h3,
h4 {
  line-height: 1.4;
  font-weight: 600;
  font-feature-settings: "palt";
}

.kerning {
  font-feature-settings: "palt";
}

.mincho {
  font-family: "Shippori Mincho", "YakuHanMP", "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
  font-weight: 400;
  font-weight: 500 !important;
}

.mini {
  font-size: 80%;
}

.eng {
  font-family: "Afacad", sans-serif;
  font-weight: 400;
  text-transform: uppercase;
}

.bigger {
  font-size: 1.15em;
  line-height: 1.4;
}
@media screen and (max-width: 639px) {
  .bigger {
    font-size: 1.25rem;
  }
}

.smaller {
  font-size: 13px;
  letter-spacing: 0;
}

.en-big {
  font-family: "Afacad", sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  text-transform: uppercase;
}

@media screen and (min-width: 639px) {
  .sp {
    display: none;
  }
}
@media screen and (max-width: 639px) {
  .pc {
    display: none;
  }
}

.scroll-bar {
  max-height: 450px;
  overflow-y: scroll;
}

/* animation
----------------------------------*/
@keyframes view-zoomin {
  0% {
    opacity: 0;
    transform: scale(0.95);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes view-slideup {
  0% {
    opacity: 0;
    transform: translate(0, 35px);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}
@keyframes view-blurin {
  0% {
    opacity: 0;
    transform: translate(0, 35px);
    filter: blur(10px);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
    filter: blur(0);
  }
}
@keyframes view-borderin {
  0% {
    transform-origin: center;
    transform: scaleX(0);
  }
  100% {
    opacity: 1;
    transform: scaleX(1);
  }
}
.slideup.on {
  opacity: 1;
  animation: view-slideup 0.65s cubic-bezier(0.2, 1, 0.2, 1);
}

.zoomin.on {
  opacity: 1;
  animation: view-zoomin 0.65s cubic-bezier(0.2, 1, 0.2, 1);
}

.blur-in.on {
  opacity: 1;
  animation: view-blurin 1s cubic-bezier(0.2, 1, 0.2, 1);
}

.border-in.on {
  opacity: 1;
  animation: view-borderin 1s cubic-bezier(0.2, 1, 0.2, 1);
}

.loader {
  align-items: center;
  background: #fdfdfd;
  bottom: 0;
  display: flex;
  justify-content: center;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 9999;
}
.loader::after {
  animation: loader 0.5s linear infinite;
  border: 1px solid #202121;
  border-radius: 50%;
  border-right: 1px solid rgba(32, 33, 33, 0.2);
  border-top: 1px solid rgba(32, 33, 33, 0.2);
  content: "";
  height: 70px;
  width: 70px;
}
.loader.off {
  display: none;
}

@keyframes loader {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* header
----------------------------------*/
@keyframes hd-scrolled {
  0% {
    opacity: 0;
    transform: translate(0, -100%);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}
.gradient {
  background: linear-gradient(45deg, #ccc, #86cbdd, #eee);
  background-size: 600% 600%;
  animation: anim-gradient 10s ease infinite;
}

@keyframes anim-gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
#l-header {
  width: 100%;
  overflow: hidden;
  transition: all 0.2s ease-in;
  position: relative;
  z-index: 200;
  border-bottom: 1px solid #202121;
}
#l-header.is-fixed {
  position: fixed;
  background: rgba(230, 230, 250, 0.8);
  /* background: rgba(167, 218, 231, 0.7); */
  top: 0;
  border-bottom: none;
}
#l-header.is-fixed .inner {
  padding: 10px;
}
#l-header.is-fixed .inner #logo {
  width: 160px;
}
#l-header.is-fixed .inner #logo .logo1 {
  display: none;
}
#l-header.is-fixed .inner #logo .logo2 {
  display: block;
}
#l-header.is-fixed .inner #logo img {
  filter: none;
}
#l-header.is-fixed #header_nav ul li a {
  color: #202121;
}
#l-header .inner {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 95%;
  padding: 2em 0;
}
#l-header .inner #logo {
  width: 200px;
}
#l-header .inner #logo .logo2 {
  display: none;
}
#l-header .inner #logo img {
  width: 100%;
}
@media screen and (max-width: 1025px) {
  #l-header .inner #logo {
    width: 140px;
  }
}

.subpage-wrapper #header_nav ul li a {
  color: #202121;
}
.subpage-wrapper #l-header .inner #logo img {
  filter: none;
}

.head-right {
  position: relative;
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 40px;
}
@media screen and (max-width: 1025px) {
  .head-right {
    gap: 20px;
  }
}

#header_nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  text-align: center;
}
#header_nav ul li.btn_contact {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding: 0 20px 0 16px;
  margin-right: -1px;
  background: #bc0926;
}
#header_nav ul li.btn_contact a {
  color: #202121;
  font-family: "Afacad", sans-serif;
}
#header_nav ul li.btn_contact a span {
  display: block;
}
#header_nav ul li.btn_contact a i {
  display: inline-block;
  margin-right: 8px;
}
#header_nav ul li.btn_contact a:after {
  display: none;
}
#header_nav ul li.footer-only {
  display: none;
}
#header_nav ul li a,
#header_nav ul li .drop-parent-inner {
  position: relative;
  font-weight: 600;
  color: #202121;
  cursor: pointer;
  text-align: center;
}
#header_nav ul li a .eng,
#header_nav ul li .drop-parent-inner .eng {
  display: block;
  position: relative;
  font-size: 1.8rem;
  line-height: 1.3;
  font-family: "Afacad", sans-serif;
  font-weight: 900;
  text-transform: uppercase;
}
#header_nav ul li a .ja,
#header_nav ul li .drop-parent-inner .ja {
  font-size: 1.4rem;
  font-weight: normal;
}
#header_nav ul li a:hover,
#header_nav ul li .drop-parent-inner:hover {
  opacity: 0.6;
}
@media screen and (max-width: 1025px) {
  #header_nav ul {
    gap: 20px;
  }
}
#header_nav .dropdown {
  display: none;
  position: absolute;
  width: 820px;
  height: 0;
  right: -10px;
  top: 60px;
  z-index: -10;
  padding-top: 15px;
}
#header_nav .dropdown .drop-inner {
  position: relative;
  display: flex;
  transform: scale(1.1);
  opacity: 0;
  visibility: invisible;
  padding: 10px 24px 30px;
  transition: 0.3s all cubic-bezier(0.18, 0.06, 0.23, 1);
}
#header_nav .dropdown .drop-inner:before, #header_nav .dropdown .drop-inner:after {
  position: absolute;
  content: "";
  left: 0;
  top: -10px;
  height: calc(100% + 10px);
}
#header_nav .dropdown .drop-inner:before {
  width: 100%;
  background: #fdfdfd;
  box-shadow: 0 4px 10px rgba(134, 203, 221, 0.1) inset;
}
#header_nav .dropdown .drop-inner:after {
  width: 40%;
  background-image: linear-gradient(to right bottom, rgba(117, 190, 184, 0.5), rgba(117, 190, 184, 0.1));
  -webkit-clip-path: polygon(0 0, 50% 0%, 100% 100%, 0% 100%);
          clip-path: polygon(0 0, 50% 0%, 100% 100%, 0% 100%);
}
#header_nav .dropdown .drop-inner .drop-title {
  position: relative;
  padding-top: 15px;
  font-weight: 600;
  font-size: 1.1em;
  line-height: 1.4;
  color: #78d5d9;
  z-index: 2;
}
#header_nav .dropdown .drop-inner .drop-title:before {
  content: attr(data-title);
  font-family: "Afacad", sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  display: block;
  color: #202121;
  font-size: 1.3rem;
}
#header_nav .dropdown.is-open {
  display: block;
  z-index: 199;
  height: auto;
}
#header_nav .dropdown.is-open .drop-inner {
  visibility: visible;
  opacity: 1;
  transform: scale(1);
}
#header_nav .dropdown .dropdown-ul {
  position: relative;
  justify-content: inherit;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 10px 10px;
  z-index: 2;
  width: 600px;
  margin: 0;
  margin-left: auto;
}
#header_nav .dropdown .dropdown-li {
  border-right: 0;
}
#header_nav .dropdown .dropdown-li a {
  display: block;
  width: 100%;
  padding: 15px;
  border-bottom: 1px solid rgba(134, 203, 221, 0.4);
  color: #78d5d9;
  font-size: 1.4rem;
  letter-spacing: 0;
  transition: 0.3s all cubic-bezier(0.18, 0.06, 0.23, 1);
}
#header_nav .dropdown .dropdown-li a .drop-lead {
  position: relative;
  padding-left: 20px;
}
#header_nav .dropdown .dropdown-li a .drop-lead:before {
  position: absolute;
  content: "";
  left: 0;
  top: 50%;
  width: 10px;
  height: 10px;
  /* background: #a7dae7; */
  background: #CBCBEA;
  border-radius: 50%;
  margin-top: -5px;
}
#header_nav .dropdown .dropdown-li a:before {
  position: absolute;
  content: "";
  left: 50%;
  bottom: -10px;
  width: 80%;
  height: 70%;
  background: #75beb8;
  border-radius: 50%;
  filter: blur(26px);
  transform: translateX(-50%);
  z-index: -1;
  opacity: 0;
  transition: 0.3s all cubic-bezier(0.18, 0.06, 0.23, 1);
}
#header_nav .dropdown .dropdown-li a:hover {
  border-radius: 20px 0 20px 0;
  background: #fefefe;
}
#header_nav .dropdown .dropdown-li a:hover:before {
  opacity: 0.6;
}
#header_nav .dropdown .dropdown-li a:after {
  display: none;
}

#head-right_sns p a {
  background: rgba(255, 255, 255, 0.8);
  color: #202121;
  padding: 7px 20px;
  border-radius: 20px;
}
#head-right_sns p a i {
  margin-right: 5px;
}
#head-right_sns p a:hover {
  opacity: 0.6;
}
@media screen and (max-width: 1025px) {
  #head-right_sns p a {
    padding: 0;
    border-radius: 50%;
    width: 3.5em;
    display: block;
    height: 3.5em;
    line-height: 3.5em;
    text-align: center;
  }
  #head-right_sns p a span {
    display: none;
  }
  #head-right_sns p a i {
    margin-right: 0;
  }
}
@media screen and (max-width: 765px) {
  #head-right_sns {
    display: none;
  }
}

/* page-top
----------------------------------*/
#page-top {
  position: fixed;
  bottom: 15px;
  right: 15px;
  z-index: 250;
  mix-blend-mode: multiply;
}
#page-top a {
  display: block;
  width: 40px;
  text-align: center;
  color: #202121;
}
#page-top a:hover {
  opacity: 0.6;
}
@media screen and (max-width: 639px) {
  #page-top {
    bottom: 30px;
  }
  #page-top a {
    width: 30px;
  }
}

/* swiper
----------------------------------*/
@keyframes zoom-in {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.12);
  }
}
#slide-wrap {
  position: relative;
}

.swiper {
  overflow: visible !important;
}

#slideshow {
  position: relative;
  margin-inline: auto;
  overflow: hidden;
  width: 100%;
  margin: 0 auto;
  padding-top: 100px;
  padding-bottom: 120px;
}
#slideshow .swiper-slide {
  position: relative;
}
#slideshow .swiper-slide:nth-child(2n) {
  transform: translateY(40px);
}
#slideshow .swiper-slide:before {
  position: absolute;
  width: 100%;
  height: 100%;
  content: "";
  right: 0;
  top: 0;
  background-position: 50%;
  background-size: cover;
  z-index: -1;
}
#slideshow .swiper-slide.slide1:before {
  background: url(../img/1.jpg);
}
#slideshow .swiper-slide.slide2:before {
  background: url(../img/2.jpg);
}
#slideshow .swiper-slide.slide3:before {
  background: url(../img/3.jpg);
}
#slideshow .slide-img {
  overflow: hidden;
  position: relative;
  height: 300px;
  border-radius: 1.5rem;
}
#slideshow .slide-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#slideshow .slide-img::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: #202121;
  z-index: 1;
  opacity: 0.2;
}
#slideshow .slide-img img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 765px) {
  #slideshow {
    padding-top: 50px;
  }
}
@media screen and (max-width: 639px) {
  #slideshow {
    padding-bottom: 60px;
  }
  #slideshow .slide-img {
    height: 180px;
    border-radius: 0.5em;
  }
  #slideshow .swiper-slide:nth-child(2n) {
    transform: translateY(20px);
  }
}

.swiper-wrapper {
  transition-timing-function: linear;
}

#catch {
  z-index: 50;
  z-index: 10;
  opacity: 0;
  padding-left: 5vw;
}
#catch span {
  display: block;
  font-weight: normal;
}
#catch .ja {
  font-size: 4rem;
}
#catch .eng {
  font-size: 3rem;
  font-family: "Afacad", sans-serif;
  font-weight: 400;
  text-transform: uppercase;
}
#catch.on {
  transition: 1.4s ease-in opacity;
  opacity: 1;
}
@media screen and (max-width: 1025px) {
  #catch {
    left: 5%;
  }
  #catch .ja {
    font-size: 3rem;
  }
  #catch .eng {
    font-size: 2rem;
  }
}
@media screen and (max-width: 639px) {
  #catch .ja {
    font-size: 1.6rem;
  }
  #catch .eng {
    font-size: 1rem;
  }
}

#scrolldown {
  position: absolute;
  right: 15px;
  bottom: 60px;
  color: #fefefe;
  font-family: "Afacad", sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-feature-settings: "pkna";
  font-size: 1.4rem;
  z-index: 100;
  height: 210px;
}
#scrolldown:before, #scrolldown:after {
  position: absolute;
  content: "";
  z-index: 2;
  left: 50%;
}
#scrolldown:before {
  width: 1px;
  height: 100px;
  bottom: 0;
  background: #f0f0f0;
  transform: translateX(-50%);
}
#scrolldown:after {
  width: 8px;
  height: 8px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 100%;
  top: 100px;
  margin-left: -4px;
  animation: scroll-point 2.3s ease-out infinite;
  animation-fill-mode: both;
}
@media screen and (max-width: 1025px) {
  #scrolldown {
    display: none;
  }
}

@keyframes scroll-point {
  0% {
    bottom: 0;
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  50% {
    top: 180px;
    opacity: 1;
  }
  80% {
    opacity: 0;
  }
  100% {
    top: 210px;
    opacity: 0;
  }
}
/* contact_bnr
----------------------------------*/
.contact-txt {
  text-align: center;
  margin-top: 10px;
}

.contact_bnr {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  max-width: 800px;
  margin: 24px auto;
}
@media screen and (max-width: 1100px) {
  .contact_bnr {
    max-width: 85%;
  }
}
.contact_bnr > li {
  display: flex;
  align-items: center;
  flex-direction: column;
}
@media screen and (max-width: 639px) {
  .contact_bnr > li {
    width: 100%;
  }
}
.contact_bnr > li .bnr_txt p {
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
.contact_bnr > li .bnr_tel {
  position: relative;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  border-radius: 50px;
}
.contact_bnr > li .bnr_tel .txt {
  padding: 5px 0;
  white-space: nowrap;
  color: #202121;
  font-size: 3.2rem;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1;
  font-family: "Afacad", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
}
.contact_bnr > li .bnr_tel .txt:before {
  font-family: "Font Awesome 5 Free";
  content: "\f879";
  font-weight: 900;
  margin-right: 5px;
  font-size: 0.8em;
}
@media screen and (max-width: 639px) {
  .contact_bnr > li .bnr_tel .txt {
    font-size: 2.2rem;
  }
}
.contact_bnr > li .bnr_tel:hover {
  background: #64cfd3;
}
.contact_bnr > li .bnr_tel:hover .txt {
  color: #fefefe;
}
@media screen and (max-width: 639px) {
  .contact_bnr > li .bnr_tel {
    font-size: 1.8rem;
  }
}
.contact_bnr > li .bnr_mobile:before {
  font-family: "Font Awesome 5 Free";
  content: "\f3cd";
  font-weight: 900;
}
.contact_bnr > li .bnr_fax {
  background: #fdfdfd;
  color: #202121;
}
.contact_bnr > li .bnr_fax:before {
  font-family: "Font Awesome 5 Free";
  content: "\f1ac";
  font-weight: 900;
}
.contact_bnr > li .bnr_mail {
  background: #bca259;
  color: #111;
  font-size: 2rem;
  font-family: "Shippori Mincho", "YakuHanMP", "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
  font-weight: 600;
}
.contact_bnr > li .bnr_mail:before {
  font-family: "Font Awesome 5 Free";
  content: "\f0e0";
  font-weight: 900;
}
@media screen and (max-width: 639px) {
  .contact_bnr > li .bnr_mail {
    font-size: 1.3rem;
    padding: 10px;
    width: 100%;
  }
}
.contact_bnr > li .bnr_mail:hover {
  background: #a88e44;
}
.contact_bnr > li a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
  padding: 8px 16px;
  font-weight: 600;
  text-align: center;
}
.contact_bnr > li a .arrow {
  display: block;
  position: absolute;
  right: -8px;
  bottom: 4px;
  width: 30px;
  height: 2px;
  background: #ffd803;
  z-index: 2;
  transition: 0.5s all cubic-bezier(0.55, 0.05, 0.22, 0.99);
}
.contact_bnr > li a .arrow:before {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  transform-origin: right bottom;
  width: 14px;
  height: 2px;
  background-color: #ffd803;
  transform: rotate(45deg);
}
@media screen and (max-width: 639px) {
  .contact_bnr > li a .arrow {
    width: 20px;
  }
  .contact_bnr > li a .arrow:before {
    width: 14px;
  }
}
.contact_bnr > li a:hover .arrow {
  transform: translateX(5px);
}
@media screen and (max-width: 639px) {
  .contact_bnr > li a {
    margin: 0 auto;
    white-space: nowrap;
    padding: 5px;
    width: 100%;
  }
}

/* footer
----------------------------------*/
.footer_contact {
  position: relative;
}

.flogo {
  position: relative;
  display: block;
  max-width: 220px;
  margin: 0 auto;
}
.flogo img {
  width: 100%;
}
@media screen and (max-width: 1100px) {
  .flogo {
    max-width: 200px;
  }
}
@media screen and (max-width: 639px) {
  .flogo {
    max-width: 140px;
  }
}

.footer_contact_lead {
  font-size: 2.4rem;
  font-weight: 600;
}
@media screen and (max-width: 639px) {
  .footer_contact_lead {
    font-size: 1.8rem;
  }
}

.footer_contact_btn {
  margin-top: 30px;
}
.footer_contact_btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 0 50px;
}
.footer_contact_btn a .img {
  display: block;
  width: 50px;
  height: 50px;
  background: #fff;
  mask: url(../img/envelope.svg) no-repeat center/contain;
  -webkit-mask: url(../img/envelope.svg) no-repeat center/contain;
}
.footer_contact_btn a .txt {
  margin: 0 50px;
  font-weight: 700;
  font-size: 2.2rem;
  transition: 0.3s all cubic-bezier(0.18, 0.06, 0.23, 1);
}
.footer_contact_btn a .arrow {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  line-height: 50px;
  font-size: 2rem;
  text-align: center;
  color: #fff;
  animation: pulse 2s linear infinite;
  transition: 0.3s all cubic-bezier(0.18, 0.06, 0.23, 1);
}
.footer_contact_btn a:hover {
  background: rgba(0, 0, 0, 0.2);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  border-radius: 100px;
}
.footer_contact_btn a:hover .txt {
  color: #ffd803;
}
.footer_contact_btn a:hover .arrow {
  background: rgba(0, 0, 0, 0.8);
}
@media screen and (max-width: 639px) {
  .footer_contact_btn {
    margin-top: 100px;
  }
  .footer_contact_btn a {
    padding: 40px 0;
    background: rgba(0, 0, 0, 0.2);
    -webkit-backdrop-filter: blur(8px);
            backdrop-filter: blur(8px);
  }
  .footer_contact_btn a .img {
    width: 34px;
    height: 34px;
  }
  .footer_contact_btn a .txt {
    margin: 0 30px;
    font-size: 1.4rem;
  }
  .footer_contact_btn a .arrow {
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 1.5rem;
  }
}

#l-footer {
  position: relative;
  z-index: 2;
  font-size: 1.5rem;
  background: rgba(230, 230, 250, 0.5);
  /* background: rgba(167, 218, 231, 0.6); */
}
#l-footer .inner {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  padding: 100px 10px 60px;
  z-index: 3;
  text-align: center;
}
#l-footer .inner.type1 {
  padding: 0 10px 60px;
}
@media screen and (max-width: 1100px) {
  #l-footer {
    overflow: hidden;
  }
  #l-footer .inner {
    width: 100%;
    padding: 80px 10px 70px;
  }
}
@media screen and (max-width: 639px) {
  #l-footer {
    font-size: 1.2rem;
  }
  #l-footer .inner {
    padding: 40px 10px 30px;
  }
}

.footer-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
}
.footer-wrap .footer-left {
  position: relative;
  width: 45%;
}
.footer-wrap .footer-right {
  position: relative;
  width: 50%;
}
@media screen and (max-width: 639px) {
  .footer-wrap {
    flex-direction: column;
  }
  .footer-wrap .footer-left,
  .footer-wrap .footer-right {
    width: 100%;
  }
  .footer-wrap .footer-left {
    text-align: center;
    margin: 0 auto 40px;
  }
  .footer-wrap .footer-right {
    padding: 0 10px;
  }
}

.map-big {
  width: 100%;
  height: 250px;
  overflow: hidden;
  border-radius: 20px;
  margin-top: 30px;
  flex-basis: 100%;
}

.footer-map-title {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  right: -20px;
  top: -40px;
  width: 85px;
  height: 80px;
  background: #CBCBEA;
  /* background: #a7dae7; */
  border-radius: 50%;
  font-family: "Afacad", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 1.8rem;
  color: #fff;
}
@media screen and (max-width: 1100px) {
  .footer-map-title {
    right: 0;
  }
}
@media screen and (max-width: 639px) {
  .footer-map-title {
    width: 65px;
    height: 60px;
    font-size: 1.4rem;
  }
}

/* footer_navi
----------------------------------*/
.footer_navi {
  position: relative;
  z-index: 2;
  margin-bottom: 40px;
}
.footer_navi .globalNav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
.footer_navi .globalNav > li:not(:last-of-type) {
  margin-right: 40px;
}
.footer_navi .globalNav > li a {
  position: relative;
  display: block;
  text-align: center;
  padding-bottom: 4px;
}
.footer_navi .globalNav > li a i {
  display: none;
}
.footer_navi .globalNav > li a span {
  display: block;
  color: #202121;
}
@media screen and (max-width: 639px) {
  .footer_navi .globalNav > li a span.ja {
    font-size: 1.1rem;
  }
}
@media screen and (max-width: 639px) {
  .footer_navi .globalNav > li a {
    font-size: 1.1rem;
    text-align: center;
  }
}
.footer_navi .globalNav > li a:hover {
  color: #ddd;
}
.footer_navi .globalNav > li .dropdown {
  display: none;
}
.footer_navi .globalNav > li .dropdown .dropdown-ul {
  position: relative;
  display: block;
  max-width: 20 0px;
  padding: 8px;
}
.footer_navi .globalNav > li .dropdown .dropdown-ul:before {
  position: absolute;
  content: "";
  left: 8px;
  top: 0;
  width: 1px;
  height: 100%;
  background: #CBCBEA;
  /* background: #a7dae7; */
}
.footer_navi .globalNav > li .dropdown .drop-title {
  display: none;
}
.footer_navi .globalNav > li .dropdown .dropdown-li {
  position: relative;
  margin-bottom: 4px;
}
.footer_navi .globalNav > li .dropdown .dropdown-li:before {
  position: absolute;
  content: "";
  left: 0;
  top: 50%;
  width: 10px;
  height: 1px;
  background: #CBCBEA;
  /* background: #a7dae7; */
}
.footer_navi .globalNav > li .dropdown .dropdown-li figure {
  display: none;
}
.footer_navi .globalNav > li .dropdown .dropdown-li a {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  padding-left: 20px;
  border: none;
  font-size: 13px;
  color: #202121;
  line-height: 1.5;
  letter-spacing: 0;
}
.footer_navi .globalNav > li .footer-only {
  display: block;
}
@media screen and (max-width: 639px) {
  .footer_navi .globalNav li {
    width: 31%;
  }
  .footer_navi .globalNav li:not(:last-of-type) {
    margin-right: 0;
  }
}

.footer-title {
  font-weight: 600;
}
.footer-title span {
  background: #000;
  color: #fff;
  padding: 3px 8px;
}

.address {
  font-weight: 600;
}
@media screen and (max-width: 639px) {
  .address {
    font-size: 13px;
  }
}

.copyright {
  position: relative;
  z-index: 2;
  margin: 0 auto;
  padding: 20px 0;
  letter-spacing: 0.15em;
  font-size: 1.2rem;
}
@media screen and (max-width: 1025px) {
  .copyright {
    font-size: 9px;
    padding: 0 0 40px;
  }
}

.chosei {
  margin-bottom: 80px;
}
@media screen and (max-width: 1025px) {
  .chosei {
    margin-bottom: 40px;
  }
}

.chosei2 {
  margin-bottom: 40px;
}
@media screen and (max-width: 1025px) {
  .chosei2 {
    margin-bottom: 30px;
  }
}

/*----------------------------------
 top-contents
----------------------------------*/
.top_sec1 {
  position: relative;
  overflow: hidden;
}
.top_sec1:before, .top_sec1:after {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}
.top_sec1:before {
  background: url(../img/bg_sec1.jpg) no-repeat center/cover;
}
.top_sec1:after {
  background-image: linear-gradient(94.54deg, #278c60 12.34%, #6da36c 88.06%);
  mix-blend-mode: screen;
  opacity: 0.7;
}
.top_sec1.type_about:before {
  background: url(../img/bg_about.jpg) no-repeat 50% 80%/cover;
}
.top_sec1.type_about:after {
  opacity: 0.7;
}
.top_sec1.type_service:before {
  background: url(../img/bg_service.jpg) no-repeat center/cover;
}
.top_sec1.type_service:after {
  background: #f8f8f8;
  opacity: 0.6;
}

.bg_policy {
  position: relative;
  padding-bottom: 30px;
}
.bg_policy:before, .bg_policy:after {
  position: absolute;
  content: "";
  left: 0;
  width: 100%;
}
.bg_policy:before {
  bottom: 0;
  height: 62%;
  background: url(../img/zara.png), url(../img/bg_policy.jpg) no-repeat center 25%/cover;
  opacity: 0.6;
}
.bg_policy:after {
  top: 36%;
  height: auto;
  aspect-ratio: 1038/125;
  background: #fff;
  mask: url(../img/wave02.svg) no-repeat center top/100% auto;
  -webkit-mask: url(../img/wave02.svg) no-repeat center top/100% auto;
}
@media screen and (max-width: 1440px) {
  .bg_policy:after {
    top: 36%;
  }
}
@media screen and (max-width: 639px) {
  .bg_policy:after {
    top: 37.5%;
  }
}

.sec1_box {
  text-align: center;
  font-weight: 600;
  margin-top: 20px;
  margin-bottom: -30px;
}
.sec1_box .sec1_title {
  font-weight: 700;
  font-size: 3.8rem;
  letter-spacing: 0.1em;
  color: #02523b;
}
.sec1_box .sec1_title em {
  position: relative;
  display: inline-block;
  transform: translateY(3px);
  font-size: 5.2rem;
}
.sec1_box .sec1_txt {
  margin-top: 40px;
  font-size: 2rem;
}
.sec1_box .sec1_txt p:last-of-type {
  margin-top: 40px;
}
.sec1_box .sec1_txt p em.type1 {
  font-size: 1.2em;
}
.sec1_box .sec1_txt p em.type2 {
  font-size: 2.8rem;
}
@media screen and (max-width: 1100px) {
  .sec1_box .sec1_title {
    font-size: 3rem;
  }
  .sec1_box .sec1_title em {
    font-size: 4.8rem;
  }
}
@media screen and (max-width: 639px) {
  .sec1_box .sec1_title {
    font-size: 2rem;
  }
  .sec1_box .sec1_title em {
    font-size: 2.4rem;
  }
  .sec1_box .sec1_txt {
    padding-bottom: 50px;
    font-size: 1.4rem;
  }
  .sec1_box .sec1_txt p em.type2 {
    font-size: 2rem;
  }
}

.top_bg {
  position: relative;
}
.top_bg:before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.sec2_title {
  position: relative;
  text-align: center;
  margin: -95px auto 40px;
}
.sec2_title:before {
  content: attr(data-title);
  font-size: 15rem;
  font-family: "Afacad", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  color: #c6f1d9;
  opacity: 0.6;
  line-height: 0.6;
}
.sec2_title .img {
  position: relative;
  display: block;
  width: 300px;
  margin: -20px auto 10px;
  z-index: 2;
}
.sec2_title .img img {
  width: 100%;
}
.sec2_title .ja {
  display: block;
  font-size: 2.6rem;
}
@media screen and (max-width: 1440px) {
  .sec2_title {
    margin-top: -110px;
  }
}
@media screen and (max-width: 1100px) {
  .sec2_title {
    margin-top: -85px;
  }
  .sec2_title:before {
    font-size: 10rem;
  }
  .sec2_title .img {
    width: 220px;
  }
  .sec2_title .ja {
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 1025px) {
  .sec2_title {
    margin-top: -45px;
  }
  .sec2_title:before {
    font-size: 8rem;
  }
}
@media screen and (max-width: 639px) {
  .sec2_title:before {
    font-size: 4.8rem;
  }
  .sec2_title .img {
    margin-top: 0;
    width: 150px;
  }
  .sec2_title .ja {
    font-size: 1.6rem;
  }
}

.top_solution_box {
  position: relative;
  width: 1500px;
  max-width: 94%;
  min-height: 350px;
  margin-left: 60px;
}
.top_solution_box:not(:last-of-type) {
  margin-bottom: 80px;
}
.top_solution_box figure {
  width: 100%;
  height: auto;
  aspect-ratio: 5/2;
  overflow: hidden;
  border-radius: 80px 0 80px 0;
}
.top_solution_box .top_solution_txt {
  position: absolute;
  top: 50%;
  right: -50px;
  transform: translateY(-50%);
  width: 75%;
  padding: 30px 20px;
  background: #fff;
  border-radius: 0 0 0 40px;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  min-height: 200px;
  z-index: 2;
}
.top_solution_box .top_solution_lead {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  margin-top: -10px;
}
.top_solution_box .top_solution_lead .number {
  position: relative;
  display: block;
  padding-bottom: 10px;
  font-size: 7rem;
  line-height: 0.8;
  font-weight: 700;
  color: #202121;
}
.top_solution_box .top_solution_lead .number:after {
  position: absolute;
  content: "";
  right: -20px;
  bottom: 0;
  width: 5px;
  height: 60%;
  background: #202121;
  transform: skewX(-10deg);
}
.top_solution_box .top_solution_lead .txt {
  position: relative;
  margin-left: 36px;
  font-size: 2.4rem;
  font-weight: 600;
  color: #202121;
  transform: translateY(8px);
}
.top_solution_box .top_solution_lead .txt .txt-big {
  color: #bc0926;
  font-size: 6rem;
}
.top_solution_box .txt_box {
  margin-top: 15px;
  padding: 10px;
}
.top_solution_box.type1 {
  margin-left: auto;
  margin-right: 60px;
}
.top_solution_box.type1 .top_solution_txt {
  right: auto;
  left: -50px;
}
@media screen and (max-width: 1650px) {
  .top_solution_box .top_solution_txt {
    width: 70%;
    right: -10px;
  }
  .top_solution_box.type1 .top_solution_txt {
    width: 70%;
    left: -10px;
  }
}
@media screen and (max-width: 1440px) {
  .top_solution_box {
    margin-left: 40px;
  }
  .top_solution_box .top_solution_txt {
    width: 60%;
  }
}
@media screen and (max-width: 1100px) {
  .top_solution_box:not(:last-of-type) {
    margin-bottom: 40px;
  }
  .top_solution_box figure {
    aspect-ratio: 2.4/1;
    border-radius: 40px 0 40px 0;
  }
  .top_solution_box .top_solution_txt {
    position: relative;
    width: 95%;
    margin-left: auto;
    top: auto;
    right: 0;
    transform: translateY(-30px);
  }
  .top_solution_box.type1 {
    margin-right: 40px;
  }
  .top_solution_box.type1 .top_solution_txt {
    width: 95%;
    margin-right: auto;
    margin-left: 0;
  }
}
@media screen and (max-width: 639px) {
  .top_solution_box {
    width: calc(100% - 16px);
    max-width: 100%;
    min-height: initial;
    margin-left: 16px;
  }
  .top_solution_box.type1 {
    margin-right: 16px;
  }
  .top_solution_box figure {
    aspect-ratio: 1.6/1;
    border-radius: 24px 0 24px 0;
  }
  .top_solution_box .top_solution_txt {
    transform: translateY(-20px);
    width: 90%;
    min-height: 180px;
    border-radius: 0 0 0 20px;
    padding: 30px 18px 24px;
  }
  .top_solution_box .top_solution_txt .top_solution_lead {
    margin-top: -18px;
  }
  .top_solution_box .top_solution_txt .top_solution_lead .number {
    font-size: 3.8rem;
  }
  .top_solution_box .top_solution_txt .top_solution_lead .number:after {
    right: -14px;
    width: 4px;
    height: 80%;
  }
  .top_solution_box .top_solution_txt .top_solution_lead .txt {
    margin-left: 30px;
    font-size: 1.4rem;
  }
}

.top_sec3_head {
  position: relative;
  z-index: 3;
  margin-bottom: -30px;
}
.top_sec3_head .img {
  width: 50%;
  max-width: 800px;
  margin: 0 auto;
  opacity: 0.8;
  mix-blend-mode: darken;
}
.top_sec3_head .top_sec3_head_txt {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  font-size: 6.8rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.05em;
  white-space: nowrap;
}
.top_sec3_head:before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #f8f8f8;
}
@media screen and (max-width: 1100px) {
  .top_sec3_head .img {
    width: 80%;
  }
  .top_sec3_head .top_sec3_head_txt {
    top: 46%;
    font-size: 6rem;
  }
}
@media screen and (max-width: 639px) {
  .top_sec3_head {
    margin-bottom: 0;
  }
  .top_sec3_head .img {
    width: 100%;
  }
  .top_sec3_head .top_sec3_head_txt {
    font-size: 3.2rem;
  }
}

.top_sec3_reason_lead {
  position: relative;
  margin: -180px auto 0;
  font-size: 16rem;
  text-align: center;
  color: rgba(60, 183, 95, 0.5);
  line-height: 0.8;
  z-index: 4;
}
@media screen and (max-width: 1100px) {
  .top_sec3_reason_lead {
    margin-top: -120px;
    font-size: 12rem;
  }
}
@media screen and (max-width: 639px) {
  .top_sec3_reason_lead {
    margin-top: -60px;
    font-size: 5.4rem;
  }
}

.top_sec3_reason {
  position: relative;
  padding-bottom: 30px;
}
.top_sec3_reason:before, .top_sec3_reason:after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.top_sec3_reason:before {
  background: url(../img/2.jpg) no-repeat center/cover;
  z-index: -3;
}
.top_sec3_reason:after {
  background: #202121;
  mix-blend-mode: screen;
  z-index: -2;
}

.flow-box {
  display: flex;
  position: relative;
  padding: 0 15px;
  max-width: 700px;
  margin: 0 auto;
}
.flow-box .flow-point {
  position: relative;
  width: 110px;
  padding-top: 35px;
  text-align: center;
  background: #fefefe;
  line-height: 1.1;
}
.flow-box .flow-point span {
  display: block;
  font-size: 5rem;
  color: #111;
  font-family: "Afacad", sans-serif;
  font-weight: 700;
  line-height: 0.8;
}
.flow-box .flow-point:after {
  position: absolute;
  content: "";
  left: 0;
  bottom: -19px;
  width: 100%;
  height: 20px;
  background: #fefefe;
  -webkit-clip-path: polygon(100% 0, 0 0, 50% 100%);
          clip-path: polygon(100% 0, 0 0, 50% 100%);
  z-index: 2;
}
.flow-box:nth-of-type(2) .flow-point {
  background: #202121;
}
.flow-box:nth-of-type(2) .flow-point span {
  color: #fff;
}
.flow-box:nth-of-type(2) .flow-point:after {
  background: #202121;
}
.flow-box:nth-of-type(3) .flow-point {
  /* background: #a7dae7; */
  background: #CBCBEA;
}
.flow-box:nth-of-type(3) .flow-point span {
  color: #fff;
}
.flow-box:nth-of-type(3) .flow-point:after {
  background: #a7dae7;
}
.flow-box .flow-txt-box {
  position: relative;
  flex: 1;
  display: flex;
  padding: 30px 0 30px 50px;
}
.flow-box .flow-txt-box .flow-txt {
  font-weight: 700;
  font-size: 2rem;
}
@media screen and (max-width: 639px) {
  .flow-box .flow-point {
    width: 60px;
    padding-top: 28px;
  }
  .flow-box .flow-point:after {
    bottom: -15px;
    height: 16px;
  }
  .flow-box .flow-point span {
    font-size: 2.6rem;
  }
  .flow-box .flow-txt-box {
    padding: 16px 0 16px 20px;
  }
  .flow-box .flow-txt-box .flow-txt {
    font-size: 1.4rem;
  }
}

.top_sec3_reason_bottom {
  margin-top: 50px;
  text-align: center;
  font-weight: 700;
  font-size: 1.8rem;
}
@media screen and (max-width: 639px) {
  .top_sec3_reason_bottom {
    padding: 0 20px;
    font-size: 1.3rem;
  }
}

/* --news--
----------------------------------*/
.news-box {
  max-width: 80%;
  margin: 0 auto;
  padding: 60px 0;
}
.news-box dl dt {
  font-family: "Afacad", sans-serif;
  white-space: nowrap;
}
.news-box dl dd a {
  color: #202121;
}
.news-box dl dd a:hover {
  color: #202121;
}
.news-box dl .news-bl-inner {
  display: flex;
  gap: 60px;
  padding: 25px 20px;
}
@media screen and (max-width: 1025px) {
  .news-box {
    max-width: 95%;
  }
}
@media screen and (max-width: 639px) {
  .news-box {
    border-radius: 15px;
    padding: 30px 0;
  }
  .news-box dl .news-bl-inner {
    gap: 15px;
    padding: 15px 10px;
  }
  .news-box dl .news-bl-inner dt {
    white-space: nowrap;
  }
}

.news-title {
  text-align: center;
  position: relative;
}
.news-title span {
  display: block;
}
.news-title .eng {
  font-family: "Afacad", sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  color: #202121;
  position: relative;
  font-size: 3.2rem;
}
.news-title .ja {
  position: relative;
  font-weight: 600;
}
@media screen and (max-width: 639px) {
  .news-title {
    margin-bottom: 30px;
  }
  .news-title .eng {
    font-size: 2.4rem;
  }
  .news-title .ja {
    font-size: 1.4rem;
  }
}

.news-right {
  flex: 1;
}
@media screen and (max-width: ) {
  .news-right {
    width: 100%;
    margin: 0;
  }
}

.map-link {
  font-weight: 600;
  color: #202121;
  border-bottom: 1px solid #202121;
}
.map-link:before {
  font-family: "Font Awesome 5 Free";
  content: "\f3c5";
  font-weight: 900;
  margin-right: 5px;
}

/* contents
----------------------------------*/
.single0 {
  margin: 0 auto;
  padding: 120px 0;
  position: relative;
  z-index: 3;
}

.single {
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 0;
  position: relative;
  z-index: 3;
}
@media screen and (max-width: 1440px) {
  .single {
    padding: 120px 10px;
  }
}
.single.type1 {
  padding-bottom: 0;
  z-index: 1;
}
.single.type2 {
  padding-top: 0;
}

.single02 {
  margin: 0 auto;
  padding: 120px 0;
  position: relative;
  z-index: 3;
}
@media screen and (max-width: 1100px) {
  .single02 {
    padding: 120px 10px;
  }
}
.single02.type1 {
  padding-top: 0;
  z-index: 1;
}
.single02.type2 {
  padding-bottom: 0;
  z-index: 1;
}

.single03 {
  max-width: 1400px;
  margin: 0 auto;
  padding: 120px 0;
  position: relative;
  z-index: 3;
}
@media screen and (max-width: 1440px) {
  .single03 {
    padding: 80px 10px;
  }
}

.margin-top {
  margin-top: -80px;
}
@media screen and (max-width: 639px) {
  .margin-top {
    margin-top: -30px;
  }
}

.lsingle,
.rsingle {
  width: 48.44%;
}

.lsingle {
  float: left;
}

.rsingle {
  float: right;
}

.mbox {
  padding: 35px 30px;
  position: relative;
  z-index: 3;
  max-width: 1200px;
  margin-right: auto;
  margin-left: auto;
}
.mbox.type1 {
  border-radius: 20px;
}
.mbox.shadow {
  box-shadow: rgba(0, 0, 0, 0.1) 0px 18px 50px -10px;
}
.mbox.transparent {
  background: transparent;
}
.mbox.transparent.d_box {
  position: relative;
  border-radius: 10px;
  border: 3px solid #f0f0f0;
  background-color: #f0f0f0;
  padding: 60px;
}
.mbox.transparent.d_box:before {
  position: absolute;
  top: -10px;
  left: -10px;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  border: 2px solid #202121;
  content: "";
}
@media screen and (max-width: 639px) {
  .mbox {
    padding: 20px 12px;
  }
}

.mbox2 {
  border: 8px solid rgba(167, 218, 231, 0.4);
  padding: 35px 30px;
}
@media screen and (max-width: 639px) {
  .mbox2 {
    padding: 15px;
  }
}
.mbox2.type1 {
  background: #fffaf4;
}

.mbox3 {
  background: #fefefe;
  padding: 35px 30px;
  position: relative;
  z-index: 3;
  max-width: 90%;
  margin-right: auto;
  margin-left: auto;
}
.mbox3.type1 {
  border: 3px solid #202121;
}
.mbox3.shadow {
  box-shadow: rgba(75, 56, 45, 0.1) 0px 18px 50px -10px;
}
.mbox3.transparent {
  background: transparent;
}
@media screen and (max-width: 639px) {
  .mbox3 {
    padding: 15px 10px;
  }
}

.small-box {
  max-width: 850px;
  margin-right: auto;
  margin-left: auto;
}
.small-box.mini {
  max-width: 640px;
}
.small-box.type_fit {
  width: -moz-fit-content;
  width: fit-content;
}

.sentence p + p {
  margin-top: 20px;
}
.sentence.type_mb {
  letter-spacing: 0;
  font-size: 1.5rem;
}
@media screen and (max-width: 639px) {
  .sentence.type_mb {
    font-size: 1.1rem;
  }
}
.sentence.type_mb p {
  margin-bottom: 30px;
}

.sentence2 p + p {
  margin-top: 10px;
}

.inner-content {
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}

.bg-w {
  position: relative;
}
.bg-w::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 40px);
  height: 100%;
  background: #fefefe;
  z-index: -1;
  opacity: 0.6;
  border-radius: 10px;
}
@media screen and (max-width: 639px) {
  .bg-w::after {
    width: calc(100% - 20px);
    border-radius: 5px;
  }
}

.bg-grid {
  background-image: linear-gradient(90deg, transparent 95%, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0.3)), linear-gradient(0deg, transparent 95%, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0.3));
  background-size: 20px 20px;
  background-repeat: repeat;
  position: relative;
}
.bg-grid.type1 .bg-grid:before {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: calc(100% - 110px);
}

.bg-map {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}
.bg-map:before {
  position: absolute;
  content: "";
  width: 80%;
  height: 140%;
  right: 0;
  top: -20%;
  background: url(../img/map.png) no-repeat right 50%/contain;
}
@media screen and (max-width: 639px) {
  .bg-map:before {
    width: 90%;
  }
}

.bg-wall {
  background: url(../img/bg-wall.jpg);
}

.mask {
  position: relative;
  -webkit-clip-path: circle(1%);
          clip-path: circle(1%);
  transition: 0.6s ease-in all;
  z-index: 10;
}
.mask.on {
  -webkit-clip-path: circle(120%);
          clip-path: circle(120%);
}

#main {
  float: left;
  width: 76%;
}
#main .mbox {
  min-height: 300px;
}
@media screen and (max-width: 1025px) {
  #main .mbox {
    min-height: initial;
  }
}
@media screen and (max-width: 1025px) {
  #main {
    float: none;
    width: 100%;
  }
}

#side {
  float: right;
  position: sticky;
  right: 0;
  top: 0;
  width: 21%;
  padding-right: 10px;
}
@media screen and (max-width: 1025px) {
  #side {
    float: none;
    width: 100%;
    position: static;
    margin-top: 40px;
  }
}

/* mtitle
----------------------------------*/
.mtitle {
  margin: 0 auto 40px;
  text-align: center;
}
.mtitle .eng {
  font-size: 5rem;
  color: #202121;
  position: relative;
  display: block;
  line-height: 1.2;
  font-family: "Afacad", sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  font-weight: 600;
}
.mtitle .ja {
  font-size: 1.8rem;
  position: relative;
}
.mtitle.white {
  text-shadow: 0 0 3px rgba(0, 0, 0, 0.1);
}
.mtitle.white span {
  color: #fff;
}
.mtitle.white .ja::before {
  background: url(../img/ttl_icon2.png) no-repeat center/contain;
}
.mtitle.black {
  color: #333;
}
.mtitle.black span {
  color: #555;
}
.mtitle.black span:after {
  background-color: #555;
}
.mtitle.mtitle_left {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
}
.mtitle.mtitle_left bor span:after {
  left: 0;
  transform: none;
}
.mtitle.mtitle_left.b_line {
  border-bottom: 1px solid #202121;
}
.mtitle.small {
  padding-bottom: 20px;
}
.mtitle.small .eng {
  font-size: 2.5rem;
}
.mtitle.type2 {
  padding-left: 20px;
}
@media screen and (max-width: 639px) {
  .mtitle {
    text-align: center;
    margin-bottom: 20px;
  }
  .mtitle .eng {
    font-size: 2.5rem;
  }
  .mtitle .ja {
    font-size: 1.3rem;
  }
  .mtitle .ja::before {
    width: 30px;
    height: 20px;
  }
}

.mtitle2 {
  position: relative;
  margin-bottom: 30px;
  padding-left: 16px;
  border-left: 2px solid #202121;
  font-size: 3rem;
  line-height: 1.4;
}
.mtitle2 .ja {
  font-weight: 400;
  font-size: 0.6em;
  text-align: left;
  font-family: "Shippori Mincho", "YakuHanMP", "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
  display: block;
}
@media screen and (max-width: 639px) {
  .mtitle2 {
    font-size: 1.8rem;
  }
  .mtitle2:before {
    font-size: 1.3rem;
  }
}
.mtitle2.center {
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  text-align: left;
}

.mtitle3 {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-feature-settings: "pkna";
  position: relative;
  min-height: 100px;
}
.mtitle3 .ja {
  display: block;
  font-size: 2.6rem;
  border-right: 2px solid #202121;
  letter-spacing: 0.2em;
  padding-right: 5px;
  font-weight: 400;
}
.mtitle3 .eng {
  display: block;
  font-family: "Afacad", sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  font-size: 1.8rem;
  color: #202121;
  padding-left: 3px;
}
@media screen and (max-width: 639px) {
  .mtitle3 {
    left: 10px;
    top: 15px;
  }
  .mtitle3 .ja {
    font-size: 1.6rem;
  }
  .mtitle3 .eng {
    font-size: 1.3rem;
  }
}

.mtitle_line {
  font-size: 2.2rem;
  padding-bottom: 20px;
  position: relative;
  font-weight: 600;
  margin-bottom: 25px;
  color: #202121;
  letter-spacing: 0.2rem;
}
.mtitle_line span {
  display: block;
  font-size: 1.4rem;
  color: #202121;
}
.mtitle_line:after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 10px;
  content: "";
  opacity: 0.6;
  background-image: repeating-linear-gradient(-45deg, #86cbdd, #aaa 1px, transparent 2px, transparent 5px);
  background-size: 7px 7px;
  backface-visibility: hidden;
}
@media screen and (max-width: 639px) {
  .mtitle_line {
    font-size: 1.4rem;
  }
  .mtitle_line span {
    font-size: 1.2rem;
  }
}

.mtitle_balloon {
  font-size: 2.4rem;
  margin-bottom: 15px;
  font-weight: 600;
}
.mtitle_balloon span {
  position: relative;
  display: inline-block;
  padding: 0 10px 16px;
  overflow: hidden;
  line-height: 1.3em;
}
.mtitle_balloon span:before, .mtitle_balloon span:after {
  content: "";
  display: block;
  border-bottom: 3px solid #ffda8b;
  position: absolute;
  width: 50%;
  bottom: 6px;
}
.mtitle_balloon span:before {
  left: -5px;
}
.mtitle_balloon span:after {
  right: -5px;
}
.mtitle_balloon span i {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-top: 3px solid #ffda8b;
  border-right: 3px solid #ffda8b;
  transform: rotate(135deg);
  position: absolute;
  left: 50%;
  margin-left: -5px;
  bottom: 2px;
}
.mtitle_balloon .eng {
  font-family: "Jost", sans-serif;
  font-weight: 400;
  font-size: 5rem;
}
.mtitle_balloon.center {
  text-align: center;
}
.mtitle_balloon.white span:before {
  border-bottom-color: #fefefe;
}
.mtitle_balloon.white span:after {
  border-bottom-color: #fefefe;
}
.mtitle_balloon.white span i {
  border-color: #fefefe;
}
@media all and (max-width: 639px) {
  .mtitle_balloon {
    font-size: 1.7rem;
  }
  .mtitle_balloon .eng {
    font-size: 2.4rem;
  }
}

.mtitle4 {
  text-align: center;
  color: #202121;
  line-height: 1.5;
  letter-spacing: 0.1rem;
  font-size: 2.5rem;
}
.mtitle4 span {
  position: relative;
  display: inline-block;
  min-width: 10%;
}
.mtitle4 span:before, .mtitle4 span:after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 1px;
  height: 2rem;
  background-color: #202121;
}
.mtitle4 span:before {
  left: -11px;
  transform: rotate(-20deg);
}
.mtitle4 span:after {
  right: -11px;
  transform: rotate(20deg);
}
.mtitle4.white span:before, .mtitle4.white span:after {
  background-color: #ffd803;
}
@media screen and (max-width: 639px) {
  .mtitle4 {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 320px) {
  .mtitle4 span:before {
    left: -3px;
  }
  .mtitle4 span:after {
    right: -3px;
  }
}

.mtitle5 {
  margin-bottom: 60px;
  letter-spacing: 0.15em;
  position: relative;
}
.mtitle5 .ttl_wrapper {
  display: flex;
  align-items: center;
  gap: 40px;
}
.mtitle5 .eng {
  font-size: 3rem;
  font-family: "Afacad", sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  line-height: 1;
}
.mtitle5 .ja {
  font-size: 1.8rem;
  padding-bottom: 5px;
  padding-left: 0.5em;
  flex-grow: 1;
  border-bottom: 1px solid #cfd4d5;
}
.mtitle5.white {
  color: #fff;
}
.mtitle5.white .ja {
  border-bottom: 1px solid #fff;
}
@media screen and (max-width: 639px) {
  .mtitle5 {
    margin-bottom: 20px;
  }
  .mtitle5 .ttl_wrapper {
    align-items: flex-start;
    gap: 0px;
    flex-direction: column;
  }
  .mtitle5 .ja {
    font-size: 1.2rem;
    padding-left: 0;
  }
  .mtitle5 .eng {
    font-size: 1.8rem;
  }
}

.mtitle_sub {
  padding-left: 0.5em;
  font-weight: 600;
  position: relative;
  border-left: 3px solid #202121;
  margin: 8px 0 15px;
  font-size: 1.1em;
  line-height: 1.4;
  text-align: left;
}
.mtitle_sub:before {
  position: absolute;
  left: -3px;
  bottom: 0;
  content: "";
  width: 3px;
  height: 50%;
  background-color: #cfd4d5;
}

.mtitle_box {
  background-image: linear-gradient(to right, #f7f4ea, #f9f1dd);
  font-size: 1.7rem;
  position: relative;
  padding: 10px 15px;
  margin-bottom: 25px;
  font-weight: 600;
  color: #4b382d;
}
.mtitle_box a {
  color: #fff;
}
.mtitle_box .num {
  display: inline-block;
  margin-right: 8px;
  font-family: "Afacad", sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  font-size: 2.2rem;
  color: #202121;
}
.mtitle_box:before {
  position: absolute;
  font-family: "Font Awesome 5 Free";
  content: "\f30a";
  font-weight: 900;
  display: block;
  right: -1px;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
}
@media screen and (max-width: 639px) {
  .mtitle_box {
    font-size: 1.3rem;
  }
}
.mtitle_box.type1 {
  background: #a7dae7;
  color: #fefefe;
}
.mtitle_box.type2 {
  background: #78d5d9;
}

.mtitle_box2 {
  background: #202121;
  font-size: 2rem;
  color: #fff;
  position: relative;
  font-weight: 600;
  overflow: hidden;
  letter-spacing: 0.1rem;
  padding: 10px 10px 10px 20px;
  margin-bottom: 25px;
}
.mtitle_box2 .small-cap {
  font-weight: normal;
  font-size: 14px;
}
.mtitle_box2:before {
  background-color: #fefefe;
  content: "";
  display: block;
  transform: rotate(60deg);
  position: absolute;
  bottom: -10px;
  right: -150px;
  width: 300px;
  height: 280px;
}
@media screen and (max-width: 639px) {
  .mtitle_box2 {
    font-size: 1.3rem;
    line-height: 1.5;
    padding: 10px 10px 10px 15px;
    padding-right: 40px;
  }
  .mtitle_box2 span {
    font-size: 12px;
  }
  .mtitle_box2:before {
    width: 215px;
    right: -170px;
  }
}

.mtext1 {
  font-size: 2.2rem;
  line-height: 1.6;
}
@media screen and (max-width: 639px) {
  .mtext1 {
    font-size: 1.4rem;
  }
}

.mtext2 {
  font-size: 3rem;
  line-height: 1.6;
}
.mtext2.type_border span {
  position: relative;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  padding-bottom: 5px;
  margin-inline: auto;
}
.mtext2.type_border span:before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  background-image: linear-gradient(90deg, #91e4b2 0, #38ad6d 64%, #2a8e52);
  opacity: 0.8;
}
@media screen and (max-width: 639px) {
  .mtext2 {
    font-size: 1.6rem;
    padding: 4px 8px;
  }
}

.mtext3 {
  font-size: 1.8rem;
  letter-spacing: 0.15em;
}
@media screen and (max-width: 639px) {
  .mtext3 {
    font-size: 1.4rem;
  }
}

.type_title01 {
  padding-left: 25px;
  position: relative;
}
.type_title01:before {
  position: absolute;
  content: "";
  left: 0;
  top: -60px;
  width: 2px;
  height: calc(100% + 60px);
  background: #202121;
}

.mtitle_category {
  margin-bottom: 15px;
  font-size: 1.8rem;
  font-family: "Afacad", sans-serif;
  font-weight: 400;
  text-transform: uppercase;
}
.mtitle_category:before {
  font-family: "Font Awesome 5 Free";
  content: "\f0ca";
  font-weight: 900;
  margin-right: 5px;
  color: #202121;
}

/* btn
----------------------------------*/
.btn01 a {
  background: #202121;
  text-align: center;
  width: 300px;
  margin: 15px auto;
  color: #fff;
  display: block;
  padding: 8px 5px;
  font-weight: 600;
  border-radius: 35px;
  max-width: 90%;
}
.btn01 a:hover {
  background: #78d5d9;
  color: #fefefe;
}
.btn01.mail {
  flex-basis: 100%;
}
.btn01.mail a {
  background: #ffd803;
  margin: 15px auto 25px;
}
.btn01.mail a:before {
  font-family: "Font Awesome 5 Free";
  content: "\f0e0";
  font-weight: 900;
  margin-right: 5px;
}
@media screen and (max-width: 639px) {
  .btn01 a {
    width: 95%;
  }
}

.btn02 {
  width: 300px;
  margin: 20px auto 20px;
}
.btn02 a {
  display: block;
  position: relative;
  padding: 15px 30px 15px 5px;
  line-height: 24px;
  letter-spacing: 0.1rem;
  font-size: 1.5rem;
  text-align: center;
  color: #fff;
  background-image: linear-gradient(to right, #202121, #CBCBEA);
  /* background-image: linear-gradient(to right, #202121, #a7dae7); */
  font-weight: 600;
}
.btn02 a i {
  display: block;
  position: absolute;
  top: 50%;
  right: -10px;
  width: 40px;
  height: 1px;
  background-color: #ddd;
  transition: all 0.3s ease;
}
.btn02 a:hover i {
  width: 34px;
}
.btn02.type1 a {
  background: #fff;
  color: #202121;
}
@media screen and (max-width: 639px) {
  .btn02 {
    width: 260px;
  }
  .btn02 a {
    font-size: 1.3rem;
  }
}

.btn03 a {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-left: auto;
  max-width: 200px;
  padding: 10px 5px;
  color: #313131;
  transition: 0.3s ease-in-out;
  font-weight: 600;
  font-size: 1.2rem;
  font-family: "Afacad", sans-serif;
}
.btn03 a .img {
  width: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 10px;
  transition: all 0.5s ease;
  line-height: 1em;
}
.btn03 a::before {
  position: absolute;
  bottom: 0px;
  left: 50%;
  content: "";
  width: 100%;
  height: 1px;
  background: rgba(0, 0, 0, 0.1);
  transform: translateX(-50%);
}
.btn03 a::after {
  position: absolute;
  bottom: 0px;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
  background: #313131;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform 0.3s;
}
.btn03 a:hover {
  opacity: 0.7;
}
.btn03 a:hover::after {
  transform: scale(1, 1);
}
.btn03 a:hover .img {
  transform: translateX(5px);
}
.btn03.center a {
  margin-right: auto;
}
.btn03.left a {
  margin-left: 0;
}
.btn03.white a {
  color: #fff;
}
.btn03.white a::before {
  background: #fff;
}

/* news
----------------------------------*/
.news-list li a {
  display: flex;
  align-items: flex-start;
  padding: 14px 8px;
  font-weight: 600;
  transition: 0.3s all cubic-bezier(0.18, 0.06, 0.23, 1);
}
.news-list li a .date {
  position: relative;
  padding-left: 20px;
  width: 7em;
  font-size: 1.4rem;
  color: #555;
  color: #aaa;
}
.news-list li a .date:before {
  position: absolute;
  content: "";
  left: -14px;
  top: 50%;
  width: 20px;
  height: 1px;
  background: #aaa;
}
.news-list li a .txt {
  flex: 1;
  margin-left: 16px;
  color: #fefefe;
}
.news-list li a:hover {
  background: #fefefe;
  border-radius: 0 0 8px 0;
}
.news-list li a:hover .txt {
  color: #333;
}
.news-list li:not(:last-of-type) {
  margin-bottom: 8px;
}
@media screen and (max-width: 639px) {
  .news-list li a {
    flex-direction: column;
  }
  .news-list li a .date {
    font-size: 1.2rem;
  }
}

.news-bl {
  overflow: hidden;
  border-top: 1px solid rgba(32, 33, 33, 0.2);
}
.news-bl .news-bl-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 20px 8px 20px;
  border-bottom: 1px solid rgba(32, 33, 33, 0.2);
}
.news-bl .news-bl-inner:not(:last-of-type) {
  margin-bottom: 5px;
}
.news-bl dt {
  position: relative;
  display: flex;
  border-radius: 40px;
  font-size: 2rem;
  line-height: 1.3;
  font-family: "Afacad", sans-serif;
}
@media screen and (max-width: 639px) {
  .news-bl dt {
    width: 4.5em;
    font-size: 12px;
  }
  .news-bl dt .md {
    font-size: 1.3rem;
  }
}
.news-bl dd {
  flex: 1;
  margin-left: 30px;
  line-height: 1.6;
  font-size: 1.5rem;
}
.news-bl dd a {
  color: #4b382d;
  background-image: linear-gradient(to right, #202121, #86cbdd);
  padding-bottom: 0.25em;
  background-position: 100% 100%;
  background-size: 0% 1px;
  background-repeat: no-repeat;
  transition: background-size 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.news-bl dd a:hover {
  background-position: 0 100%;
  background-size: 100% 1px;
}
@media screen and (max-width: 639px) {
  .news-bl dd {
    margin-left: 20px;
    font-size: 13px;
  }
}

/* page-title
----------------------------------*/
.page-title {
  position: relative;
  z-index: 1;
  padding-top: 100px;
  margin-bottom: 80px;
  overflow: hidden;
}
.page-title .inner {
  margin-left: auto;
  height: 400px;
  width: 95%;
  position: relative;
  border: 1px solid #cfd4d5;
  margin-right: -50px;
}
.page-title .inner.type1::after {
  background: url(../img/p_ttl01.jpg) no-repeat center 40%/cover;
}
.page-title .inner.type2::after {
  background: url(../img/p_ttl02.jpg) no-repeat center 25%/cover;
}
.page-title .inner.type3::after {
  background: url(../img/p_ttl03.jpg) no-repeat center 40%/cover;
}
.page-title .inner.type4::after {
  background: url(../img/p_ttl04.jpg) no-repeat center 45%/cover;
}
.page-title .inner.type5::after {
  background: url(../img/p_ttl05.jpg) no-repeat center 25%/cover;
}
.page-title .inner.type6::after {
  background: url(../img/p_ttl06.jpg) no-repeat center 65%/cover;
}
.page-title .inner:after {
  position: absolute;
  content: "";
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  z-index: -1;
}
.page-title .inner:before {
  position: absolute;
  content: "";
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  background: #000;
  opacity: 0.2;
}
.page-title .page-lead {
  font-size: 2.2rem;
  margin-left: auto;
  width: 90%;
  margin-bottom: 40px;
  font-weight: 400;
}
.page-title .page-lead .eng {
  display: block;
  font-family: "Afacad", sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  font-size: 8rem;
}
.page-title .page-lead .ja {
  font-family: "Shippori Mincho", "YakuHanMP", "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
  position: relative;
  padding-left: 80px;
  font-size: 1.6rem;
}
.page-title .page-lead .ja::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 70px;
  height: 25px;
  background: url(../img/ttl_icon.png) no-repeat center/contain;
}
@media screen and (max-width: 1025px) {
  .page-title .page-lead .eng {
    font-size: 6rem;
  }
}
@media screen and (max-width: 639px) {
  .page-title .page-lead {
    font-size: 1.5rem;
  }
  .page-title .page-lead .eng {
    font-size: 2.5rem;
  }
}
@media screen and (max-width: 639px) {
  .page-title {
    margin-bottom: 40px;
  }
  .page-title .inner {
    height: 250px;
    margin-right: -20px;
  }
  .page-title .page-lead .ja {
    padding-left: 45px;
  }
  .page-title .page-lead .ja::before {
    width: 40px;
  }
}

.bg-gradient {
  position: relative;
}
.bg-gradient:before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(0deg, rgba(226, 226, 226, 0.94) 0%, rgba(241, 241, 241, 0) 100%);
}

.bg-01 {
  position: relative;
}
.bg-01::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  background-image: url(../img/hanicam.png);
  opacity: 0.25;
  width: 100%;
  height: 100%;
  z-index: -3;
  background-size: cover;
}

.fuwafuwa {
  animation-name: fuwafuwa;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-timing-function: ease;
}

@keyframes fuwafuwa {
  0% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(0, -5px);
  }
  100% {
    transform: translate(0, 0);
  }
}
@media screen and (max-width: 1025px) {
  @keyframes fuwafuwa {
    0% {
      transform: translate(0, 0);
    }
    50% {
      transform: translate(0, -3px);
    }
    100% {
      transform: translate(0, 0);
    }
  }
}
.fuwafuwa2 {
  animation-name: fuwafuwa2;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-timing-function: ease;
}

@keyframes fuwafuwa2 {
  0% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(0, 5px);
  }
  100% {
    transform: translate(0, 0);
  }
}
@media screen and (max-width: 1025px) {
  @keyframes fuwafuwa2 {
    0% {
      transform: translate(0, 0);
    }
    50% {
      transform: translate(0, 3px);
    }
    100% {
      transform: translate(0, 0);
    }
  }
}
.bg-child {
  position: relative;
  overflow: hidden;
}
.bg-child::before {
  position: absolute;
  content: "";
  width: 400px;
  height: 400px;
  top: 0;
  left: -15px;
  background: url(../img/astro01.png) no-repeat left bottom/contain;
  z-index: 1;
  animation: fuwafuwa 2s ease infinite;
}
.bg-child.type1::after {
  position: absolute;
  content: "";
  width: 400px;
  height: 400px;
  bottom: 0;
  right: -15px;
  background: url(../img/astro02.png) no-repeat right top/contain;
  z-index: 1;
  animation: fuwafuwa2 2s ease infinite;
}
.bg-child.type2::before {
  display: none;
}
.bg-child.type2::after {
  position: absolute;
  content: "";
  width: 400px;
  height: 400px;
  bottom: 0;
  right: -15px;
  background: url(../img/light.png) no-repeat right top/contain;
  z-index: 1;
  animation: fuwafuwa2 2s ease infinite;
}
@media screen and (max-width: 1025px) {
  .bg-child::before {
    width: 200px;
    height: 200px;
    left: -10px;
  }
  .bg-child::after {
    width: 200px;
    height: 200px;
    right: -10px;
  }
}
@media screen and (max-width: 639px) {
  .bg-child.type1::before {
    top: 1%;
  }
  .bg-child::before {
    width: 150px;
    height: 150px;
    left: -5px;
    opacity: 0.7;
  }
  .bg-child::after {
    width: 150px;
    height: 150px;
    right: -5px;
    bottom: 70px;
    opacity: 0.7;
  }
}

.bg-pattern {
  position: relative;
}
.bg-pattern:before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: url(../img/bg-pattern.jpg);
  background-size: 1000px;
  opacity: 0.7;
}

.bg-base {
  position: relative;
}
.bg-base:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #202121;
  opacity: 0.1;
}
.bg-base.type_service:before {
  top: -65px;
  height: calc(100% + 65px);
  z-index: -2;
}

.bg-sub {
  position: relative;
}
.bg-sub:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(230, 230, 250, 0.4);
  /* background: rgba(167, 218, 231, 0.2); */
  opacity: 0.8;
}

.bg-green {
  position: relative;
  background: transparent;
}
.bg-green:before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #c4de77;
  z-index: -2;
}

.bg-gray {
  position: relative;
}
.bg-gray:before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(236, 239, 243, 0.5);
  background: #495a58;
  z-index: -2;
}
.bg-gray.type1:before {
  background: #cfd4d5;
  -webkit-mask-image: linear-gradient(to right top, #000 0%, #000 64%, rgba(0, 0, 0, 0.4) 80%, rgba(0, 0, 0, 0.2) 100%);
          mask-image: linear-gradient(to right top, #000 0%, #000 64%, rgba(0, 0, 0, 0.4) 80%, rgba(0, 0, 0, 0.2) 100%);
}
.bg-gray.bg-half-bottom {
  background: transparent;
  background-image: linear-gradient(to bottom, transparent 0%, transparent 50%, #eceff3 50.1%, #eceff3 100%);
}
.bg-gray.bg-half-upper {
  background: transparent;
  background-image: linear-gradient(to bottom, #eceff3 0%, #eceff3 50%, transparent 50.1%, transparent 100%);
}

.bg-gray2 {
  position: relative;
}

.bg-999 {
  background: #888;
}

.bg-333 {
  background: #2c2c2c;
}

.bg-blue {
  position: relative;
  background: transparent;
}
.bg-blue:before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to left, #202121, #78d5d9);
  opacity: 0.7;
}
.bg-blue.type1:before {
  top: 0;
  width: 100%;
  height: 100%;
  background: #202121;
  opacity: 0.9;
}
.bg-blue.type2:before {
  top: 0;
  width: 100%;
  height: 100%;
  background: #78d5d9;
  opacity: 0.3;
}

.bg-beige {
  background: #f7f4ea;
}
.bg-beige.type1 {
  background: transparent;
  position: relative;
}
.bg-beige.type1:before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 100%;
  height: 50%;
  background: #f7f4ea;
  z-index: -1;
}

.bg-beige2 {
  background: rgba(249, 241, 221, 0.4);
}

.bg-base2 {
  position: relative;
}
.bg-base2:before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: rgba(167, 218, 231, 0.8);
  z-index: -1;
}

/* tbl
----------------------------------*/
.tbl-company {
  border-top: 1px solid #ccc;
  width: 100%;
}
.tbl-company th,
.tbl-company td {
  background: none;
  border: none;
  font-size: 25px;
  font-size: 1.5625rem;
  letter-spacing: 0.08em;
  color: #111;
  text-align: left;
  border-bottom: 1px solid #ccc;
  padding: 12px 0px 10px 20px;
  font-weight: 500;
}
.tbl-company th {
  width: 40%;
  font-weight: 500;
  text-align: left;
}
@media screen and (max-width: 639px) {
  .tbl-company th,
  .tbl-company td {
    padding: 20px 0;
    font-size: 0.9em;
  }
  .tbl-company th {
    width: 35%;
    padding-left: 10px;
  }
  .tbl-company td {
    padding-left: 10px;
  }
}

.tbl_normal {
  width: 100%;
}
.tbl_normal.type1 th {
  width: 30%;
  font-size: 2rem;
  line-height: 1;
}
@media screen and (max-width: 639px) {
  .tbl_normal.type1 th {
    font-size: 1.6rem;
    width: 35%;
  }
}
.tbl_normal.type1 td {
  text-align: left;
  font-size: 0.9em;
}
.tbl_normal th,
.tbl_normal td {
  padding: 4px 5px;
  vertical-align: middle;
  border-bottom: 0.9px solid #ccc;
}
.tbl_normal th {
  width: 70%;
  text-align: left;
}
.tbl_normal td {
  text-align: right;
}

.tbl {
  width: 100%;
}
.tbl thead th {
  text-align: center;
}
.tbl thead th.th01 {
  background: rgba(117, 190, 184, 0.6);
}
.tbl thead th.th02 {
  background: #f9f1dd;
}
.tbl th,
.tbl td {
  padding: 15px;
  vertical-align: middle;
  border: 1px solid #ddd;
  background: #fefefe;
}
.tbl th {
  background: #eee;
  text-align: left;
}
.tbl th span {
  font-size: 1.4rem;
}
.tbl th.item1 {
  width: 260px;
}
@media screen and (max-width: 639px) {
  .tbl th.item1 {
    width: 220px;
  }
}
.tbl .fs_xs {
  font-size: 0.8em;
}
.tbl .cell01 {
  width: 45%;
}
.tbl .cell02 {
  width: 30%;
}
@media screen and (max-width: 639px) {
  .tbl th {
    text-align: left;
  }
  .tbl th,
  .tbl td {
    padding: 10px 8px;
    letter-spacing: 0;
  }
}

.tbl_new {
  width: 100%;
}
.tbl_new.type-mini {
  font-size: 1.5rem;
}
.tbl_new.type-mini tr th,
.tbl_new.type-mini tr td {
  padding: 10px;
}
.tbl_new tr:nth-child(odd) th, .tbl_new tr:nth-child(odd) td {
  background: #eceff3;
}
.tbl_new th,
.tbl_new td {
  vertical-align: middle;
  padding: 20px;
}
.tbl_new th {
  width: 18%;
  padding-left: 25px;
  text-align: left;
  letter-spacing: 0;
  font-weight: inherit;
}
@media screen and (max-width: 639px) {
  .tbl_new th {
    width: 25%;
    padding-left: 10px;
  }
}
.tbl_new th.th-long {
  width: 100%;
  text-align: center;
  background: #75beb8;
  color: #fff;
  letter-spacing: 0.15em;
  font-size: 1.1em;
}

.tbl-border {
  width: 100%;
}
.tbl-border.tbl-mini th,
.tbl-border.tbl-mini td {
  padding: 6px 10px;
  border-width: 1px;
  font-size: 14px;
  letter-spacing: 0.1rem;
}
.tbl-border th,
.tbl-border td {
  padding: 15px;
  border-bottom: 2px solid #fff;
  vertical-align: middle;
}
@media screen and (max-width: 639px) {
  .tbl-border th,
  .tbl-border td {
    padding: 10px;
    font-size: 1.2rem;
  }
}
.tbl-border .small {
  font-size: 0.9em;
  background: #fff;
  background: #CBCBEA;
  /* color: #a7dae7; */
  margin-right: 5px;
  padding: 0px 4px;
}
.tbl-border th {
  width: 22%;
  text-align: left;
  font-weight: 600;
  border-bottom-color: #7e9fb9;
}
.tbl-border th.th-1 {
  width: 45%;
}
@media screen and (max-width: 639px) {
  .tbl-border th {
    width: 30%;
  }
}

.price {
  font-family: "Lato", sans-serif;
  font-weight: 600;
  font-size: 1.8rem;
  color: #bc0926;
}
@media screen and (max-width: 639px) {
  .price {
    font-size: 1.4rem;
  }
}

.tbl0 {
  width: 100%;
  font-size: 1.4rem;
}
.tbl0 th,
.tbl0 td {
  padding: 5px;
  border: 0;
  color: #333;
  border-bottom: 0.9px solid #ddd;
}
.tbl0 th {
  padding-left: 0;
  text-align: left;
  background: none;
  width: 5em;
}
.tbl0 th:after, .tbl0 th:before {
  display: none;
}
.tbl0.type1 th {
  width: 10em;
}
@media screen and (max-width: 639px) {
  .tbl0 {
    font-size: 1.1rem;
  }
  .tbl0 th,
  .tbl0 td {
    display: block;
    width: 100%;
  }
  .tbl0 th {
    border-bottom: 0;
  }
  .tbl0.type1 th,
  .tbl0.type1 td {
    display: table-cell;
    width: auto;
  }
  .tbl0.type1 th {
    width: 130px;
    border-bottom: 0.9px solid #ddd;
  }
}

/* ggmap
----------------------------------*/
.ggmap {
  position: relative;
  padding-bottom: 46.25%;
  height: 0;
  overflow: hidden;
}
.ggmap.type1 {
  padding-bottom: 50%;
}
.ggmap.type2 {
  padding-bottom: 52%;
  border-radius: 20px;
}
.ggmap.youtube {
  padding-bottom: 56.25%;
}
.ggmap iframe,
.ggmap object,
.ggmap embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 639px) {
  .ggmap {
    padding-bottom: 65.25%;
  }
}

/* list
----------------------------------*/
.list_common li {
  padding-bottom: 5px;
  padding-left: 1rem;
  margin-bottom: 5px;
  border-bottom: 1px solid #ddd;
}
.list_common li:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: none;
}
.list_common.common_big li {
  padding-bottom: 10px;
  margin-bottom: 10px;
}

.list-policy {
  background: rgba(255, 255, 255, 0.7);
  padding: 25px;
  margin-bottom: 40px;
}
.list-policy li {
  font-family: "Shippori Mincho", "YakuHanMP", "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
  font-size: 2rem;
  padding-bottom: 5px;
  margin-bottom: 6px;
  font-weight: 600;
}
.list-policy li:before {
  content: "一、";
  margin-right: 7px;
  color: #202121;
}
@media screen and (max-width: 639px) {
  .list-policy {
    padding: 15px;
  }
  .list-policy li {
    font-size: 1.4rem;
  }
}

.list_check.type1 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 4%;
}
.list_check.type1 li {
  background: #202121;
  padding: 12px 8px 12px 24px;
  color: #fff;
}
.list_check li {
  padding: 4px;
  padding-left: 30px;
  font-weight: 600;
  font-size: 1.1em;
  position: relative;
  margin-bottom: 5px;
}
.list_check li a {
  color: #202121;
  border-bottom: 1px dotted #202121;
}
.list_check li:before {
  position: absolute;
  left: 0;
  top: 20px;
  content: "";
  width: 10px;
  height: 2px;
  background: #CBCBEA;
  /* background: #a7dae7; */
}
@media screen and (max-width: 639px) {
  .list_check li {
    width: 98%;
    margin: 0 auto 10px;
    font-size: 1.3rem;
  }
}

.list_check2 li {
  padding: 8px;
  font-weight: 600;
  margin-bottom: 4px;
  border-bottom: 1px solid #ccc;
}
.list_check2 li:before {
  font-family: "Font Awesome 5 Free";
  content: "\f00c";
  font-weight: 900;
  margin-right: 8px;
  color: #202121;
}
.list_check2 li a {
  color: #111;
}
.list_check2 li a:after {
  font-family: "Font Awesome 5 Free";
  content: "\f35d";
  font-weight: 900;
  margin-left: 4px;
  font-size: 0.8em;
  color: #4b382d;
}
.list_check2.type1 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5px 20px;
}
@media screen and (max-width: 639px) {
  .list_check2.type1 {
    grid-template-columns: 1fr;
    gap: 5px 0;
  }
}
.list_check2.type_blue li:before {
  /* color: #a7dae7; */
  background: #CBCBEA;
}

.list-inline2 {
  text-align: center;
}
.list-inline2 li {
  display: inline-block;
  padding: 4px 15px;
  background: #fefefe;
  border: 1px solid #cfd4d5;
  font-weight: 600;
  border-radius: 30px;
}
.list-inline2 li:not(:last-child) {
  margin-right: 8px;
}
.list-inline2.type_left {
  -moz-text-align-last: left;
       text-align-last: left;
}

.list-inline li {
  display: inline-block;
  padding: 3px;
}
.list-inline li:not(:last-of-type):after {
  content: "/";
  margin: 0 5px;
  color: #202121;
  font-weight: normal;
}

.ol-list {
  counter-reset: number;
  list-style: none;
  padding: 5px;
}
.ol-list.type1 {
  display: flex;
  flex-wrap: wrap;
}
.ol-list.type1 > li {
  width: 48%;
}
.ol-list.type1 > li:nth-child(2n) {
  margin-left: 4%;
}
.ol-list li {
  margin-bottom: 10px;
  font-weight: 600;
}
.ol-list li:before {
  position: relative;
  counter-increment: number;
  content: counter(number);
  background: #CBCBEA;
  /* background: #a7dae7; */
  display: inline-block;
  width: 22px;
  height: 22px;
  margin-right: 5px;
  line-height: 22px;
  text-align: center;
  font-size: 0.9em;
  color: #fff;
  border-radius: 100%;
}
@media screen and (max-width: 639px) {
  .ol-list li {
    font-size: 1.3rem;
  }
  .ol-list li span {
    font-size: 0.9em;
  }
  .ol-list li:before {
    font-size: 12px;
  }
}

.list_disc li {
  padding: 5px 0;
}
.list_disc li a {
  font-weight: 600;
  letter-spacing: 0.1rem;
}
.list_disc li:not(:last-of-type) {
  margin-bottom: 5px;
  border-bottom: 1px dashed #ccc;
}
.list_disc li:before {
  content: "●";
  margin-right: 5px;
  color: #202121;
  font-size: 1rem;
  display: inline-block;
  transform: translateY(-3px);
}
.list_disc.type_fit {
  width: -moz-fit-content;
  width: fit-content;
}
.list_disc.type1 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5px 20px;
}
.list_disc.type1 li {
  margin-bottom: 5px;
  border-bottom: 1px dashed #ccc;
}
@media screen and (max-width: 320px) {
  .list_disc.type1 {
    grid-template-columns: 1fr;
    gap: 5px 0;
  }
}
.list_disc.type2 {
  width: -moz-fit-content;
  width: fit-content;
}
.list_disc.type2 li {
  padding: 5px 20px;
  margin-bottom: 10px;
  border-bottom: none !important;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 5px;
}

.list-btn {
  display: flex;
  flex-wrap: wrap;
}
.list-btn.type1 {
  justify-content: center;
}
.list-btn li {
  width: 32%;
  margin: 0 1.995% 10px 0;
}
.list-btn li a {
  display: block;
  background: #202121;
  font-weight: 600;
  padding: 20px 3px;
  text-align: center;
  width: 100%;
  height: 100%;
  line-height: 1.5;
  font-size: 1.8rem;
  letter-spacing: 0;
  color: #fff;
}
.list-btn li a:after {
  font-family: "Font Awesome 5 Free";
  content: "\f358";
  font-weight: 900;
  margin-left: 5px;
}
@media screen and (max-width: 1025px) {
  .list-btn li a {
    font-size: 1.5rem;
  }
}
.list-btn li:nth-child(even) a {
  /* background: #a7dae7; */
  background: #CBCBEA;
}
.list-btn li:nth-child(3n) {
  margin-right: 0;
}
@media screen and (max-width: 639px) {
  .list-btn li {
    width: 90%;
    margin: 0 auto 10px;
  }
  .list-btn li a {
    font-size: 1.2rem;
  }
  .list-btn li:nth-child(3n) {
    margin-right: auto;
  }
}

@media screen and (max-width: 1025px) {
  .top-list1 {
    padding-bottom: 45px;
  }
}
.top-list1 > .child {
  background: #cae3f1;
  padding: 15px;
  border-radius: 15px;
  position: relative;
  padding-bottom: 50px;
  margin-top: 110px !important;
}
@media screen and (max-width: 639px) {
  .top-list1 > .child {
    padding-bottom: 60px;
  }
}
.top-list1 .pages {
  display: none;
}

.btn-block {
  position: absolute;
  left: 50%;
  bottom: -40px;
  z-index: 3;
  transform: translateX(-50%);
}

.contact_list {
  display: flex;
  gap: 20px;
}
.contact_list > li {
  width: 35%;
  text-align: center;
}
.contact_list > li a {
  border: 1px solid #fff;
  padding: 1em 3em;
  display: block;
  color: #fff;
  font-family: "Afacad", sans-serif;
  font-size: 2rem;
}
.contact_list > li a i {
  margin-right: 5px;
}
.contact_list > li a .eng {
  font-size: 1.2em;
}
.contact_list > li a:hover {
  background: #fff;
  color: #202121;
}
@media screen and (max-width: 1025px) {
  .contact_list > li {
    width: 48%;
  }
  .contact_list > li a {
    padding: 0.5em;
  }
}
@media screen and (max-width: 639px) {
  .contact_list > li {
    width: 100%;
  }
  .contact_list > li a {
    font-size: 1.3rem;
  }
}

.morebtn2 {
  position: relative;
  display: inline-block;
  cursor: pointer;
  outline: none;
  border: 0;
  margin-top: 15px;
  text-decoration: none;
  background: #fff;
  border-radius: 40px;
  padding: 6px;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 3px 8px;
  width: 300px;
  font-size: 1.5rem;
}
@media screen and (max-width: 639px) {
  .morebtn2 {
    font-size: 1.2rem;
    width: 280px;
  }
}
.morebtn2 .circle {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  position: relative;
  display: block;
  margin: 0;
  width: 44px;
  height: 44px;
  background: #202121;
  margin-left: -1px;
  border-radius: 22px;
}
.morebtn2 .circle .icon {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  background: #fff;
}
.morebtn2 .circle .icon.arrow {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  left: 4px;
  width: 2rem;
  height: 0.125rem;
  background: none;
}
.morebtn2 .circle .icon.arrow:before {
  position: absolute;
  content: "";
  top: -0.25rem;
  right: 0.0625rem;
  width: 0.625rem;
  height: 0.625rem;
  border-top: 0.125rem solid #fff;
  border-right: 0.125rem solid #fff;
  transform: rotate(45deg);
}
.morebtn2 .button-text {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 16px 0;
  margin: 0 0 0 1.85rem;
  color: #202121;
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
  text-transform: uppercase;
}
.morebtn2:hover .circle {
  width: 101%;
  background: #202121;
}
.morebtn2:hover .circle .icon.arrow {
  background: #fff;
  transform: translate(1rem, 0);
}
.morebtn2:hover .button-text {
  color: #fff;
}
.morebtn2.type1 {
  background: #202121;
  width: 260px;
}
.morebtn2.type1 .circle {
  background: #fff;
}
.morebtn2.type1 .icon {
  background: #202121;
}
.morebtn2.type1 .icon.arrow:before {
  border-color: #202121;
}
.morebtn2.type1 .button-text {
  color: #fff;
  font-size: 1.1em;
}
.morebtn2.type1:hover .button-text {
  color: #202121;
}

.ex_box {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  position: relative;
}
.ex_box > div {
  width: 50%;
}
.ex_box .b_box {
  box-shadow: rgba(32, 33, 33, 0.25) 0px 50px 100px -20px, rgba(32, 33, 33, 0.3) 0px 30px 60px -30px;
}
.ex_box .b_box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.ex_box .txt_area {
  padding: 4rem 0 0 8.7%;
}
.ex_box .txt_area .img_s {
  max-width: 26rem;
  margin: 5rem 0 0 auto;
  box-shadow: rgba(32, 33, 33, 0.25) 0px 50px 100px -20px, rgba(32, 33, 33, 0.3) 0px 30px 60px -30px;
}
.ex_box .txt_area.type2 {
  padding: 4rem 8.7% 0 0;
}
.ex_box .txt_area.type2 .img_s {
  margin: 3rem auto 40px 0;
}
@media screen and (max-width: 1025px) {
  .ex_box > div {
    width: 100%;
  }
  .ex_box .b_box {
    width: 90%;
    margin: 0 auto;
    height: 400px;
  }
  .ex_box .txt_area {
    padding: 4rem 4rem 0;
  }
}
@media screen and (max-width: 765px) {
  .ex_box > div {
    width: 100%;
  }
  .ex_box .txt_area .img_s {
    margin: 4rem 0 0 auto;
    max-width: 20rem;
  }
  .ex_box.bg_01::before {
    width: 420px;
  }
  .ex_box .txt_area.type2 {
    padding: 4rem 0 40px 0;
  }
  .ex_box .txt_area.type2 .img_s {
    margin: 0 auto 40px 0;
  }
}
@media screen and (max-width: 639px) {
  .ex_box.bg_01::before, .ex_box.bg_01::after {
    width: 250px;
  }
  .ex_box .b_box {
    height: 250px;
  }
  .ex_box .txt_area {
    padding: 2rem 2rem 0;
  }
}

.ex_box2 {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.ex_box2 .left {
  width: 42%;
}
.ex_box2 .right {
  width: 58%;
}
@media screen and (max-width: 765px) {
  .ex_box2 .left,
  .ex_box2 .right {
    width: 100%;
  }
}

.area_box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.area_box > div {
  width: 46%;
}
@media screen and (max-width: 765px) {
  .area_box {
    gap: 20px;
  }
  .area_box > div {
    width: 100%;
  }
  .area_box .area_img {
    width: 70%;
    margin: 0 auto;
  }
}

.menu_box {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 80px;
}
.menu_box.last {
  margin-bottom: 0;
}
.menu_box > div {
  width: 50%;
}
.menu_box .txt_area {
  padding: 1em 4em;
}
.menu_box .txt_area .ttl {
  font-family: "Shippori Mincho", "YakuHanMP", "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
  font-size: 1.5em;
  margin-bottom: 20px;
}
.menu_box .txt_area .ttl.middle {
  font-size: 1.2em;
}
.menu_box .txt_area .txt {
  margin-bottom: 20px;
}
.menu_box .img_area {
  border: 1px solid #cfd4d5;
  padding: 10px;
}
.menu_box .img_area.type2 {
  border: 1px solid #fff;
}
.menu_box .img_area img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 639px) {
  .menu_box {
    margin-bottom: 40px;
  }
  .menu_box > div {
    width: 100%;
  }
  .menu_box .txt_area {
    padding: 1em;
  }
}

.info_box {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 80px;
}
.info_box.last {
  margin-bottom: 0;
}
.info_box .txt_area {
  padding: 1em 4em;
  width: 60%;
}
.info_box .txt_area .ttl {
  font-family: "Shippori Mincho", "YakuHanMP", "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
  font-size: 1.2em;
  margin-bottom: 20px;
}
.info_box .txt_area .txt {
  margin-bottom: 20px;
}
.info_box .img_area {
  border: 1px solid #fff;
  padding: 10px;
  width: 40%;
}
.info_box .img_area img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 765px) {
  .info_box .txt_area {
    width: 100%;
    padding: 1em 0 0;
  }
  .info_box .txt_area .txt {
    margin-bottom: 0;
  }
  .info_box .img_area {
    width: 100%;
  }
  .info_box .img_area img {
    height: 300px;
  }
}

.price_list {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.price_list > li {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  padding: 5px;
}
.price_list > li:not(:last-child) {
  margin-bottom: 5px;
}
.price_list > li p {
  display: inline-block;
  line-height: 1.5;
}
.price_list > li:before {
  background: radial-gradient(#aaa 20%, transparent 0) center center/8px 8px;
  content: "";
  display: inline-block;
  flex: 1;
  height: 4px;
  margin: 0 1em;
}
@media screen and (max-width: 639px) {
  .price_list > li:before {
    margin: 0 5px;
  }
}
.price_list > li .info {
  flex-basis: 100%;
  font-size: 80%;
  color: #4b382d;
  margin-top: 5px;
  padding: 5px;
}
.price_list > li .info.capt {
  background: #f7f4ea;
  border-radius: 2px;
}
.price_list > li .info.capt2 {
  border-radius: 2px;
}
.price_list > li .left {
  order: -1;
  max-width: 70%;
  line-height: 1.3;
  position: relative;
}
.price_list > li .left span {
  font-size: 85%;
}
.price_list > li .left:after {
  content: ".";
  display: inline-block;
  width: 0;
  color: transparent;
  pointer-events: none;
}
@media screen and (max-width: 639px) {
  .price_list > li .left {
    letter-spacing: 0.05em;
  }
}
.price_list > li .right {
  max-width: 30%;
  text-align: right;
  font-family: "Afacad", sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 2rem;
  line-height: 1.3;
  display: flex;
  align-items: center;
  color: #bc0926;
}
.price_list > li .right span {
  font-family: "IBM Plex Sans JP", "YakuHanJP", Lato, "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 1.2rem;
}
@media screen and (max-width: 639px) {
  .price_list > li .right {
    font-size: 1.5rem;
  }
  .price_list > li .right span {
    font-size: 1rem;
  }
}
@media screen and (max-width: 639px) {
  .price_list > li .right {
    flex-direction: column;
    white-space: nowrap;
  }
}

/* blog
----------------------------------*/
#main .blog-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px 4%;
}
@media screen and (max-width: 639px) {
  #main .blog-wrap {
    grid-template-columns: 1fr;
  }
}

.blog-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 4%;
}
.blog-wrap a {
  display: block;
  position: relative;
  height: 100%;
}
.blog-wrap a:hover .morebtn {
  background: #333;
  color: #bca259;
}
@media screen and (max-width: 639px) {
  .blog-wrap {
    grid-template-columns: 1fr;
    padding: 0 20px;
  }
}

.pages {
  margin-top: 35px;
  overflow: hidden;
}
.pages > div {
  font-size: 13px;
  line-height: 1.4;
  padding: 10px;
  width: 45%;
}
.pages > div:first-child {
  padding-right: 20px;
  float: left;
}
.pages > div:last-of-type {
  padding-left: 20px;
  border-left: 1px solid #ccc;
  float: right;
}
@media screen and (max-width: 639px) {
  .pages > div {
    width: 100%;
  }
  .pages > div:last-of-type {
    border: none;
  }
}
.pages > div a {
  display: block;
  font-weight: 600;
}

.blog-img {
  width: 100%;
  height: auto;
  aspect-ratio: 1.6/1;
  overflow: hidden;
}
.blog-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 639px) {
  .blog-img {
    width: 90%;
    margin-inline: auto;
  }
}

.blog-title {
  line-height: 1.5;
  font-size: 1.4rem;
  letter-spacing: 0.1rem;
  font-weight: 600;
}
@media screen and (max-width: 639px) {
  .blog-title {
    font-size: 1.2rem;
  }
}

.blog-date {
  display: inline-block;
  padding: 8px 4px 8px 8px;
  font-size: 1.1em;
  line-height: 1;
  font-family: "Afacad", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  color: #202121;
}
.blog-date .year-time {
  display: inline-block;
  margin-right: 4px;
  color: #777;
  font-size: 1.4rem;
  font-weight: 400;
}
@media screen and (max-width: 639px) {
  .blog-date .year-time {
    font-size: 12px;
  }
}

.content-bottom {
  position: absolute;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  left: 0;
  bottom: 0;
  width: 100%;
  border-top: 1px solid rgba(170, 170, 170, 0.5);
}

.morebtn {
  width: 6em;
  padding: 5px;
  background: #eceff3;
  border-radius: 0 0 5px 0;
  color: #78d5d9;
  text-align: center;
  font-family: "Afacad", sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  font-size: 13px;
  transition: 0.3s all cubic-bezier(0.18, 0.06, 0.23, 1);
}

.category_nav {
  border: 1px solid #dddddd;
}
.category_nav li a {
  display: block;
  padding: 15px;
  border-bottom: 1px dotted #dddddd;
  background-color: #ffffff;
}
.category_nav li a:before {
  font-family: "Font Awesome 5 Free";
  content: "\f0a9";
  font-weight: 900;
  margin-right: 5px;
}
.category_nav li a:hover {
  background: #eceff3;
}
.category_nav li:last-child a {
  border-bottom: none;
}

.blog-detail {
  padding: 14px 14px 50px 14px;
}

.blog-page-detail {
  display: flex;
}
.blog-page-detail .blog-date2 {
  font-family: "Afacad", sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  font-weight: 600;
  color: #202121;
}

.top-blog-content {
  overflow: hidden;
}
@media screen and (max-width: 639px) {
  .top-blog-content {
    padding-left: 15px;
  }
}

.top-blog .pages {
  display: none;
}
.top-blog .blog1-wrap {
  margin-right: calc(50% - 50vw);
  overflow: hidden;
  padding-bottom: 85px;
}

.blog-card {
  height: 100%;
  display: block;
  position: relative;
  background: #fefefe;
}
.blog-card:before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: #75beb8;
  transition: 0.3s all cubic-bezier(0.18, 0.06, 0.23, 1);
}
.blog-card:hover:before {
  width: 100%;
}
.blog-card figure {
  padding-top: 70%;
  position: relative;
}
.blog-card figure img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
}
.blog-card .content {
  padding: 0.8em 1.2em 4em;
}

.btn-more {
  margin-top: 20px;
  position: relative;
  z-index: 4;
}
.btn-more a {
  display: block;
  width: 11em;
  text-align: center;
  font-family: "Afacad", sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  font-size: 1.4rem;
  color: #fff;
  padding: 8px 10px;
  background: #78d5d9;
  border-radius: 40px;
  margin-left: auto;
  transition: 0.3s all cubic-bezier(0.18, 0.06, 0.23, 1);
}
.btn-more a:after {
  font-family: "Font Awesome 5 Free";
  content: "\f061";
  font-weight: 900;
  margin-left: 4px;
  display: inline-block;
  position: relative;
  transition: 0.3s all cubic-bezier(0.18, 0.06, 0.23, 1);
}
.btn-more a:hover {
  background: #202121;
}
.btn-more a:hover:after {
  transform: translateX(4px);
}
@media screen and (max-width: 639px) {
  .btn-more {
    margin-right: 10px;
  }
  .btn-more a {
    font-size: 13px;
  }
}

/* etc
----------------------------------*/
.cut {
  overflow: hidden;
  zoom: 1;
}

.big_eng {
  font-family: "Afacad", sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  font-weight: 600;
  text-align: center;
  color: transparent;
  -webkit-text-stroke: 2px #CBCBEA;
  /* -webkit-text-stroke: 2px #a7dae7; */
  font-size: 12rem;
  opacity: 0.6;
  white-space: nowrap;
  overflow: hidden;
  margin-bottom: -30px;
}
@media screen and (max-width: 1100px) {
  .big_eng {
    font-size: 10rem;
  }
}
@media screen and (max-width: 1025px) {
  .big_eng {
    font-size: 7rem;
  }
}
@media screen and (max-width: 639px) {
  .big_eng {
    font-size: 5rem;
    line-height: 1;
    margin-bottom: 25px;
  }
}

.img-100 {
  margin: 40px auto;
  box-shadow: rgba(32, 33, 33, 0.25) 0px 50px 100px -20px, rgba(32, 33, 33, 0.3) 0px 30px 60px -30px;
}
.img-100 img {
  width: 100%;
  height: 400px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 639px) {
  .img-100 {
    width: 95%;
  }
  .img-100 img {
    height: 250px;
  }
}

.hidden {
  overflow: hidden;
}

.w300 {
  width: 300px;
}

.spbr {
  display: none;
}

.color1 {
  color: #202121;
}

.color2 {
  color: #bca259;
}

.color3 {
  color: #86cbdd;
}

.color4 {
  color: #ecc68b;
}

.brown {
  color: #4b382d;
}

.relative {
  position: relative;
}

.num {
  font-weight: 600;
}
.num a {
  color: #202121;
  font-size: 2.8rem;
  text-align: center;
  margin-left: 5px;
}
@media screen and (max-width: 639px) {
  .num a {
    font-size: 2rem;
  }
}
.num a:before {
  font-family: "Font Awesome 5 Free";
  content: "\f879";
  font-weight: 900;
  margin-right: 5px;
}
.num a:hover {
  color: #ecc68b;
}

.telbox {
  max-width: 600px;
  margin: 0 auto 20px;
  padding: 20px;
  background: #333;
  text-align: center;
}
.telbox .inner {
  background: #fff;
  padding: 10px;
}

.txt-link {
  font-weight: 600;
  text-decoration: underline;
}
.txt-link:hover {
  text-decoration: none;
}
.txt-link.map:before {
  font-family: "Font Awesome 5 Free";
  content: "\f3c5";
  font-weight: 900;
  margin-right: 4px;
}

.telbnr {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 30px auto 30px;
}
.telbnr li {
  width: 47%;
  border: 3px solid #202121;
  padding: 10px 10px;
  text-align: center;
  border-radius: 50px;
}
.telbnr li.telbnr-mail a {
  font-size: 2rem;
  padding-top: 5px;
}
.telbnr li.telbnr-mail a:before {
  font-family: "Font Awesome 5 Free";
  content: "\f0e0";
  font-weight: 900;
}
@media screen and (max-width: 639px) {
  .telbnr li.telbnr-mail a {
    font-size: 1.4rem;
    padding: 0;
  }
}
.telbnr li a {
  display: block;
  font-size: 2.4rem;
  font-weight: 600;
  color: #202121;
}
.telbnr li a:before {
  font-family: "Font Awesome 5 Free";
  content: "\f879";
  font-weight: 900;
  margin-right: 5px;
}
.telbnr li a:hover {
  color: #202121;
}
@media screen and (max-width: 639px) {
  .telbnr {
    max-width: 90%;
  }
  .telbnr li {
    width: 100%;
    margin: 0 auto 30px;
  }
  .telbnr li a {
    font-size: 2rem;
  }
}

.telbnr-ttl {
  font-weight: 600;
  font-size: 1.6rem;
  color: #333;
  margin-top: -30px;
}
.telbnr-ttl span {
  background: #fff;
  padding: 0 20px;
}
@media screen and (max-width: 639px) {
  .telbnr-ttl {
    font-size: 1.3rem;
  }
}

/* breadcrumb
----------------------------------*/
.breadcrumb {
  max-width: 1200px;
  margin: 20px auto 20px;
  font-size: 1.2rem;
  text-align: center;
}
.breadcrumb li {
  display: inline;
  color: #777;
}
.breadcrumb li a {
  color: #202121;
}
.breadcrumb li + li:before {
  margin: 0 10px;
  content: ">";
}
@media screen and (max-width: 639px) {
  .breadcrumb {
    font-size: 12px;
  }
}

/* form
----------------------------------*/
.form {
  margin: 0 auto;
  width: 90%;
}
.form dl dt {
  float: left;
  width: 200px;
  padding-top: 20px;
  font-weight: 600;
}
.form dl dt span {
  /* color: #a7dae7; */
  background: #CBCBEA;
  border-bottom: 1px solid #CBCBEA;
  /* border-bottom: 1px solid #a7dae7; */
  padding: 5px;
  margin-right: 5px;
  font-size: 13px;
  position: relative;
  top: -2px;
}
.form dl dt span.nini {
  background: #ffd803;
  color: #4b382d;
}
.form dl dd {
  padding-left: 220px;
  padding-bottom: 20px;
  padding-top: 23px;
  line-height: 1.5;
}
.form dl dd:last-child {
  border-bottom: none;
}
.form .textarea02 {
  width: 48.5%;
  margin-right: 3%;
}
.form .textarea02:last-child {
  margin-right: 0;
}
.form .textarea03 {
  width: 26%;
  margin-right: 1%;
}
.form .textarea04 {
  width: 20%;
  margin-right: 1%;
}
.form .textarea04 {
  width: 20%;
  margin-right: 1%;
}
.form button {
  cursor: pointer;
  display: block;
  color: #fff;
  text-align: center;
  transition: all 0.2s ease-in-out;
  border: 1px solid #202121;
  font-weight: 600;
  padding: 18px 5px;
  margin: 0 auto;
  width: 250px;
  background: #202121;
  border-radius: 40px;
  font-size: 15px;
  font-family: "Afacad", sans-serif;
  font-weight: 400;
  text-transform: uppercase;
}
.form button:hover {
  background: #fff;
  color: #202121;
}
.form button:before {
  font-weight: normal;
  font-family: "Font Awesome 5 Free";
  content: "\f0e0";
  font-weight: 900;
  margin-right: 10px;
}
.form .select-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.form .select-group p {
  margin: 0 5px;
}
@media screen and (max-width: 639px) {
  .form .select-group .select-wrap {
    margin-top: 8px;
  }
}
.form .select-wrap {
  position: relative;
  overflow: hidden;
  display: inline-block;
  min-width: 192px;
  min-width: 12em;
  background-color: #ffffff;
  border: 1px solid #dddddd;
  color: #333;
}
.form .select-wrap select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  position: relative;
  z-index: 2;
  display: block;
  width: 200%;
  width: -webkit-calc(100% + 5em);
  margin: 0;
  padding: 11px 35px 11px 11px;
  padding: 0.6875rem 2.1875rem 0.6875rem 0.6875rem;
  background: transparent;
  border: 0;
  outline: none;
  line-height: 1.5;
}
.form .select-down:before {
  font-family: "Font Awesome 5 Free";
  content: "\f0ab";
  font-weight: 900;
  position: absolute;
  z-index: 1;
  top: 50%;
  right: 12px;
  right: 0.75rem;
  margin-top: -8px;
  margin-top: -0.5rem;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1;
  color: #202121;
}
.form label.radio_text {
  cursor: pointer;
  position: relative;
  margin-right: 20px;
  overflow: hidden;
  padding-left: 20px;
  display: inline-block;
}
.form label.radio_text:before {
  position: absolute;
  width: 15px;
  height: 15px;
  border: 1px solid #ccc;
  border-radius: 50%;
  left: 0px;
  top: 2px;
  content: "";
  z-index: 3;
}
.form label.radio_text:after {
  content: "";
  position: absolute;
  width: 11px;
  height: 11px;
  border-radius: 100%;
  left: 2px;
  top: 4px;
  background-color: #202121;
  z-index: 1;
}
.form label.radio_text input[type=radio] {
  -moz-appearance: none;
  -webkit-appearance: none;
  position: absolute;
  z-index: 2;
  width: 20px;
  height: 20px;
  left: -23px;
  top: 0px;
  margin: 0px;
  box-shadow: 20px -1px #fff;
}
.form label.radio_text input[type=radio]:checked {
  box-shadow: none;
}
.form label.radio_text input[type=radio]:focus {
  opacity: 0.2;
  box-shadow: 20px -1px #eeebda;
}
.form label.checkbox_text {
  cursor: pointer;
  position: relative;
  padding-left: 25px;
  margin: 0 20px 5px 0;
  overflow: hidden;
  display: inline-block;
}
.form label.checkbox_text:before {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  left: 0px;
  top: 0;
  border: 1px solid #ccc;
  z-index: 3;
  padding: 1px;
}
.form label.checkbox_text:after {
  content: "";
  position: absolute;
  top: 40%;
  left: 5px;
  display: block;
  margin-top: -9px;
  width: 8px;
  height: 12px;
  border-right: 3px solid #202121;
  border-bottom: 3px solid #202121;
  transform: rotate(45deg);
  z-index: 1;
}
.form label.checkbox_text input[type=checkbox] {
  -moz-appearance: none;
  -webkit-appearance: none;
  position: absolute;
  left: -40px;
  width: 20px;
  height: 20px;
  display: block;
  box-shadow: 41px 0px #fff;
  z-index: 2;
  margin: 0px;
  padding: 0px;
}
.form label.checkbox_text input[type=checkbox]:checked {
  box-shadow: none;
}
.form label.checkbox_text input[type=checkbox]:checked:focus {
  box-shadow: 40px 0px #666;
  opacity: 0.1;
}
.form label.checkbox_text input[type=checkbox]:focus {
  box-shadow: 41px 0px #eee;
}
.form input[type=text],
.form textarea {
  font-size: 16px;
}
@media screen and (max-width: 639px) {
  .form input[type=text],
  .form textarea {
    transform: scale(0.9);
    margin-left: -5px;
  }
}

.select-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.select-list .txt {
  font-size: 14px;
  display: inline-block;
  padding-right: 8px;
}

.fm-txt {
  font-size: 1.4rem;
  background: rgba(255, 255, 255, 0.5);
  padding: 5px;
}

.thanks {
  padding: 40px;
  max-width: 700px;
  margin: 0 auto;
}
@media screen and (max-width: 639px) {
  .thanks {
    max-width: 95%;
    padding: 30px 20px;
  }
}

.shadow {
  box-shadow: rgba(32, 33, 33, 0.25) 0px 50px 100px -20px, rgba(32, 33, 33, 0.3) 0px 30px 60px -30px;
}

.policy {
  padding: 30px;
  background: rgba(255, 255, 255, 0.5);
  font-size: 1.4rem;
  letter-spacing: 0;
}
.policy .inner {
  padding-right: 40px;
}
@media screen and (max-width: 639px) {
  .policy {
    font-size: 1.15rem;
  }
  .policy .inner {
    padding-right: 15px;
  }
}

.mtitle_small {
  position: relative;
  padding-bottom: 8px;
  margin-bottom: 15px;
  border-bottom: 1px solid #ccc;
  color: #202121;
  font-weight: 600;
}
.mtitle_small:before {
  content: "";
  width: 50px;
  height: 1px;
  background-color: #202121;
  position: absolute;
  left: 0;
  bottom: -1px;
}
@media screen and (max-width: 639px) {
  .mtitle_small {
    font-size: 1.4rem;
    line-height: 1.5;
  }
}

.mtitle_small2 {
  position: relative;
  margin-bottom: 10px;
  padding-left: 20px;
}
.mtitle_small2:before {
  content: "";
  background-color: #202121;
  width: 10px;
  height: 4px;
  position: absolute;
  top: 0.6em;
  left: 0;
}

/* gallery(photobox)
----------------------------------*/
.gallery_ul {
  display: flex;
  justify-content: start;
  flex-wrap: wrap;
  margin-left: -2%;
  margin-bottom: -4%;
}
@media screen and (max-width: 639px) {
  .gallery_ul {
    margin-left: auto;
    margin-right: auto;
  }
}
.gallery_ul > li {
  width: 31.33%;
  margin-left: 2%;
  margin-bottom: 4%;
  font-weight: 600;
}
.gallery_ul > li .photobox-wrap {
  width: 100%;
  height: 220px;
  text-align: center;
  overflow: hidden;
  background: #aaa;
  margin-bottom: 10px;
}
.gallery_ul > li .photobox-wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  font-family: "object-fit:contain;";
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
}
@media screen and (max-width: 1025px) {
  .gallery_ul > li {
    width: 48%;
  }
}
@media screen and (max-width: 639px) {
  .gallery_ul > li {
    width: 85%;
    margin: 0 auto 30px;
  }
  .gallery_ul > li .photobox-wrap {
    height: 180px;
  }
}

.comment {
  font-size: 1.4rem;
  letter-spacing: 0;
  padding: 0 5px;
}
@media screen and (max-width: 639px) {
  .comment {
    font-size: 12px;
  }
}

/*photoギャラリー*/
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px 3%;
}
@media screen and (max-width: 639px) {
  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}
.gallery li a {
  background: rgba(247, 244, 234, 0.2);
  display: block;
  text-align: center;
  padding: 0px;
  height: 240px;
}
.gallery li a img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
  /*IE対策*/
}
.gallery li p {
  font-size: 14px;
  margin: 3px 0 10px;
}

@media screen and (max-width: 1025px) {
  .gallery li a {
    height: 120px;
  }
  .gallery li p {
    font-size: 12px;
  }
}
.list2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 4%;
}
@media screen and (max-width: 639px) {
  .list2 {
    grid-template-columns: 1fr;
  }
}
.list2.type1 > li,
.list2.type1 .child {
  background: #fefefe;
  padding: 15px;
}
.list2.ai-center {
  align-items: center;
}
.list2.jc-center {
  justify-content: center;
}
.list2 > li,
.list2 .child {
  position: relative;
}
.list2 > li.child-100,
.list2 .child.child-100 {
  grid-column: 2fr;
}

.business-img img {
  box-shadow: 3px 3px rgba(32, 33, 33, 0.2) !important;
}

.list3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px 4%;
}
.list3.type1 li,
.list3.type1 .child {
  background: #fefefe;
  padding: 15px;
  border-radius: 8px;
  line-height: 1.6;
  font-size: 1.1em;
}
@media screen and (max-width: 639px) {
  .list3.type1 li,
  .list3.type1 .child {
    padding: 20px 10px 10px;
  }
}
.list3 li {
  position: relative;
}
@media screen and (max-width: 639px) {
  .list3 {
    width: 95%;
    grid-template-columns: 1fr;
    margin-left: auto;
    margin-right: auto;
    gap: 25px 0;
  }
}

.list4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px 2%;
}
@media screen and (max-width: 1025px) {
  .list4 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 639px) {
  .list4 {
    grid-template-columns: 1fr;
  }
}

.list5 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px 5%;
}
@media screen and (max-width: 1100px) {
  .list5 {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media screen and (max-width: 1025px) {
  .list5 {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 639px) {
  .list5 {
    grid-template-columns: repeat(2, 1fr);
  }
}

.prv dt {
  color: #202121;
  border-bottom: 1px solid #ccc;
  margin: 10px 0;
}

.note {
  padding: 15px;
  margin-top: 10px;
  background: #f7f4ea;
  font-size: 1.4rem;
}
.note.type1 {
  background: #fefefe;
}
@media screen and (max-width: 639px) {
  .note {
    font-size: 1.2rem;
  }
}

.flow-dl .flow-inner {
  padding: 8px;
}
.flow-dl .flow-inner:not(:last-of-type) {
  margin-bottom: 5px;
  border-bottom: solid 1px #aaa;
}
.flow-dl .flow-inner dt {
  font-size: 1.6rem;
  font-weight: 600;
  color: #202121;
}
.flow-dl .flow-inner dt .eng {
  font-family: "Afacad", sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  font-size: 2.5rem;
  color: #78d5d9;
  margin-right: 8px;
}
.flow-dl .flow-inner dd {
  margin-top: 5px;
  padding-left: 40px;
}
@media screen and (max-width: 639px) {
  .flow-dl .flow-inner {
    padding: 6px;
  }
  .flow-dl .flow-inner dt {
    font-size: 1.25rem;
  }
  .flow-dl .flow-inner dt .eng {
    font-size: 1.7rem;
  }
  .flow-dl .flow-inner dd {
    padding-left: 30px;
  }
}

.txt1 {
  font-size: 1.4rem;
  letter-spacing: 0;
}
@media screen and (max-width: 639px) {
  .txt1 {
    font-size: 1.2rem;
  }
}

.fee-box {
  margin: 10px 0 20px;
  font-weight: 600;
  background: lemonchiffon;
  padding: 5px;
}
.fee-box span {
  display: block;
  font-weight: normal;
}

.blog-month {
  margin-bottom: 10px;
}
.blog-month ul {
  display: flex;
  flex-wrap: wrap;
}
.blog-month ul li {
  width: 49%;
  padding: 5px 0;
  margin-bottom: 5px;
  text-align: center;
  letter-spacing: 0;
}
.blog-month ul li:nth-child(2n) {
  margin-left: 2%;
}
.blog-month ul li a {
  display: inline-block;
  color: #202121;
  font-weight: 600;
  border-bottom: 1px solid rgba(73, 68, 68, 0.2);
  font-size: 12px;
  text-align: center;
  font-family: "Afacad", sans-serif;
}
.blog-month ul li a:hover {
  color: #ffd803;
}

#a01,
#a02,
#a03,
#a04,
#a05,
#a06,
#a07,
#a08,
#a09,
#a10,
#a11,
#a12,
#contact,
.anchor {
  display: block;
  padding-top: 100px;
  margin-top: -100px;
}
@media screen and (max-width: 639px) {
  #a01,
  #a02,
  #a03,
  #a04,
  #a05,
  #a06,
  #a07,
  #a08,
  #a09,
  #a10,
  #a11,
  #a12,
  #contact,
  .anchor {
    padding-top: 0;
    margin-top: 0;
  }
}

.list-center {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.list-center li {
  width: 50%;
}
@media screen and (max-width: 639px) {
  .list-center {
    flex-direction: column;
  }
  .list-center li {
    width: 100%;
  }
}

.faq-dl .faq-inner {
  padding: 10px;
  margin-bottom: 20px;
  counter-increment: title;
}
.faq-dl .faq-inner:not(:last-of-type) {
  margin-bottom: 35px;
  padding-bottom: 20px;
  border-bottom: 3px solid #eee;
}
.faq-dl .faq-inner dt,
.faq-dl .faq-inner dd {
  position: relative;
  padding: 10px 20px 10px 64px;
}
.faq-dl .faq-inner dt:before,
.faq-dl .faq-inner dd:before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 45px;
  height: 45px;
  border-radius: 0 0 10px 0;
  font-size: 2.6rem;
  font-family: "Afacad", sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  line-height: 45px;
  text-align: center;
}
@media screen and (max-width: 639px) {
  .faq-dl .faq-inner dt,
  .faq-dl .faq-inner dd {
    padding: 8px 10px 8px 54px;
  }
  .faq-dl .faq-inner dt:before,
  .faq-dl .faq-inner dd:before {
    font-size: 2.2rem;
    width: 40px;
    height: 40px;
    line-height: 40px;
  }
}
.faq-dl .faq-inner dt {
  margin-bottom: 10px;
  font-weight: 600;
  font-size: 1.1em;
}
.faq-dl .faq-inner dt:before {
  content: "Q" counter(title);
  color: #fff;
  background: #78d5d9;
}
.faq-dl .faq-inner dd:before {
  content: "A" counter(title);
  color: #202121;
  background: rgba(249, 241, 221, 0.7);
}

.point-title {
  font-weight: 600;
  font-size: 1.8rem;
}
@media screen and (max-width: 639px) {
  .point-title {
    font-size: 1.4rem;
  }
}

.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
  left: 0px !important;
  right: auto;
  border-radius: 50%;
  box-shadow: rgba(32, 33, 33, 0.1) 0px 7px 12px 0px;
}

.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
  right: 0px !important;
  left: auto;
  box-shadow: rgba(32, 33, 33, 0.1) 0px 7px 12px 0px;
  border-radius: 50%;
}

.point-num {
  position: relative;
  z-index: 2;
  line-height: 1;
  color: #202121;
  font-family: "Afacad", sans-serif;
  font-weight: 500;
  font-size: 3.6rem;
  text-align: center;
  margin: 0 auto 10px;
}
@media screen and (max-width: 639px) {
  .point-num {
    width: 45px;
    height: 45px;
    line-height: 45px;
    font-size: 2.2rem;
    margin: -30px auto 10px;
  }
}

.bnr-list {
  text-align: center;
}
@media screen and (max-width: 1025px) {
  .bnr-list li {
    width: 48%;
    margin-right: 4%;
  }
  .bnr-list li:nth-child(2n) {
    margin-right: 0;
  }
}
.bnr-list a {
  display: block;
  text-align: center;
  background: #fefefe;
  padding: 8px 5px;
  font-size: 1.3rem;
  height: 100%;
}
.bnr-list a img {
  width: auto;
  max-width: 100%;
  margin: 0 auto;
  height: 45px;
}
@media screen and (max-width: 639px) {
  .bnr-list a {
    font-size: 12px;
    line-height: 1.5;
  }
  .bnr-list a img {
    height: 30px;
  }
}
.bnr-list li.bnr-txt {
  font-size: 2rem;
  font-weight: 600;
  line-height: 60px;
  background: #fefefe;
}
@media screen and (max-width: 639px) {
  .bnr-list li.bnr-txt {
    font-size: 1.5rem;
  }
}

.sns-list {
  display: flex;
}
.sns-list.center {
  justify-content: center;
  margin: 15px 0;
}
@media screen and (max-width: 1025px) {
  .sns-list.center2 {
    justify-content: center;
  }
}
.sns-list li a {
  width: 35px;
  height: 35px;
  border: 1px solid #fff;
  line-height: 35px;
  font-size: 17px;
  color: #fefefe;
  display: block;
  background: #333;
  border-radius: 100%;
  text-align: center;
  transition: all 0.2s ease-in;
  position: relative;
  font-weight: 600;
  padding-left: 1px;
}
.sns-list li a:hover {
  opacity: 0.7;
}
.sns-list li a.btn-facebook {
  background: #1877f2;
}
.sns-list li a.btn-twitter {
  background: #1da1f2;
}
.sns-list li a.btn-line {
  background: #06c755;
  line-height: 1;
  padding-top: 8px;
}
.sns-list li a.btn-line img {
  width: 18px;
}
.sns-list li a.btn-youtube {
  background: #c4302b;
}
.sns-list li a.btn-instagram {
  overflow: hidden;
  background: linear-gradient(135deg, #427eff 0%, #f13f79 70%) no-repeat;
}
.sns-list li a.btn-instagram i {
  position: relative;
  z-index: 2;
}
.sns-list li a.btn-instagram:before {
  content: "";
  position: absolute;
  /*絶対配置*/
  top: 18px;
  /*ずらす*/
  left: -10px;
  /*ずらす*/
  width: 50px;
  /*グラデーションカバーの幅*/
  height: 50px;
  /*グラデーションカバーの高さ*/
  background: radial-gradient(#ffdb2c 10%, rgba(255, 105, 34, 0.65) 55%, rgba(255, 88, 96, 0) 70%);
  /*グラデーション②*/
}
.sns-list li:not(:last-child) {
  margin-right: 10px;
}
@media screen and (max-width: 1025px) {
  .sns-list li:not(:last-child) {
    margin-right: 5px;
    margin-bottom: 0;
  }
}

.title01 {
  margin-bottom: 8px;
  padding-bottom: 4px;
  border-bottom: 2px solid #cfd4d5;
  font-weight: 600;
  font-size: 1.15em;
  color: #4b382d;
}

.title02 {
  text-align: center;
  margin-bottom: 20px;
}
.title02 span {
  display: inline-block;
  border-bottom: 1px solid #202121;
  font-size: 2.2rem;
  font-weight: 600;
}
.title02.type-left {
  text-align: left;
}
@media screen and (max-width: 639px) {
  .title02 span {
    font-size: 1.5rem;
  }
}

.title03 span {
  background: #202121;
  padding: 2px 5px;
  font-weight: 600;
  font-size: 1.1em;
  color: #fff;
}
.title03 span em {
  font-size: 1.2em;
}
.title03.type1 span {
  background: #ecc68b;
}
.title03.type2 span {
  background: #86cbdd;
}

.title04 {
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 20px;
}
.title04.type_center {
  margin-right: auto;
  margin-left: auto;
}
.title04 span {
  display: block;
  padding: 6px 12px;
  border-radius: 40px;
  background: #202121;
  color: #fefefe;
  font-size: 1.8rem;
}
@media screen and (max-width: 639px) {
  .title04 {
    margin-bottom: 15px;
  }
  .title04 span {
    padding: 4px 12px;
    font-size: 1.2rem;
  }
}

.fb-wrap {
  min-height: 400px;
  text-align: center;
  margin: 0 auto;
}

.box1 {
  position: relative;
  z-index: 4;
  margin-inline: auto;
  background: #fff;
  border-radius: 20px;
  padding: 25px;
}
@media screen and (max-width: 639px) {
  .box1 {
    padding: 15px;
  }
}
.box1.type1 {
  margin-top: -20px;
  max-width: 700px;
}
@media screen and (max-width: 639px) {
  .box1.type1 {
    max-width: 90%;
  }
}

.box2 {
  font-weight: 600;
  margin-top: 30px;
  background: rgba(134, 203, 221, 0.6);
  padding: 20px;
  color: #fff;
}

.box3 {
  position: relative;
  padding: 40px 90px;
}
.box3:before, .box3:after {
  content: "";
  width: 20px;
  height: 30px;
  position: absolute;
  display: inline-block;
}
.box3::before {
  border-left: solid 1px rgba(32, 33, 33, 0.5);
  border-top: solid 1px rgba(32, 33, 33, 0.5);
  top: 0;
  left: 0;
}
.box3:after {
  border-right: solid 1px rgba(32, 33, 33, 0.5);
  border-bottom: solid 1px rgba(32, 33, 33, 0.5);
  bottom: 0;
  right: 0;
}
@media screen and (max-width: 639px) {
  .box3 {
    padding: 2em;
  }
}

.slick-track {
  display: flex !important;
}

.slick-prev,
.slick-next {
  background: rgba(255, 255, 255, 0.8) !important;
  width: 35px !important;
  height: 35px !important;
  z-index: 20 !important;
  border-radius: 50% !important;
  border: 1px solid #aaa !important;
  top: 40%;
  transition: all 0.2s ease-in;
}
.slick-prev:before,
.slick-next:before {
  color: #333 !important;
}
.slick-prev:hover,
.slick-next:hover {
  background: #eceff3;
}

.slick-prev {
  left: 0 !important;
}

.slick-next {
  right: 0 !important;
}

.content-head {
  height: 400px;
}
@media screen and (max-width: 639px) {
  .content-head {
    height: 250px;
  }
}

.content-txt {
  position: relative;
  max-width: 800px;
  background: #fff;
  -webkit-backdrop-filter: blur(3px);
          backdrop-filter: blur(3px);
  padding: 20px 30px;
  margin: -80px auto 40px;
  border-radius: 20px;
}
@media screen and (max-width: 639px) {
  .content-txt {
    padding: 20px;
    max-width: 90%;
  }
}

/*slide_list*/
.slide_wrapper {
  position: relative;
  padding: 60px 0 0;
  display: flex;
  justify-content: space-between;
}
.slide_wrapper .ttl-box {
  width: 25%;
}
.slide_wrapper .ttl-box p {
  margin-bottom: 60px;
}
.slide_wrapper .inner {
  width: 70%;
}
.slide_wrapper::before {
  content: "";
  position: absolute;
  z-index: 10;
  bottom: -10%;
  right: -7%;
  transform: scale(-1, 1);
  width: 300px;
  height: 225px;
}
@media screen and (max-width: 1025px) {
  .slide_wrapper {
    flex-direction: column;
  }
  .slide_wrapper::before {
    width: 150px;
    height: 187px;
    bottom: -25%;
  }
  .slide_wrapper .ttl-box {
    width: 100%;
    margin-bottom: 30px;
  }
  .slide_wrapper .inner {
    width: 100%;
  }
}
@media screen and (max-width: 639px) {
  .slide_wrapper {
    padding: 0 !important;
  }
  .slide_wrapper .ttl-box p {
    margin-bottom: 30px;
  }
}

.slide_list,
.slide_list2 {
  gap: 30px;
  text-align: center;
}
.slide_list img,
.slide_list2 img {
  height: 400px;
  width: 400px;
  border-radius: 30px;
  -o-object-fit: cover;
     object-fit: cover;
  filter: grayscale(0.4);
  transition: filter 0.2s ease-in;
}
.slide_list img:hover,
.slide_list2 img:hover {
  filter: grayscale(0);
}
@media screen and (max-width: 1100px) {
  .slide_list img,
  .slide_list2 img {
    height: 300px;
    width: 300px;
  }
}
@media screen and (max-width: 639px) {
  .slide_list img,
  .slide_list2 img {
    height: 250px;
    width: 250px;
  }
}

.slide_list > li a {
  border: 1px solid #cfd4d5;
  padding: 10px;
  display: block;
  position: relative;
  overflow: hidden;
}
.slide_list > li a .caption {
  position: absolute;
  bottom: 0;
  left: 0;
  background: #f6f8f5;
  color: #202121;
  padding: 6px 25px;
  font-size: 1.7rem;
}
.slide_list > li a:hover img {
  transform: scale(1.1);
}
.slide_list > li a img {
  border-radius: 0;
  transition: all 0.5s ease;
}

.slide_list2 {
  gap: 5px;
}
.slide_list2 img {
  border-radius: 0;
  width: 400px;
  height: 350px;
  filter: brightness(0.5);
}
.slide_list2 img:hover {
  filter: brightness(0.5);
}
@media screen and (max-width: 639px) {
  .slide_list2 img {
    width: 200px;
    height: 200px;
  }
}

.slide_wrapper2 {
  position: relative;
  width: 90%;
  margin-left: auto;
  border: 1px solid #cfd4d5;
  padding: 10px;
  margin-right: -15px;
  overflow: hidden;
}
.slide_wrapper2 .slide_txt {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.slide_wrapper2 .slide_txt span {
  color: #fefefe;
  display: block;
  text-align: center;
  font-family: "Afacad", sans-serif;
}
.slide_wrapper2 .slide_txt span:first-child {
  font-size: 10rem;
}
@media screen and (max-width: 1025px) {
  .slide_wrapper2 .slide_txt span:first-child {
    font-size: 6rem;
  }
}

.flow-list {
  display: flex;
  flex-wrap: wrap;
  position: relative;
}
.flow-list.type1 {
  display: block;
}
.flow-list.type1 > li {
  width: 90%;
}
.flow-list.type1 > li:nth-child(2) {
  margin-left: 2%;
}
.flow-list.type1 > li:nth-child(3) {
  margin-left: 4%;
}
.flow-list.type1 > li:nth-child(4) {
  margin-left: 6%;
}
.flow-list.type1 > li:nth-child(5) {
  margin-left: 8%;
}
.flow-list.type1 > li .flow-title {
  margin-bottom: 10px;
}
@media screen and (max-width: 639px) {
  .flow-list.type1 > li {
    width: 100%;
  }
  .flow-list.type1 > li:nth-child(2), .flow-list.type1 > li:nth-child(3), .flow-list.type1 > li:nth-child(4), .flow-list.type1 > li:nth-child(5) {
    margin-left: 0;
  }
}
.flow-list > li {
  width: 48%;
  margin-right: 4%;
  margin-bottom: 30px;
  padding: 25px;
  display: flex;
  flex-wrap: wrap;
  background: #fefefe;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(75, 56, 45, 0.05);
  font-weight: 600;
}
.flow-list > li.type100 {
  flex-basis: 100%;
  margin-right: 0;
}
.flow-list > li:nth-child(2n) {
  margin-right: 0;
}
@media screen and (max-width: 639px) {
  .flow-list > li {
    width: 90%;
    margin: 0 auto 30px;
  }
  .flow-list > li:nth-child(2n) {
    margin-right: auto;
  }
}
.flow-list > li .flow-num {
  color: #ecc68b;
  font-size: 3.5rem;
  border-right: 1px solid #202121;
  padding-right: 15px;
  align-self: flex-start;
  line-height: 1.2;
  font-family: "Afacad", sans-serif;
  font-weight: 400;
  text-transform: uppercase;
}
.flow-list > li .flow-num span {
  font-size: 1.3rem;
  display: block;
  text-align: center;
}
.flow-list > li .txt {
  flex: 1;
  margin-left: 35px;
}
.flow-list > li .flow-title {
  color: #202121;
  border-bottom: 1px solid #202121;
  padding-bottom: 4px;
  font-weight: 600;
  font-size: 1.8rem;
  letter-spacing: 0.2rem;
}
@media screen and (max-width: 639px) {
  .flow-list > li {
    flex-direction: column;
  }
  .flow-list > li .flow-num {
    font-size: 2.2rem;
    text-align: center;
    border-right: 0;
    padding: 0 0 4px;
    border-bottom: 1px solid #CBCBEA;
    /* border-bottom: 1px solid #a7dae7; */
  }
  .flow-list > li .flow-title {
    font-size: 1.3rem;
  }
  .flow-list > li .txt {
    margin: 20px auto 0;
  }
}

.kiritori {
  height: 1px;
  border-top: 1px solid rgba(167, 218, 231, 0.2);
  margin: 5em auto;
  width: 20%;
  display: block;
}
@media screen and (max-width: 639px) {
  .kiritori {
    margin: 3em auto;
  }
}
.kiritori.kiritori_mini {
  width: 80%;
  margin: 1.5em auto;
}

.column2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.column2.tp {
  align-items: flex-start;
}
.column2.js-arun {
  justify-content: space-around;
}
.column2 .child {
  width: 48%;
}
.column2 .child01 {
  width: 40%;
}
.column2 .child02 {
  width: 55%;
}
.column2 .child03 {
  width: 35%;
}
.column2 .child04 {
  width: 60%;
}
.column2 .child-txt {
  position: absolute;
  width: 55%;
  right: 0;
  padding: 35px 30px;
  background: rgba(255, 255, 255, 0.85);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  border-radius: 10px;
}
.column2 .child-txt.type1 {
  right: auto;
  left: 0;
}
.column2 .child-img {
  width: 50%;
  border-radius: 10px;
  overflow: hidden;
}
.column2 .child-img.type1 {
  margin-left: auto;
}
.column2 .child-img.type2 {
  margin-left: 10%;
  margin-right: auto;
}
.column2 .child-img .child-img_deco img {
  aspect-ratio: 1100/600;
}
.column2 .child-img .child-img_deco::after {
  content: "";
  position: absolute;
  right: -10%;
  bottom: -50px;
  background: #f5f1e9;
  width: 66%;
  height: 90%;
  z-index: -2;
}
@media screen and (max-width: 765px) {
  .column2 .child-img .child-img_deco::after {
    right: 0;
  }
}
@media screen and (max-width: 765px) {
  .column2 {
    flex-direction: column;
  }
  .column2 .child,
  .column2 .child01,
  .column2 .child02,
  .column2 .child03,
  .column2 .child04,
  .column2 .child-img {
    width: 100%;
  }
  .column2 .child.bm10,
  .column2 .child01.bm10,
  .column2 .child02.bm10,
  .column2 .child03.bm10,
  .column2 .child04.bm10,
  .column2 .child-img.bm10 {
    margin-bottom: 10px;
  }
  .column2 .child.bm20,
  .column2 .child01.bm20,
  .column2 .child02.bm20,
  .column2 .child03.bm20,
  .column2 .child04.bm20,
  .column2 .child-img.bm20 {
    margin-bottom: 20px;
  }
  .column2 .child.column2-img,
  .column2 .child01.column2-img,
  .column2 .child02.column2-img,
  .column2 .child03.column2-img,
  .column2 .child04.column2-img,
  .column2 .child-img.column2-img {
    order: -1;
    margin-bottom: 30px;
  }
  .column2 .child img,
  .column2 .child01 img,
  .column2 .child02 img,
  .column2 .child03 img,
  .column2 .child04 img,
  .column2 .child-img img {
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
  .column2 .child-txt {
    position: relative;
    width: 100%;
    margin: 0 auto !important;
    padding: 20px 15px !important;
    border-radius: 0 0 10px 10px;
  }
  .column2 .child-img {
    order: -1;
    margin: auto !important;
    border-radius: 10px 10px 0 0;
  }
}

.column3 {
  display: flex;
  flex-wrap: wrap;
}
.column3.type1 {
  align-items: center;
}
.column3 .child {
  width: 32%;
  margin-right: 2%;
}
.column3 .child:nth-child(3n) {
  margin-right: 0;
}
.column3 .child p {
  text-align: center;
  padding: 10px 40px;
  font-size: 2rem;
  font-weight: 500;
  display: inline-block;
  width: 80%;
  letter-spacing: 0.5cap;
  background-color: #fefefe;
  border: 2px solid #202121;
  margin-bottom: 10px;
  position: relative;
}
.column3 .child p::before {
  border-bottom: 20px solid transparent;
  border-left: 20px solid #c6d4c6;
  content: "";
  display: block;
  position: absolute;
  top: 0px;
  left: 0px;
}
@media screen and (max-width: 639px) {
  .column3 .child p {
    font-size: 1.5rem;
    width: 100%;
  }
}
.column3.type2 .child {
  margin-bottom: 30px;
  padding: 15px;
  filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.05));
}
.column3.type2 .child .mtitle-bll {
  letter-spacing: 0;
}
.column3.type2 .child:nth-child(2n) .mtitle-bll::after {
  /* background: #a7dae7; */
  background: #CBCBEA;
}
.column3.type2 .child:nth-child(3n) .mtitle-bll::after {
  /* background: #a7dae7; */
  background: #CBCBEA;
}
@media screen and (max-width: 1025px) {
  .column3 .child {
    width: 48%;
  }
  .column3 .child.bm20 {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 639px) {
  .column3 .child {
    width: 98%;
  }
}

.article-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
}
.article-box .left {
  width: 25%;
  position: sticky;
  left: 0;
  top: 100px;
}
.article-box .right {
  width: 72%;
}
@media screen and (max-width: 1100px) {
  .article-box {
    justify-content: center;
  }
  .article-box .left {
    width: 90%;
    margin: 0 auto 30px;
  }
  .article-box .right {
    width: 90%;
  }
}

.btn-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 600px;
  margin: 0 auto 45px;
}
.btn-box a {
  display: block;
  width: 48%;
  text-align: center;
  font-weight: 600;
  background: #202121;
  padding: 15px 4px;
  color: #111;
  transition: all 0.2s ease-in;
}
.btn-box a:after {
  font-family: "Font Awesome 5 Free";
  content: "\f078";
  font-weight: 900;
  margin-left: 5px;
}
.btn-box a:hover {
  background: #cfd4d5;
  color: #fff;
}
@media screen and (max-width: 639px) {
  .btn-box {
    justify-content: center;
  }
  .btn-box a {
    width: 90%;
    margin: 0 auto 15px;
    padding: 10px 0;
  }
}

.page {
  text-align: center;
}

.policy-txt {
  max-width: 650px;
  margin: 40px auto;
}
.policy-txt .txt-inner {
  line-height: 2;
  font-size: 1.7rem;
}
@media screen and (max-width: 639px) {
  .policy-txt {
    padding: 0 15px;
  }
  .policy-txt .txt-inner {
    font-size: 1.3rem;
  }
}

.policy-lead {
  text-align: center;
  letter-spacing: 0.15em;
  font-size: 2rem;
  margin-bottom: 40px;
}
@media screen and (max-width: 639px) {
  .policy-lead {
    font-size: 1.5rem;
  }
}

.top-contact {
  position: relative;
  z-index: 4;
}

.top-lead01 {
  max-width: 900px;
  position: relative;
  background: #fff;
  padding: 20px;
  margin: -90px auto 0;
}
@media screen and (max-width: 639px) {
  .top-lead01 {
    padding: 15px 10px;
    margin-top: -60px;
  }
}

.merit_box {
  row-gap: 60px;
}
.merit_box > li .ttl {
  margin-bottom: 10px;
}
.merit_box > li .merit_num {
  color: #202121;
  font-size: 4rem;
  font-family: "Afacad", sans-serif;
  line-height: 0.5;
}
.merit_box > li .img {
  border: 1px solid #202121;
  padding: 10px;
}
@media screen and (max-width: 639px) {
  .merit_box > li .merit_num {
    font-size: 3rem;
  }
}

.half-box {
  max-width: 900px;
  margin-left: auto;
}

.title-big {
  position: relative;
  text-align: center;
  z-index: 3;
}
.title-big.type_about {
  margin-top: -110px;
  margin-bottom: 40px;
}
@media screen and (max-width: 1100px) {
  .title-big.type_about {
    margin-top: -80px;
  }
}
@media screen and (max-width: 639px) {
  .title-big.type_about {
    margin-top: 20px;
    margin-bottom: 0;
  }
}
.title-big .ja {
  display: block;
  position: relative;
  z-index: 2;
  font-size: 2rem;
}
.title-big:before {
  position: relative;
  content: attr(data-title);
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  font-size: 6rem;
  font-family: "Afacad", sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  color: #202121;
  line-height: 1;
  white-space: nowrap;
}
.title-big.type-left {
  text-align: left;
}
.title-big.type-left:after {
  margin-left: 0;
}
.title-big.type1:before {
  color: #202121;
  opacity: 0.7;
}
.title-big.type2 {
  color: #121212;
}
.title-big.type2 .ja {
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  padding: 0 6px;
}
.title-big.type2:before {
  color: transparent;
  background-image: radial-gradient(circle, #a39f9f 0%, #CBCBEA 40%, #202121 80%);
  /* background-image: radial-gradient(circle, #a39f9f 0%, #a7dae7 40%, #202121 80%); */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 1;
}
.title-big.type3 {
  color: #121212;
}
.title-big.type3 .ja {
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  padding: 0 6px;
}
.title-big.type3:before {
  color: transparent;
  background: rgb(254, 91, 242);
  background: linear-gradient(145deg, rgb(254, 91, 242) 0%, rgb(117, 79, 215) 20%, rgb(98, 169, 233) 40%, rgb(98, 246, 180) 60%, rgb(232, 255, 145) 80%, rgb(255, 163, 145) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 1;
}
.title-big.type-white:before {
  color: #fff;
}
.title-big.type-white .ja {
  color: #fff;
}
.title-big .small {
  font-size: 0.7em;
}
@media screen and (max-width: 1100px) {
  .title-big .ja {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 639px) {
  .title-big:before {
    font-size: 3.8rem;
  }
  .title-big .ja {
    font-size: 1.5rem;
  }
  .title-big .eng {
    font-size: 2.6rem;
  }
  .title-big.type-left {
    padding-left: 10px;
  }
}

.bg-stripe {
  background-image: repeating-linear-gradient(90deg, transparent, transparent 25%, rgba(51, 51, 51, 0.1) 25%, rgba(51, 51, 51, 0.1) calc(25% + 1px));
}

.top-strength-more {
  padding-bottom: 120px;
}
@media screen and (max-width: 1100px) {
  .top-strength-more {
    padding-bottom: 260px;
  }
}
@media screen and (max-width: 639px) {
  .top-strength-more {
    padding-bottom: 120px;
  }
}

.top_flower-btn {
  position: relative;
}
.top_flower-btn a {
  display: block;
  position: relative;
  max-width: 800px;
  margin-inline: auto;
  box-shadow: rgba(188, 9, 38, 0.1) 0px 25px 50px -12px;
  overflow: hidden;
  border-radius: 20px 0 20px 0;
}
.top_flower-btn a:before {
  position: absolute;
  content: "";
  right: -80px;
  top: -60px;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, #f7f4ea, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0));
  border-radius: 50%;
  filter: blur(10px);
}

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

.img-cover {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.3s all cubic-bezier(0.18, 0.06, 0.23, 1);
}

.ceo-wrap {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 639px) {
  .ceo-wrap {
    flex-direction: column;
  }
}
.ceo-wrap .ceo-img {
  width: 45%;
  order: 3;
  padding-right: 40px;
  position: relative;
}
.ceo-wrap .ceo-img figure {
  position: relative;
  display: block;
}
.ceo-wrap .ceo-img figure img {
  box-shadow: rgba(75, 56, 45, 0.2) 4px 48px 60px 0px;
}
.ceo-wrap .ceo-img figure:before {
  position: absolute;
  content: "";
  right: -30px;
  bottom: -30px;
  width: 80%;
  height: 70%;
  z-index: -1;
  background-image: linear-gradient(to right bottom, #202121, #202121);
  opacity: 0.7;
}
@media screen and (max-width: 639px) {
  .ceo-wrap .ceo-img {
    width: 70%;
    order: 0;
    padding-right: 30px;
  }
  .ceo-wrap .ceo-img figure:before {
    right: -25px;
    bottom: -25px;
  }
}
.ceo-wrap .ceo-txt {
  width: 50%;
  align-self: center;
}
.ceo-wrap .ceo-txt .inner {
  max-width: 600px;
  margin: 0 auto;
}
@media screen and (max-width: 639px) {
  .ceo-wrap .ceo-txt {
    width: 100%;
  }
  .ceo-wrap .ceo-txt .inner {
    padding: 25px;
    margin-top: 25px;
  }
}

.tel-list {
  max-width: 700px;
  margin-inline: auto;
}
.tel-list li {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 8px;
}
.tel-list li:not(:last-of-type) {
  border-bottom: 2px solid #eceff3;
  margin-bottom: 8px;
}
.tel-list li .title03 {
  margin-right: 20px;
  width: 6em;
}
.tel-list li .title03 span {
  padding: 8px 10px;
}

.contact-box {
  justify-content: center;
  display: flex;
  align-items: center;
}
.contact-box .lead {
  font-weight: 600;
  width: 10em;
  line-height: 1.4;
  text-align: center;
}
.contact-box .content {
  border-left: 2px solid #202121;
  padding-left: 20px;
}
.contact-box .content .contact-box-tel {
  color: #202121;
  font-weight: 600;
  font-size: 2.6rem;
  width: 200px;
  display: block;
  line-height: 1;
  font-family: "Afacad", sans-serif;
  font-weight: 500;
}
.contact-box .content .contact-box-tel:before {
  font-family: "Font Awesome 5 Free";
  content: "\f879";
  font-weight: 900;
  margin-right: 5px;
  font-size: 0.6em;
}
.contact-box .content .contact-box-tel:hover {
  color: #202121;
}
@media screen and (max-width: 639px) {
  .contact-box .content .contact-box-tel {
    font-size: 2rem;
  }
}

.pdf-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px 3%;
}
@media screen and (max-width: 639px) {
  .pdf-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
.pdf-list a {
  display: block;
  text-align: center;
  background: #75beb8;
  color: #111;
  font-weight: 600;
  padding: 15px 4px;
  transition: 0.3s all cubic-bezier(0.18, 0.06, 0.23, 1);
}
.pdf-list a:hover {
  background: #202121;
  color: #fff;
}
.pdf-list a:after {
  font-family: "Font Awesome 5 Free";
  content: "\f1c1";
  font-weight: 900;
  margin-left: 6px;
}

@media screen and (max-width: 1300px) {
  .title-wrapper {
    padding-left: 25px;
    padding-right: 25px;
  }
}
@media screen and (max-width: 1025px) {
  .title-wrapper {
    padding-left: 10px;
    padding-right: 10px;
  }
}

.js-span-text {
  opacity: 0;
}
.js-span-text.on {
  opacity: 1;
}
.js-span-text.on span {
  display: inline-block;
  opacity: 0;
}
.js-span-text.on span:nth-child(1) {
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 0.1s forwards;
}
.js-span-text.on span:nth-child(2) {
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 0.2s forwards;
}
.js-span-text.on span:nth-child(3) {
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 0.3s forwards;
}
.js-span-text.on span:nth-child(4) {
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 0.4s forwards;
}
.js-span-text.on span:nth-child(5) {
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 0.5s forwards;
}
.js-span-text.on span:nth-child(6) {
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 0.6s forwards;
}
.js-span-text.on span:nth-child(7) {
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 0.7s forwards;
}
.js-span-text.on span:nth-child(8) {
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 0.8s forwards;
}
.js-span-text.on span:nth-child(9) {
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 0.9s forwards;
}
.js-span-text.on span:nth-child(10) {
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 1s forwards;
}
.js-span-text.on span:nth-child(11) {
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 1.1s forwards;
}
.js-span-text.on span:nth-child(12) {
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 1.2s forwards;
}
.js-span-text.on span:nth-child(13) {
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 1.3s forwards;
}
.js-span-text.on span:nth-child(14) {
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 1.4s forwards;
}
.js-span-text.on span:nth-child(15) {
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 1.5s forwards;
}
.js-span-text.on span:nth-child(16) {
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 1.6s forwards;
}
.js-span-text.on span:nth-child(17) {
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 1.7s forwards;
}
.js-span-text.on span:nth-child(18) {
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 1.8s forwards;
}
.js-span-text.on span:nth-child(19) {
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 1.9s forwards;
}
.js-span-text.on span:nth-child(20) {
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 2s forwards;
}
.js-span-text.on span:nth-child(21) {
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 2.1s forwards;
}
.js-span-text.on span:nth-child(22) {
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 2.2s forwards;
}
.js-span-text.on span:nth-child(23) {
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 2.3s forwards;
}
.js-span-text.on span:nth-child(24) {
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 2.4s forwards;
}
.js-span-text.on span:nth-child(25) {
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 2.5s forwards;
}
.js-span-text.on span:nth-child(26) {
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 2.6s forwards;
}
.js-span-text.on span:nth-child(27) {
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 2.7s forwards;
}
.js-span-text.on span:nth-child(28) {
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 2.8s forwards;
}
.js-span-text.on span:nth-child(29) {
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 2.9s forwards;
}
.js-span-text.on span:nth-child(30) {
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 3s forwards;
}
.js-span-text.on span:nth-child(31) {
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 3.1s forwards;
}
.js-span-text.on span:nth-child(32) {
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 3.2s forwards;
}
.js-span-text.on span:nth-child(33) {
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 3.3s forwards;
}
.js-span-text.on span:nth-child(34) {
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 3.4s forwards;
}
.js-span-text.on span:nth-child(35) {
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 3.5s forwards;
}
.js-span-text.on span:nth-child(36) {
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 3.6s forwards;
}
.js-span-text.on span:nth-child(37) {
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 3.7s forwards;
}
.js-span-text.on span:nth-child(38) {
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 3.8s forwards;
}
.js-span-text.on span:nth-child(39) {
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 3.9s forwards;
}
.js-span-text.on span:nth-child(40) {
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 4s forwards;
}
.js-span-text.on span:nth-child(41) {
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 4.1s forwards;
}
.js-span-text.on span:nth-child(42) {
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 4.2s forwards;
}
.js-span-text.on span:nth-child(43) {
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 4.3s forwards;
}
.js-span-text.on span:nth-child(44) {
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 4.4s forwards;
}
.js-span-text.on span:nth-child(45) {
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 4.5s forwards;
}

@keyframes text {
  0% {
    opacity: 0;
    transform: translateX(-20px) translateY(-10px) scale(1.3);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
.shikaku-dl {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.shikaku-dl dt:not(:last-of-type),
.shikaku-dl dd:not(:last-of-type) {
  padding-bottom: 3px;
  margin-bottom: 3px;
  border-bottom: 0.9px solid #ddd;
}
.shikaku-dl dt {
  width: calc(100% - 4.5em);
  position: relative;
  padding-left: 1em;
}
.shikaku-dl dt:before {
  content: "●";
  font-size: 0.6em;
  color: #202121;
  margin-right: 4px;
  position: absolute;
  left: 0;
  top: 0.5em;
}
.shikaku-dl dt .list-inline li {
  padding: 0;
}
.shikaku-dl dd {
  width: 4.5em;
  text-align: right;
  font-weight: 600;
}

.recruit-lead {
  position: relative;
  z-index: 2;
  text-align: center;
  margin: 0 auto -30px;
}

.fukidashi {
  position: relative;
  z-index: 2;
  text-align: center;
  margin: 0 auto 20px;
}
.fukidashi.type1 {
  margin-top: 0;
}
.fukidashi span {
  position: relative;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  padding: 12px 20px;
  border-radius: 40px;
  background: #eceff3;
  font-size: 2.6rem;
  color: #4b382d;
  line-height: 1.2;
  font-weight: 600;
}
@media screen and (max-width: 639px) {
  .fukidashi span {
    font-size: 1.8rem;
  }
}
.fukidashi span:before {
  position: absolute;
  content: "";
  left: 50%;
  bottom: -13px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 18px 20px 0 20px;
  border-color: #eceff3 transparent transparent transparent;
  transform: translateX(-50%);
  z-index: -1;
}

@media screen and (max-width: 1100px) {
  .contents-list {
    padding: 0 10px;
  }
}
.contents-list a {
  display: block;
  position: relative;
}
.contents-list a .num {
  font-family: "Afacad", sans-serif;
  font-weight: 500;
  font-size: 5rem;
  position: absolute;
  left: 0.2em;
  top: -30px;
  color: #fff;
  z-index: 2;
  line-height: 1;
  padding-left: 0.05em;
  text-shadow: 5px 5px 30px rgba(17, 17, 17, 0.3);
  transition: 0.3s all cubic-bezier(0.18, 0.06, 0.23, 1);
}
.contents-list a:before {
  position: absolute;
  content: "0";
  color: #4b382d;
  left: -11px;
  top: -44px;
  font-size: 4.5rem;
  z-index: -1;
  font-family: "Afacad", sans-serif;
  font-weight: 500;
}
.contents-list a:after {
  position: absolute;
  content: "";
  right: 9%;
  bottom: -50%;
  width: 100%;
  height: 50%;
  background-image: linear-gradient(to bottom, rgba(75, 56, 45, 0.2) 0%, rgba(75, 56, 45, 0.1) 20%, transparent 35%);
  transform: skew(-25deg);
  z-index: -1;
  opacity: 0.5;
}
.contents-list a figure {
  overflow: hidden;
  position: relative;
}
.contents-list a figure:before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to bottom, transparent 0%, transparent 60%, rgba(32, 33, 33, 0.9) 100%);
  z-index: 2;
}
.contents-list a figure img {
  transition: 0.3s all cubic-bezier(0.18, 0.06, 0.23, 1);
}
.contents-list a .content-list_title {
  position: absolute;
  left: 0;
  bottom: 8px;
  padding-left: 1em;
  color: #fff;
  text-shadow: 0 0 8px rgba(17, 17, 17, 0.1);
  z-index: 3;
}
.contents-list a .content-list_title:before {
  position: relative;
  content: attr(data-title);
  margin-top: -40px;
  display: block;
  font-family: "Afacad", sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  font-size: 3.2rem;
  line-height: 1;
  transition: 0.3s all cubic-bezier(0.18, 0.06, 0.23, 1);
  z-index: 2;
}
.contents-list a .content-list_title .ja {
  font-size: 1.2em;
}
.contents-list a:hover .num {
  color: #ffd803;
}
.contents-list a:hover figure img {
  transform: scale(1.1);
}
.contents-list a:hover .content-list_title:before {
  color: #ffd803;
}

@media screen and (max-width: 639px) {
  .flow-area {
    padding: 0 20px;
  }
}
.flow-area li .num {
  position: relative;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto -10px;
  padding: 4px 10px;
  background: #fff;
  border-radius: 20px;
  line-height: 1;
  font-family: "Afacad", sans-serif;
  font-weight: 400;
  text-transform: uppercase;
}
.flow-area li .num em {
  color: #202121;
  font-size: 1.4em;
}
.flow-area li .num:before {
  position: absolute;
  content: "";
  left: 50%;
  bottom: -8px;
  width: 20px;
  height: 10px;
  margin-left: -12px;
  background: #fff;
  -webkit-clip-path: polygon(100% 0, 0 0, 50% 100%);
          clip-path: polygon(100% 0, 0 0, 50% 100%);
}
.flow-area li figure {
  max-width: 140px;
  margin: 0 auto 10px;
  padding: 25px 0;
  background: rgba(117, 190, 184, 0.6);
  border-radius: 41% 59% 48% 52%/58% 51% 49% 42%;
  box-shadow: 3px 2px #ecf7f5;
}
.flow-area li figure img {
  width: 80px;
}
.flow-area li .title01 {
  text-align: center;
}

#btn-fixed {
  position: fixed;
  right: 0;
  bottom: 80px;
  z-index: 20;
}
#btn-fixed a {
  display: block;
  width: 200px;
  transform: translateX(10px);
  transition: 0.3s all cubic-bezier(0.18, 0.06, 0.23, 1);
}
#btn-fixed a:hover {
  transform: translateX(0);
}
@media screen and (max-width: 1100px) {
  #btn-fixed {
    bottom: 0;
  }
  #btn-fixed a {
    width: 180px;
  }
}
@media screen and (max-width: 639px) {
  #btn-fixed a {
    width: 160px;
  }
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.8), 0 0 0 0 rgba(255, 255, 255, 0.8);
  }
  30% {
    box-shadow: 0 0 0 30px rgba(255, 255, 255, 0), 0 0 0 0 rgba(255, 255, 255, 0.8);
  }
  65% {
    box-shadow: 0 0 0 30px rgba(255, 255, 255, 0), 0 0 0 10px rgba(255, 255, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0), 0 0 0 10px rgba(255, 255, 255, 0);
  }
}
.icon-triangle {
  width: 90px;
  height: 90px;
  background: rgba(0, 0, 0, 0.3);
  border: 3px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  line-height: 90px;
  text-align: center;
  font-size: 3rem;
  animation: pulse 1.6s linear infinite;
  color: #fff;
}
@media screen and (max-width: 639px) {
  .icon-triangle {
    width: 70px;
    height: 70px;
    line-height: 70px;
    font-size: 2rem;
  }
}

.js-tilt-glare {
  border-radius: 25px !important;
}

.company-dl {
  border-top: 3px solid #fff;
  padding-top: 10px;
}
.company-dl .inner {
  display: flex;
  padding: 12px 10px;
}
.company-dl .inner:not(:last-of-type) {
  margin-bottom: 8px;
  border-bottom: 1px solid #3cb75f;
}
.company-dl .inner dt {
  width: 9em;
  font-weight: 600;
  color: #333;
}
.company-dl .inner dd {
  flex: 1;
  margin-left: 24px;
}
@media screen and (max-width: 639px) {
  .company-dl .inner dd {
    margin-left: 12px;
  }
}
@media screen and (max-width: 639px) {
  .company-dl .inner dt {
    width: 7em;
  }
  .company-dl .inner dd {
    margin-left: 10px;
  }
}

.top-news-btn {
  position: absolute;
  left: -10px;
  top: 160px;
}
.top-news-btn a {
  width: 200px;
}
@media screen and (max-width: 639px) {
  .top-news-btn {
    position: relative;
    left: auto;
    top: auto;
    transform: translateY(40px);
  }
  .top-news-btn a {
    width: 180px;
    margin-left: 0;
  }
}

.img-insert {
  max-width: calc(100% - 80px);
  margin: 40px auto;
  height: 300px;
  position: relative;
}
@media screen and (max-width: 639px) {
  .img-insert {
    max-width: calc(100% - 20px);
    height: 200px;
    margin: 20px auto;
  }
}

.history {
  position: relative;
}
.history:before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 20px;
  height: 100%;
  background-image: linear-gradient(to top, #202121, #75beb8);
  opacity: 0.7;
  border-radius: 20px;
}
.history .history-inner {
  position: relative;
  padding-left: 70px;
}
.history .history-inner:before {
  position: absolute;
  content: "";
  left: 12px;
  top: 15px;
  width: 40px;
  height: 1px;
  background: #202121;
}
.history .history-inner:after {
  position: absolute;
  content: "";
  left: 6px;
  top: 10px;
  width: 10px;
  height: 10px;
  background: #86cbdd;
  border-radius: 50%;
}
@media screen and (max-width: 639px) {
  .history .history-inner {
    padding-left: 45px;
  }
  .history .history-inner:before {
    width: 25px;
  }
}
.history .history-inner:not(:last-of-type) {
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(170, 170, 170, 0.5);
}
.history .history-inner dt {
  font-weight: 600;
  color: #202121;
  font-size: 1.15em;
}
.history .history-inner dt span {
  font-size: 1.5rem;
  padding: 0 3px;
}
.history .history-inner dt span:before {
  content: "(";
}
.history .history-inner dt span:after {
  content: ")";
}
@media screen and (max-width: 639px) {
  .history .history-inner dt {
    font-size: 1.2em;
  }
  .history .history-inner dt span {
    font-size: 1.1rem;
  }
}
.history .history-inner dd {
  padding: 14px 18px;
}
@media screen and (max-width: 639px) {
  .history .history-inner dd {
    padding: 12px;
  }
}

.link-bnr-list {
  display: grid;
  grid-template-columns: repeat(3, 240px);
  gap: 8px 10px;
  justify-content: center;
  width: -moz-fit-content;
  width: fit-content;
  padding: 24px;
  background: rgba(255, 255, 255, 0.5);
  box-shadow: rgba(85, 85, 85, 0.1) 0px 10px 50px;
  border-radius: 12px;
}
.link-bnr-list li {
  background: #fff;
  text-align: center;
}

/* 新フォーム
---------------------------------*/
#form-box {
  min-height: 300px;
  margin-bottom: 20px;
}
#form-box .form-pattern-1 {
  width: 100% !important;
  padding: 0 !important;
  background: none !important;
}
#form-box .form-pattern-1 form dl dt {
  font-weight: 400;
  width: 210px;
}
@media screen and (max-width: 1025px) {
  #form-box .form-pattern-1 form dl dt {
    float: none !important;
    width: auto !important;
  }
}
#form-box .form-pattern-1 form dl dt span.required:before {
  background: #202121;
  margin-right: 8px;
}
#form-box .form-pattern-1 form dl dd:not(.pattern-exclusion) {
  padding-left: 220px;
}
@media screen and (max-width: 1025px) {
  #form-box .form-pattern-1 form dl dd:not(.pattern-exclusion) {
    padding-left: 0 !important;
  }
}
#form-box .form-pattern-1 form dl dd .mtitle_sub {
  font-weight: 400;
  font-size: 0.9em;
}
#form-box .form-pattern-1 form dl dd .textarea,
#form-box .form-pattern-1 form dl dd textarea {
  border: 0;
  height: auto !important;
  padding: 15px;
  width: 100%;
  -webkit-appearance: none;
  background: #eee;
}
#form-box .form-pattern-1 .form-thanks-msg {
  box-shadow: 0 0 0 2px #ddd !important;
  background: rgba(255, 255, 255, 0.8) !important;
}
#form-box .form-pattern-1 .form-thanks-msg .back-home-btn a {
  border: 1px solid #202121;
  color: #202121 !important;
}
#form-box .form-pattern-1 .form-thanks-msg .back-home-btn a:hover {
  background: rgba(167, 218, 231, 0.2);
}
#form-box .form-pattern-1 .select-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
#form-box .form-pattern-1 .select-group p {
  margin: 0 5px;
  font-weight: 600;
}
@media screen and (max-width: 639px) {
  #form-box .form-pattern-1 .select-group .select-wrap {
    margin-top: 8px;
  }
}
#form-box .form-pattern-1 input[type=text],
#form-box .form-pattern-1 textarea {
  font-size: 16px;
}
@media screen and (max-width: 639px) {
  #form-box .form-pattern-1 input[type=text],
  #form-box .form-pattern-1 textarea {
    transform: scale(0.9);
    margin-left: -5px;
  }
}
#form-box .form-pattern-1 .select-wrap {
  position: relative;
  overflow: hidden;
  display: inline-block;
  min-width: 13em;
  background-color: #ffffff;
  font-size: 1.7rem;
  color: #333;
}
#form-box .form-pattern-1 .select-wrap select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  position: relative;
  z-index: 2;
  display: block;
  width: 200%;
  width: -webkit-calc(100% + 5em);
  margin: 0;
  padding: 11px 35px 11px 11px;
  font-weight: 600;
  background: transparent;
  border: 0;
  outline: none;
  line-height: 1.5;
}
#form-box .form-pattern-1 .submit-btn {
  cursor: pointer;
  display: block;
  color: #fff;
  text-align: center;
  transition: all 0.2s ease-in-out;
  border: 1px solid #202121;
  font-weight: 600;
  padding: 18px 5px;
  margin: 0 auto;
  width: 250px;
  background: #202121;
  border-radius: 40px;
  font-size: 15px;
  font-family: "IBM Plex Sans JP", "YakuHanJP", Lato, "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
#form-box .form-pattern-1 .submit-btn:hover {
  background: #fff;
  color: #202121;
}
#form-box .form-pattern-1 .submit-btn:before {
  font-weight: normal;
  font-family: "Font Awesome 5 Free";
  content: "\f0e0";
  font-weight: 900;
  margin-right: 10px;
}
#form-box .form-pattern-1 .select-down:before {
  font-family: "Font Awesome 5 Free";
  content: "\f0ab";
  font-weight: 900;
  position: absolute;
  z-index: 1;
  top: 50%;
  right: 12px;
  right: 0.75rem;
  margin-top: -8px;
  margin-top: -0.5rem;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1;
  color: #202121;
}

label.radio_text {
  cursor: pointer;
  position: relative;
  margin-right: 20px;
  overflow: hidden;
  padding-left: 20px;
  display: inline-block;
}
label.radio_text:before {
  position: absolute;
  width: 15px;
  height: 15px;
  border: 1px solid #ccc;
  border-radius: 50%;
  left: 0px;
  top: 2px;
  content: "";
  z-index: 3;
}
label.radio_text:after {
  content: "";
  position: absolute;
  width: 11px;
  height: 11px;
  border-radius: 100%;
  left: 2px;
  top: 4px;
  background-color: #202121;
  z-index: 1;
}
label.radio_text input[type=radio] {
  -moz-appearance: none;
  -webkit-appearance: none;
  position: absolute;
  z-index: 2;
  width: 20px;
  height: 20px;
  left: -23px;
  top: 0px;
  margin: 0px;
  box-shadow: 20px -1px #fff;
}
label.radio_text input[type=radio]:checked {
  box-shadow: none;
}
label.radio_text input[type=radio]:focus {
  opacity: 0.2;
  box-shadow: 20px -1px #eeebda;
}
label.checkbox_text {
  cursor: pointer;
  position: relative;
  padding-left: 25px;
  margin: 0 20px 5px 0;
  overflow: hidden;
  display: inline-block;
}
label.checkbox_text:before {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  left: 0px;
  top: 0;
  border: 1px solid #ccc;
  z-index: 3;
  padding: 1px;
}
label.checkbox_text:after {
  content: "";
  position: absolute;
  top: 40%;
  left: 5px;
  display: block;
  margin-top: -9px;
  width: 8px;
  height: 12px;
  border-right: 3px solid #202121;
  border-bottom: 3px solid #202121;
  transform: rotate(45deg);
  z-index: 1;
}
label.checkbox_text input[type=checkbox] {
  -moz-appearance: none;
  -webkit-appearance: none;
  position: absolute;
  left: -40px;
  width: 20px;
  height: 20px;
  display: block;
  box-shadow: 41px 0px #fff;
  z-index: 2;
  margin: 0px;
  padding: 0px;
}
label.checkbox_text input[type=checkbox]:checked {
  box-shadow: none;
}
label.checkbox_text input[type=checkbox]:checked:focus {
  box-shadow: 40px 0px #666;
  opacity: 0.1;
}
label.checkbox_text input[type=checkbox]:focus {
  box-shadow: 41px 0px #eee;
}

.pass_submit {
  border: 0;
  border-radius: 0;
  color: inherit;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  font-size: 1em;
  line-height: 1.2;
  padding: 0.5em var(--padding-x);
  border-width: 2px;
  border-style: solid;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-color: transparent;
  background: #202121;
  color: #fff;
  font-weight: 600;
  --padding-x: 1.2em;
}

.textarea,
textarea {
  border: 0;
  padding: 15px;
  width: 100%;
  border-radius: 0;
  -webkit-appearance: none;
  background: #eee;
  border-bottom: 1px solid rgba(207, 212, 213, 0.4);
}

.pass-box {
  max-width: 600px;
  margin: 20px auto;
}
.pass-box form {
  display: flex;
}
.pass-box form .textarea {
  flex: 1;
  margin-right: 10px;
}

.service-anchor-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 10px 0;
}
.service-anchor-list li:not(:last-of-type) {
  margin-right: 10px;
}
.service-anchor-list li a {
  position: relative;
  display: block;
  padding: 8px 30px 8px 16px;
  background: #fff;
  border-radius: 50px;
  font-size: 1.4rem;
  color: #78d5d9;
  font-weight: 600;
  transition: 0.3s all cubic-bezier(0.18, 0.06, 0.23, 1);
}
.service-anchor-list li a:after {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  font-family: "Font Awesome 5 Free";
  content: "\f063";
  font-weight: 900;
  color: #7e9fb9;
  font-size: 0.8em;
}
.service-anchor-list li a:hover {
  background: #86cbdd;
  color: #fff;
}
@media screen and (max-width: 639px) {
  .service-anchor-list {
    justify-content: space-between;
    max-width: 90%;
    margin-inline: auto;
  }
  .service-anchor-list li {
    width: 48%;
  }
  .service-anchor-list li:not(:last-of-type) {
    margin-right: 0;
    margin-bottom: 10px;
  }
  .service-anchor-list li a {
    font-size: 1.2rem;
  }
}

.name .role {
  margin-right: 8px;
}
.name .ja {
  font-weight: 600;
  font-size: 1.3em;
}
.name .eng {
  color: #CBCBEA;
  /* color: #a7dae7; */
  display: block;
  line-height: 1;
}
@media screen and (max-width: 639px) {
  .name {
    justify-content: center;
  }
}

.activity-dl {
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
.activity-dl .inner {
  display: flex;
}
.activity-dl .inner:not(:last-of-type) {
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid #7e9fb9;
}
.activity-dl dt {
  width: 7em;
  color: #202121;
  font-weight: 700;
  font-size: 1.8rem;
}
.activity-dl dd {
  flex: 1;
  margin-left: 20px;
}
@media screen and (max-width: 639px) {
  .activity-dl dt {
    font-size: 1.3rem;
  }
  .activity-dl dd {
    margin-left: 12px;
  }
}

/* animation
----------------------------------*/
@keyframes flash {
  0% {
    opacity: 0.4;
  }
  100% {
    opacity: 1;
  }
}
@keyframes animation-bar {
  0% {
    left: 0;
    width: 0;
  }
  50% {
    left: 0;
    width: 100%;
  }
  51% {
    left: 0;
    width: 100%;
  }
  100% {
    left: 100.5%;
    width: 0;
  }
}
@keyframes animation-txt {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.animation-content.move .animation-bar:before {
  animation: animation-bar 1s ease 0s 1 normal forwards;
}
.animation-content.move .animation-txt {
  animation: animation-txt 0s ease 0.8s 1 normal forwards;
}
.animation-content .animation-box {
  display: block;
  text-align: center;
}
.animation-content .animation-bar {
  position: relative;
  display: block;
  transform: translate3d(0, 0, 0);
}
.animation-content .animation-bar:before {
  content: "";
  display: inline-block;
  width: 0;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  background-image: linear-gradient(to right, #202121, #CBCBEA);
  /* background-image: linear-gradient(to right, #202121, #a7dae7); */
}
.animation-content .animation-txt {
  opacity: 0;
  transform: translate3d(0, 0, 0);
}

/*----------------------------------
bg anime
----------------------------------*/
.move-anime {
  opacity: 0;
  transform: translate(-20px, 20px) skewY(-5deg);
}
.move-anime.move-anime-on {
  animation: moveanimeon 1s ease-out 0.6s forwards;
}

.move-anime-bg:before {
  opacity: 0;
  transform: translate(-20px, 20px) skewY(-5deg);
}
.move-anime-bg.move-anime-on:before {
  animation: moveanimeon 1s ease-out 0.6s forwards;
}

@keyframes moveanimeon {
  0% {
    opacity: 0;
    transform: translate(-20px, 20px) skewY(-5deg);
  }
  100% {
    opacity: 1;
    transform: translate(0px, 0px) skewY(0deg);
  }
}
@keyframes photoanimeon2 {
  0% {
    opacity: 0;
    filter: blur(10px);
  }
  100% {
    opacity: 1;
    filter: blur(0px);
  }
}
.txt-anime .txtarea__main__txt {
  position: relative;
  z-index: 1;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 10px;
  text-align: center;
  padding: 4px 40px;
}
.txt-anime .txtarea__main__txt span {
  opacity: 0;
  display: block;
  transform: translateY(20px);
}
.txt-anime .txtarea__main__txt:before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 0%;
  height: 100%;
  background: rgb(126, 193, 252);
  background: linear-gradient(132deg, rgb(126, 193, 252) 0%, rgb(115, 228, 190) 50%, rgb(227, 230, 106) 100%);
  z-index: -1;
}
.txt-anime.txt-anime-on .txtarea__main__txt span {
  animation: txton 0.5s ease-out 0.6s forwards;
}
.txt-anime.txt-anime-on .txtarea__main__txt:before {
  transition: 0.5s;
  width: 100%;
}
.txt-anime.txt-anime-on .txtarea__main__txt.type2 span {
  animation: txton 0.5s ease-out 0.8s forwards;
}
.txt-anime.txt-anime-on .txtarea__main__txt.type2:before {
  transition-delay: 0.4s;
}
.txt-anime.txt-anime-on .txtarea__main__txt.type3 span {
  animation: txton 0.5s ease-out 1s forwards;
}
.txt-anime.txt-anime-on .txtarea__main__txt.type3:before {
  transition-delay: 0.8s;
}
@media screen and (max-width: 639px) {
  .txt-anime .txtarea__main__txt {
    padding: 4px 20px;
    font-size: 14px;
  }
}

@keyframes txton {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}
.effect_fade {
  opacity: 0;
  transform: translate(0, 45px);
  transition: all 2s;
}
.effect_fade.effect_scroll {
  opacity: 1;
  transform: translate(0, 0);
}

.quote-box {
  position: relative;
  margin: 0 auto;
  padding: 25px 4em;
  border: 1px solid #cfd4d5;
}
.quote-box .quote-eng {
  font-family: "Afacad", sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  color: rgba(167, 218, 231, 0.8);
  font-size: 2rem;
  text-transform: inherit;
}
@media screen and (max-width: 639px) {
  .quote-box {
    -webkit-backdrop-filter: unset;
            backdrop-filter: unset;
    padding: 25px 2em;
  }
  .quote-box .quote-eng {
    font-size: 1.4rem;
  }
}

.about-bottom-txt {
  margin-top: 40px;
}

.solution_sub_box {
  position: relative;
}
.solution_sub_box:not(:last-of-type) {
  margin-top: -20px;
  margin-bottom: 80px;
}
.solution_sub_box > .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1000px;
  margin-inline: auto;
  padding-bottom: 60px;
}
.solution_sub_box > .inner .img {
  width: 50%;
  height: auto;
  aspect-ratio: 1.3/1;
}
.solution_sub_box > .inner .img img {
  border-radius: 0 0 40px 0;
}
.solution_sub_box > .inner .txt {
  width: 45%;
}
.solution_sub_box:before {
  position: absolute;
  content: "";
  right: 0;
  bottom: 0;
  width: 100%;
  height: calc(100% + 270px);
  background: #f7f4ea;
  z-index: -1;
}
.solution_sub_box.type_reverse > .inner {
  flex-direction: row-reverse;
}
@media screen and (max-width: 1100px) {
  .solution_sub_box {
    padding: 0 20px;
  }
}
@media screen and (max-width: 639px) {
  .solution_sub_box:before {
    height: calc(100% + 200px);
  }
  .solution_sub_box > .inner {
    flex-direction: column;
  }
  .solution_sub_box > .inner .img {
    width: 100%;
  }
  .solution_sub_box > .inner .txt {
    width: 100%;
    margin-top: 20px;
  }
  .solution_sub_box.type_reverse > .inner {
    flex-direction: column;
  }
}

.case_box {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  max-width: 1500px;
  margin: 0 auto;
}
.case_box .number {
  font-size: 1.8rem;
  text-align: center;
  font-family: "Afacad", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  color: #202121;
}
.case_box .number em {
  display: block;
  font-size: 6rem;
  font-family: "Afacad", sans-serif;
  font-weight: 700;
  line-height: 1;
}
.case_box .txt {
  position: absolute;
  top: 50%;
  left: 40px;
  transform: translateY(-50%);
  width: 38%;
  margin-left: 48px;
  padding-top: 12px;
  z-index: 2;
}
.case_box .txt.type1 {
  width: 60%;
}
.case_box .img {
  position: relative;
  width: 60%;
}
.case_box .img figure {
  position: relative;
  height: auto;
  aspect-ratio: 2.2/1;
  overflow: hidden;
  border-radius: 0 0 50px 0;
}
.case_box .img figure:before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to right, #fff, rgba(255, 255, 255, 0.3) 30%, rgba(255, 255, 255, 0) 35%);
  z-index: 2;
}
.case_box:not(:first-of-type) {
  margin-top: 80px;
}
@media screen and (max-width: 1100px) {
  .case_box .img figure {
    aspect-ratio: 1.6/1;
  }
}
@media screen and (max-width: 1025px) {
  .case_box {
    flex-wrap: wrap;
    padding: 0 10px;
  }
  .case_box .img {
    margin-bottom: 20px;
    width: 100%;
    order: -1;
  }
  .case_box .img figure {
    aspect-ratio: 1.8/1;
  }
  .case_box .number {
    font-size: 1.2rem;
  }
  .case_box .number em {
    font-size: 3.6rem;
  }
  .case_box .txt {
    position: relative;
    flex: 1;
    left: auto;
    top: auto;
    transform: none;
    width: auto;
    margin-left: 24px;
  }
  .case_box:not(:first-of-type) {
    margin-top: 45px;
  }
}

.bg_training {
  position: relative;
}
.bg_training:before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: url(../img/training_head.jpg) no-repeat center/cover;
}
.bg_training:after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to right, #000, rgba(0, 0, 0, 0.6) 40%, rgba(0, 0, 0, 0) 70%);
  opacity: 0.7;
}
.bg_training .inner {
  position: relative;
  max-width: 1200px;
  margin-inline: auto;
  padding: 160px 0;
  z-index: 2;
}
.bg_training .inner .txt {
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  font-weight: 700;
  font-size: 3.6rem;
  line-height: 1.4;
  color: #fff;
}
.bg_training .inner .txt span {
  color: #bc0926;
}
.bg_training .inner .eng {
  position: absolute;
  right: 0;
  bottom: -18px;
  font-size: 8rem;
  line-height: 1;
  color: #fff;
  opacity: 0.6;
}
@media screen and (max-width: 1300px) {
  .bg_training .inner {
    padding: 120px 0;
  }
  .bg_training .inner .txt {
    padding-right: 25px;
  }
}
@media screen and (max-width: 639px) {
  .bg_training .inner {
    padding: 60px 0;
  }
  .bg_training .inner .txt {
    padding-right: 15px;
    font-size: 1.8rem;
  }
  .bg_training .inner .eng {
    right: 15px;
    bottom: -10px;
    font-size: 4.8rem;
    opacity: 0.4;
  }
}

.bg_training2 {
  position: relative;
  margin: 40px 0;
}
.bg_training2:before {
  position: absolute;
  content: "";
  left: 50%;
  top: 50%;
  width: calc(100% - 80px);
  height: 100%;
  background: url(../img/2.jpg) no-repeat center/cover;
  border-radius: 20px;
  transform: translate(-50%, -50%);
  opacity: 0.4;
}
.bg_training2 .training-top {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.bg_training2 .training-top .training-top-title {
  position: relative;
  font-size: 2.8rem;
  font-weight: 700;
}
.bg_training2 .training-top .training-top-title:before {
  position: absolute;
  content: "";
  left: 50%;
  top: 50%;
  width: 90%;
  height: auto;
  aspect-ratio: 1.2/1;
  background: url(../img/brain2.png) no-repeat center/contain;
  transform: translate(-50%, -50%);
  z-index: -1;
}
.bg_training2 .training-top .txt {
  width: 45%;
  font-weight: 600;
}
@media screen and (max-width: 1300px) {
  .bg_training2 .training-top {
    padding: 0 20px;
  }
}
@media screen and (max-width: 1100px) {
  .bg_training2:before {
    width: calc(100% - 40px);
  }
}
@media screen and (max-width: 1025px) {
  .bg_training2 .training-top .training-top-title {
    font-size: 2.2rem;
  }
  .bg_training2 .training-top .txt {
    width: 52%;
  }
}
@media screen and (max-width: 639px) {
  .bg_training2 {
    margin: 24px 0;
  }
  .bg_training2:before {
    width: calc(100% - 24px);
  }
  .bg_training2 .training-top {
    flex-direction: column;
    padding-top: 20px;
  }
  .bg_training2 .training-top .training-top-title {
    font-size: 1.6rem;
  }
  .bg_training2 .training-top .training-top-title:before {
    width: 70%;
  }
  .bg_training2 .training-top .txt {
    width: 100%;
    margin-top: 80px;
  }
}

.program-list li {
  position: relative;
  padding-left: 30px;
  color: #CBCBEA;
  /* color: #a7dae7; */
  font-weight: 600;
}
.program-list li:not(:last-of-type) {
  margin-bottom: 8px;
  padding-bottom: 8px;
  border-bottom: 1px solid #cfd4d5;
}
.program-list li:before {
  position: absolute;
  content: "";
  left: 0;
  top: 50%;
  width: 15px;
  height: 1px;
  background: #CBCBEA;
  /* background: #a7dae7; */
}

.brain_box {
  position: relative;
}
.brain_box .brain {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 50%;
  opacity: 0.6;
  z-index: -1;
}
@media screen and (max-width: 1100px) {
  .brain_box .brain {
    width: 80%;
  }
}

.service-flow {
  position: relative;
}
.service-flow:before {
  position: absolute;
  content: "";
  left: 32px;
  top: 8px;
  width: 18px;
  height: 94%;
  background: #3cb75f;
}
.service-flow li {
  position: relative;
  display: flex;
  align-items: flex-start;
  padding: 16px 20px;
  background: #fefefe;
  border-radius: 5px;
}
.service-flow li:not(:last-of-type) {
  margin-bottom: 24px;
}
.service-flow li .number {
  display: flex;
  align-items: center;
  width: 110px;
}
.service-flow li .number span {
  font-family: "Afacad", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  color: #aaa;
  margin-right: 8px;
  font-size: 1.4rem;
}
.service-flow li .number em {
  font-weight: 700;
  font-size: 2.8rem;
  color: #202121;
  line-height: 1;
}
.service-flow li .txt {
  flex: 1;
  font-weight: 600;
}
.service-flow li.last {
  box-shadow: 0 0 0 4px rgba(255, 216, 3, 0.3) inset;
}
.service-flow li.last .number em {
  color: #ffd803;
}
.service-flow li.last .txt {
  /* color: #a7dae7; */
  color: #CBCBEA;
}
@media screen and (max-width: 639px) {
  .service-flow li {
    padding: 15px;
  }
  .service-flow li .number {
    width: 54px;
    flex-direction: column;
    align-items: flex-start;
  }
  .service-flow li .number span {
    margin: 0;
    font-size: 1.2rem;
    line-height: 1.4;
  }
  .service-flow li .number em {
    font-size: 2.2rem;
  }
}

.mainContents__title--page {
  margin-bottom: 50px;
  position: relative;
}
.mainContents__title--page .eng {
  font-family: "Afacad", sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  color: #333;
  font-size: 8rem;
  text-align: center;
  line-height: 1;
  position: relative;
  display: inline-block;
  background: rgb(32, 52, 82);
  background: linear-gradient(131deg, #bca259 0%, #bca259 10%, rgb(51, 51, 51) 10%, rgb(51, 51, 51) 90%, #bca259 90%, #bca259 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.mainContents__title--page .eng span {
  color: #202121;
}
.mainContents__title--page .ja {
  font-size: 2rem;
  line-height: 1.4;
  position: relative;
  padding: 0 0 0 20px;
}
.mainContents__title--page.title--center {
  text-align: center;
}
.mainContents__title--page.title--center .ja {
  display: block;
  padding: 20px 0 0;
}
.mainContents__title--page.title--white .eng {
  background: linear-gradient(131deg, #bca259 0%, #bca259 10%, #fff 10%, #fff 90%, #bca259 90%, #bca259 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.mainContents__title--page.title--white .ja {
  color: #fff;
}
.mainContents__title--page.title--black .eng {
  background: rgb(0, 0, 0);
  background: linear-gradient(131deg, #000 0%, rgba(0, 0, 0, 0.8666666667) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.mainContents__title--page.title--min .eng {
  font-size: 4rem;
}
.mainContents__title--page.title--min .ja {
  font-size: 1.6rem;
}
@media screen and (max-width: 1100px) {
  .mainContents__title--page {
    margin-bottom: 40px;
  }
  .mainContents__title--page .eng {
    font-size: 3rem;
  }
  .mainContents__title--page .ja {
    font-size: 1.8rem;
  }
  .mainContents__title--page.title--min .eng {
    font-size: 2rem;
  }
  .mainContents__title--page.title--min .ja {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 1025px) {
  .mainContents__title--page {
    margin-bottom: 20px;
    padding: 0;
  }
  .mainContents__title--page:before {
    width: 8px;
    height: 8px;
    top: 9px;
  }
  .mainContents__title--page .eng {
    font-size: 2.4rem;
  }
  .mainContents__title--page .ja {
    font-size: 1.6rem;
    padding: 0 0 0 10px;
  }
}
@media screen and (max-width: 639px) {
  .mainContents__title--page {
    margin-bottom: 20px;
  }
  .mainContents__title--page:before {
    top: 5px;
  }
  .mainContents__title--page .eng {
    font-size: 1.6rem;
  }
  .mainContents__title--page .ja {
    font-size: 1.2rem;
  }
  .mainContents__title--page.title--min .eng {
    font-size: 16px;
  }
  .mainContents__title--page.title--min .ja {
    font-size: 12px;
  }
  .mainContents__title--page.title--min.min--type2 .ja {
    display: block;
    padding-left: 0;
  }
  .mainContents__title--page.title--center .ja {
    padding: 10px 0 0;
  }
}

.pageMessage__box {
  flex-wrap: wrap;
  display: flex;
  margin: 80px auto 0;
}
.pageMessage__box .box__photo {
  width: 40%;
  margin: 0 auto 0 -5%;
  position: relative;
}
.pageMessage__box .box__photo::before {
  position: absolute;
  top: 10px;
  right: -15px;
  content: "";
  width: 100%;
  height: 89%;
  background: #dbc89c;
  background: linear-gradient(132deg, #866430 0%, #b19550 49%, #dbc89c 100%);
  z-index: -1;
}
@media screen and (max-width: 1100px) {
  .pageMessage__box .box__photo::before {
    height: 100%;
  }
}
.pageMessage__box .box__txtarea {
  width: 56%;
  margin: 0 0 0 4%;
}
@media screen and (max-width: 1100px) {
  .pageMessage__box .box__photo {
    width: 40%;
    margin: 0 auto 0 0;
  }
  .pageMessage__box .box__txtarea {
    width: 100%;
    margin: 20px auto 0;
  }
}
@media screen and (max-width: 639px) {
  .pageMessage__box {
    margin: 40px auto 0;
  }
  .pageMessage__box .box__photo {
    width: 50%;
    margin: 0 auto;
  }
}

.pageMessage__txtarea {
  text-align: center;
  color: #fff;
  font-size: 2rem;
  max-width: 900px;
  margin: 0 auto;
}
.pageMessage__txtarea .txtarea__main {
  font-size: 3rem;
  margin-bottom: 70px;
}
.pageMessage__txtarea .txtarea__detail {
  text-align: left;
  margin: 100px auto;
}
@media screen and (max-width: 1100px) {
  .pageMessage__txtarea .txtarea__main {
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 639px) {
  .pageMessage__txtarea {
    font-size: 14px;
  }
  .pageMessage__txtarea .txtarea__main {
    font-size: 16px;
    margin-bottom: 20px;
  }
  .pageMessage__txtarea .txtarea__detail {
    text-align: left;
    margin: 50px auto;
  }
  .pageMessage__txtarea .greet__profbox {
    margin: 40px auto 0;
  }
  .pageMessage__txtarea .greet__profbox .profbox__sub {
    font-size: 12px;
  }
  .pageMessage__txtarea .greet__profbox .profbox__main {
    max-width: 110px;
  }
}

.pageMessage__box {
  flex-wrap: wrap;
  display: flex;
  margin: 80px auto 0;
}
.pageMessage__box .box__photo {
  width: 40%;
  margin: 0 auto 0 -5%;
}
.pageMessage__box .box__txtarea {
  width: 56%;
  margin: 0 0 0 4%;
}
@media screen and (max-width: 1100px) {
  .pageMessage__box .box__photo {
    width: 40%;
    margin: 0 auto 0 0;
  }
  .pageMessage__box .box__txtarea {
    width: 100%;
    margin: 20px auto 0;
  }
}
@media screen and (max-width: 639px) {
  .pageMessage__box {
    margin: 40px auto 0;
  }
  .pageMessage__box .box__photo {
    width: 50%;
    margin: 0 auto;
  }
}

.pageMessage__txtarea {
  text-align: center;
  color: #fff;
  font-size: 2rem;
  max-width: 900px;
  margin: 0 auto;
}
.pageMessage__txtarea .txtarea__main {
  font-size: 3rem;
  margin-bottom: 70px;
}
.pageMessage__txtarea .txtarea__detail {
  text-align: left;
  margin: 100px auto;
}
@media screen and (max-width: 1100px) {
  .pageMessage__txtarea .txtarea__main {
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 639px) {
  .pageMessage__txtarea {
    font-size: 14px;
  }
  .pageMessage__txtarea .txtarea__main {
    font-size: 16px;
    margin-bottom: 20px;
  }
  .pageMessage__txtarea .txtarea__detail {
    text-align: left;
    margin: 50px auto;
  }
  .pageMessage__txtarea .greet__profbox {
    margin: 40px auto 0;
  }
  .pageMessage__txtarea .greet__profbox .profbox__sub {
    font-size: 12px;
  }
  .pageMessage__txtarea .greet__profbox .profbox__main {
    max-width: 110px;
  }
}

.flow_box {
  overflow: hidden;
}
.flow_box .flow_inner {
  background: rgba(32, 33, 33, 0.6);
  padding: 4em;
  max-width: 80%;
  border-radius: 0 1em 1em 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  color: #fff;
  position: relative;
}
.flow_box .flow_inner:nth-of-type(2n) {
  flex-direction: row-reverse;
  background: rgba(167, 218, 231, 0.6);
  margin-left: auto;
  border-radius: 1em 0 0 1em;
}
.flow_box .flow_inner:not(:last-of-type) {
  margin-bottom: 100px;
}
.flow_box .flow_inner .flow_img {
  width: 45%;
}
.flow_box .flow_inner .flow_txt {
  width: 55%;
  padding: 2em 6em;
}
.flow_box .flow_inner .flow_txt .num {
  font-family: "Afacad", sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  font-size: 2rem;
  display: block;
  position: relative;
}
.flow_box .flow_inner .flow_txt .num:before {
  font-family: "Font Awesome 5 Free";
  content: "\f141";
  font-weight: 900;
  margin-right: 5px;
  font-size: 0.8em;
}
.flow_box .flow_inner .flow_txt .ja {
  font-size: 2.5rem;
}
.flow_box .flow_inner .flow_txt .detail {
  margin-top: 20px;
}
.flow_box .flow_inner .flow_txt .detail .sub_txt {
  margin-bottom: 3px;
}
.flow_box .flow_inner .flow_txt .detail .sub_txt span {
  background: #fefefe;
  color: #202121;
  padding: 2px 12px;
  font-weight: bold;
  border-radius: 2px;
}
.flow_box .flow_inner:nth-of-type(1)::before {
  content: "";
  position: absolute;
  top: 0;
  right: -150px;
  width: 400px;
  height: 300px;
  background: url(../img/deco01.png) no-repeat center/contain;
  z-index: 1;
}
.flow_box .flow_inner:nth-of-type(1)::after {
  content: "";
  position: absolute;
  bottom: -120px;
  left: 20px;
  width: 350px;
  height: 365px;
  background: url(../img/deco02.png) no-repeat center/contain;
  z-index: 1;
}
.flow_box .flow_inner:nth-of-type(2)::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: -150px;
  width: 250px;
  height: 250px;
  background: url(../img/deco03.png) no-repeat center/contain;
  z-index: 1;
}
.flow_box .flow_inner:nth-of-type(2)::after {
  content: "";
  position: absolute;
  top: -100px;
  right: 20px;
  width: 400px;
  height: 300px;
  background: url(../img/deco04.png) no-repeat center/contain;
  z-index: 1;
}
.flow_box .flow_inner:nth-of-type(3)::before {
  content: "";
  position: absolute;
  top: 50px;
  right: -150px;
  width: 400px;
  height: 300px;
  background: url(../img/deco06.png) no-repeat center/contain;
  z-index: 1;
}
.flow_box .flow_inner:nth-of-type(3)::after {
  content: "";
  position: absolute;
  bottom: -40px;
  left: 20px;
  width: 300px;
  height: 225px;
  background: url(../img/deco05.png) no-repeat center/contain;
  z-index: 1;
}
.flow_box .flow_inner:nth-of-type(4)::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: -200px;
  width: 300px;
  height: 300px;
  background: url(../img/deco08.png) no-repeat center/contain;
  z-index: 1;
}
.flow_box .flow_inner:nth-of-type(4)::after {
  content: "";
  position: absolute;
  top: -50px;
  right: 20px;
  width: 650px;
  height: 217px;
  background: url(../img/deco07.png) no-repeat center/contain;
  z-index: 1;
}
.flow_box .flow_inner:nth-of-type(5)::before {
  content: "";
  position: absolute;
  top: 50px;
  right: -150px;
  width: 400px;
  height: 300px;
  background: url(../img/deco09.png) no-repeat center/contain;
  z-index: 1;
}
.flow_box .flow_inner:nth-of-type(5)::after {
  content: "";
  position: absolute;
  bottom: -40px;
  left: 20px;
  width: 300px;
  height: 225px;
  background: url(../img/deco10.png) no-repeat center/contain;
  z-index: 1;
}
@media screen and (max-width: 1300px) {
  .flow_box .flow_inner {
    max-width: 90%;
  }
  .flow_box .flow_inner:nth-of-type(1)::before {
    width: 300px;
  }
  .flow_box .flow_inner:nth-of-type(1)::after {
    width: 250px;
  }
  .flow_box .flow_inner:nth-of-type(2)::before {
    width: 150px;
    left: -50px;
  }
  .flow_box .flow_inner:nth-of-type(2)::after {
    width: 300px;
  }
  .flow_box .flow_inner:nth-of-type(3)::before {
    width: 300px;
  }
  .flow_box .flow_inner:nth-of-type(3)::after {
    width: 200px;
  }
  .flow_box .flow_inner:nth-of-type(4)::before {
    width: 200px;
    left: -100px;
  }
  .flow_box .flow_inner:nth-of-type(4)::after {
    width: 550px;
  }
  .flow_box .flow_inner:nth-of-type(5)::before {
    width: 300px;
  }
  .flow_box .flow_inner:nth-of-type(5)::after {
    width: 200px;
  }
}
@media screen and (max-width: 1025px) {
  .flow_box .flow_inner {
    max-width: 95%;
  }
  .flow_box .flow_inner .flow_img {
    width: 100%;
  }
  .flow_box .flow_inner .flow_img img {
    height: 350px;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .flow_box .flow_inner .flow_txt {
    width: 100%;
    padding: 2em 1em 0;
  }
  .flow_box .flow_inner:nth-of-type(1)::before {
    right: -50px;
  }
  .flow_box .flow_inner:nth-of-type(1)::after {
    left: auto;
    right: 20px;
  }
  .flow_box .flow_inner:nth-of-type(2)::before {
    left: auto;
    right: 20px;
  }
  .flow_box .flow_inner:nth-of-type(3)::before {
    top: 0;
    right: -50px;
  }
  .flow_box .flow_inner:nth-of-type(3)::after {
    bottom: 0;
    left: auto;
    right: 20px;
  }
  .flow_box .flow_inner:nth-of-type(4)::before {
    left: auto;
    right: 20px;
  }
  .flow_box .flow_inner:nth-of-type(5)::before {
    right: -50px;
  }
  .flow_box .flow_inner:nth-of-type(5)::after {
    bottom: 0;
    left: auto;
    right: 20px;
  }
}
@media screen and (max-width: 765px) {
  .flow_box .flow_inner:nth-of-type(1)::before {
    width: 250px;
  }
  .flow_box .flow_inner:nth-of-type(1)::after {
    right: -20px;
    width: 200px;
  }
  .flow_box .flow_inner:nth-of-type(2)::after {
    width: 250px;
  }
  .flow_box .flow_inner:nth-of-type(3)::before {
    width: 250px;
  }
  .flow_box .flow_inner:nth-of-type(4)::after {
    width: 400px;
    max-width: 90%;
  }
  .flow_box .flow_inner:nth-of-type(5)::before {
    width: 250px;
  }
}
@media screen and (max-width: 639px) {
  .flow_box {
    padding-bottom: 40px;
  }
  .flow_box .flow_inner {
    padding: 2em;
    border-radius: 0 0.5em 0.5em 0;
  }
  .flow_box .flow_inner:nth-of-type(2n) {
    border-radius: 0.5em 0 0 0.5em;
  }
  .flow_box .flow_inner .flow_img img {
    height: 200px;
  }
  .flow_box .flow_inner .flow_txt {
    padding: 1em 0 0;
  }
  .flow_box .flow_inner .flow_txt .ja {
    font-size: 1.6rem;
  }
  .flow_box .flow_inner .flow_txt .num {
    font-size: 1.3rem;
  }
  .flow_box .flow_inner:nth-of-type(1)::before {
    width: 150px;
    height: 100px;
    right: -20px;
  }
  .flow_box .flow_inner:nth-of-type(1)::after {
    width: 150px;
    height: 115px;
    bottom: -70px;
  }
  .flow_box .flow_inner:nth-of-type(2):before {
    width: 100px;
    height: 100px;
    bottom: -40px;
  }
  .flow_box .flow_inner:nth-of-type(2)::after {
    width: 150px;
    right: 20px;
    height: 110px;
    top: 0;
  }
  .flow_box .flow_inner:nth-of-type(3)::before {
    width: 180px;
    height: 135px;
  }
  .flow_box .flow_inner:nth-of-type(3):after {
    width: 120px;
    height: 110px;
    right: 0;
  }
  .flow_box .flow_inner:nth-of-type(4)::before {
    height: 150px;
    width: 150px;
    right: 0;
    bottom: -40px;
  }
  .flow_box .flow_inner:nth-of-type(4)::after {
    width: 300px;
    height: 100px;
  }
  .flow_box .flow_inner:nth-of-type(5)::before {
    width: 180px;
    height: 125px;
  }
  .flow_box .flow_inner:nth-of-type(5)::after {
    width: 130px;
    height: 100px;
    bottom: -40px;
    right: 0;
  }
}

.rainbow__box .box__title {
  font-size: 3rem;
  text-align: center;
  font-weight: bold;
}
.rainbow__box .box__detail {
  position: relative;
}
.rainbow__box .box__subtitle {
  margin: 50px auto 0;
  text-align: center;
  font-size: 3rem;
  font-weight: bold;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0 30px;
  position: relative;
}
.rainbow__box .box__subtitle:before {
  position: absolute;
  content: "";
  left: 0;
  bottom: -10px;
  border-top: 60px solid #000;
  border-left: 0px solid transparent;
  border-right: 8px solid transparent;
  transform: rotate(-25deg);
}
.rainbow__box .box__subtitle:after {
  position: absolute;
  content: "";
  right: 0;
  bottom: -10px;
  border-top: 60px solid #000;
  border-left: 0px solid transparent;
  border-right: 8px solid transparent;
  transform: rotate(25deg);
}
.rainbow__box .box__txt {
  background-color: #fff;
  padding: 40px 100px;
  margin: 20px auto;
  max-width: 900px;
  font-size: 2rem;
  font-weight: bold;
}
@media screen and (max-width: 639px) {
  .rainbow__box .box__title {
    font-size: 16px;
  }
  .rainbow__box .box__subtitle {
    margin: 30px auto 0;
    font-size: 14px;
    padding: 0 20px;
  }
  .rainbow__box .box__subtitle:before {
    bottom: -10px;
    border-top: 40px solid #000;
  }
  .rainbow__box .box__subtitle:after {
    bottom: -10px;
    border-top: 40px solid #000;
  }
  .rainbow__box .box__txt {
    padding: 20px 30px;
    margin: 20px auto;
    font-size: 14px;
  }
}

.prof__box .box__eng {
  font-size: 8rem;
  color: #fff;
  font-family: "Afacad", sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  line-height: 1.2;
}
.prof__box .box__name {
  color: #fff;
  font-weight: bold;
  font-size: 2rem;
  padding: 0 0 0 50px;
  position: relative;
}
.prof__box .box__name:before {
  position: absolute;
  content: "";
  width: 10px;
  height: 2px;
  top: 15px;
  left: 20px;
  background-color: #fff;
}
@media screen and (max-width: 639px) {
  .prof__box {
    margin: 0 auto;
    text-align: center;
  }
  .prof__box .box__eng {
    font-size: 2rem;
  }
  .prof__box .box__name {
    font-size: 1.5rem;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
    padding: 0;
  }
  .prof__box .box__name:before {
    display: none;
  }
}

@media screen and (max-width: 1025px) {
  .prof__subBox {
    width: 100%;
    margin: 0 0 0 auto;
  }
}
@media screen and (max-width: 639px) {
  .prof__subBox {
    margin: 20px auto 0;
  }
}

.prof__list {
  color: #fff;
  margin: 50px auto 0;
}
.prof__list li {
  display: flex;
  flex-wrap: wrap;
  align-items: start;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 10px;
}
.prof__list .list__title {
  width: 150px;
  background: #dbc89c;
  background: linear-gradient(132deg, #866430 0%, #b19550 49%, #dbc89c 100%);
  padding: 5px 20px;
  text-align: center;
}
.prof__list .list__txt {
  width: calc(100% - 180px);
  margin: 0 0 0 auto;
}
@media screen and (max-width: 639px) {
  .prof__list {
    margin: 20px auto 0;
  }
  .prof__list .list__title {
    width: 100px;
    padding: 5px 10px;
    font-size: 12px;
  }
  .prof__list .list__txt {
    width: calc(100% - 120px);
    margin: 0 0 0 auto;
    font-size: 12px;
  }
}

.sns__list {
  display: flex;
  flex-wrap: wrap;
  margin: 20px auto 0;
}
.sns__list li {
  margin: 0 20px 0 0;
}
.sns__list li a {
  display: block;
}
.sns__list li a i {
  font-size: 4rem;
  color: #eb3618;
}
.sns__list li:nth-child(2) a i {
  color: #55aded;
}
.sns__list li:nth-child(3) a i {
  color: #00b900;
}
.sns__list li:hover {
  transition: 0.4s;
}
.sns__list li:hover a i {
  transition: 0.4s;
  color: #fff;
}
.sns__list li:hover:nth-child(2) a i {
  color: #fff;
}
@media screen and (max-width: 639px) {
  .sns__list {
    justify-content: center;
  }
  .sns__list li {
    margin: 0 10px 0 0;
  }
  .sns__list li a i {
    font-size: 2rem;
  }
}

.history__box {
  margin: 50px 0 0 auto;
  position: relative;
}
.history__box .history__title {
  color: #fff;
  font-weight: bold;
  font-size: 8rem;
  position: absolute;
  line-height: 1;
  font-family: "Afacad", sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  right: 0;
  top: 0;
  opacity: 0.2;
}
@media screen and (max-width: 639px) {
  .history__box {
    margin: 20px auto 0;
  }
  .history__box .history__title {
    font-size: 4rem;
    top: -20px;
  }
}

.history__list {
  margin: 10px 0 0 auto;
  position: relative;
  z-index: 1;
  width: 100%;
}
.history__list li {
  display: flex;
  flex-wrap: nowrap;
  position: relative;
  align-items: start;
  color: #fff;
  margin-bottom: 30px;
}
.history__list .list__title {
  width: 150px;
  font-weight: bold;
  border: 1px solid #fff;
  border-radius: 50px;
  text-align: center;
  padding: 4px 20px;
}
.history__list .list__txt {
  width: calc(100% - 180px);
  margin: 0 0 0 auto;
}
.history__list .list__txt span {
  font-size: 2.1rem;
}
@media screen and (max-width: 639px) {
  .history__list {
    margin: 0 auto;
    display: block;
  }
  .history__list li {
    margin-bottom: 5px;
  }
  .history__list .list__title {
    width: 100px;
    font-size: 12px;
  }
  .history__list .list__txt {
    width: calc(100% - 120px);
    font-size: 12px;
  }
  .history__list .list__txt span {
    font-size: 1.6rem;
  }
}

.company__box {
  color: #fff;
  font-size: 2rem;
  margin: 0px auto 0;
  position: relative;
}
.company__box.txt-anime .txtarea__main__txt {
  margin: 0 auto 40px 0;
  font-size: 3rem;
  padding: 20px 40px;
}
.company__box.txt-anime .txtarea__main__txt:before {
  background: rgb(250, 126, 252);
  background: linear-gradient(132deg, rgb(148, 40, 236) 0%, rgb(68, 71, 226) 50%, rgb(67, 177, 218) 100%);
}
.company__box .txtarea__main__txt {
  font-size: 3rem;
  font-weight: bold;
}
.company__box .txtarea__eng {
  font-family: "Afacad", sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  font-size: 6rem;
  line-height: 1.4;
  color: #fff;
  opacity: 0.2;
  position: absolute;
  bottom: -40px;
  right: 0;
}
@media screen and (max-width: ) {
  .company__box.txt-anime .txtarea__main__txt {
    margin: 0 auto 40px 0;
    font-size: 4rem;
    padding: 10px 20px;
  }
}
@media screen and (max-width: 1440px) {
  .company__box.txt-anime .txtarea__main__txt {
    font-size: 3rem;
    margin: 0 auto 20px 0;
  }
  .company__box .txtarea__eng {
    font-size: 4rem;
  }
}
@media screen and (max-width: 1025px) {
  .company__box.txt-anime .txtarea__main__txt {
    font-size: 2rem;
  }
}
@media screen and (max-width: 639px) {
  .company__box {
    padding: 0px 0;
  }
  .company__box.txt-anime .txtarea__main__txt {
    margin: 0 auto 10px 0;
    padding: 4px 0px;
    font-size: 14px;
  }
  .company__box .txtarea__eng {
    font-size: 1.7rem;
    bottom: -50px;
  }
}

.company__list {
  margin: 0 auto 0;
  position: relative;
  z-index: 1;
  width: 100%;
}
.company__list li {
  display: flex;
  flex-wrap: nowrap;
  margin-bottom: 10px;
  position: relative;
  color: #fff;
}
.company__list li a {
  color: #bca259;
  font-weight: bold;
}
.company__list li a:hover {
  opacity: 0.6;
}
.company__list .list__title {
  width: 160px;
  padding: 8px 20px;
}
.company__list .list__txt {
  width: calc(100% - 160px);
  padding: 8px 20px;
  margin: 0 0 0 auto;
}
.company__list .txt__sub {
  padding-left: 20px;
  position: relative;
}
.company__list .txt__sub:before {
  position: absolute;
  content: "┗";
  top: 0;
  left: 0;
}
.company__list .txt__check {
  position: relative;
  padding-left: 15px;
}
.company__list .txt__check:before {
  position: absolute;
  content: "";
  width: 8px;
  height: 8px;
  left: 0;
  top: 9px;
  background-color: #bca259;
}
@media screen and (max-width: 1025px) {
  .company__list .list__title {
    padding: 8px 0;
    width: 100px;
  }
  .company__list .list__txt {
    width: calc(100% - 100px);
    padding: 8px 0px;
  }
}
@media screen and (max-width: 639px) {
  .company__list {
    margin: 0 auto;
  }
  .company__list .list__title {
    width: 100px;
    font-size: 12px;
  }
  .company__list .list__txt {
    width: calc(100% - 100px);
    padding: 8px 0px;
    font-size: 12px;
  }
}

.arrow-box {
  position: relative;
  display: block;
  margin-top: 20px;
  padding-bottom: 30px;
}
.arrow-box .arrow-icon {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-top: 30px solid #202121; /* Arrow color */
  opacity: 0.7;
}

.arrow {
  font-size: 5rem;
  color: #bc0926;
}

.curriculum-title {
  position: absolute;
  top: 5px;
  right: 0;
  color: #202121;
  font-family: "Afacad", sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  font-size: 5rem;
  opacity: 0.7;
}
@media screen and (max-width: 639px) {
  .curriculum-title {
    opacity: 0.3;
    line-height: 1;
    -moz-text-align-last: left;
         text-align-last: left;
    font-size: 2.8rem;
  }
}

.container {
  width: 100%;
  overflow: hidden;
}

.spacer {
  width: 100%;
  background: #f6f8f5;
}

.bg-text {
  color: white;
  font-size: 60px;
}
@media screen and (max-width: 1025px) {
  .bg-text {
    font-size: 4rem;
  }
}
@media screen and (max-width: 639px) {
  .bg-text {
    text-align: center;
    font-size: 3rem;
  }
}
@media screen and (max-width: 320px) {
  .bg-text {
    font-size: 2.8rem;
  }
}

.js-sticky {
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
}

.bg-brown {
  width: 95%;
  height: 95vh;
  background-color: rgba(167, 218, 231, 0.8);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  --scaleX: 0.9;
  --scaleY: 0.8;
  --borderRadius: 200px;
  position: relative;
}
.bg-brown::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  opacity: 0.05;
}

.move-text {
  width: -moz-fit-content;
  width: fit-content;
  margin: 15px;
}
.move-text span {
  transition: color 0.5s;
}
.move-text span.is-active {
  color: #ffd803;
}

.service {
  position: relative;
}
.service:before {
  position: absolute;
  content: "";
  width: 600px;
  height: 600px;
  top: 0;
  left: -244px;
  background: linear-gradient(132deg, #866430 0%, #b19550 15%, #dbc89c 30%, #866430 45%, #b19550 60%, #dbc89c 75%, #866430 90%, #b19550 100%);
  -webkit-clip-path: polygon(0% 0%, 0% 100%, 10% 100%, 10% 10%, 90% 10%, 90% 90%, 10% 90%, 10% 100%, 100% 100%, 100% 0%);
          clip-path: polygon(0% 0%, 0% 100%, 10% 100%, 10% 10%, 90% 10%, 90% 90%, 10% 90%, 10% 100%, 100% 100%, 100% 0%);
  background-size: 1000%;
  animation: gradation 20s ease-in infinite;
}
@media screen and (max-width: ) {
  .service:before {
    left: -10%;
  }
}
@media screen and (max-width: ) {
  .service:before {
    left: -20%;
  }
}
@media screen and (max-width: 639px) {
  .service:before {
    left: -10%;
    top: 3%;
    width: 245px;
    height: 245px;
  }
  .service .mainContents__inner {
    padding-bottom: 0;
  }
  .service .mainContents__subtitle {
    text-align: center;
    margin: 30px auto 15px;
  }
}

.service__box {
  margin: 0 auto;
  width: 98%;
}
@media screen and (max-width: ) {
  .service__box {
    width: 100%;
  }
}
@media screen and (max-width: ) {
  .service__box {
    margin: 0 auto;
    width: 100%;
  }
}

.service__list {
  display: flex;
  flex-wrap: wrap;
}
.service__list li {
  width: 48%;
  margin: 0 2% 40px 0;
  overflow: hidden;
  position: relative;
}
.service__list li:nth-child(2n) {
  margin: 0 0 40px 0;
}
.service__list li:hover .list__txtarea .list__title {
  transition: 0.4s;
  opacity: 1;
  transform: translateY(0);
}
.service__list li:hover .list__photo {
  transition: 0.4s;
}
.service__list li:hover .list__photo img {
  transition: 0.4s;
  opacity: 0.3;
  transform: scale(1.1);
}
.service__list .list__txtarea {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  top: 50%;
  transform: translateY(-50%);
  text-align: center;
  font-weight: bold;
  font-size: 2rem;
  color: #fff;
  line-height: 1.5;
}
.service__list .list__txtarea .list__num {
  font-family: "Afacad", sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  font-size: 3rem;
  line-height: 1;
}
.service__list .list__txtarea .list__title {
  transition: 0.4s;
  opacity: 0;
  transform: translateY(50px);
}
.service__list .list__photo {
  background-color: #000;
  overflow: hidden;
  transition: 0.4s;
  height: 300px;
}
.service__list .list__photo img {
  transition: 0.4s;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.service__list .list__txt {
  padding: 20px 5px;
  position: absolute;
  left: 15px;
  bottom: 15px;
  background-color: #fff;
  color: #000;
  font-family: "Afacad", sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  font-size: 2rem;
}
.service__list .list__txt2 {
  padding: 5px 20px;
  position: absolute;
  left: 55px;
  bottom: 15px;
  font-family: "Afacad", sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  background-color: #fff;
  color: #000;
  font-size: 2rem;
}
.service__list li:nth-child(2n) .list__txt {
  left: auto;
  bottom: auto;
  top: 55px;
  right: 15px;
}
.service__list li:nth-child(2n) .list__txt2 {
  left: auto;
  bottom: auto;
  top: 15px;
  right: 15px;
}
@media screen and (max-width: 1440px) {
  .service__list li {
    width: 48%;
    margin: 0 4% 40px 0;
    overflow: hidden;
    position: relative;
  }
  .service__list li:nth-child(2n) {
    margin: 0 0 40px 0;
  }
  .service__list li:nth-child(4) {
    margin: 0;
  }
  .service__list .list__photo {
    height: 350px;
  }
}
@media screen and (max-width: 639px) {
  .service__list {
    width: 90%;
    margin: 0 auto;
  }
  .service__list li {
    width: 100%;
    margin: 0 auto 10px;
    overflow: hidden;
    position: relative;
  }
  .service__list li:nth-child(2n) {
    margin: 0 auto 20px;
  }
  .service__list li:nth-child(4) {
    margin: 0 auto 20px;
  }
  .service__list .list__txtarea {
    font-size: 14px;
    line-height: 1.4;
  }
  .service__list .list__photo {
    height: 155px;
  }
  .service__list .list__txt {
    padding: 10px 4px;
    left: 10px;
    bottom: 10px;
    font-size: 14px;
  }
  .service__list .list__txt span {
    font-size: 1.8rem;
  }
  .service__list .list__txt2 {
    padding: 4px 10px;
    left: 42px;
    bottom: 10px;
    font-size: 14px;
  }
  .service__list li:nth-child(2n) .list__txt {
    top: 42px;
    right: 10px;
  }
  .service__list li:nth-child(2n) .list__txt2 {
    top: 10px;
    right: 10px;
  }
}

.marker-kadai {
  background: #333;
  color: white;
  padding: 5px 10px;
  border-radius: 5px 0 5px 0;
}

.top-cont02-img {
  width: 40%;
}
.top-cont02-img .img01 {
  position: relative;
  z-index: 0;
  width: 90%;
}
.top-cont02-img .img01:before {
  position: absolute;
  top: 10px;
  right: -15px;
  content: "";
  width: 100%;
  height: 100%;
  background: #dbc89c;
  background: linear-gradient(132deg, #866430 0%, #b19550 49%, #dbc89c 100%);
  z-index: -1;
}
.top-cont02-img .img01 .nub {
  position: absolute;
  left: 15px;
  bottom: 10px;
  font-size: 1.5rem;
  line-height: 1;
  color: #fff;
  background: rgba(42, 42, 42, 0.6);
  padding: 5px 10px 10px;
}
@media screen and (max-width: 639px) {
  .top-cont02-img .img01 .nub {
    left: unset;
    bottom: unset;
    top: 5px;
    right: 5px;
    font-size: 1.2rem;
    background: none;
    text-shadow: 0px 0px 3px #333, 0px 0px 6px #333, 0px 0px 8px #333;
  }
}
.top-cont02-img .img02 {
  width: 45%;
  z-index: 1;
  margin-top: -60px;
  margin-left: auto;
}
.top-cont02-img .img02:before {
  position: absolute;
  top: 10px;
  right: -15px;
  content: "";
  width: 100%;
  height: 100%;
  background: #dbc89c;
  background: linear-gradient(132deg, #866430 0%, #b19550 49%, #dbc89c 100%);
  z-index: -1;
}
@media screen and (max-width: 1100px) {
  .top-cont02-img {
    width: 65%;
    margin-right: auto;
    margin-left: auto;
  }
}
@media screen and (max-width: 1025px) {
  .top-cont02-img {
    width: 100%;
    margin-bottom: 40px;
    order: -1;
  }
}
@media screen and (max-width: 639px) {
  .top-cont02-img {
    width: 100%;
    margin-bottom: 40px;
    order: -1;
  }
}

/* category_tab
----------------------------------*/
.category_tab {
  position: relative;
  display: flex;
  justify-content: space-between;
  text-align: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.category_tab li {
  width: 49.5%;
  border: 1px solid #cfd4d5;
  display: flex;
  align-items: center;
  justify-content: center;
}
.category_tab li span {
  cursor: pointer;
  display: block;
  position: relative;
  padding: 16px 8px;
  font-weight: 400;
}
.category_tab li.active {
  background: rgba(167, 218, 231, 0.1);
}
.category_tab.type2 {
  margin-bottom: 0;
}
.category_tab.type2 li {
  width: 48%;
}
@media screen and (max-width: 639px) {
  .category_tab li {
    width: 48%;
  }
}

.category_contents {
  display: none;
  padding: 0 20px;
}
@media screen and (max-width: 639px) {
  .category_contents {
    padding: 0;
  }
}

/* accordion
----------------------------------*/
.accordion {
  overflow: hidden;
}
.accordion dt,
.accordion dd {
  position: relative;
  padding: 1em;
}
.accordion dt {
  border: 1px solid #cfd4d5;
  cursor: pointer;
  letter-spacing: 0.05em;
}
.accordion dt span {
  font-size: 1.4rem;
}
.accordion dt:after {
  position: absolute;
  content: "＋";
  right: 20px;
  top: 50%;
  transition: all 0.3s ease;
  transform: translateY(-50%);
}
.accordion dt.on:after {
  transform: translateY(-50%) rotate(45deg);
}
.accordion dd {
  display: none;
  padding: 30px;
  background: rgba(255, 255, 255, 0.6);
  border-left: 1px solid #cfd4d5;
  border-right: 1px solid #cfd4d5;
  border-bottom: 1px solid #cfd4d5;
  border-radius: 10px;
}
.accordion.faq dt {
  border: 1px solid #fff;
  color: #fff;
}
.accordion.faq dt span {
  font-family: "Afacad", sans-serif;
  padding-right: 0.5em;
  font-size: 1.5em;
}
.accordion.faq dd {
  border-radius: 0;
}
@media screen and (max-width: 639px) {
  .accordion {
    margin-top: 30px;
    border-radius: 5px;
  }
  .accordion dt,
  .accordion dd {
    padding: 0.8em 0.6em;
  }
  .accordion dt {
    font-size: 1.4rem;
  }
  .accordion dt span {
    font-size: 1.1rem;
  }
  .accordion dt:after {
    right: 8px;
  }
  .accordion dd {
    padding: 15px;
  }
  .accordion.faq {
    margin-top: 10px;
    border-radius: 0;
  }
  .accordion.faq dt {
    padding-right: 2em;
  }
}

.Works_list {
  /* display: flex;
  flex-wrap: wrap;
  justify-content: space-between; */
  display: grid;
 grid-template-columns: repeat(4, 1fr);
 gap: 30px 2.5%;
}
.Works_list .item {
  /* width: 23%;
  margin-bottom: 30px; */
  text-align: center;
}
/* @media screen and (max-width: 1025px) {
  .Works_list .item {
    width: 31%;
  }
} */
@media screen and (max-width: 639px) {
  .Works_list {
    grid-template-columns: repeat(2, 1fr);
  }
  /* .Works_list .item {
    width: 47%;
  } */
}
.Works_list .item .day {
  margin-top: 9.5px;
  margin-bottom: 15px;
}
@media screen and (max-width: 639px) {
  .Works_list .item .day {
    font-size: 12px;
    padding: 2px 5px;
  }
}
.Works_list .item .ttl {
  /* background: rgba(167, 218, 231, 0.7); */
  background: rgba(230, 230, 250, 0.8);
  padding: 8px 10px;
  margin-top: 5px;
  line-height: 1.1;
}
@media screen and (max-width: 639px) {
  .Works_list .item .ttl {
    font-size: 12px;
  }
}
.Works_list .item .detail {
  margin-top: 8px;
  font-size: 10px;
}
.Works_list .item img {
  display: block;
  height: 355px;
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
}
@media screen and (max-width: 1025px) {
  .Works_list .item img {
    height: 280px;
    width: 100%;
  }
}
@media screen and (max-width: 639px) {
  .Works_list .item img {
    height: 200px;
    width: 100%;
  }
}
.Works_list a:hover img {
  filter: contrast(0.5);
}

.company_warap {
  display: flex;
}
.company_warap .child {
  width: 30%;
}
@media screen and (max-width: 639px) {
  .company_warap .child {
    width: 100%;
  }
}
.company_warap .child2 {
  width: 65%;
}
@media screen and (max-width: 639px) {
  .company_warap .child2 {
    width: 100%;
  }
}
@media screen and (max-width: 639px) {
  .company_warap {
    display: block;
  }
}

.border {
  border: 0.5px solid #ccc;
}

.d_box {
  position: relative;
  padding: 60px 40px;
  border-radius: 10px;
  border: 3px solid #f5f5f5;
  background-color: #f5f5f5;
  padding-right: 65px;
}
.d_box:before {
  position: absolute;
  top: -15px;
  left: -15px;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  border: 3px solid #212121;
  content: "";
}

.mbox .form-pattern-1 .submit-btn {
  background-color: #202121;
  border: none;
}
.mbox .form-pattern-1 .submit-btn:before {
  background-color: #FFF;
}
.mbox .form-pattern-1 .submit-btn:hover {
  background-color: #202121;
}
.mbox .form-pattern-1 .submit-btn:hover:before {
  background-color: #202121;
}

.mbox .form-pattern-1:not(.pattern-exclusion) button:hover {
  color: #202121;
  border: 1px solid #202121;
}

.mbox .form-pattern-1 :not(.pattern-exclusion) button:hover {
  background: #fff;
}