/**
* Template Name: Lonely - v2.3.1
* Template URL: https://bootstrapmade.com/free-html-bootstrap-template-lonely/
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# calender color setting
--------------------------------------------------------------*/
th.fc-day-sat, td.fc-day-sat {
    background-color: #eaf4ff;
}
th.fc-day-sun, td.fc-day-sun {
    background-color: #ffeaea;
}

/*--------------------------------------------------------------
# icon animetion
--------------------------------------------------------------*/
.icon-animetion {
  animation: icon-animetion 2s infinite ease-in-out .8s alternate;
  display: inline-block;
  transition: 1.5s ease-in-out;
  width: 70px;
  height: 70px;
  margin-top: 15px;
 }
 
@keyframes icon-animetion {
  50% {
    transform:translate(0, -15px) rotate(0deg);
  }
}

/*--------------------------------------------------------------
# text shadow
--------------------------------------------------------------*/
.t-shadow {
	text-align:center;
	line-height:1em;
	font-weight:bold;
	text-shadow: 0.02em 0.03em 0.03em rgba(0,0,0,1);
}

/*--------------------------------------------------------------
# Fadein
--------------------------------------------------------------*/
.fadein {
    opacity : 0;
    transform : translate(0, 50px);
    transition : all 500ms;
}

.fadein.scrollin {
    opacity : 1;
    transform : translate(0, 0);
}

/*--------------------------------------------------------------
# Loading
--------------------------------------------------------------*/
/* Loading背景画面設定　*/
body {
/* overflow : hidden;*/
}

#splash {
    /*fixedで全面に固定*/
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background:#fff;
  text-align:center;
  color:#fff;
}

/* Loading画像中央配置　*/
#splash_logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Loading アイコンの大きさ設定　*/
#splash_logo img {
  width:260px;
}

/* fadeUpをするアイコンの動き */

.fadeUp{
animation-name: fadeUpAnime;
animation-duration:0.4s;
animation-fill-mode:forwards;
opacity: 0;
}

@keyframes fadeUpAnime{
  from {
    opacity: 0;
  transform: translateY(100px);
  }

  to {
    opacity: 1;
  transform: translateY(0);
  }
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Open Sans", sans-serif;
  color: #5a656e;
}

a {
  color: #a0d8ef;
}

a:hover {
  color: #a0d8ef;
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Playfair Display", serif;
}

ol li{
	margin-bottom: 4px;
}

ol li ol li{
	margin-bottom: 0px;
}
 
ol li ol li {
	list-style-type: none;
	counter-increment: cnt;
}
 
ol li ol li::before {
	content: "(" counter(cnt) ") ";
}

ol li ul li {
	list-style-type: none;
	counter-increment: cnt2;
}
 
ol li ul li::before {
	content: "[" counter(cnt2) "] ";
}

/* PC表示 */
@media (min-width: 1024px) {
  .hide_sp{
    display: block;
  }
  .hide_pc{
    display: none;
  }
}

/* モバイル表示 */
@media (max-width: 768px) {
  .hide_pc{
    display: block;
  }
  .hide_sp{
    display: none;
  }
}


/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  right: 15px;
  bottom: 15px;
  background: #a0d8ef;
  color: #fff;
  transition: display 0.5s ease-in-out;
  z-index: 99999;
}

.back-to-top i {
  font-size: 24px;
  position: absolute;
  top: 7px;
  left: 8px;
}

.back-to-top:hover {
  color: #fff;
  background: #007bff;
  transition: background 0.2s ease-in-out;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.5s;
  z-index: 997;
  transition: all 0.5s;
  padding: 20px 0;
  background: #fff;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.12);
}

#header .logo h1 {
  font-size: 26px;
  margin: 0;
  padding: 6px 0;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
}

#header .logo h1 a, #header .logo h1 a:hover {
  color: #2c4964;
  text-decoration: none;
}

#header .logo img {
  padding: 0;
  margin: 0;
  max-height: 40px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
.nav-menu, .nav-menu * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu > ul > li {
  position: relative;
  white-space: nowrap;
  float: left;
}

.nav-menu a {
 display: inline-block; /* これを追加して、paddingとfont-sizeが正しく適用されるようにします */
  background: #d43076;
  border: 0;
  padding: 15px 45px;
  color: white;
  transition: 0.4s;
  border-radius: 30px;
  font-size: 25px; /* 文字の大きさを指定 */
  /* ここから追加・変更 */
  box-sizing: border-box; /* paddingとborderをwidth/heightに含める */
  min-width: 200px; /* ボタンの最小幅を指定（任意） */
  text-align: center; /* テキストを中央揃えにする */
  text-decoration: none; /* リンクの下線を消す */
  cursor: pointer; /* ホバー時にカーソルをポインターにする */
    margin-right: 20px; /* 隣のリンクとの間に20pxの右マージンを追加 */
   display: block; margin-bottom: 5px;
}

.nav-menu a:hover, .nav-menu .active > a, .nav-menu li:hover > a {
  background: #c02a6a; /* ホバー時の背景色を少し暗くする（任意） */
  /* 必要であれば、ホバー時の追加スタイル */
}

.nav-menu .drop-down ul {
  display: block;
  position: absolute;
  left: 0;
  top: 100%;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  padding: 10px 0;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: ease all 0.3s;
}

.nav-menu .drop-down:hover > ul {
  opacity: 1;
  visibility: visible;
}

.nav-menu .drop-down li {
  min-width: 180px;
  position: relative;
}

.nav-menu .drop-down ul a {
  padding: 10px 20px;
  font-size: 20px;
  font-weight: 500;
  text-transform: none;
  color: white;
}

.nav-menu .drop-down ul a:hover, .nav-menu .drop-down ul .active > a, .nav-menu .drop-down ul li:hover > a {
  color: white;
}

.nav-menu .drop-down > a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 5px;
}

.nav-menu .drop-down .drop-down ul {
  top: 0;
  left: calc(100% - 30px);
}

.nav-menu .drop-down .drop-down:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
}

.nav-menu .drop-down .drop-down > a {
  padding-right: 35px;
}

.nav-menu .drop-down .drop-down > a:after {
  content: "\eaa0";
  font-family: IcoFont;
  position: absolute;
  right: 15px;
}

@media (max-width: 1366px) {
  .nav-menu .drop-down .drop-down ul {
    left: -90%;
  }
  .nav-menu .drop-down .drop-down:hover > ul {
    left: -100%;
  }
  .nav-menu .drop-down .drop-down > a:after {
    content: "\ea9d";
  }
}

