@charset "UTF-8";

/* ユーティリティー */

body {
  color: #646464;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 2.25;
  -webkit-text-size-adjust: 100%;
  font-feature-settings: "palt";
  position: relative;
}
/*
Regular 400,
Medium 500,
SemiBold 600,
Bold 700,
Black 900,
*/

.tsuk {
  font-family: fot-tsukuaoldmin-pr6n, sans-serif;
  font-weight:300;
}
/*
L 300,
*/

.jose {
  font-family: josefin-slab, serif;
}
/*
Thin 100,
Light 300,
*/

.engr {
  font-family: english-grotesque, sans-serif;
}
/*
Thin 100,
Light 300,
Medium 500,
Bold 700,
*/

.mp1c {
  font-family: m-plus-1c, sans-serif;
}
/*
Light 300,
Medium 500,
Bold 700,
heavy 800,
*/


body.mvfix {
  overflow: visible;
}

body.fixed {
  overflow-y: hidden;
}

main {
  overflow-x: clip;
}
article {
  position:relative;
}


a {
  color: #000;
  zoom: 1;
  text-decoration: none;
  transition: opacity 0.7s;
  display: block;
}

a:hover {
  /*opacity: 0.8;*/
}


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

a.sptel {
  cursor: default;
  pointer-events: none;
}

.nolink {
  pointer-events: none;
  cursor: default;
}

.sp {
  display: none;
}

img[src*="_sp"] {
  display: none;
}

.spbr {
  display: none;
}
.b-640 {
    display:none;
}

.flex {
  display: flex;
  flex-wrap: wrap;
}

.img_cnt {
  width: 100%;
  height: 100%;
  object-fit: contain;
  -o-object-fit: contain;
  object-position: center;
  -o-object-position: center;
}
.img_cvr {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
  object-position: center;
  -o-object-position: center;
}

.inner-1300 {
  width: 90vw;
  max-width: 1300px;
  margin: 0 auto;
}
.inner-1240 {
  width: 86vw;
  max-width: 1140px;
  margin: 0 auto;
}
.inner-1140 {
  width: 83.33vw;
  max-width: 1140px;
  margin: 0 auto;
}

.blk {
  padding: max(180px,12.5vw) 0;
}

.bg_bl {
  background-color:#073582;
}
.bg_wh {
  background-color:#fff;
}
.bg_gr {
  background-color:#efefef;
}
.bg_pk {
  background-color:#e7537e;
}
.bg_conc {
  background:url(../imgs/index/bg.jpg) 0 0 repeat-y;
  background-size:100% auto;
}


.sec_wrap {
    display: flex;
    position: relative;
    z-index: 1;
}

.sec_head {

}
.sec_head .secttl {
  color:#073582;
  display:flex;
  flex-direction:column;
}
.sec_head .secttl .en {
  font-size:75px;
  font-family: english-grotesque, sans-serif;
  font-weight:700;
  line-height:1;
}
.sec_head .secttl .jp {
  font-size:18px;
  line-height:1;
}

.secttl.ttl-wh {
  color:#fff;
}
.dotttl .ja {
  padding-left:1em;
  position:relative;
}
.dotttl .ja::before {
  content:"";
  display:block;
  width:10px;
  height:10px;
  background-color:#073582;
  border-radius:50%;
  position:absolute;
  top:50%;
  left:0;
  transform:translateY(-50%);
  z-index:1;
}
.ttl-wh.dotttl .ja::before {
  background-color:#fff;
}


.icon_draw {
  position:absolute;
}



/* -------------------------------------
splash
------------------------------------- */
#splash {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 999;
  background: #fff;
  text-align: center;
}

#splash_logo {
  width: 6.94vw;
  max-width: 100px;
  min-width:78px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
}

.morebtn {
  color:#073582;
  font-family: m-plus-1c, sans-serif;
  font-weight:500;
  line-height:1;
  display: inline-flex;
  align-items: center;
  gap: 35px;
  width:200px;
  height:70px;
  padding:20px 30px;
  border-radius:35px;
  background-color:#e6ebe9;
}

/*ボタン青*/
.morebtn.bl_btn {
  color:#fff;
  background-color:#073582;
}

.morebtn .arrow {
  position: relative;
  width: 20px;
  height: 2px;
}
/* 横棒 */
.morebtn .arrow::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 2px;
  background: currentColor;
  transform-origin: left center;
}
.morebtn .arrow::after {
  content: "";
  position: absolute;
  right: 0;
  top: -3px;
  width: 6px;
  height: 6px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}

/* hover時に両方アニメーション */
.morebtn:hover .arrow::before {
  animation: arrow-bar 1.0s ease-in-out forwards;
}

.morebtn:hover .arrow::after {
  animation: arrow-head 1.0s ease-in-out forwards;
}

/* 横棒のアニメーション */
@keyframes arrow-bar {
  0% {
    transform: scaleX(1);
  }
  20% {
    transform: scaleX(1.6); /* 伸び幅 */
  }
  100% {
    transform: scaleX(1);
  }
}
/* 三角の追随アニメーション */
@keyframes arrow-head {
  0% {
    transform: translateX(0) rotate(45deg);
  }
  20% {
    transform: translateX(12px) rotate(45deg); /* ← 横棒増分と合わせる */
  }
  100% {
    transform: translateX(0) rotate(45deg);
  }
}



