@charset "utf-8";

/* Reset CSS （normalize.css v3.0.2） */
html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}body{margin:0}article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section,summary{display:block}audio,canvas,progress,video{display:inline-block;vertical-align:baseline}audio:not([controls]){display:none;height:0}[hidden],template{display:none}a{background-color:transparent}a:active,a:hover{outline:0}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:700}dfn{font-style:italic}mark{background:#ff0;color:#000}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sup{top:-.5em}sub{bottom:-.25em}img{border:0}svg:not(:root){overflow:hidden}figure{margin:1em 40px}hr{-moz-box-sizing:content-box;box-sizing:content-box;height:0}pre{overflow:auto}code,kbd,pre,samp{font-family:monospace;font-size:1em}button,input,optgroup,select,textarea{color:inherit;font:inherit;margin:0}button{overflow:visible}button,select{text-transform:none}button,html input[type="button"],input[type=reset],input[type=submit]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}input{line-height:normal}input[type=checkbox],input[type=radio]{box-sizing:border-box;padding:0}input[type="number"]::-webkit-inner-spin-button,input[type="number"]::-webkit-outer-spin-button{height:auto}input[type=search]{-webkit-appearance:textfield;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;box-sizing:content-box}input[type="search"]::-webkit-search-cancel-button,input[type="search"]::-webkit-search-decoration{-webkit-appearance:none}fieldset{border:1px solid silver;margin:0 2px;padding:.35em .625em .75em}legend{border:0;padding:0}textarea{overflow:auto}optgroup{font-weight:700}table{border-collapse:collapse;border-spacing:0}td,th{padding:0}
/* 追加 */
html,body,div,span,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,abbr,address,cite,code,del,dfn,em,img,ins,kbd,q,samp,small,strong,sub,sup,var,b,i,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,figcaption,figure,footer,header,hgroup,menu,nav,section,summary,time,mark,audio,video{margin:0;padding:0;border:0;outline:0;font-size:100%;vertical-align:baseline;background:transparent}address{font-style:normal}*{margin:0;padding:0}*,:after,:before{background-repeat:no-repeat;box-sizing:border-box}img{vertical-align:bottom;-webkit-backface-visibility:hidden}

/*----------------------------------------------------------------------------------------------------

  Base
  
----------------------------------------------------------------------------------------------------*/
:root {
  --base-width: 1366px;
  --cubic-bezier: cubic-bezier(.23,1,.32,1);
}
@media print, screen and (min-width:1001px) {
  :root {
    --line-height: 1.8;
    --line-height-l: 2.0;
    --line-height-m: 1.6;
    --line-height-s: 1.4;
    --side-space: 40px;
    --block-space-unit: 40px;
    --box-space-unit: 10px;
  }
}
@media print, screen and (min-width:641px) and (max-width:1000px) {
  :root {
    --line-height: 1.6;
    --line-height-l: 2.8;
    --line-height-m: 1.4;
    --line-height-s: 1.2;
    --side-space: 30px;
    --block-space-unit: 30px;
    --box-space-unit: 8px;
  }
}
@media screen and (max-width:640px) {
  :root {
    --line-height: 1.6;
    --line-height-l: 2.8;
    --line-height-m: 1.4;
    --line-height-s: 1.2;
    --side-space: 6%;
    --block-space-unit: max(calc(30 / 640 * 100vw), 15px);
    --box-space-unit: 6px;
  }
}
:root {
  --block-space-max: calc(var(--block-space-unit) * 4);/*160*/
  --block-space-3l: calc(var(--block-space-unit) * 3.5);/*140*/
  --block-space-2l: calc(var(--block-space-unit) * 3);/*120*/
  --block-space-l: calc(var(--block-space-unit) * 2.5);/*100*/
  --block-space-m: calc(var(--block-space-unit) * 2);/*80*/
  --block-space-s: calc(var(--block-space-unit) * 1.75);/*70*/
  --block-space-2s: calc(var(--block-space-unit) * 1.5);/*60*/
  --block-space-3s: calc(var(--block-space-unit) * 1.25);/*50*/
  --block-space-min: calc(var(--block-space-unit) * 1);/*40*/
  
  --box-space-max: calc(var(--box-space-unit) * 5);/*50*/
  --box-space-l: calc(var(--box-space-unit) * 4.5);/*45*/
  --box-space-m: calc(var(--box-space-unit) * 4);/*40*/
  --box-space-s: calc(var(--box-space-unit) * 3.5);/*35*/
  --box-space-2s: calc(var(--box-space-unit) * 3);/*30*/
  --box-space-min: calc(var(--box-space-unit) * 2.5);/*25*/
}
  
html,
body {
  height: 100%;
}
body {
  min-width: 320px;
  background-color: #fff;
  color: #1C3144;
  font-family: 'Zen Kaku Gothic New','Helvetica Neue','Arial','Hiragino Kaku Gothic ProN','Hiragino Sans',Meiryo,sans-serif;
  font-weight: 400;
  line-height: var(--line-height);
  word-wrap: break-word;
  /* text-align: center; */
}
.js_rpsTable,
.js_rpsBlock {
  overflow: hidden;
}
.js_linkBox {
  cursor: pointer;
}
.js_iframe iframe {
  pointer-events: none;
  cursor: pointer;
}
.clear:after {
  content: "";
  display: block;
  height: 0;
  clear: both;
}
.t-nowrap { display: inline-block; }
.lineh-l { line-height: var(--line-height-l); }
.lineh-m { line-height: var(--line-height-m); }
.lineh-s { line-height: var(--line-height-s); }

/*--------------------------------------------------------------------------------
  font
--------------------------------------------------------------------------------*/
html {
  font-size: 62.5%;
}
body {
  font-size: 1.6rem;
}
:root {
  --fs-max: 7.5em;/*120*/
  --fs-9l: 4em;/*74*/
  --fs-8l: 3.5em;/*56*/
  --fs-7l: 3em;/*48*/
  --fs-6l: 2.6em;/*41.6*/
  --fs-5l: 2.3em;/*36.8*/
  --fs-4l: 2em;/*32*/
  --fs-3l: 1.7em;/*27.2*/
  --fs-2l: 1.5em;/*24*/
  --fs-l: 1.3em;/*20.8*/
  --fs-m: 1.1em;/*17.6*/
  --fs-s: 0.9em;/*14.4*/
 --fs-2s: 0.8em;
  --fs-3s: 0.7em;
  --fs-min: 0.6em; 
  
  --ff-en: "Crimson Pro", serif;;
  --ff-min: "Zen Old Mincho", serif;;
}
@media print, screen and (max-width:1200px) {
  :root {
    --fs-max: 4.6em;
    --fs-9l: 4.1em;
    --fs-8l: 3.6em;
    --fs-7l: 3.1em;
    --fs-6l: 2.6em;
    --fs-5l: 2.1em;
    --fs-4l: 1.9em;
    --fs-3l: 1.6em;
  }
}
@media print, screen and (max-width:800px) {
  :root {
    --fs-max: 3em;
    --fs-9l: 2.8em;
    --fs-8l: 2.6em;
    --fs-7l: 2.4em;
    --fs-6l: 2.2em;
    --fs-5l: 2em;
    --fs-4l: 1.8em;
    --fs-3l: 1.5em;
    --fs-2l: 1.4em;
    --fs-l: 1.2em;
  }
}
@media print, screen and (max-width:1200px) {
  html {
    font-size: clamp(58%, 0.2em + 0.6vw, 62.5%);
  }
}
@media screen and (max-width:640px) {
  html {
    font-size: clamp(50%, 0.3em + 0.8vw, 58%);
  }
}
.fs-max { font-size: var(--fs-max); }
.fs-5l { font-size: var(--fs-5l); }
.fs-4l { font-size: var(--fs-4l); }
.fs-3l { font-size: var(--fs-3l); }
.fs-2l { font-size: var(--fs-2l); }
.fs-l { font-size: var(--fs-l); }
.fs-m { font-size: var(--fs-m); }
.fs-ms { font-size: var(--fs-ms); }
.fs-s { font-size: var(--fs-s); }
.fs-2s { font-size: var(--fs-2s); }
.fs-3s { font-size: var(--fs-3s); }
.fs-min { font-size: var(--fs-min); }

.fw-400 { font-weight: 400; }
.fw-500 { font-weight: 500; }
.fw-700 { font-weight: 700; }
.fw-900 { font-weight: 900; }

.fc-blue { color: #305884; }
.fc-dblue { color: #1C3C5E; }
.fc-lblue { color: #5DA9E9; }
.fc-gold { color: #917D5F; }
.fc-red { color: #C34141; }
.fc-orange { color: #FF3F00; }
.fc-pink { color: #FF8686; }



/* // <weight>: Use a value from 200 to 900
// <uniquifier>: Use a unique and descriptive class name */

.crimson-pro{
  font-family: "Crimson Pro", serif;
  font-optical-sizing: auto;
  /* font-weight: <weight>; */
  font-style: normal;
}

.zen-old-mincho-regular {
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-style: normal;
}

.zen-kaku-gothic-new-regular {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.ff-en { font-family: var(--ff-en); }
.ff-min { font-family: var(--ff-min); }

/*-----------------------------------------------------------------------------------
  img
-----------------------------------------------------------------------------------*/
img {
  max-width: 100%;
  height: auto;
}
img[src$=".svg"] {
  width: 100%;
  height: auto;
}
@media (hover: hover) {
  img.img-hv,
  a.img-hv img {
    transition: opacity 0.3s ease-out;
  }
  img.img-hv:hover,
  a.img-hv:hover img,
  .js_linkBox:hover img.img-hv {
    opacity: 0.6;
  }
}

/*-----------------------------------------------------------------------------------
  link
-----------------------------------------------------------------------------------*/
a {
  outline: none;
}
a,
a:visited,
a:hover {
  color: #59b6d0;
  text-decoration: underline;
}
@media (hover: hover) {
  a,
  .js_linkBox {
    transition: color 0.15s ease-out, opacity 0.15s ease-out, background 0.3s ease-out, border 0.15s ease-out;
  }
  a:hover,
  .js_linkBox:hover a {
    color: #003F91;
    text-decoration: none;
  }
}
@media (hover: hover) {
  a[href^="tel:"] {
    pointer-events: none;
    cursor: default;
    color: inherit;
  }
}
a[href^="tel:"],
a[href^="tel:"]:visited,
a[href^="tel:"]:hover {
  color: inherit;
  text-decoration: none;
}



/*----------------------------------------------------------------------------------------------------

  
----------------------------------------------------------------------------------------------------*/

.pc {
}
.sp {
	display: none;
}

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

.flex{
    display: flex;
}

.between{
    justify-content: space-between;
}

.j-center{
    justify-content: center;
}

.align-center{
    align-items: center;
}

button {
 position: relative;
 display: inline-block;
 cursor: pointer;
 outline: none;
 border: 0;
 vertical-align: middle;
 text-decoration: none;
 background: transparent;
 padding: 0;
 font-size: inherit;
 font-family: inherit;
}

/*----------------------------------------------------------------------------------------------------
learn-more
----------------------------------------------------------------------------------------------------*/

button.learn-more {
 width: 15rem;
 height: auto;
}

button.learn-more .circle {
 transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
 position: relative;
 display: block;
 margin: 0;
 width: 3rem;
 height: 3rem;
 background: #fff;
 border-radius: 1.625rem;
}

button.learn-more .circle .icon {
 transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
 position: absolute;
 top: 0;
 bottom: 0;
 margin: auto;
 background: #0042A5;
}

button.learn-more .circle .icon.arrow {
 transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
 left: 0.625rem;
 width: 1.125rem;
 height: 0.1rem;
 background: none;
}

button.learn-more .circle .icon.arrow::before {
 position: absolute;
 content: "";
 top: -0.275rem;
 right: 0.0625rem;
 width: 0.625rem;
 height: 0.625rem;
 border-top: 0.125rem solid #0042A5;
 border-right: 0.125rem solid #0042A5;
 transform: rotate(45deg);
}

button.learn-more .button-text {
 transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
 position: absolute;
 top: -5px;
 /* transform: translateY(-50%); */
 left: 10px;
 right: 0;
 bottom: 0;
 padding: 0.75rem 0;
 margin: 0 0 0 1.85rem;
 color: #fff;
 font-weight: 700;
 line-height: 1.6;
 text-align: center;
 text-transform: uppercase;
}

button:hover .circle {
 width: 100%;
}

button:hover .circle .icon.arrow {
 background: #0042A5;
 transform: translate(1rem, 0);
}

button:hover .button-text {
 color: #0042A5;
}

/* button.learn-more [tcolor="white"]{
  color: #FFF;
} */

/*----------------------------------------------------------------------------------------------------
to-form
----------------------------------------------------------------------------------------------------*/
button.to-form {
  position: relative;
  z-index: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #0042A5;
  /* box-shadow: 0px 6px 24px 0px rgba(0, 0, 0, 0.2); */
  overflow: hidden;
  cursor: pointer;
  border: none;
  width: 100%;
}

button.to-form:after {
  content: " ";
  width: 0%;
  height: 100%;
  background: #8BB174;
  position: absolute;
  transition: all 0.4s ease-in-out;
  right: 0;
}

button.to-form:hover::after {
  right: auto;
  left: 0;
  width: 100%;
}

button.to-form span:not(.arrow) {
  text-align: center;
  text-decoration: none;
  width: 100%;
  padding: 20px 60px;
  color: #fff;
  font-size:var(--fs-m);
  /* font-weight: 700; */
  letter-spacing: 0.1em;
  z-index: 20;
  transition: all 0.3s ease-in-out;
}

button.to-form:hover span:not(.arrow) {
  color: #1C3144;
  animation: scaleUp 0.3s ease-in-out;
}

@keyframes scaleUp {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(0.98);
  }

  100% {
    transform: scale(1);
  }
}

button.to-form .arrow {
  position: relative;
  /* display: inline-block; */
  width: 6.2px;
  height: 10.5px;;
  padding-left: 30px;
}

button.to-form .arrow::before,
button.to-form .arrow::after {
  content: "";
  position: absolute;
  top: calc(50% - 1px);
  right: 0;
  width: 8px;
  height: 2px;
  border-radius: 9999px;
  background-color: #fff;
  transform-origin: calc(100% - 1px) 50%;
}

button.to-form .arrow::before {
  transform: rotate(45deg);
}

button.to-form .arrow::after {
  transform: rotate(-45deg);
}

button.to-form:hover span > .arrow::before,
button.to-form:hover span > .arrow::after {
 background-color: #1C3144;
}


/*----------------------------------------------------------------------------------------------------
loading
----------------------------------------------------------------------------------------------------*/

.loading {
  position: fixed;
  inset: 0;
  z-index: 10;
  height: 100svh;
  background-color: #0042A5;
   opacity: 0;
  pointer-events: none;
  /* visibility: hidden; */
}

.loading__inner {
  width: 100%;
  height: inherit;
  display: grid;
  place-content: center;
  row-gap: 10px;
}

.loading__text {
  font-size: max(15px, 1.8rem);
  font-weight: 500;
  letter-spacing: 0.2em;
  line-height: 2;
  text-align: center;
  color: #fff;
}

.loading__logo {
  margin: 0 auto;
  width: min(280px, 100%);
}

[data-opening-animation] {
  opacity: 0;
  pointer-events: none;
}

/*----------------------------------------------------------------------------------------------------
header
----------------------------------------------------------------------------------------------------*/

header{

}

.header-primary{
  position: relative;
}


.header-wrap{
  width: 100%;
  padding:  0px 0 0px 40px;
  position: absolute;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-box .box-inner{
  display: flex;
  align-items: center;
}

.header-menu{
  /* margin-right: 50px; */
}
@media print, screen and (min-width:961px) {
.header-menu ul{
  display: flex;
  align-items: center;
}
}
@media print, screen and (max-width:1100px) {
button.to-form span:not(.arrow){
  padding-left: 30px;
  padding-right: 30px;
}
}



.header-menu ul li{
  list-style: none;
}

.header-menu ul li:nth-last-child(n+3){
  margin-right: 20px;
}

.header-menu ul li:nth-last-child(2){
  margin-right: 50px;
}

.header-menu ul li a:not(.insta){
  text-decoration: none;
  padding:10px;
  color: #1C3144;
}

.header-menu ul li a:visited{
color: #1C3144;
}

@media print, screen and (max-width:1200px) {
  /* .header-menu{
    margin-right: 25px;
  } */

  .header-menu ul li a{
    font-size: var(--fs-s);
  }

  .header-menu ul li:nth-last-child(n+3){
    margin-right: 10px;
  }
  
  .header-menu ul li:nth-last-child(2){
    margin-right: 15px;
  }
  .header-menu ul li a:not(.insta){
    padding:0px;
  }
}
.header-tel.fix{
  margin-left: auto;
}

@media print, screen and (max-width:800px) {
  /* .header-tel.fix{
    width: 200px;
    height: 50px;
    position: fixed;
    bottom: 35px;
    left: 50%;
    transform: translateX(-50%);
  } */
}

.header-tel{
  width: 100%;
  height: 60px;
  margin-bottom: 5px;
  margin-top: 8px;
  font-size: var(--fs-2l);
  background-color: #fff;
}
.header-tel a{
  position: relative;
  border-radius: 0 20px 0 20px;
  height: 100%;
  display: block;
  font-size: var(--fs-m);
  font-weight: 500;
}

.header-tel a span{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  padding-left: 24px;
  white-space: nowrap;
}

.header-tel a span::before{
  position: absolute;
  content: "";
  display: block;
  top: 3px;
  left: -3px;
  width: 20px;
  height: 30px;
  background-image: url(../image/common/phone.svg);
  background-size: cover;
}

.logo{
    transition: all 0.3s;
}
@media print, screen and (min-width:801px) {
.logo img{
   width: 284px;
  }
}
@media print, screen and (max-width:640px) {
.logo img{
   width: 250px;
   transition: all 0.3s;
   padding-top: 8px;
  }
}
@media print, screen and (min-width:961px) {
  .menu-trigger-button{
    display: none;
  }
}

@media print, screen and (max-width:960px) {

/*========= ナビゲーションのためのCSS ===============*/
.header-box{
  /*position:fixed;にし、z-indexの数値を小さくして最背面へ*/
  position:fixed;
  z-index: 2;
  opacity: 0;/*はじめは透過0*/
  /*ナビの位置と形状*/
  top:0;
  left: 0;
  width:100%;
  height: 100vh;/*ナビの高さ*/
  /* background:#D6E4F0; */
    animation: bg-gradient 5s linear infinite alternate;
  background: linear-gradient(45deg, #D6E4F0, #A0C4FF, #BED6FA) 0 / 200% 100%;
  /*動き*/
  transition: all 0.3s;
  visibility: hidden;
}

/*アクティブクラスがついたら透過なしにして最前面へ*/.header-box.panelactive{
  opacity: 1;
  z-index:999;
  visibility: visible;
}

.logo.active{
  position: fixed;
  top: 0px;
  left: 20px;
  z-index:1000;
}

/*ナビゲーションの縦スクロール*/.header-box.panelactive.header-box-list{
  /*ナビの数が増えた場合縦スクロール*/
  position: fixed;
  z-index: 999; 
  width: 100%;
  height: 100vh;/*表示する高さ*/
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

/*ナビゲーション*/.box-inner {
  flex-direction: column;
  /* display: none; */
  /*ナビゲーション天地中央揃え*/
  position: absolute;
  z-index: 999;
  top:50%;
  left:50%;
  transform: translate(-50%,-50%);
  width: 90%;
}
.header-box.panelactive ul {
  /* display: block; */
  flex-direction: column;
}

/*リストのレイアウト設定*/
.header-box li{
list-style: none;
  /* text-align: center;  */
    font-size: var(--fs-l);
}
.header-box li a{
text-decoration: none;
padding:6px 10px;
display: block;
text-transform: uppercase;
letter-spacing: 0.1em;
}

.header-menu ul li a{
  font-size: var(--fs-m);
}

.header-menu ul li a:hover{
color: #003F91;
}

/*========= ボタンのためのCSS ===============*/
.menu-trigger{
	position:fixed;
  z-index: 9999;/*ボタンを最前面に*/
  top:20px;
  right: 40px;
  cursor: pointer;
  width: 50px;
  height:50px;
  border: 0;
  background-color: rgba(255, 255, 255, 0);
}

@media print, screen and (max-width:960px) {
  .menu-trigger{
    top:16px;
    right: 20px;
  }
}
@media print, screen and (max-width:960px){
  .header-wrap{
    width: 100%;
    padding:  0px 0 0px 20px;
  }
}
	
/*×に変化*/	
.menu-trigger span:not(.en){
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 0;
    height: 2px;
    border-radius: 3px;
    background-color: #0041C3;
  	width: 100%;
  }

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

  }

  .menu-trigger.change-color span{
    /* background-color: #5DA9E9; */
    transition: 0.3s;
  }

.menu-trigger span:nth-of-type(1) {
	top:10px;	
}

.menu-trigger span:nth-of-type(2) {
	top:20px;
}

.menu-trigger span:nth-of-type(3) {
	/* bottom:0px; */
  margin-top: 18px;
  display: block;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #0041C3;
  font-family: 'Zen Kaku Gothic New';
}

.menu-trigger.active span:nth-of-type(1) {
    top: 18px;
    left: 0px;
    transform: translateY(6px) rotate(-30deg);
    width: 100%;
}

.menu-trigger.active span:nth-of-type(2){
  top: 30px;
  left: 0px;
  transform: translateY(-6px) rotate(30deg);
  width: 100%;
}
.menu-trigger.active span:nth-of-type(3) {
  opacity: 0;
}

  .header-menu {
    margin-right: 0px;
    margin-bottom: 20px;
    width: 100%;
  }
  
  .header-menu ul li:nth-last-child(n+2) {
    margin-right: 0px;
    /* margin-bottom: 20px; */
    border-bottom: #fff 1px solid;
    /* padding-bottom: 20px; */
  }

   .header-menu ul li a{
  position: relative;
  /* padding-left: 20px; */
  padding:16px 20px!important;
}

 .header-menu ul li a:before {
  content: '';
  width: 6px;
  height: 6px;
  border: 0;
  border-top: solid 2px #1C3144;
  border-right: solid 2px #1C3144;
  transform: rotate(45deg);
  position: absolute;
  top: 2px;
  left: 0;
  bottom: 0;
  margin: auto;
}

  
  .header-menu ul li:nth-last-child(2) {
    margin-right: 0;
    margin-bottom: 30px;
    border-bottom: none;
  }

  

}

/*----------------------------------------------------------------------------------------------------
 main
----------------------------------------------------------------------------------------------------*/

.main{
  font-family: var(--ff-min);
  margin-bottom: 160px;
}

.main .inner{
  padding-top:140px;
}

/*========= ===============*/

.mv-wrapper {
  position: relative;
  overflow: hidden;
  width: 90%;
  height: 60vh;
  margin-right: 0;
  margin-left: auto;
  transition: .3s;
}

.sub .mv-wrapper {
  height: 45vh;
}
@media print, screen and (max-width:1550px) {
.mv-wrapper {
  height: 55vh;
}
}
@media print, screen and (max-width:800px) {
.mv-wrapper {
  height: 80vh;
}

.sub .mv-wrapper {
  height: 45vh;
}
.sub .main{
  font-family: var(--ff-min);
  margin-bottom: 100px;
}
}
@media print, screen and (max-width:640px) {
.mv-wrapper {
  height: 60vh;
}
.sub .mv-wrapper {
  height: 28vh;
}

.sub .main{
  font-family: var(--ff-min);
  margin-bottom: 60px;
}
}

/* 背景色レイヤー */
.mv-wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #2C4770; /* 好きな色 */
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.8s ease-in-out;
}

/* メインビジュアルは最初は透明 */
#mainvisual {
  opacity: 0;
  transition: opacity 1s ease-in-out 0.5s;
}

/* 表示開始 */
.mv-show .mv-wrapper::before {
  transform: scaleX(1);
}

.mv-show #mainvisual {
  opacity: 1;
}

/*========= ===============*/

#mainvisual{
  position: relative;
  backface-visibility: hidden;
}

body.top .splide{
  margin-bottom: 0;
  text-align: right;
}

body.top .splide__slide img {
  transition: 4s ease-out;
  object-position: bottom;
  object-fit: cover;
}

body.top .splide__slide.is-active img {
  transform: scale(1.05);
  transition-delay: 0s;
}



/*========= ===============*/

.main .catch-box{
  overflow: hidden;
  position: relative;
  margin-bottom: var(--block-space-s);
}

.main .catch-box canvas{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
/*========= ===============*/

.main .catch,
.main .sentence{
  width: 90%;
  margin-right: 0;
  margin-left: auto;
}

.main .catch{
  font-size: var(--fs-8l);
  line-height: 1.6;
  margin-bottom: var(--box-space-min);
}
@media print, screen and (max-width:960px) {
.main .catch{
  font-size: var(--fs-5l);
}

/* .main .catch,
.main .sentence{
  width: 95%;
} */
}


.main .catch {
  overflow: hidden;
  transform: translate(-100%, 0);
  transition: transform 2s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.main .catch span {
  display: block;
  transform: translate(100%, 0);
  transition: transform 2s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.main .catch.-visible,
.main .catch.-visible span {
  transform: translate(0, 0);
}

/*========= ===============*/
.main .sentence{
  font-size: var(--fs-m);
  font-weight: 500;
}

.main .sentence {
  overflow: hidden;
  transform: translate(-100%, 0);
  transition: transform 2s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.main .sentence span {
  display: block;
  transform: translate(100%, 0);
  transition: transform 2s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.main .sentence.-visible,
.main .sentence.-visible span {
  transform: translate(0, 0);
}

.sub .main .sentence span {
  font-size: var(--fs-l);
}

/*----------------------------------------------------------------------------------------------------
 greeting
----------------------------------------------------------------------------------------------------*/

.greeting{
  position: relative;
  margin-bottom: 180px;
  /* z-index: 1; */
}

@media print, screen and (max-width:1000px) {
  .greeting{
     margin-bottom: clamp(80px, 5vw,120px); 
  }
}

.greeting .greeting-txt{
  position: absolute;
    overflow: hidden;
  bottom: -1px;
  right: 0;
  content: "";
  width: calc(506 / 1366 * 100vw);
  height: calc(124 / 1366 * 100vh);
  background: url(../image/top/greeting-txt.svg) no-repeat bottom center;
  background-size: contain;
  z-index: -1;
}

.greeting .greeting-txt.-visible2:before {
  transform: translate(0, 100%);
}

.greeting .greeting-txt:before {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  /* z-index: -1; */
  width: 100%;
  height: 100%;
  background-color: #fff;
  transform: translate(0, 0);
  transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) .75s;
  content: '';
  background-position: center bottom;
}

.greeting .box{
  display: flex;
  position: relative;
}

@media print, screen and (max-width:1000px) {
.greeting .box{
  flex-direction: column;
}
}

.greeting .box h2{
  font-size: var(--fs-4l);
  font-family: var(--ff-min);
  margin-bottom: var(--box-space-min);
}

.greeting .txt-box{
  padding-left: clamp(16px, 5vw, 60px); 
  padding-right: clamp(16px, 5vw, 60px); 
  width: calc(500 / 1366 * 100vw);
  max-width: 600px;
  min-width: 504px;
}


.greeting .img-box{
  width: calc(675 / 1366 * 100vw);
}

@media print, screen and (max-width:1000px) {
.greeting .box{
  flex-direction: column;
  align-items: center;
}

.greeting .img-box{
 width: 100%;
 margin-bottom: clamp(16px, 5vw, 30px);
}


.greeting .txt-box{
  padding-left: clamp(16px, 5vw, 20px); 
  padding-right: clamp(16px, 5vw, 20px); 
  width:100%;
  max-width: 960px;
  min-width: 0px;
}

.greeting .greeting-txt{
  width: calc(806 / 1366 * 100vw);
}
}

@media print, screen and (max-width:640px) {
  .greeting .greeting-txt{
  width: calc(1006 / 1366 * 100vw);
}
}

/*----------------------------------------------------------------------------------------------------
desired
----------------------------------------------------------------------------------------------------*/

.desired{
  padding-left: clamp(16px, 5vw, 60px); 
  padding-right: clamp(16px, 5vw, 60px); 
  color: #fff;
  margin-bottom: 160px;
  /* background-color: #fff; */
}

@media print, screen and (max-width:800px) {
  .desired{
      padding-left: clamp(16px, 5vw, 20px); 
  padding-right: clamp(16px, 5vw, 20px); 
    margin-bottom:  clamp(80px, 5vw, 120px);
  }
}

.desired .inner{
  display: flex;
  gap: 10px;
}

@media print, screen and (max-width:960px) {
  .desired .inner{
   flex-direction: column;
  }
}

.desired h2 .ff-en{
  border-left:2px solid #fff;
  text-transform: uppercase;
  padding-left: 8px;
  font-weight: 500;
  display: block;
  font-size: var(--fs-s);
  line-height: 0.8;
}

.desired h2 span{
  font-family: var(--ff-min);
  font-weight: 700;
  font-size: var(--fs-5l);
}

.desired .box{
  position: relative;
  aspect-ratio: 647/400;
  display: flex;
  align-items: flex-end;
  padding: clamp(14px, 5vw, 30px) clamp(20px, 5vw, 40px);
  background: #FFF;
  background: linear-gradient(180deg,rgba(255, 255, 255, 0) 0%, rgba(0, 66, 165, 1) 100%);
  overflow: hidden;
}

.desired .box::before{
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: -1;
}

.desired .box.purpose::before{
  background-image: url(../image/top/existence.jpg);
}

.desired .box.vision::before{
  background-image: url(../image/top/future.jpg);
}

/* .box-desc{
  position: relative;
} */

.box-desc.-visible3:before {
  transform: translate(0, 100%);
}

.box-desc:before {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  /* z-index: -1; */
  width: 100%;
  height: 100%;
  background-color: rgba(0, 66, 165, 1);
  transform: translate(0, 0);
  transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) 1s;
  content: '';
}

/*----------------------------------------------------------------------------------------------------
 service
----------------------------------------------------------------------------------------------------*/
.service{
  color: #fff;
  margin-bottom: 140px;
}

.service-box-wrapper{
  position: relative;
  padding-top: 204px;
}

.service-box-wrapper > span{
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  overflow: hidden;
  width: 100%;
  height: 360px;
  aspect-ratio: 1366/360;
  object-fit: cover;
   z-index: 0;
}

.service-box-wrapper::after{
  position: absolute;
  top: 0;
  right: 0;
  content: "";
  width: 90%;
  height: 100%;
  background-color: #2C4770;
  z-index: -1;
}

.service .inner .service-box-wrapper:not(:last-of-type){
  margin-bottom:120px ;
}

.service-box{
  position: relative;
  z-index: 0;
  max-width: 1080px;
  width: 100%;
  padding: 40px 60px; 
  box-sizing: border-box;
  margin: auto;
}

@media print, screen and (max-width:1360px) {
  .service-box{
    width: calc(1080 / 1366 * 100vw);
    padding: 0px 0px 40px 60px;
    /* padding: clamp(30px, 5vw, 40px) clamp(40px, 5vw, 60px);  */
  }

  .service-box-wrapper > span{
    height: auto;
    aspect-ratio: 750/360;
    object-fit: cover;
    z-index: 0;
  }
}
@media print, screen and (max-width:1000px) {

  .service-box-wrapper > span{
    height: auto;
    aspect-ratio: 700/400;
    object-fit: cover;
    z-index: 0;
  }
}

.service-box .ff-en{
  text-transform: uppercase;
  font-size: var(--fs-m);
  font-weight: 400;
}

.service-box .box{
  display:grid;
}

.service-box .box h2{
  font-size: var(--fs-4l);
  width: 380px;
  grid-column-start: 1;
  grid-column-end: 2;
  line-height: var(--line-height-s);
}



@media print, screen and (max-width:1360px) {
  .service-box .box h2{
  width: calc(380 / 1366 * 100vw);
}
}

@media print, screen and (max-width:1000px) {

.service-box .box h2{
  width: 100%;
  max-width: 1000px;
}
}
.service-box .box .txt-box{
  grid-column-start: 2;
  grid-column-end: 3;
  grid-row-start: 1;
  grid-row-end: 3;
}

.service-box .box h3{
  font-family:var(--ff-min);
  font-size: var(--fs-2l);
  margin-bottom:20px;
}

.service-box .box .button-box {
  grid-column-start: 1;
  grid-column-end: 2;
  grid-row-start: 2;
  grid-row-end: 3;
  display: flex;
  align-items: flex-end;
  padding-bottom: 10px;
}

@media print, screen and (max-width:1000px) {
.service-box .box{
  gap: 40px;
}

.service-box .box .txt-box{
  grid-column-start: 1;
  grid-column-end: 2;
  grid-row-start: 2;
  grid-row-end: 3;
}

.service-box .box .button-box {
  grid-column-start: 1;
  grid-column-end: 2;
  grid-row-start: 3;
  grid-row-end: 4;
}
}

/*----------------------------------------------------------------------------------------------------
 strength
----------------------------------------------------------------------------------------------------*/
.strength{
  color: #fff;
  background-color:#2C4770 ;
  /* padding: 60px clamp(16px, 5vw, 60px) 80px; */
  padding-top: 60px;
  margin-bottom: 180px;
}
.strength .inner{
  padding: 40px clamp(16px, 5vw, 60px) 100px;
}

.strength h2{
  position: relative;
  z-index: 0;
  font-family: var(--ff-min);
  display: flex;
  justify-content: center;
  text-align: center;
  font-size: var(--fs-2l);
  font-weight: 400;
}

.strength h2::before{
  position: absolute;
  top: 55%;
  left: 0;
  /* transform: translateY(-50%); */
  content: "";
  width: 100%;
  height: 2px;
  display: block;
  background-color: #fff;
  z-index: 0;
}

.strength h2 span{
  position: relative;
  z-index: 2;
    background-color: #2C4770;
}

.strength h2 span::before,
.strength h2 span::after{
  position: relative;
  top: 0.25rem;
  font-size: var(--fs-3l);
  font-weight: 400;
}
.strength h2 span::before{
  left: 0px;
  content: "[";
}

.strength h2 span::after{
  right: 0px;
  content: "]";
}

.strength .list-box{
    position: relative;
}

.strength-list{
  list-style: none;
  max-width: 717px;
  width: 100%;
  margin: auto;
  display:grid;
  grid-template-columns: repeat(2,1fr);
  gap: 198px 180px;
}

.strength .list-box .flash-box{
  position: absolute;
  top:50%;
  left: 50%;
  transform: translate(-50%,-50%);
  content: "";
  width: 210px;
  height: 150px;
  background-image:url(../image/top/cross.svg);
  background-size: 99% 99%;
  background-position: center;
}

@media print, screen and (max-width:800px) {
.strength-list{
  gap: 60px 30px;
}

.strength-list li{
  max-width: 300px;
}
.strength .list-box .flash-box{
  width: 70px;
  height: 50px;
}
}

.strength .list-box .flash-box span{
  position: absolute;
  content: "";
  display: block;
  background: #fff;
  width: 8px;
  height: 8px;
  border-radius: 100%;
}

.strength .list-box .flash-box span::after{
    position: absolute;
  content: "";
  display: block;
  background: #fff;
  width: 8px;
  height: 8px;
  animation: pikon 2s infinite linear 0.4s both;
  left: 0;
  top: 0;
  border-radius: 100%;
}

@keyframes pikon {
  0% { 
    transform: scale(0.4);
    opacity: 0; 
  }
  25% { 
    transform: scale(0.8);
    opacity: 0.25; 
  }
  50% { 
    transform: scale(1.2);
    opacity: 0.5; 
  }
  75%  { 
    transform: scale(1.6);
    opacity: 0.75; 
  }
  100%  { 
    transform: scale(2);
    opacity: 1; 
  }
   75% { 
     transform: scale(1.6);
    opacity: 0.75; 
  }
   50% { 
    transform: scale(1.2);
    opacity: 0.5; 
  }
   25% { 
    transform: scale(0.8);
    opacity: 0.25; 
  }
   0% { 
    transform: scale(0.4);
    opacity: 0; 
  }
}

.strength .list-box .flash-box span:nth-child(1){left: 0; top: 0;}
.strength .list-box .flash-box span:nth-child(2){right: 0; top: 0;}
.strength .list-box .flash-box span:nth-child(3){left: 0; bottom: 0;}
.strength .list-box .flash-box span:nth-child(4){right: 0; bottom: 0}

.strength-list li{
  position: relative;
  max-width: 260px;
  width: 100%;
}

.strength-list li::before{
  position: absolute;
  top:50%;
  left: 50%;
  transform: translate(-50%,-50%);
  content: "";
  border: 1px solid #1C3144;
  border-radius: 100%;
  width: 200px;
  height: 200px;
  z-index: 0;
}

@media print, screen and (max-width:800px) {
.strength-list{
  gap: 100px 36px;
}
.strength .list-box .flash-box{
  width: 70px;
  height: 50px;
}

.strength-list li::before{
  width: 120px;
  height: 120px;
}

.strength-list li{
  max-width: 320px;
}

}

.strength-list li > div{
  position: relative;
  z-index: 0;
}

.strength-list li > div > img{
  width: 60px;
  height: 46px;
  margin: 0 auto 10px;
  display: block;
}

.strength-list h3 .ff-en{
  text-transform: uppercase;
  font-size: var(--fs-s);
  display: block;
  font-weight: 400;
  /* margin-bottom: 4px; */
}

.strength-list h3 > span{
  font-size: var(--fs-l);
  display: block;
  font-weight: 500;
  font-family: var(--ff-min);
  margin-bottom: 12px;
}
/*----------------------------------------------------------------------------------------------------
 message
----------------------------------------------------------------------------------------------------*/
.message{
  position: relative;
margin-bottom: 120px;
overflow: hidden;
}

.message::before{
   position: absolute;
   z-index: -1;
  top:50px;
  left: 0%;
  content: "";
  display: block;
width: 100%;
height: 400px;
  animation: bg-gradient 5s linear infinite alternate;
  background: linear-gradient(45deg, #D6E4F0, #A0C4FF, #BED6FA) 0 / 200% 100%;
}

@keyframes bg-gradient {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 100% 0;
  }
}

.message .box{
  max-width: 830px;
  margin: auto;
}

.message .img-box{
  display: flex;
  justify-content: space-between;
  padding-left: var(--box-space-m);
  align-items: flex-end;
  position: relative;
}
.message .img-box img{
  /* position: absolute;
  display: block;
    height: auto;
    width: 100%; */
}

.message .img-box img:nth-of-type(1){
  max-width: 232px;
  /* left: var(--box-space-m);
  bottom:0%;
  z-index: 1; */
}

.message .img-box img:nth-of-type(2){
  max-width: 312px;
  /* right: 0;
  bottom:0% 
  z-index: 0;*/
}

@media print, screen and (max-width:800px) {
.message .img-box img:nth-of-type(1){
  max-width: 202px;
}

.message .img-box img:nth-of-type(2){
  max-width: 250px;
  position: absolute;
  display: block;
  width: 100%;
  height: 38px;
  right: 0;
  bottom:0% 
}
}

@media print, screen and (max-width:480px) {
.message .img-box img:nth-of-type(1){
  max-width: 172px;
}
}

.message .txt-box{
  background-color: #fff;
  padding:var(--box-space-m);
  border-bottom: 2px solid #2C4770;
  overflow: hidden;
  position: relative;
}

.message .txt-box h2{
  font-size: var(--fs-2l);
  margin-bottom: 16px;
  font-family: var(--ff-min);
}

.message .txt-box .name{
  text-align: right;
    font-size: var(--fs-2l);
  margin-top: 16px;
  font-family: var(--ff-min)
}

.message-txt.-visible4:before {
  transform: translate(0, 100%);
}

.message-txt:before {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  /* z-index: -1; */
  width: 100%;
  height: 100%;
  background-color: #2C4770;
  transform: translate(0, 0);
  transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) 1s;
  content: '';
}

/*----------------------------------------------------------------------------------------------------
flow
----------------------------------------------------------------------------------------------------*/
.flow{
  background: url(../image/top/flow-back.jpg);
  background-size: 75%;
  margin-bottom: 120px;
}

.flow .inner{
max-width: 1100px;
margin: auto;
box-sizing: border-box;
padding:80px clamp(10px, 5vw, 20px) 60px;
}

@media print, screen and (max-width:900px) {
.flow{
  background-size: 90%;
  margin-bottom: 80px;
}

.flow .inner{
padding:50px clamp(10px, 5vw, 20px) 40px;
}
}
.flow .inner h2{
  font-size: var(--fs-4l);
  font-family: var(--ff-min);
  margin-bottom: 50px;
  text-align: center;
}

.flow-list{
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 30px;
}

.flow-list li{
  padding: clamp(10px, 5vw, 24px) ;
  background-color: #fff;
  position: relative;

    --x-gradient: linear-gradient(90deg, #737373 0 10px, transparent 0 calc(100% - 10px), #737373 calc(100% - 10px));
    --y-gradient: linear-gradient(#737373 0 10px, transparent 0 calc(100% - 10px), #737373 calc(100% - 10px));
    background-image:
        var(--x-gradient),
        var(--y-gradient),
        var(--x-gradient),
        var(--y-gradient);
    background-repeat: no-repeat;
    background-size: 100% 3px, 3px 100%, 100% 3px, 3px 100%;
    background-position: top, right, bottom, left;
}

@media print, screen and (max-width:1080px) {
  .flow-list li{
     padding:clamp(10px, 5vw, 24px) clamp(10px, 5vw, 16px) ;
  }
}


.flow-list li:not(:last-child)::after{
  position: absolute;
  content: "";
  display: block;
  width: 10px;
  height: 15px;
  top: 50%;
  transform: translate(-50%);
  background-image: url(../image/top/arrow.svg);
  background-size: contain;
  background-repeat: no-repeat;
  right: -25px;
}

.flow-list li h3 {
  position: relative;
  text-align: center;
  padding-bottom: 20px;
  margin-bottom: 20px;
}
.flow-list li h3::after {
  position: absolute;
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background-color: #1C3144;
  bottom: -0px;
  left: 0;
}

.flow-list li h3 .ff-en{ 
  text-transform: uppercase;
  font-weight: 400;
  display: block;
}

.flow-list li h3 span{
  font-size: var(--fs-l);
  color: #0042A5;
}

@media print, screen and (max-width:1080px) {
.flow-list li h3 span{
  font-size: var(--fs-m);
}
}

@media print, screen and (max-width:900px) {
.flow-list li h3 span{
  font-size: var(--fs-l);
}

.flow-list{
  grid-template-columns: repeat(1,1fr);
  max-width: 500px;
  margin: auto;
}

.flow-list li:not(:last-child)::after{
  position: absolute;
  content: "";
  display: block;
  width: 10px;
  height: 15px;
  left: 50%;
  transform: translateX(-50%) rotate(90deg);
  background-image: url(../image/top/arrow.svg);
  background-size: contain;
  background-repeat: no-repeat;
  top: calc(100% + 10px);
  right: 0;
}
}

/*----------------------------------------------------------------------------------------------------
 intro
----------------------------------------------------------------------------------------------------*/

.intro{
  position: relative;
  margin-bottom: 180px;
  /* z-index: 1; */
}

@media print, screen and (max-width:1000px) {
  .intro{
     margin-bottom: clamp(80px, 5vw,120px); 
  }
}

.intro .box{
  display: flex;
  align-items: center;
  position: relative;
}

@media print, screen and (max-width:1000px) {
.intro .box{
  flex-direction: column;
}
}

.intro .box h2{
  font-size: var(--fs-4l);
  font-family: var(--ff-min);
  margin-bottom: var(--box-space-min);
  white-space: nowrap;
}

.intro .txt-box{
  padding-left: clamp(16px, 5vw, 60px); 
  padding-right: clamp(16px, 5vw, 60px); 
  width: calc(600 / 1366 * 100vw);
  max-width: 600px;
  min-width: 504px;
}


.intro .img-box{
  width: calc(675 / 1366 * 100vw);
}

@media print, screen and (max-width:1000px) {
.intro .box{
  flex-direction: column;
  align-items: center;
}

.intro .img-box{
 width: 100%;
 margin-bottom: clamp(16px, 5vw, 30px);
}


.intro .txt-box{
  padding-left: clamp(16px, 5vw, 20px); 
  padding-right: clamp(16px, 5vw, 20px); 
  width:100%;
  max-width: 960px;
  min-width: 0px;
}

}


/*----------------------------------------------------------------------------------------------------
 sub
----------------------------------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------------------------------
 features
----------------------------------------------------------------------------------------------------*/
.features{
  background-color: #2C4770;
  color: #fff;
  margin-bottom: 60px;
}


.features .inner{
  padding: 120px clamp(12px, 5vw, 20px);
  /* padding-right: clamp(12px, 5vw, 20px); */
}

.features h2{
  font-family: var(--ff-min);
  font-size: var(--fs-3l);
  text-align: center;
  margin-bottom: 40px;
}

.features-list{
  list-style: none;
  max-width: 750px;
  margin: auto;
}

.features-list li{
  display: flex;
  align-items: center;
}

.features-list li h3{
  font-weight: 400;
  margin-bottom: 10px;
  font-size: 20px;
  /* font-size: var(--fs-l); */
}

.features-list li:not(:last-child){
  margin-bottom: 40px;
}

.features-list li .img-box{
  margin-right: 30px;
}

@media print, screen and (max-width:800px) {
.features {
  margin-bottom: 20px;
}

.features .inner{
  padding: 60px clamp(12px, 5vw, 20px);
}

.features-list li .img-box{
  margin-right: 16px;
  width: 45px;
}
.features-list li .txt-box{
width: calc(100% - 51px);
}

.features-list li h3{
  font-size: var(--fs-l);
}
}

/*----------------------------------------------------------------------------------------------------
 step
----------------------------------------------------------------------------------------------------*/
.step{
  margin-bottom: 100px;
}

.step .inner{
  padding:60px clamp(12px, 5vw, 20px);
  /* padding-right: clamp(12px, 5vw, 20px); */
}

.step h2{
  font-family: var(--ff-min);
  font-size: var(--fs-3l);
  text-align: center;
  margin-bottom: 40px;
}

.step-list{
  list-style: none;
  max-width: 750px;
  margin: auto;
}

.step-list li{
  position: relative;
  display: flex;
  align-items: flex-start;
  background-color: #2C4770;
  color: #fff;
  padding: 30px;
}

.step-list li:not(:last-child){
  margin-bottom: 30px;
}

.step-list li:not(:last-child)::after{
  position: absolute;
  left: 30px;
  top: 100%;
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 20px solid transparent;
  border-left: 20px solid transparent;
  border-top: 30px solid #2C4770;
  border-bottom: 0;
}

.step-list li h3{
  font-weight: 400;
  font-size: var(--fs-l);
}

.step-list li span.num{
  font-family: var(--ff-en);
  font-size: var(--fs-l);
  /* line-height: 1.4; */
  margin-right: 60px;
}

.step-list li span.num::before{
  content: "STEP";
}


@media print, screen and (max-width:800px) {
.step{
  margin-bottom: 20px;
}

  .step-list li span.num{
  margin-right:clamp(12px, 5vw, 36px);
}

.step-list li{
  padding: clamp(12px, 5vw, 30px);
}

.step-list li:not(:last-child){
  margin-bottom: 20px;
}

.step-list li:not(:last-child)::after{
  left: 20px;
  border-right: 10px solid transparent;
  border-left: 10px solid transparent;
  border-top: 20px solid #2C4770;
}
}
@media print, screen and (max-width:640px) {
.step-list li{
  flex-direction: column;
}
}

/*----------------------------------------------------------------------------------------------------
 common-issues
----------------------------------------------------------------------------------------------------*/

.common-issues{
  margin-bottom: 100px;
  background-color:#D6E4F0 ;
}

.common-issues .inner{
  padding:100px clamp(12px, 5vw, 20px);
  /* padding-right: clamp(12px, 5vw, 20px); */
}

.common-issues h2{
  font-family: var(--ff-min);
  font-size: var(--fs-3l);
  text-align: center;
  margin-bottom: 40px;
}

.issue-box{
  max-width:  1000px;
  margin: auto;
  padding: var(--box-space-m);
  border-radius: 3px;
  box-shadow: 0px 10px 10px -6px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: flex-start;
  background-color: #fff;
}

.issue-box h3{
  font-size: var(--fs-l);
  margin-bottom: 16px;
}

.issue-box .img-box{
  margin-right: 40px;
  max-width: 210px;
}
 

.issue-list{
  padding-left: 2rem;
}

.common-issues .inner .issue-box:not(:last-of-type){
  margin-bottom: 60px;
}

.issue-box + p{
  max-width: 750px;
  margin: var(--box-space-m) auto 0;
}

@media print, screen and (max-width:800px) {
.common-issues{
  margin-bottom: 40px;
}

.common-issues .inner{
  padding:60px clamp(12px, 5vw, 20px) 40px;
}

.issue-box{
  flex-direction: column;
  align-items: center;
}
.issue-box .img-box{
  margin-right: 0px;
  margin-bottom: 20px;
  max-width: 150px;
}

.common-issues .inner .issue-box:not(:last-of-type){
  margin-bottom: 40px;
}
}

/*----------------------------------------------------------------------------------------------------
 thoughts
----------------------------------------------------------------------------------------------------*/
.thoughts{
  background: url(../image/top/flow-back.jpg);
  background-size: 75%;
  margin-bottom: 100px;
  padding-top: 60px;
  padding-bottom: 60px;
}

.thoughts .inner{
  max-width: 800px;
  margin: auto;
  padding: clamp(16px, 5vw, 30px);
}

.thoughts p{
  font-size: var(--fs-l);
}

@media print, screen and (max-width:800px) {
  .thoughts{
  margin-bottom: 60px;
  padding-top: 40px;
  padding-bottom: 40px;
}
}

/*----------------------------------------------------------------------------------------------------
to-contact
----------------------------------------------------------------------------------------------------*/
.to-contact{
  position: relative;
}

.to-contact::before{
  position: absolute;
  z-index: -1;
  bottom:0px;
  left: 0%;
  content: "";
  display: block;
  width: 100%;
  height: 85%;
  animation: bg-gradient 5s linear infinite alternate;
  background: linear-gradient(45deg, #D6E4F0, #A0C4FF, #BED6FA) 0 / 200% 100%;
}

@media print, screen and (max-width:1200px) {
.to-contact::before{
  height: 90%;
}
}

.title {
  text-align: center;
  /* font-size: clamp(60px, 5vw, 120px); */
  font-size: var(--fs-max);
  font-weight: 300;
  text-transform: uppercase;
  font-family:var(--ff-en);
  line-height: 1.2;
}

@media print, screen and (max-width:1200px) {
.title{
  font-size: 5.4em;
}
}

.to-contact{
  padding-bottom:100px;
  margin-bottom:80px;
}

.to-contact .box{
  font-family: var(--ff-min);
  font-size: var(--fs-l);
  text-align: center;
  
}

.to-contact .box h2{
  margin-bottom: 30px;
}

.to-contact .box p{
  margin-bottom: 50px;
}

.to-contact button{
  font-family:'Zen Kaku Gothic New',serif;
  max-width:600px;
  margin: auto;
}

@media print, screen and (max-width:750px) {
.to-contact button{
width: 90%;
}
.to-contact .box p{
 text-align: left;
width: 90%;
margin: 0 auto 40px;
}
}

/*----------------------------------------------------------------------------------------------------
 gmap
----------------------------------------------------------------------------------------------------*/


.gmap .inner{
    position: relative;
}

.gmap iframe {
    /* position: absolute; */
    /* top: 0;
    left: 0; */
    width: 100%;
    height: 100%;
  height: 420px;
  vertical-align: bottom;
}

@media print, screen and (max-width:1000px) {
.gmap .inner{
    width: 100%;
    padding-top: 56.25%;
    /* 16:9のアスペクト比 */
    height: 0;
    max-height: 1000px;
}

.gmap iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    max-height: 1000px;
}
}

@media print, screen and (max-width:640px) {
.gmap .inner{
    padding-top: 80.25%;
}
}
@media print, screen and (max-width:480px) {
.gmap .inner{
    padding-top: 100%;
}
}
/*----------------------------------------------------------------------------------------------------
 footer
----------------------------------------------------------------------------------------------------*/

footer{
  background-color:#2C4770;
  color: #fff;
  padding-top: 80px;
  padding-left:  clamp(30px, 5vw, 60px);
  padding-right:  clamp(30px, 5vw, 60px);
}

footer .box{
  display: flex;
  max-width: 1160px;
  width: 100%;
    justify-content: space-between;
    margin-bottom: var(--box-space-s);
}

footer .txt-box{
  display: grid;
  gap: 16px 40px;
  align-items: flex-start;
  line-height: 1.6;
}

@media print, screen and (max-width:1100px) {
  footer .txt-box{
    gap: 10px 20px;
  }
}
footer .txt-box dl{
  display: flex;
  align-items: baseline;
}

footer .txt-box dl.busi dt{
  width: 35%;
}

footer .txt-box dl.busi dd{
  width:45%;
}

footer .txt-box .ad{
  font-size: var(--fs-l);
  grid-column-start: 1;
  grid-column-end: 2;
  grid-row-start: 1;
  grid-row-end: 2;
  width: 110%;
}

footer .txt-box .tel{
  grid-column-start: 1;
  grid-column-end: 2;
  grid-row-start: 2;
  grid-row-end: 3;
}

footer .txt-box .tel dt{
  text-transform: uppercase;
  margin-right: 6px;
}

footer .txt-box .busi{
  justify-content: flex-end;
  flex-wrap: wrap;
  grid-column-start: 2;
  grid-column-end: 3;
  grid-row-start: 1;
  grid-row-end: 3;
}

@media print, screen and (max-width:1100px) {
  footer nav ul{
  gap: 10px;
}
}

@media print, screen and (max-width:640px) {

  footer .txt-box{
    gap: 16px 24px;
  }
footer .txt-box .ad{
  grid-column-start: 1;
  grid-column-end: 2;
  grid-row-start: 1;
  grid-row-end: 2;
  font-size: var(--fs-m);
}

footer .txt-box .tel{
  grid-column-start: 2;
  grid-column-end: 3;
  grid-row-start: 1;
  grid-row-end: 2;
}

footer .txt-box .busi{
  justify-content: flex-start;
  grid-column-start: 1;
  grid-column-end: 3;
  grid-row-start: 2;
  grid-row-end: 3;
}
footer .txt-box dl.busi dt{
  width: 30%;
}
}

footer .txt-box .busi dd{
  font-size: var(--fs-l);
}

footer .txt-box .tel dt{
  text-transform: uppercase;
  margin-bottom: 3px;
}

.ft-logo{
  max-width: 480px;
  width: 100%;
  height: auto;
  padding-bottom:var(--box-space-min);
}

footer nav{

}

@media print, screen and (max-width:640px) {
  
}

footer nav ul{
  margin: auto;
  display: grid;
  grid-template-rows: repeat(2,1fr);
  grid-auto-flow: column;
  gap: 10px 14px;
  font-size: var(--fs-s);
}

@media print, screen and (max-width:1000px) {

.ft-logo{
  margin: auto;
}

footer .box{
  display: flex;
justify-content: center;
}

footer .txt-box{
max-width: 480px;
margin-bottom: 20px;
}
}

footer nav ul li:nth-child(1){
  grid-row-start: 1;
  grid-row-end: 3;
}

footer nav ul li{
  list-style: none;
}

footer nav ul li a{
  text-decoration: none;
  color: #fff;
  position: relative;
  padding: 5px;
}

footer nav ul li a::before{
content: "ー";
margin-right: 5px;
}

footer nav ul li a:visited{
  color: #fff;
}

@media print, screen and (max-width:1000px) {
  footer nav {
    display: none;
  }
}

#page_top{
  width: 68px;
  height: 68px;
  position: fixed;
  right: 20px;
  bottom: 0;
  background: #909090;
  border-radius: 4px;
  z-index: 3;
  transition: .3s;
}

/* #page_top a::before{
  content: "";
  display: block;
  position: absolute;
  width: 70px;
  height: 70px;
  background-color: #FFF;
  top: 0;
  left: 0;
  border-radius: 4px;
  z-index: -1;
} */

#page_top:hover{
  background-color: #AE9373;
  transition: .3s;
}
#page_top a{
  position: relative;
  z-index: 1;
  display: block;
  width: 68px;
  height: 68px;
  text-decoration: none;
  background: url(../image/common/n_arrow_white.svg) center no-repeat;  
}

@media print, screen and (max-width:640px) {
  #page_top{
    width: 50px;
    height: 50px;
  }

  #page_top a{
    width: 50px;
    height: 50px;
    background-size: 20px;
  } 

  footer{
    padding-top: 40px;
  }
}

footer .copy{
  padding: 5px  var(--box-space-s);
  color: #fff;
  text-align: right;
}

@media print, screen and (max-width:1000px) {
  footer .copy{
    text-align: center;
  }
}

.desired h2 {
  margin-bottom: 10px;
}