/* Mobile Navigation */
.mobile-nav-toggle {
  position: fixed;
  right: 15px;
  top: 15px;
  z-index: 9998;
  border: 0;
  background: none;
  font-size: 24px;
  transition: all 0.4s;
  outline: none !important;
  line-height: 1;
  cursor: pointer;
  text-align: right;
}

.mobile-nav-toggle i {
  color: #a0d8ef;
}

.mobile-nav {
  position: fixed;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  z-index: 9999;
  overflow-y: auto;
  background: #fff;
  transition: ease-in-out 0.2s;
  opacity: 0;
  visibility: hidden;
  border-radius: 10px;
  padding: 10px 0;
}

.mobile-nav * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-nav a {
  display: block;
  position: relative;
  color: #2c4964 !important;
  padding: 10px 20px;
  font-weight: 500;
  outline: none;
  
}

.mobile-nav a:hover, .mobile-nav .active > a, .mobile-nav li:hover > a {
  color: #a0d8ef;
  text-decoration: none;
}

.mobile-nav .drop-down > a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 10px;
  position: absolute;
  right: 15px;
}

.mobile-nav .active.drop-down > a:after {
  content: "\eaa1";
}

.mobile-nav .drop-down > a {
  padding-right: 35px;
}

.mobile-nav .drop-down ul {
  display: none;
  overflow: hidden;
}

.mobile-nav .drop-down li {
  padding-left: 20px;
}

.mobile-nav-overly {
  width: 100%;
  height: 100%;
  z-index: 9997;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(28, 47, 65, 0.6);
  overflow: hidden;
  display: none;
  transition: ease-in-out 0.2s;
}

.mobile-nav-active {
  overflow: hidden;
}

.mobile-nav-active .mobile-nav {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-active .mobile-nav-toggle i {
  color: #fff;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#heroimg {
  width: 15vw;
  min-width: 120px;
}

#hero {
  width: 100%;
  height: 90vh;/*75vh;*/
  background: url("../img/top_img.jpg") top center;
  background-size: cover;
  padding: 0 15px;
}

#hero h1 {
  margin: 0 0 30px 0;
  font-size: 70px;
  font-weight: 300;
  line-height: 56px;
  color: #333;
}

#hero h2 {
  color: #eee;
  margin-bottom: 30px;
  font-size: 24px;
  font-weight: 300;
  font-family: "Poppins", sans-serif;
}

#hero .btn-get-started {
  font-size: 64px;
  transition: 0.5s;
  color: #333;
  height: 60px;
}

#hero .btn-get-started:hover {
  padding-top: 10px;
  color: #ddd;
}

/* PC表示 */
@media (min-width: 1024px) {
  #hero {
    position: relative;
    background-attachment: fixed;
  }

  #heroRevolutionImg {
    display: block;
    position: absolute;
    bottom: 30%;
    left: 63%;
    width: 100%;
    max-width: 420px;
    height: auto;
    z-index: 100;
    transform: rotate(-12deg);
  }
}

/* モバイル表示 */
@media (max-width: 768px) {
  #hero {
    position: relative;
  }

  #heroRevolutionImg {
    display: block;
    position: absolute;
    bottom:51%;
    left: 55%;
    width: 100%;
    max-width: 170px;
    height: auto;
    z-index: 100;
    transform: rotate(-12deg);
  }

  #hero h1 {
    font-size: 32px;
    line-height: 36px;
    margin-bottom: 10px;
  }
  #hero h2 {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 5px;
  }
  #hero h3 {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 30px;
  }
}


/*--------------------------------------------------------------
# MV Section
--------------------------------------------------------------*/
#mv {
  width: 100%;
  padding: 0;
}
#mv figure{
  width: 100%;
  margin: 0;
}
#mv figure img{
  width: 100%;
  margin: 0;
}
#mv picture{
  width: 100%;
  margin: 0;
}
#mv picture img{
  width: 100%;
  margin: 0;
}


/*--------------------------------------------------------------
# features Section
--------------------------------------------------------------*/
#features {
  position: relative;
  width: 100%;
  background: url("../img/features_bg.jpg") top center;
  background-size: cover;
  padding: 0;
}
#features::before {
  position: absolute;
  top: -25px;
  content: "";
  width: 104px;
  height: 78px;
  background: url("../img/DiversityAuction-07.png") top center;
  background-size: cover;
  padding: 0;
}
#features h3{
  color: #022248;
  font-size: 32px;
  font-weight: bold;
  font-family: "Noto Sans Japanese", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  text-align: center;
  width: 100%;
  margin: 90px auto 15px;
}
#features h4{
  color: #022248;
  font-size: 24px;
  font-weight: bold;
  font-family: "Noto Sans Japanese", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  text-align: center;
  width: 100%;
  margin: 15px auto;
}
#features h5{
  color: #022248;
  font-size: 28px;
  font-weight: bold;
  font-family: "Noto Sans Japanese", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  line-height: 44px;
  text-align: left;
}
#features h5 span{
  color: #B48138;
}
#features p{
  color: #022248;
  font-size: 18px;
  font-weight: bold;
  font-family: "Noto Sans Japanese", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  text-align: center;
  width: 100%;
  margin: 15px auto 46px;
}
#features ul{
  width: 100%;
  max-width: 1100px;
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 30px;
  align-items: center;
  justify-content: center;
  margin: 40px auto 50px;
  padding: 0;
}
#features ul li{
  list-style: none;
  width: 100%;
}
#features ul li img{
  width: 100%;
}

#features .point{
  width: 100%;
  max-width: 1100px;
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 20px;
  align-items: center;
  justify-content: center;
  margin: 50px auto ;
}
#features .point dl{
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 0;
  align-items: stretch;
  justify-content: center;
  margin: 0;
}
#features .point dl dt{
  background-color: #356199;
  display: grid;
  grid-auto-rows: 1fr;
  gap: 0;
  align-items: center;
  justify-content: center;
  margin: 0;
  height: 196px;
}
#features .point dl dd{
  background-color: #fff;
  display: grid;
  grid-auto-rows: 1fr;
  gap: 0;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 30px;
  height: 196px;
}
#features .point dl dd p{
  font-size: 20px;
  text-align: left;
  margin: 0;
}


/* PC表示 */
@media (min-width: 1024px) {
}