/* ==========================
   slick 矢印ボタン 共通
========================== */
.list_arrows .slick-prev,
.list_arrows .slick-next {
  position: absolute;
  bottom: 25px;
  top: auto;

  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid transparent;
  background: transparent;

  padding: 0;
  cursor: pointer;
  z-index: 20;
}

/* 位置 */
.list_arrows .slick-prev { left: 0; }
.list_arrows .slick-next { left: 52px; }

/* slick標準の文字を消す */
.list_arrows .slick-prev::before,
.list_arrows .slick-next::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
}

/* ==========================
   横棒
========================== */
.list_arrows .slick-prev::before,
.list_arrows .slick-next::before {
  width: 14px;
  height: 2px;
  transform: translate(-50%, -50%);
}

.list_arrows .slick-prev.slick-disabled:before,
.list_arrows .slick-next.slick-disabled:before {
    opacity: 1;
}




/* ==========================
   矢印先端
========================== */
.list_arrows .slick-prev::after,
.list_arrows .slick-next::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 6px;
  height: 6px;
  transform: translate(-50%, -50%);
}

/* ==========================
   左：prev（濃紺＋白矢印）
========================== */
.list_arrows .slick-prev {
  background: #0b3b82;
  border-color: #0b3b82;
}

.list_arrows .slick-prev::before {
  background: #fff;
}

.list_arrows .slick-prev::after {
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: translate(-65%, -50%) rotate(-135deg);
}

/* ==========================
   右：next（薄水色ライン）
========================== */
.list_arrows .slick-next {
  background: transparent;
  border-color: #8fb7e8;
}

.list_arrows .slick-next::before {
  background: #8fb7e8;
}

.list_arrows .slick-next::after {
  border-top: 2px solid #8fb7e8;
  border-right: 2px solid #8fb7e8;
  transform: translate(-35%, -50%) rotate(45deg);
}










.inv_mov {
  opacity: 0;
  transition: opacity 1s, transform 1s;
}

.tl_yb {
  transform: translate(0, 60px);
}

.tl_yt {
  transform: translate(0, -60px);
}

.tl_xl {
  transform: translate(-60px, 0);
}

.tl_xr {
  transform: translate(60px, 0);
}

.tl_rol {
  transform: rotate(-10deg);
}

.tl_ror {
  transform: rotate(10deg);
}
.tl_xt {
  transform: rotateX(180deg);
}


.mov {
  opacity: 1;
  transform: translate(0, 0) rotate(0deg);
  transition: opacity 1s, transform 1s;
}

.mov.delay100 {
  transition-delay: 100ms;
}

.mov.delay200 {
  transition-delay: 200ms;
}

.mov.delay300 {
  transition-delay: 300ms;
}

.mov.delay400 {
  transition-delay: 400ms;
}

.mov.delay500 {
  transition-delay: 500ms;
}
.mov.delay600 {
  transition-delay: 600ms;
}
.mov.delay700 {
  transition-delay: 700ms;
}

/* -------------------------------------
404 Not found
------------------------------------- */
.notfound {
  text-align: center;
  padding: 250px 0;
}
.notfound .page {
  padding-left: 0;
}

.notfound .ttl {
  text-align: center;
  font-size: 32px;
  margin-bottom: 30px;
}

.notfound p {
  font-size: 16px;
  margin-bottom: 15px;
}

.notfound p strong {
  font-size: 20px;
  font-weight: bold;
  display: block;
  margin-bottom: 10px;
}

.notfound a {
  text-decoration: underline;
  display: inline-block;
}
.notfound #toppage {
  display:none;
}


@media screen and (max-width: 1440px) {

}

@media screen and (max-width: 1260px) {

}

@media screen and (max-width: 1100px) {


}

@media screen and (max-width: 1060px) {

}

@media screen and (max-width: 980px) {
.sec_head .secttl .en {
  font-size:clamp(40px,7.96vw,78px);
}
.sec_head .secttl .jp {
  font-size:clamp(16px,1.84vw,18px);
}






/* -------------------------------------
footer
------------------------------------- */


}

@media screen and (max-width: 920px) {
}

@media screen and (max-width: 880px) {
}

}

@media screen and (max-width: 800px) {
}

@media screen and (max-width: 768px) {

.sp {
    display: block;
}

@media screen and (max-width: 700px) {
}

@media screen and (max-width: 640px) {
body {
    font-size: 15px;
}

  img[src*="_sp"] {
    display: block;
  }

  img[src*="_pc"] {
    display: none;
  }

  a.sptel {
    cursor: pointer;
    pointer-events: auto;
  }
  
  .n-640 {
    display:none;
  }
  .b-640 {
    display:block;
  }

.blk {
  padding: max(35px,8.6vw) 0;
}




}

@media screen and (max-width: 600px) {


}

@media screen and (max-width: 500px) {

}

@media screen and (max-width: 400px) {

}
@media screen and (max-width: 380px) {
body {
    font-size: 14px;
}



}

@media screen and (max-width: 320px) {

}

@media screen and (min-width: 769px) {

}