/* モバイル表示 */
@media (max-width: 992px) {
  #features::before {
    top: -11px;
    content: "";
    width: 50px;
    height: 38px;
  }
  #features h3{
    font-size: 24px;
    margin: 40px auto 10px;
  }
  #features h4{
    font-size: 18px;
    margin: 15px auto;
  }
  #features h5{
    font-size: 20px;
    line-height: 1.4;
    margin-bottom: 0;
  }
  #features p{
    font-size: 14px;
    margin: 15px auto 20px;
  }
  #features ul{
    grid-template-columns: repeat(2,1fr);
    gap: 15px;
    margin: 20px auto 25px;
    padding: 0 15px;
  }

  #features .point{
    grid-template-columns: 1fr;
    gap: 20px;
    align-items: center;
    justify-content: center;
    margin: 25px auto ;
    padding: 0 15px;
  }
  #features .point dl dt{
    min-height: 120px;
    height: auto;
  }
  #features .point dl dd{
    min-height: 120px;
    padding: 15px;
    height: auto;
  }
  #features .point dl dd p{
    font-size: 16px;
  }
}


/*--------------------------------------------------------------
# campain Section
--------------------------------------------------------------*/
#campain {
  position: relative;
  width: 100%;
  background: #FFF;
  padding: 0 0 60px;
}
#campain h3{
  color: #B48138;
  font-size: 42px;
  font-weight: bold;
  font-family: "Noto Sans Japanese", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  text-align: center;
  width: 100%;
  margin: 10px auto 30px;
}
#campain h3 span{
  color: #022248;
  font-size: 38px;
}
#campain h4{
  color: #022248;
  font-size: 30px;
  font-weight: bold;
  font-family: "Noto Sans Japanese", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  text-align: center;
  width: 100%;
  margin: 60px auto 10px;
}
#campain h4 span{
  position: relative;
}
#campain h4 span::before {
  position: absolute;
  top: 50%;
  left: -30px;
  content: "";
  width: 17.451px;
  height: 27.976px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='17.451' height='27.976' viewBox='0 0 17.451 27.976'%3E%3Cpath fill='none' stroke='%23b48138' stroke-linecap='round' stroke-width='4' d='M14.745 25.27 2.706 2.706' data-name='パス 1287'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  transform: translateY(-50%);
  padding: 0;
}
#campain h4 span::after {
  position: absolute;
  top: 50%;
  right: -20px;
  content: "";
  width: 17.451px;
  height: 27.976px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='17.451' height='27.976' viewBox='0 0 17.451 27.976'%3E%3Cpath fill='none' stroke='%23b48138' stroke-linecap='round' stroke-width='4' d='M2.706 25.27 14.745 2.706' data-name='パス 1288'/%3E%3C/svg%3E");  background-size: cover;
  background-repeat: no-repeat;
  background-size: contain;
  transform: translateY(-50%);
  padding: 0;
}
#campain p{
  color: #022248;
  font-size: 13px;
  font-weight: bold;
  font-family: "Noto Sans Japanese", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  text-align: left;
  width: 100%;
  margin: 20px auto 0;
}
#campain p + p{
  margin: 0 auto;
}
#campain figure{
  width: 100%;
}
#campain figure img{
  width: 100%;
}
#campain .campain-price{
  width: 100%;
  background: #fff;
  border: 4px solid #b48138;
}
#campain .campain-price h5{
  font-family: "Noto Sans Japanese", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-weight: bold;
  font-size: 32px;
  letter-spacing: 0.05em;
  line-height: 62px;
  text-align: center;
  color: #fff;
  background: #b48138;
}
#campain .campain-price .campain-price-inner{
  display: grid;
  grid-template-columns: 1fr 1fr;
}
#campain .campain-price .campain-price-inner div{
  position: relative;
  display: grid;
  place-content: center;
  text-align: center;
}
#campain .campain-price .campain-price-inner div.campain-border::after{
  position: absolute;
  content: "";
  display: block;
  background-color: #b48138;
  top: 40px;
  right: 0;
  width: 2px;
  height: 240px;
}
#campain .campain-price .campain-price-inner div p{
  font-family: "Noto Sans Japanese", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  text-align: center;
}
#campain .campain-price .campain-price-inner div p.title{
  font-weight: bold;
  font-size: 46px;
}
#campain .campain-price .campain-price-inner div p.normal{
  position: relative;
  width: fit-content;
  font-weight: bold;
  font-size: 24px;
}
#campain .campain-price .campain-price-inner div p.normal::before {
  position: absolute;
  content: "";
  display: block;
  transform: rotate(-10deg);
  background-color: #022248;
  width: 100%;
  height: 2px;
  top: 50%;
  left: 0;
}
#campain .campain-price .campain-price-inner div p.normal span{
  font-size: 18px;
}
#campain .campain-price .campain-price-inner div p.price{
  font-family: Lato;
  color: #b48138;
  font-weight: bold;
  font-size: 120px;
  font-feature-settings: "palt";
  margin-bottom: 20px;
}
#campain .campain-price .campain-price-inner div p.price span{
  font-size: 60px;
}


/* PC表示 */
@media (min-width: 1024px) {
}

/* モバイル表示 */
@media (max-width: 992px) {
#campain h3{
  font-size: 24px;
  margin: 10px auto 30px;
}
#campain h3 span{
  font-size: 20px;
}
#campain h4{
  font-size: 20px;
  margin: 60px auto 10px;
}
#campain .campain-price{
  width: 100%;
  background: #fff;
  border: 4px solid #b48138;
}
#campain .campain-price h5{
  font-size: 24px;
  line-height: 1.4;
  padding: 15px 0;
}
#campain .campain-price .campain-price-inner{
  grid-template-columns: 1fr;
}
#campain .campain-price .campain-price-inner div.campain-border::after{
  position: absolute;
  content: "";
  display: block;
  background-color: #b48138;
  top: auto;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 80%;
  height: 2px;
}
#campain .campain-price .campain-price-inner div p.title{
  font-size: 32px;
}
#campain .campain-price .campain-price-inner div p.normal{
  font-size: 18px;
}
#campain .campain-price .campain-price-inner div p.normal::before {
  position: absolute;
  content: "";
  display: block;
  transform: rotate(-10deg);
  background-color: #022248;
  width: 100%;
  height: 2px;
  top: 50%;
  left: 0;
}
#campain .campain-price .campain-price-inner div p.normal span{
  font-size: 18px;
}
#campain .campain-price .campain-price-inner div p.price{
  font-size: 70px;
}
#campain .campain-price .campain-price-inner div p.price span{
  font-size: 30px;
}

}


/*--------------------------------------------------------------
# signup Section
--------------------------------------------------------------*/
#signup {
  position: relative;
  width: 100%;
  background: #EEF5FB;
  padding: 0;
}
#signup h3{
  color: #022248;
  font-size: 38px;
  font-weight: bold;
  font-family: "Noto Sans Japanese", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  text-align: center;
  width: 100%;
  margin: 60px auto 40px;
}
#signup h3 span{
  color: #3182AC;
}
#signup h4{
  font-family: "Noto Sans Japanese", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-weight: bold;
  font-size: 20px;
  letter-spacing: 0.05em;
  
  text-align: center;
  color: #022248;
  margin: 20px auto 12px;
}
#signup p{
  font-family: "Noto Sans Japanese", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.02em;
  line-height: 22px;
  text-align: left;
  color: #022248;
}
#signup ul{
  width: 100%;
  max-width: 1100px;
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 57px;
  align-items: start;
  justify-content: center;
  margin: 40px auto 50px;
  padding: 0;
}
#signup ul li{
  list-style: none;
  width: 100%;
}
#signup ul li img{
  width: 100%;
}
#signup ul li figure {
  position: relative;
}
#signup ul li figure::after {
  position: absolute;
  top: 50%;
  right: -40px;
  content: "";
  width: 12px;
  height: 33px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='33' viewBox='0 0 12 33'%3E%3Cpath fill='%23112a43' d='M12 16.5 0 33V0Z' data-name='多角形 3'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  transform: translateY(-50%);
  padding: 0;
}
#signup ul li:last-child figure::after {
  display: none;
}


/* PC表示 */
@media (min-width: 1024px) {
}

/* モバイル表示 */
@media (max-width: 768px) {
  #signup h3{
    font-size: 24px;
    margin: 30px auto 20px;
  }
  #signup h4{
    font-size: 16px;
    margin: 10px auto 8px;
  }
  #signup p{
    font-size: 13px;
  }
  #signup ul{
    grid-template-columns: repeat(2,1fr);
    gap: 20px;
    margin: 20px auto;
  }
  #signup ul li figure::after {
    display: none;
  }
}


/*--------------------------------------------------------------
# new-category Section
--------------------------------------------------------------*/
#new-category {
  position: relative;
  width: 100%;
  background: #FFF;
  padding: 60px 0 80px;
}
#new-category h3{
  font-family: "Noto Sans Japanese", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-weight: 900;
  font-size: 38px;
  letter-spacing: 0.05em;
  text-align: center;
  color: #022248;
}
#new-category h4{
  font-family: "Noto Sans Japanese", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-weight: 900;
  font-size: 38px;
  letter-spacing: 0.05em;
  line-height: 80px;
  text-align: center;
  color: #fff;
  background: #022248;
  margin-bottom: 32px;
}
#new-category h5{
  font-family: "Noto Sans Japanese", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-weight: bold;
  font-size: 28px;
  letter-spacing: 0.02em;
  
  text-align: center;
  color: #022248;
  margin-bottom: 20px;
}
#new-category h5 span{
  font-size: 36px;
  color: #b48138;
}
#new-category p{
  font-family: "Noto Sans Japanese", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.02em;
  line-height: 22px;
  text-align: center;
  color: #022248;
  margin: 0;
}
#new-category ul{
  width: 100%;
  max-width: 1100px;
  display: grid;
  grid-template-columns: repeat(3,340px);
  gap: 40px;
  align-items: top;
  justify-content: center;
  margin: 40px auto 50px;
  padding: 0;
}
#new-category ul li{
  display: grid;
  align-items: center;
  justify-content: center;
  list-style: none;
  width: 100%;
  height: 340px;
  aspect-ratio: 1 / 1;
  background: #fff;
  border: 2px solid #b48138;
}
#new-category ul li div{
  width: auto;
  height: calc(100% - 20px);
  aspect-ratio: 1 / 1;
  background: #fff;
  border: 1px solid #b48138;
}
#new-category ul li div p{
  font-family: "Noto Sans Japanese", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-weight: bold;
  font-size: 24px;
  letter-spacing: 0.02em;
  text-align: center;
  color: #022248;
}

#new-category ul li figure {
  width: 200px;
  margin: 30px auto;
}
#new-category ul li figure img{
  width: 100%;
}

#new-category .schedule{
  width: 100%;
  background: #fff;
  border: 1px solid #022248;
  padding-bottom: 30px;
}

/* PC表示 */
@media (min-width: 1024px) {
}

/* モバイル表示 */
@media (max-width: 992px) {
  #new-category h3{
    font-size: 24px;
  }
  #new-category h4{
    font-size: 20px;
    line-height: 40px;
    margin-bottom: 16px;
  }
  #new-category h5{
    font-size: 20px;
    margin-bottom: 10px;
  }
  #new-category h5 span{
    display: block;
    font-size: 22px;
  }
  #new-category p{
    font-size: 14px;
  }
  #new-category ul{
    width: 100%;
    grid-template-columns: 1fr;
    gap: 20px;
    margin: 20px auto 30px;
  }
  #new-category ul li{
    width: auto;
    margin: 0 auto;
  }
  #new-category .schedule p{
    padding: 0 15px;
  }
}


/*--------------------------------------------------------------
# merit Section
--------------------------------------------------------------*/
#merit {
  position: relative;
  width: 100%;
  background: #f8e9d5;
  padding: 50px 0;
}
#merit::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 430px;
  height: 100%;
  background-image: url("../img/bg_merit.png"); 
  background-size: cover;
  background-position: center;
  transform-origin: center;
  z-index: 1;
}

#merit > .container {
  position: relative;
  z-index: 2;
}
#merit h3{
  font-family: "Noto Sans Japanese", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-weight: 900;
  font-size: 42px;
  letter-spacing: 0.05em;
  text-align: center;
  color: #022248;
}
#merit h3 span{
  color: #b48138;
}
#merit h3 span.bg{
  font-size: 32px;
  text-align: center;
  color: #FFF;
  background-color: #b48138;
  margin-right: 20px;
  padding: 5px 50px;
}
#merit h4{
  font-family: "Noto Sans Japanese", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-weight: bold;
  font-size: 20px;
  letter-spacing: 0.05em;
  
  text-align: center;
  color: #b48138;
}
#merit p{
  font-family: "Noto Sans Japanese", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.02em;
  text-align: left;
  color: #022248;
  margin-bottom: 0;
}
#merit ul{
  width: 100%;
  max-width: 1100px;
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 10px;
  align-items: start;
  justify-content: center;
  margin: 40px auto 0;
  padding: 0;
}
#merit ul li{
  list-style: none;
  width: 100%;
  background: #fff;
  padding: 24px 40px;
}

/* PC表示 */
@media (min-width: 1024px) {
}

/* モバイル表示 */
@media (max-width: 768px) {
  #merit h3{
    font-size: 24px;
  }
  #merit::before {
    width: 100%;
  }
  #merit h3 span.bg{
    display: block;
    font-size: 22px;
    margin: 0 0 10px;
    padding: 5px 10px;
  }
  #merit h4{
    font-size: 18px;
  }
  #merit p{
    font-family: "Noto Sans Japanese", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
    font-size: 13px;
  }
  #merit ul{
    grid-template-columns: 1fr;
    gap: 10px;
    margin: 20px auto 0;
  }
  #merit ul li{
    list-style: none;
    width: 100%;
    background: #fff;
    padding: 20px;
  }
}


/*--------------------------------------------------------------
# merit02 Section
--------------------------------------------------------------*/
#merit02 {
  position: relative;
  width: 100%;
  background: #cbe2f5;
  padding: 50px 0;
}
#merit02::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 430px;
  height: 100%;
  background-image: url("../img/bg_merit02.png"); 
  background-size: cover;
  background-position: center;
  transform-origin: center;
  z-index: 1;
}

#merit02 > .container {
  position: relative;
  z-index: 2;
}
#merit02 h3{
  font-family: "Noto Sans Japanese", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-weight: 900;
  font-size: 42px;
  letter-spacing: 0.05em;
  text-align: center;
  color: #022248;
}
#merit02 h3 span{
  color: #3182AC;
}
#merit02 h3 span.bg{
  font-size: 32px;
  text-align: center;
  color: #FFF;
  background-color: #3182ac;
  margin-right: 20px;
  padding: 5px 50px;
}
#merit02 h4{
  font-family: "Noto Sans Japanese", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-weight: bold;
  font-size: 20px;
  letter-spacing: 0.05em;
  
  text-align: center;
  color: #3182AC;
}
#merit02 p{
  font-family: "Noto Sans Japanese", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.02em;
  text-align: left;
  color: #022248;
  margin-bottom: 0;
}
#merit02 ul{
  width: 100%;
  max-width: 1100px;
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 10px;
  align-items: start;
  justify-content: center;
  margin: 40px auto 0;
  padding: 0;
}
#merit02 ul li{
  list-style: none;
  width: 100%;
  background: #fff;
  padding: 24px 40px;
}

/* PC表示 */
@media (min-width: 1024px) {
}

/* モバイル表示 */
@media (max-width: 768px) {
  #merit02::before {
    width: 100%;
  }

  #merit02 h3{
    font-size: 24px;
  }
  #merit02 h3 span.bg{
    display: block;
    font-size: 22px;
    margin: 0 0 10px;
    padding: 5px 10px;
  }
  #merit02 h4{
    font-size: 18px;
  }
  #merit02 p{
    font-family: "Noto Sans Japanese", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
    font-size: 13px;
  }
  #merit02 ul{
    grid-template-columns: 1fr;
    gap: 10px;
    margin: 20px auto 0;
  }
  #merit02 ul li{
    list-style: none;
    width: 100%;
    background: #fff;
    padding: 20px;
  }
}


/*--------------------------------------------------------------
# results Section
--------------------------------------------------------------*/
#results {
  position: relative;
  width: 100%;
  background: #FFF;
  padding: 50px 0 0;
}
#results h3{
  font-family: "Noto Sans Japanese", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-weight: 900;
  font-size: 38px;
  letter-spacing: 0.05em;
  text-align: center;
  color: #022248;
}
#results ul{
  width: 100%;
  max-width: 1100px;
  display: grid;
  grid-template-columns: repeat(6,1fr);
  gap: 10px;
  align-items: start;
  justify-content: center;
  margin: 30px auto 80px;
  padding: 0;
}
#results ul li{
  list-style: none;
  width: 100%;
  background: #fff;
  padding: 0;
}
#results ul li figure img{
  width: 100%;
}

/* PC表示 */
@media (min-width: 1024px) {
}

/* モバイル表示 */
@media (max-width: 768px) {
  #results h3{
    font-size: 24px;
  }
  #results ul{
    grid-template-columns: repeat(3,1fr);
    margin: 30px auto 40px;
  }
}


/*--------------------------------------------------------------
# commission Section
--------------------------------------------------------------*/
#commission {
  position: relative;
  width: 100%;
  background: #FFF;
  padding: 50px 0;
}
#commission h3{
  font-family: "Noto Sans Japanese", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-weight: 900;
  font-size: 38px;
  letter-spacing: 0.05em;
  text-align: center;
  color: #022248;
}
#commission ul{
  width: 100%;
  max-width: 1100px;
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 30px;
  align-items: center;
  justify-content: center;
  margin: 40px auto 50px;
  padding: 0;
}
#commission ul li{
  list-style: none;
  padding: 0;
}
#commission ul li img{
  width: 100%;
}

/* PC表示 */
@media (min-width: 1024px) {
}

/* モバイル表示 */
@media (max-width: 768px) {
  #commission {
    padding: 0;
  }
  #commission h3{
    font-size: 24px;
  }
  #commission ul{
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin: 20px auto 25px;
    padding: 0 15px;
  }
  #commission ul li{
    list-style: none;
    padding: 0;
  }
}


/*--------------------------------------------------------------
# uservoice Section
--------------------------------------------------------------*/
#uservoice {
  position: relative;
  width: 100%;
  background: #EEF5FB;
  padding: 60px 0 80px;
}
#uservoice h3{
  font-family: "Noto Sans Japanese", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-weight: 900;
  font-size: 38px;
  letter-spacing: 0.05em;
  text-align: center;
  color: #022248;
  margin-bottom: 70px;
}
#uservoice ul{
  width: 100%;
  max-width: 1100px;
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 40px;
  align-items: center;
  justify-content: center;
  margin: 0px auto 0;
  padding: 0;
}
#uservoice ul li{
  position: relative;
  list-style: none;
  border-radius: 10px;
  background: #fff;
  padding: 50px 30px 30px;
}
#uservoice ul li::after {
  position: absolute;
  top: 0;
  left: 50%;
  right: 0;
  content: "";
  width: 77px;
  height: 77px;
  background-image: url("../img/uservoice.png");
  background-repeat: no-repeat;
  background-size: contain;
  transform: translate(-50%,-50%);
  padding: 0;
}
#uservoice ul li h4{
  font-family: "Noto Sans Japanese", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-weight: bold;
  font-size: 18px;
  letter-spacing: 0.02em;
  line-height: 22px;
  text-align: center;
  color: #022248;
}
#uservoice ul li p{
  font-family: "Noto Sans Japanese", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.02em;
  line-height: 22px;
  text-align: left;
  color: #022248;
}
#uservoice ul li figure img{
  width: 100%;
}

/* PC表示 */
@media (min-width: 1024px) {
}

/* モバイル表示 */
@media (max-width: 768px) {
  #uservoice h3{
    font-size: 24px;
    margin-bottom: 60px;
  }
  #uservoice ul{
    grid-template-columns: 1fr;
    gap: 60px;
  }
  #uservoice ul li{
    padding: 50px 20px 10px;
  }
  #uservoice ul li h4{
    font-size: 16px;
  }
  #uservoice ul li p{
    font-size: 14px;
  }
}


/*--------------------------------------------------------------
# question Section
--------------------------------------------------------------*/
#question {
  position: relative;
  width: 100%;
  background: #FFF;
  padding: 60px 0 80px;
}
#question h3{
  font-family: "Noto Sans Japanese", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-weight: 900;
  font-size: 38px;
  letter-spacing: 0.05em;
  text-align: center;
  color: #022248;
  margin-bottom: 70px;
}
#question .question_inner{
  background: #eef5fb;
  padding: 30px 40px;
  margin: 0 auto 20px;
}
#question .question_inner h4{
  font-family: "Noto Sans Japanese", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  display: grid;
  grid-template-columns: 50px 1fr;
  align-items: center;
  font-weight: bold;
  font-size: 20px;
  letter-spacing: 0.05em;
  
  text-align: left;
  color: #022248;
}
#question .question_inner h4::before {
  display: inline-block;
  content: "";
  width: 20px;
  height: 34px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='34' viewBox='0 0 20 34'%3E%3Ctext fill='%23b48138' font-family='Lato-Black, Lato' font-size='24' font-weight='800' letter-spacing='.05em' transform='translate(0 27)'%3E%3Ctspan x='0' y='0'%3EQ%3C/tspan%3E%3C/text%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  margin-right: 30px;
  padding: 0;
}
#question .question_inner p{
  font-family: "Noto Sans Japanese", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  display: grid;
  grid-template-columns: 50px 1fr;
  align-items: start;
  font-weight: bold;
  font-size: 15px;
  letter-spacing: 0.05em;
  
  text-align: left;
  color: #022248;
}
#question .question_inner p::before {
  display: inline-block;
  content: "";
  width: 20px;
  height: 34px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='34' viewBox='0 0 20 34'%3E%3Ctext fill='%23022248' font-family='Lato-Black, Lato' font-size='24' font-weight='800' letter-spacing='.05em' transform='translate(1)'%3E%3Ctspan x='0' y='27'%3EA%3C/tspan%3E%3C/text%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  margin-right: 30px;
  padding: 0;
}

/* PC表示 */
@media (min-width: 1024px) {
}

/* モバイル表示 */
@media (max-width: 768px) {
  #question {
    padding: 30px 0 40px;
  }
  #question h3{
    font-size: 24px;
    margin-bottom: 40px;
  }
  #question .question_inner{
    padding: 10px 20px;
    margin: 0 auto 20px;
  }
  #question .question_inner h4{
    grid-template-columns: 50px 1fr;
    font-size: 18px;
  }
  #question .question_inner p{
    font-size: 14px;
  }
}



/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
}

.section-bg {
  background: linear-gradient(180deg, #f2f6f9 0%, #fff 100%);
}

.section-title {
  padding-bottom: 30px;
}

.section-title h2 {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 15px;
  padding-bottom: 15px;
  position: relative;
  color: #345676;
}

.section-title h2::after {
  content: '';
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: #a0d8ef;
  bottom: 0;
  left: 0;
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background-color: #a0d8ef;
  min-height: 40px;
}

.breadcrumbs h2 {
  font-size: 24px;
  font-weight: 300;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}

.breadcrumbs ol li + li {
  padding-left: 10px;
}

.breadcrumbs ol li + li::before {
  display: inline-block;
  padding-right: 10px;
  color: #6c757d;
  content: "/";
}

@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }
  .breadcrumbs ol {
    display: block;
  }
  .breadcrumbs ol li {
    display: inline-block;
  }
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about .content {
  padding: 30px 0;
}

.about .content h3 {
  font-weight: 500;
  font-size: 34px;
  color: #2c4964;
}

.about .content p {
  margin-bottom: 0;
}

.about .content .count-box {
  padding: 20px 0;
  width: 100%;
}

.about .content .count-box i {
  display: block;
  font-size: 36px;
  color: #eeafca;
  float: left;
}

.about .content .count-box span {
  font-size: 36px;
  line-height: 20px;
  display: block;
  font-weight: 700;
  color: #2c4964;
  margin-left: 50px;
  font-family: "Playfair Display", serif;
}

.about .content .count-box p {
  padding: 15px 0 0 0;
  margin: 0 0 0 50px;
  font-family: "Playfair Display", serif;
  font-size: 14px;
  color: #437099;
}

.about .content .count-box a {
  font-weight: 600;
  display: block;
  margin-top: 20px;
  color: #437099;
  font-size: 15px;
  font-family: "Poppins", sans-serif;
  transition: ease-in-out 0.3s;
}

.about .content .count-box a:hover {
  color: #6b96be;
}

.about .image {
  background: url("../img/read_img.jpg") center center no-repeat;
  background-size: cover;
  min-height: 400px;
}

@media (max-width: 991px) {
  .about .image {
    text-align: center;
  }
  .about .image img {
    max-width: 80%;
  }
}

@media (max-width: 667px) {
  .about .image img {
    max-width: 100%;
  }
}

/*--------------------------------------------------------------
# schdule
--------------------------------------------------------------*/
.schdule .content {
  padding: 30px 0;
}

.schdule .content h3 {
  font-weight: 500;
  font-size: 34px;
  color: #2c4964;
}

.schdule .content p {
  margin-bottom: 0;
}

.schdule .content .count-box {
  padding: 20px 0;
  width: 100%;
}

.schdule .content .count-box i {
  display: block;
  font-size: 36px;
  color: #eeafca;
  float: left;
}

.schdule .content .count-box span {
  font-size: 36px;
  line-height: 20px;
  display: block;
  font-weight: 700;
  color: #2c4964;
  margin-left: 50px;
  font-family: "Playfair Display", serif;
}

.schdule .content .count-box p {
  padding: 15px 0 0 0;
  margin: 0 0 0 50px;
  font-family: "Playfair Display", serif;
  font-size: 14px;
  color: #437099;
}

.schdule .content .count-box a {
  font-weight: 600;
  display: block;
  margin-top: 20px;
  color: #437099;
  font-size: 15px;
  font-family: "Poppins", sans-serif;
  transition: ease-in-out 0.3s;
}

.schdule .content .count-box a:hover {
  color: #6b96be;
}

.schdule .image {
  background: url("../img/schdule.jpg") center center no-repeat;
  background-size: cover;
  min-height: 400px;
}

@media (max-width: 991px) {
  .schdule .image {
    text-align: center;
  }
  .schdule .image img {
    max-width: 80%;
  }
}

@media (max-width: 667px) {
  .schdule .image img {
    max-width: 100%;
  }
}

/*--------------------------------------------------------------
# register
--------------------------------------------------------------*/
.register .register-title {
  font-size: 26px;
  font-weight: 500;
  margin-top: 20px;
  margin-bottom: 20px;
  color: #4b7dab;
  font-family: "Poppins", sans-serif;
}

.register .register-item {
  padding: 0 0 20px 20px;
  margin-top: -2px;
  border-left: 2px solid #a0d8ef;
  position: relative;
}

.register .register-item h4 {
  line-height: 18px;
  font-size: 18px;
  font-weight: 600;
  color: #2c4964;
  margin-bottom: 10px;
}

.register .register-item h5 {
  font-size: 16px;
  background: #e4ebf3;
  padding: 5px 15px;
  display: inline-block;
  font-weight: 400;
  margin-bottom: 10px;
  font-family: "Poppins", sans-serif;
}

.register .register-item ul {
  padding-left: 20px;
}

.register .register-item ul li {
  padding-bottom: 10px;
}

.register .register-item:last-child {
  padding-bottom: 0;
}

.register .register-item::before {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50px;
  left: -9px;
  top: 0;
  background: #fff;
  border: 2px solid #a0d8ef;
}

/*--------------------------------------------------------------
# fee
--------------------------------------------------------------*/
.fee .icon-box {
  padding: 20px 15px;
  position: relative;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 0 29px 0 rgba(68, 88, 144, 0.2);
  transition: all 0.3s ease-in-out;
  border-radius: 8px;
  text-align: center;
  z-index: 1;
}

.fee .icon-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 0;
  transition: ease-in-out 0.3s;
  z-index: -1;
}

.fee .icon-box:hover::before {
  background: #edf6fa;
  height: 100%;
  border-radius: 0px;
}

.fee .icon {
  margin: 0 auto 30px auto;
  padding-top: 10px;
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  background: #a0d8ef;
  transition: all 0.3s ease-in-out;
}

.fee .icon i {
  font-size: 36px;
  line-height: 1;
  color: #fff;
}

.fee .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}

.fee .title a {
  color: #111;
}

.fee .description {
  font-size: 15px;
  line-height: 24px;
  margin-bottom: 0;
}

.fee .icon-box:hover .title a, .fee .icon-box:hover .description {
  color: #fff;
}

.fee .icon-box:hover .icon {
  background: #fff;
}

.fee .icon-box:hover .icon i {
  color: #a0d8ef;
}

@media (max-width: 768px) {
  .fee .icon-box::before {
    bottom: 60%;
  }
}

/*--------------------------------------------------------------
# category
--------------------------------------------------------------*/
.category .category-item {
  margin-bottom: 30px;
}

.category #category-flters {
  padding: 0;
  margin: 0 auto 35px auto;
  list-style: none;
  text-align: center;
  background: #fff;
  border-radius: 50px;
  padding: 2px 15px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.08);
}

.category #category-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 10px 15px 8px 15px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  color: #5a656e;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}

.category #category-flters li:hover, .category #category-flters li.filter-active {
  color: #a0d8ef;
}

.category #category-flters li:last-child {
  margin-right: 0;
}

.category .category-wrap {
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.category .category-wrap::before {
  content: "";
  background: rgba(44, 73, 100, 0.6);
  position: absolute;
  left: 30px;
  right: 30px;
  top: 30px;
  bottom: 30px;
  transition: all ease-in-out 0.3s;
  z-index: 2;
  opacity: 0;
}

.category .category-wrap .category-info {
  opacity: 0;
  position: absolute;
  top: 10%;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 3;
  transition: all ease-in-out 0.3s;
}

.category .category-wrap .category-info h4 {
  font-size: 20px;
  color: #fff;
  font-weight: 600;
}

.category .category-wrap .category-info p {
  color: #ffffff;
  font-size: 14px;
  text-transform: uppercase;
}

.category .category-wrap .category-links {
  opacity: 0;
  left: 0;
  right: 0;
  bottom: 10%;
  text-align: center;
  z-index: 3;
  position: absolute;
  transition: all ease-in-out 0.3s;
}

.category .category-wrap .category-links a {
  color: #fff;
  margin: 0 2px;
  font-size: 28px;
  display: inline-block;
  transition: 0.3s;
}

.category .category-wrap .category-links a:hover {
  color: #e684ae;
}

.category .category-wrap:hover::before {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 1;
}

.category .category-wrap:hover .category-info {
  opacity: 1;
  top: calc(50% - 48px);
}

.category .category-wrap:hover .category-links {
  opacity: 1;
  bottom: calc(50% - 50px);
}

.category img {
  width: 800px;
}

/*--------------------------------------------------------------
# contets Details
--------------------------------------------------------------*/
.contets-details {
  padding-top: 30px;
}

.contets-details .contets-details-container {
  position: relative;
}

.contets-details .contets-details-carousel {
  position: relative;
  z-index: 1;
}

.contets-details .contets-details-carousel .owl-nav, .contets-details .contets-details-carousel .owl-dots {
  margin-top: 5px;
  text-align: left;
}

.contets-details .contets-details-carousel .owl-dot {
  display: inline-block;
  margin: 0 10px 0 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ddd !important;
}

.contets-details .contets-details-carousel .owl-dot.active {
  background-color: #a0d8ef !important;
}

.contets-details .contets-info {
  padding: 30px;
  position: absolute;
  right: 0;
  bottom: -70px;
  background: #fff;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  z-index: 2;
}

.contets-details .contets-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.contets-details .contets-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.contets-details .contets-info ul li + li {
  margin-top: 10px;
}

.contets-details .contets-description {
  padding-top: 50px;
}

.contets-details .contets-description h2 {
  width: 50%;
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.contets-details .contets-description p {
  padding: 0 0 0 0;
}

@media (max-width: 768px) {
  .contets-details .contets-description h2 {
    width: 100%;
  }
  .contets-details .contets-info {
    position: static;
    margin-top: 30px;
  }
}

/*--------------------------------------------------------------
# reference
--------------------------------------------------------------*/
.reference .testimonial-item {
  box-sizing: content-box;
  min-height: 320px;
}

.reference .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50%;
  margin: -40px 0 0 40px;
  position: relative;
  z-index: 2;
  border: 6px solid #fff;
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
}

.reference .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 45px;
  color: #2c4964;
}

.reference .testimonial-item h4 {
  font-size: 14px;
  color: #6b96be;
  margin: 0 0 0 45px;
}

.reference .testimonial-item .quote-icon-left, .reference .testimonial-item .quote-icon-right {
  color: #f7d9e6;
  font-size: 26px;
}

.reference .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.reference .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
}

.reference .testimonial-item p {
  font-style: italic;
  margin: 0 15px 0 15px;
  padding: 20px 20px 60px 20px;
  background: #fff;
  position: relative;
  border-radius: 6px;
  position: relative;
  z-index: 1;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

.reference .owl-nav, .reference .owl-dots {
  margin-top: 5px;
  text-align: center;
}

.reference .owl-dot {
  display: inline-block;
  margin: 0 5px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ddd !important;
}

.reference .owl-dot.active {
  background-color: #a0d8ef !important;
}

@media (max-width: 767px) {
  .reference {
    margin: 30px 10px;
  }
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .contact-about h3 {
  font-size: 36px;
  margin: 0 0 10px 0;
  padding: 0;
  line-height: 1;
  font-weight: 300;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #a0d8ef;
}

.contact .contact-about p {
  font-size: 14px;
  line-height: 24px;
  font-family: "Playfair Display", serif;
  color: #3c6387;
}

.contact .social-links {
  padding-bottom: 20px;
}

.contact .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #fff;
  color: #a0d8ef;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
  border: 1px solid #a0d8ef;
}

.contact .social-links a:hover {
  background: #a0d8ef;
  color: #fff;
}

.contact .info {
  color: #5a656e;
}

.contact .info i {
  font-size: 32px;
  color: #a0d8ef;
  float: left;
  line-height: 1;
}

.contact .info p {
  padding: 0 0 10px 42px;
  
  font-size: 14px;
}

.contact .php-email-form .validate {
  display: none;
  color: red;
  margin: 0 0 15px 0;
  font-weight: 400;
  font-size: 13px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br + br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input, .contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
}

.contact .php-email-form input:focus, .contact .php-email-form textarea:focus {
  border-color: #a0d8ef;
}

.contact .php-email-form button[type="submit"] {
  background: #a0d8ef;
  border: 0;
  padding: 10px 24px;
  color: #fff;
  transition: 0.4s;
  border-radius: 50px;
}

.contact .php-email-form button[type="submit"]:hover {
  background: #dd5a92;
}

@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #022248;
  padding: 60px 0 40px;
}
#footer .footer_inner{
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
#footer .footer_inner h3{
  font-family: "Noto Sans Japanese", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-weight: 900;
  font-size: 38px;
  letter-spacing: 0.05em;
  text-align: left;
  color: #fff;
  margin-bottom: 30px;
}
#footer .footer_inner h4{
  font-family: "Noto Sans Japanese", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-weight: 900;
  font-size: 20px;
  letter-spacing: 0.05em;
  text-align: left;
  color: #fff;
}
#footer .footer_inner p{
  font-family: "Noto Sans Japanese", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-weight: 900;
  font-size: 14px;
  letter-spacing: 0.05em;
  text-align: left;
  color: #fff;
}
#footer .footer_inner dl{
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 15px 30px;
  align-items: start;
}
#footer .footer_inner dl dt img{
  width: 100%;
}
#footer .footer_inner dl dd{
  font-family: "Noto Sans Japanese", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.02em;
  line-height: 20px;
  text-align: left;
  color: #fff;
  margin: 0;
}
#footer .copyright {
  width: 100%;
  max-width: 1100px;
  border-top: 1px solid #5D748D;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 28px;
  margin-top: 80px;
}
#footer .copyright p{
  font-family: "Noto Sans Japanese", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-weight: normal;
  font-size: 14px;
  letter-spacing: 0.05em;
  
  text-align: left;
  color: #b9c5d2;
  margin-top: 20px;
}
#footer .copyright p a{
  color: #b9c5d2;
  text-decoration: none;
}
#footer .copyright p.mlauto{
  margin-left: auto;
}
/* モバイル表示 */
@media (max-width: 768px) {
  #footer {
    padding: 60px 20px 0;
  }
  #footer .footer_inner{
    flex-wrap: wrap;
    justify-content: center;
  }
  #footer .footer_inner h3{
    font-size: 24px;
    margin-bottom: 30px;
  }
  #footer .footer_inner h4{
    font-size: 18px;
  }
  #footer .footer_inner dl{
    margin-top: 30px;
    gap: 10px 30px;
  }
  #footer .footer_inner dl dd{
    font-size: 13px;
  }
  #footer .copyright {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
    padding-top: 10px;
  }
  #footer .copyright p{
    font-size: 13px;
    margin-top: 0;
  }
  #footer .copyright p a{
    color: #b9c5d2;
    text-decoration: none;
  }
  #footer .copyright p.mlauto{
    margin-left: 0;
  }
  #footer .copyright p.copy{
    order: 3;
  }
}




/*--------------------------------------------------------------
# Release Info
--------------------------------------------------------------*/
.top_info img {
	max-width: 100%;
	height: auto;
}

.top_info .register_btn  {
    background: #d43076;
    border: 0;
    padding: 15px 45px;
    color: #fff;
    transition: 0.4s;
    border-radius: 50px;
	  font-size: 25px;
}


.nyukai_btn  {
  background: #d43076;
  border: 0;
  padding: 15px 45px;
  color: #fff;
  transition: 0.4s;
  border-radius: 50px;
  font-size: 25px;
}

.sns-icon-wrapper {
  display: flex;
  gap: 10px;
  padding: 10px;
}

.sns-item {
  display: inline-block;
  width: 35px;
  height: 35px;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.sns-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  margin-top: 10px;
}

.sns-item:hover {
  transform: translateY(-5px) scale(1.05);
  filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.2));
}

@media (max-width: 768px) {
    .sns-icon-wrapper {
        gap: 10px;
        justify-content: center;
        padding-right: 40px;
        margin-top: -40px;
    }

    .sns-item {
        width: 25px;
        height: 25px;
    }
    
    .sns-item:hover {
        transform: none; 
    }
}