@charset "utf-8";

/* =================== base =================== */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&family=Noto+Sans+JP:wght@400;500;700&display=swap');

@font-face {
  font-family: 'jafont';
  src: url(../font/A-OTF-MidashiGoPr5-MB31.otf) format('opentype');
  font-weight: bold;
  font-display: swap;
}

html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video{margin:0;padding:0;border:0;font-size:100%;font:inherit;vertical-align:baseline}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}body{line-height:1}ol,ul{list-style:none}blockquote,q{quotes:none}blockquote:before,blockquote:after,q:before,q:after{content:'';content:none}table{border-collapse:collapse;border-spacing:0}

:root {
  --main-color: #004B9E;
  --btn-color: #E5EEF8;
  --modal-btn-color: #E5EEF8;
  --l-blue-color: #4DABDC;
  --g-blue-color: #5AB5B7;
  --green-color: #61BDA1;
  --pink-color: #EE86B4;
  --gray-color: #AFBAC6;
  --en-font: 'DM Sans', sans-serif;
  --ja-font: 'jafont', 'Noto Sans JP' , sans-serif;
  --noto-font: 'Noto Sans JP', sans-serif;
}

body[data-aos-delay='4000'] [data-aos],
[data-aos][data-aos][data-aos-delay='4000'] {
  transition-delay: 4000ms;
}

html { font-family: sans-serif; -ms-text-size-adjust: 100%; -webkit-text-size-adjust: 100%; }

html { scroll-behavior: smooth; margin: 0; overflow-x: hidden; font-size: 62.5%; box-sizing: border-box; }
:target { scroll-margin-top: 100px; }
body { font-size: 1.6rem; letter-spacing: normal; font-family: var(--ja-font); color: #fff; background: #fff; }
*{ min-height: 0vw; line-height: 1.5em; box-sizing: border-box; color: #0E2945; }
a{ text-decoration: none; cursor: pointer; transition: 0.3s; font-weight: 700; font-size: 1.4rem; }
img,video{ vertical-align: bottom; width: 100%; height: auto; }

button{ background-color: transparent; border: none; cursor: pointer; outline: none; padding: 0; appearance: none; }
h1,h2,h3,h4,h5,h6{ font-weight: 700; line-height: 1.5em; }
li{ list-style: none; }
p{ font-weight: 300; line-height: 1.9em; }
select { -webkit-appearance: none; -moz-appearance: none; appearance: none; }
input,
button,
select,
textarea { -webkit-appearance: none; -moz-appearance: none; appearance: none; background: transparent; border: none; border-radius: 0; font: inherit; outline: none; }
textarea { resize: vertical; }

input[type='checkbox'],
input[type='radio'] { display: none; }

input[type='submit'],
input[type='button'],
input[type="date"],
label,
button,
select { cursor: pointer; }

select::-ms-expand { display: none; }
select{ appearance: none; -moz-appearance: none; -webkit-appearance: none; background: none; border: none; color: #333; padding: 15px 50px 15px 20px; }
.select{ display: inline-block; background: #fff; border: 1px solid #707070; position: relative; z-index: 1; }
.select:after{ position: absolute; content: ''; width: 5px; height: 5px; right: 20px; top: 50%; transform: translateY(-50%) rotate(45deg); border-bottom: 1px solid #000; border-right: 1px solid #000; z-index: -1; }

input,
textarea{ text-align: left; outline: none; padding: 15px 20px; width: 100%; background: #F8F8F8; }

button{ margin-top: 35px; padding: 13px 15px; width: 100%; }
::placeholder { color: #D7D7D7; }
::-ms-input-placeholder { color: #D7D7D7; }
:-ms-input-placeholder { color: #D7D7D7; }

.align-l{ text-align: left; }
.align-r{ text-align: right; }
.align-c{ text-align: center; }


/* =================== common =================== */

/* flex */
.flex { display: -webkit-box; display: -ms-flexbox; display: flex; }

/* -ms-flex-direction */
.f_direction{ -webkit-box-orient: horizontal; -webkit-box-direction: normal; -ms-flex-direction: row; flex-direction: row; }
.f_row-reverse{-webkit-box-orient: horizontal;-webkit-box-direction: reverse;-ms-flex-direction: row-reverse;flex-direction: row-reverse; }
.f_column{ -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; }
.f_column-reverse{ -webkit-box-orient: vertical; -webkit-box-direction: reverse; -ms-flex-direction: column-reverse; flex-direction: column-reverse; }

/* flex-wrap */
.f_wrap{ -ms-flex-wrap: wrap; flex-wrap: wrap; }
.f_nowrap{ -ms-flex-wrap: nowrap; flex-wrap: nowrap; }
.f_wrap-reverse{ -ms-flex-wrap: wrap-reverse; flex-wrap: wrap-reverse; }
.f_row-wrap{ -webkit-box-orient:horizontal; -webkit-box-direction:normal; -ms-flex-flow:row wrap; flex-flow:row wrap; }

/* justify-content */
.f_jc-strat{ -webkit-box-pack: start; -ms-flex-pack: start; justify-content: flex-start; }
.f_jc-end{-webkit-box-pack: end;-ms-flex-pack: end;justify-content: flex-end; }
.f_jc-center{ -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; }
.f_jc-between{ -webkit-box-pack: justify; -ms-flex-pack: justify; justify-content: space-between; }
.f_jc-around{ -ms-flex-pack: distribute; justify-content: space-around; }

/* align-items */
.f_ai-stretch{ -webkit-box-align: stretch; -ms-flex-align: stretch; align-items: stretch; }
.f_ai-start{ -webkit-box-align: start; -ms-flex-align: start; align-items: flex-start; }
.f_ai-end{ -webkit-box-align: end; -ms-flex-align: end; align-items: flex-end; }
.f_ai-center{ -webkit-box-align: center; -ms-flex-align: center; align-items: center; }
.f_ai-baseline{ -webkit-box-align: baseline; -ms-flex-align: baseline; align-items: baseline; }

/* align-content */
.f_ac-stretch{ -ms-flex-line-pack: stretch; align-content: stretch; }
.f_ac-start{ -ms-flex-line-pack: start; align-content: flex-start; }
.f_ac-end{ -ms-flex-line-pack: end; align-content: flex-end; }
.f_ac-center{ -ms-flex-line-pack: center; align-content: center; }
.f_ac-between{ -ms-flex-line-pack: justify; align-content: space-between; }
.f_ac-around{ -ms-flex-line-pack: distribute; align-content: space-around; }

/* align-self */
.f_as-auto{ -ms-flex-item-align:auto; align-self:auto; }
.f_as-start{ -ms-flex-item-align: start; align-self: flex-start; }
.f_as-end{ -ms-flex-item-align: end; align-self: flex-end; }
.f_as-center{ -ms-flex-item-align: center; align-self: center; }
.f_as-baseline{ -ms-flex-item-align: baseline; align-self: baseline; }
.f_as-stretch{ -ms-flex-item-align: stretch; align-self: stretch; }

/* order */
.f_order1{ order:1; }
.f_order2{ order:2; }
.f_order3{ order:3; }
.f_order4{ order:4; }
.f_order5{ order:5; }
.f_order6{ order:6; }
.f_order7{ order:7; }
.f_order8{ order:8; }
.f_order9{ order:9; }
.f_order10{ order:10; }

/* flex-grow */
.f_grow1{ flex-grow:1; }
.f_grow2{ flex-grow:2; }
.f_grow3{ flex-grow:3; }
.f_grow4{ flex-grow:4; }
.f_grow5{ flex-grow:5; }
.f_grow6{ flex-grow:6; }
.f_grow7{ flex-grow:7; }
.f_grow8{ flex-grow:8; }
.f_grow9{ flex-grow:9; }
.f_grow10{ flex-grow:10; }

/* flex-shrink */
.f_shrink1{ -ms-flex-negative:1; flex-shrink:1; }
.f_shrink0{ -ms-flex-negative:0; flex-shrink:0; }


/* float */
.clear{ clear: both; }
.float-left{ float: left; }
.float-right{ float: right; }


/* responsive */
.pc { display: block; }
.sp { display: none; }
.ipad { display: none; }

/* text style */
.en{ font-family: var(--en-font); }
.noto{ font-family: var(--noto-font); }

.bmwfont{
  font-family: 'bmwfont', sans-serif;
}


.t_regular{ font-weight: 400; }
.t_medium{ font-weight: 500; }
.t_sem-bold{ font-weight: 600; }
.t_bold{ font-weight: 700; }
.t_extra-bold{ font-weight: 900; }

.t_underline{ text-decoration: underline; }

.black{ color: #000; }
.white{ color: #fff; }
.blue{
  background-image: linear-gradient(90deg, #65C4F3 0%, #004B9E 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent; }
.main{ color: var(--main-color); }
.l-blue{ color: var(--l-blue-color); }
.g-blue{ color: var(--g-blue-color); }
.green{ color: var(--green-color); }
.gray{ color: #AFBAC6;}

/* width */

.two-column > *{ width: calc( 100% / 2 ); }
.three-column > *{ width: calc( 100% / 3 ); }
.four-column > *{ width: calc( 100% / 4 ); }
.five-column > *{ width: calc( 100% / 5 ); }

.f_pd10{ gap: 10px; }
.f_pd20{ gap: 20px; }
.f_pd30{ gap: 30px; }
.f_pd40{ gap: 40px; }
.f_pd50{ gap: 50px; }
.f_pd60{ gap: 60px; }
.f_pd70{ gap: 70px; }
.f_pd80{ gap: 80px; }
.f_pd90{ gap: 90px; }
.f_pd100{ gap: 100px; }

.f_pd10 .two-column{ width: calc( 100% / 2 - ( 5px )); }
.f_pd20 .two-column{ width: calc( 100% / 2 - ( 10px )); }
.f_pd30 .two-column{ width: calc( 100% / 2 - ( 15px )); }
.f_pd40 .two-column{ width: calc( 100% / 2 - ( 30px )); }
.f_pd50 .two-column{ width: calc( 100% / 2 - ( 25px )); }
.f_pd60 .two-column{ width: calc( 100% / 2 - ( 30px )); }
.f_pd70 .two-column{ width: calc( 100% / 2 - ( 35px )); }
.f_pd80 .two-column{ width: calc( 100% / 2 - ( 40px )); }
.f_pd90 .two-column{ width: calc( 100% / 2 - ( 45px )); }
.f_pd100 .two-column{ width: calc( 100% / 2 - ( 50px )); }

.btn{ overflow: hidden; font-weight: 700; color: var(--main-color); border-radius: 100px; background: var(--btn-color); text-align: center; display: inline-block; max-width: 315px; min-width: 200px; width: 100%; text-decoration: none; transition: all .3s; padding: 18px 20px; font-size: 2rem; position: relative; }
.btn.radius-btn{ border-radius: 100px; width: 100%; max-width: 260px; padding: 20px; }
.btn.arrow:before{ content: ""; position: absolute; z-index: 3; transition: all .3s; right: 18px; top: 0; bottom: 0; margin: auto; width: 5px; height: 5px; border-top: 2px solid var(--main-color); border-right: 2px solid var(--main-color); -webkit-transform: rotate(45deg); transform: rotate(45deg); }
.btn.arrow:hover:before{ right: 30px; border-color: #fff; }
.btn span{ transition: .6s;  position: relative; z-index: 3; }
.btn:hover span{ color: #fff; }


.btn:after { content: ''; position: absolute; top: 0; left: 0; z-index: 2; border-radius: 100px; background: var(--main-color); width: 100%; height: 100%; transition: transform .6s cubic-bezier(0.8, 0, 0.2, 1) 0s; transform: scale(0, 1); transform-origin: left top; }
.btn:hover:after{ transform-origin:right top; transform:scale(1, 1); }
.btn.blank:before{ content: ""; position: absolute; z-index: 3; transition: all .3s; right: 20px; top: 0; bottom: 0; margin: auto; width: 12px; height: 12px; background: url(../images/common/blank-blue.svg) no-repeat; background-size: contain;  }
.btn.blank:hover:before{ background: url(../images/common/blank-white.svg) no-repeat; background-size: contain; }
.btn.btn2{ background: var(--main-color); color: #fff; border-radius: 0; font-weight: 500; }
.btn.search:before{ content: ""; z-index: 10; position: absolute; transition: all .3s; right: 20px; top: 0; bottom: 0; margin: auto; width: 17px; height: 17px; background: url(../images/common/search-icon.svg) no-repeat; background-size: contain;  }
.btn.search:hover:before{ background: url(../images/common/search-icon-white.svg) no-repeat; background-size: contain; }
.btn.white_btn{ background: #fff;}
.btn.blue_btn{ background: var(--main-color);}
.btn.blue_btn.arrow:before{ border-color: #fff; }
.btn:hover .white{ color: var(--main-color); }
.btn.blue_btn.arrow:hover:before{ border-color: #fff; }
.btn.blue_btn:after{ background: transparent linear-gradient(90deg, #65C4F3 0%, #1E5EA3 100%) 0% 0% no-repeat padding-box;}
.btn.mail span{ padding-left: 30px; }
.btn.mail span:before{ content: ""; position: absolute; transition: all .3s; top: 0; bottom: 0; left: 0; margin: auto; width: 17px; height: 17px; background: url(../images/common/mail_white.svg) center/contain no-repeat; }
/* .btn.mail:hover span:before{ background: url(../images/common/mail_blue.svg) center/contain no-repeat; } */
.btn.btn2 span{
  color: white;
}
.btn.blue_btn:hover .white{
  color: #fff;
}
*::-moz-selection { color: #fff; background-color : var(--main-color); }
*::selection { color: #fff; background-color : var(--main-color); }

.page-wrapper{ overflow: hidden; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 50px; }

@media screen and (max-width: 767px) {
  .container { padding: 0 20px; }

}

#errow_img{ display: none; }

@media (min-width: 768px) {
  .toggle:hover .nav3 {
    display: block !important;
  }
}

@media (max-width: 767px) {
  #container {
    height: 2000px;
  }

  .fade_in {
    opacity: 0;
  }
}

.fade-in {
  opacity: 0;
}


/* =================== header =================== */

header { position: sticky; top: 0; left: 0; width: 100%; z-index: 998; transition: 0.6s; padding: 75px 15px 0; margin-bottom: 75px; -webkit-transition: -webkit-transform .8s ease; transition: -webkit-transform .8s ease; transition: transform .8s ease; transition: transform .8s ease, -webkit-transform .8s ease; }
header { -webkit-transform: translateY(0); transform: translateY(0); }
header.header--unpinned { -webkit-transform: translateY(-150%); transform: translateY(-150%); }
header.hide{ transform:translateY(-100px); }
header .info{ text-align: center; background: var(--sub-color); padding: 10px 0; }
header .info p{ font-size: 1.2rem; font-weight: 700; }
header .header-container{ transition: all .3s; max-width: 1280px; margin: 0 auto; padding: 0 20px; }
.sub header .header-container .flex-box{
  flex-wrap: nowrap;
  gap: 0;
  padding: 0 20px;
}
header .flex-box{ -webkit-box-align: center; -ms-flex-align: center; align-items: center; -webkit-box-pack: justify; -ms-flex-pack: justify; justify-content: space-between; gap: 0 100px; }
header .left{ transition: 0.3s; }
header .left h1{ -webkit-box-align: center; -ms-flex-align: center; align-items: center; }
header .left h1 span{ font-size: 2.2rem; font-weight: 900; color: #fff; }
header .left h1 a{ display: inline-block; margin-right: 33px; }
header .left h1 a img{ max-width: 230px; object-fit: contain; object-position: left; }
header .right ul{ gap: 0 20px; -webkit-box-pack: end; -ms-flex-pack: end; justify-content: flex-end; -webkit-box-align: center; -ms-flex-align: center; align-items: center; }
header .right ul li.nav-list{ text-align: center; position: relative; }
header .right nav > ul > li.nav-list a{ position: relative; font-size: 1.6rem; padding: 25px; padding-left: 0; }
header .right ul li.nav-list.lang-list{ gap: 0 20px; display: none; }
header .right ul li.nav-list.lang-list a{ color: #A8A8A8; }
header .right ul li.nav-list.lang-list a.active{ color: #000; }
header .right ul li.nav-list.blank:after{ content: ""; display: inline-block; margin-left: -10px; background: url(../images/common/blank-black.svg) no-repeat; background-size: contain; width: 10px; height: 10px; }
header .right ul li.nav-list.nav-btn{ flex-shrink: 0; width: 100%; max-width: 190px; display: none; }
header .right ul li.nav-list.nav-btn a,
header .right ul li.nav-list.nav-btn .en{ cursor: pointer; gap: 0 12px; font-weight: 700; font-size: 1.6rem; display: inline-flex; background: #fff; padding: 22px 10px; width: 100%; max-width: 190px; text-align: center;
-webkit-box-align: center; -ms-flex-align: center; align-items: center; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; }
header .right ul li.nav-list .in-nav{ display: none; position: absolute; top: 40px; width: 215px; background: #F8F8F8; padding: 25px; }
header .right ul li.nav-list .in-nav:before{ content: ""; position: absolute; left: 0; top: -20px; width: 0; height: 0; border-right: 20px solid transparent; border-bottom: 20px solid #F8F8F8; }
header .right ul li.nav-list .in-nav li:not(:last-child){ margin-bottom: 25px; }
header .right ul li.nav-list .in-nav li{ padding: 0; text-align: left; font-size: 1.3rem; }
header .right ul li.nav-list a:hover,
header .right ul li.nav-list .in-nav li a{ color: var(--main-color); }

header.is-animation{ padding: 15px 15px 0; }
header.is-animation .header-container{ box-shadow: 0px 3px 20px #0000000a; padding-top: 15px; padding-bottom: 15px; background: #fff; border-radius: 100px; }
header{
  padding-top: 20px;
  margin-bottom: 20px;
}
header .left h1 a img {
  max-width: 210px!important;
}
@media screen and (min-width: 820.98px) {
header .right nav > ul > li.nav-list > a:before { content: ''; position: absolute; right: 0; bottom: 10px; left: -25px; margin: auto; max-width: 30px; height: 2px; background-color: var(--main-color); -webkit-transform: scaleX(0); transform: scaleX(0); -webkit-transition-duration: .6s; transition-duration: .6s; -webkit-transition-timing-function: cubic-bezier(.075, .82, .165, 1); transition-timing-function: cubic-bezier(.075, .82, .165, 1); -webkit-transition-property: -webkit-transform; transition-property: -webkit-transform; transition-property: transform; transition-property: transform, -webkit-transform }
header .right nav > ul > li.nav-list > a:hover:before { -webkit-transform: scaleX(1); transform: scaleX(1) }
}
header .hover-nav:hover::after{
  border-bottom:solid var(--main-color) 2px;
}
header .hover-nav:hover::before{
  border-bottom:solid var(--main-color) 2px;
  transform: rotate(0deg);
  transition: 0.5s;
}
.hover-nav::after{
  content: '';
  width: 12px;
  border-bottom:solid 2px;
  position: absolute;
  right: 0;
  top: 45%;
}
.hover-nav::before{
  content: '';
  width: 12px;
  border-bottom:solid 2px;
  position: absolute;
  right: 0;
  top: 45%;
  transform: rotate(90deg);
  transition: 0.2s;
}
/* =================== footer =================== */

footer{ position: relative; padding: 120px 0; background: var(--main-color); }
footer .box > *{ margin-bottom: 100px; -webkit-box-pack: justify; -ms-flex-pack: justify; justify-content: space-between; gap: 50px; }
footer .top{ -ms-flex-wrap: wrap; flex-wrap: wrap; margin-bottom: 70px; -ms-flex-align: center; align-items: center; }
footer .top nav ul{ -ms-flex-wrap: wrap; flex-wrap: wrap; gap: 20px 50px; }
footer .top nav ul li *{ color: #fff; }
footer .top nav ul li.nav-list.lang-list{ gap: 0 20px; display: none; }
footer .middle{ margin-bottom: 70px; -webkit-box-pack: end; -ms-flex-pack: end; justify-content: flex-end; -webkit-box-align: end; -ms-flex-align: end; align-items: flex-end; }
footer .middle .blank a{ color: #fff; font-size: 2rem; }
footer .middle .address .top{ margin-bottom: 10px; gap: 0 25px; -webkit-box-pack: end; -ms-flex-pack: end; justify-content: flex-end; }
footer .middle .address .top *{ font-weight: 700; font-size: 1.7rem; }
footer .middle .address .top p span{ margin-left: 1em; }
footer .middle .address .top p a{ color: #fff; }
footer .middle .address .bottom p{ font-weight: 700; font-size: 1.7rem; }
footer .bottom{ -webkit-box-align: end; -ms-flex-align: end; align-items: flex-end; }
footer .bottom small{ text-align: left; font-size: 1.4rem; font-weight: 400; }
footer .bottom .label{ max-width: 200px; gap: 0 10px; justify-content: flex-end; }
footer .bottom .label img{ width: auto; object-fit: contain; max-height: 35px; }
footer .bottom .left{ gap: 20px; }
footer .bottom a{ font-size: 1.3rem; }
footer .blank:after{ content: ""; display: inline-block; margin-left: 6px; background: url(../images/common/blank-white.svg) no-repeat; background-size: contain; width: 10px; height: 10px; }

footer #page-top{ position: absolute; right: 30px; top: -37.5px; cursor: pointer; display: inline-block; width: 75px; height: 75px; }
footer #page-top img{ width: 100%; }

.tx-end{ text-align: end; }

footer .container{
  max-width: 1190px;
}

footer .logo img{
  color: #ffffff;
}
footer .logo img {
  max-width: 150px!important;
}

/* =================== top =================== */

#top .fv{ position:relative; padding: 100px 0; }
#top .fv h2{ font-size: 6.3rem; margin-bottom: 60px; }
#top .fv h2 span{ font-size: 6.3rem; color: var(--main-color); }
#top .fv p{ margin-bottom: 60px; max-width: 730px; font-size: 1.9rem; line-height: 2em; }

.about-area{ padding: 140px 0; }
.about-area .flex{ -ms-flex-wrap: wrap; flex-wrap: wrap; -webkit-box-align: center; -ms-flex-align: center; align-items: center; gap: 50px 100px; }
.about-area .left{ width: calc( 55% - 50px); }
.about-area .right{ width: calc( 45% - 50px); }
.about-area h3{ font-size: 3.8rem; margin-bottom: 40px; }
.about-area h3 .en{ margin-bottom: 20px; line-height: 1em; font-size: 5.6rem; display: block; }
.about-area p{ margin-bottom: 45px; font-size: 2.2rem; }
.about-area .video_wrapper{ position: relative; }
.about-area .video_wrapper img{ position: absolute; left: 0; top: 0; right: 0; bottom: 0; margin: auto; height: 100%; width: auto; background: #fff; z-index: 100; }

#top .news-area{ padding: 100px 0; }
#top .news-area h3{ font-size: 4.3rem; margin-bottom: 55px; }
#top .news-area .box{ -webkit-box-pack: justify; -ms-flex-pack: justify; justify-content: space-between; -ms-flex-wrap: wrap; flex-wrap: wrap; gap: 0 85px; }
#top .news-area .left{ max-width: 150px; width: 100%; flex-shrink: 0; }
#top .news-area .left .btn-box{ margin-top: 30px; }
#top .news-area .left .btn-box .btn{ min-width: auto; font-size: 1.6rem; padding: 13px; }
#top .news-area .left ul .tab,
#top .news-area .left ul .tab a{ font-weight: 700; cursor: pointer; font-size: 1.7rem; color: #B7B7B7; }
#top .news-area .left ul .tab a{ display: block; }
#top .news-area .left ul .tab:not(:last-child){ margin-bottom: 10px; }
#top .news-area .left ul .tab.is-active,
#top .news-area .left ul .tab:hover,
#top .news-area .left ul .tab a:hover{ transition: all 0.2s ease-out; color: var(--main-color); }
#top .news-area .right{ width: calc( 100% - 235px ); }
#top .news-area .right ul.news-list{ display: none; }
#top .news-area .right ul.news-list.is-show{ display: block; }
#top .news-area .right ul > p{ margin: 70px 0; }
ul.news-list li{ cursor: pointer; position: relative; }
ul.news-list li:before{ content: ""; position: absolute; transition: all .3s; right: 18px; top: 0; bottom: 0; margin: auto; width: 13px; height: 13px; border-top: 1px solid var(--main-color); border-right: 1px solid var(--main-color); -webkit-transform: rotate(45deg); transform: rotate(45deg); }
ul.news-list li:not(:last-child){ border-bottom: 1px solid #EBEBEB; }
ul.news-list li a{ transition: 0.3s; display: block; padding: 55px 0; }
ul.news-list li:hover a{ padding-left: 20px; }
ul.news-list li a .meta{ margin-bottom: 15px; gap: 0 15px; }
ul.news-list li a .meta span{ font-size: 1.7rem; }
ul.news-list li a .meta .date{ color: #B7B7B7; }
ul.news-list li a p{ font-size: 2.2rem; padding-right: 50px; }

.cv-area1{ transition: 1.2s; margin: auto; background: url(../images/common/cv-area1_bg.jpg) no-repeat; background-size: cover; background-position: center; text-align: center; padding: 140px 0; }
.cv-area1 .icon-box{ margin-bottom: 15px; text-align: center; }
.cv-area1 .icon-box img{ max-width: 45px; }
.cv-area1 h3{ margin-bottom: 30px; font-size: 4.2rem; }
.cv-area1 h3 .en{ line-height: 1em; font-weight: 500; margin-bottom: 30px; display: block; font-size: 3.1rem; }
.cv-area1 p{ max-width: 690px; margin: 0 auto 35px; font-size: 1.8rem; }
.cv-area1 .btn-box{ text-align: center; }
.cv-area1 .btn-box .recruit-btn{ display: inline-block; }
.cv-area1 .btn-box .btn{ font-size: 1.9rem; }
.cv-area1 .recruit-btn img{ max-width: 60px; }

.cv-area1 .btn-box .recruit-btn {
  border: solid white 1px;
  border-radius: 999px;
  padding: 20px;
}

.cv-area1 .btn-box .recruit-btn span{
  transition: opacity .1s ease;
  position: absolute;
}

.cv-area1 .btn-box .recruit-btn .icon{
  transition: all .3s ease;
}

.cv-area1 .btn-box .recruit-btn:hover span{
  opacity: 100;
  transition: opacity .3s ease;
}

.cv-area1 .btn-box .recruit-btn:hover .icon{
  margin-left: 200px;
}

.cv-area1 .btn-box .recruit-btn .recruit-btn-container{
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cv-area1 .recruit-btn span{
  opacity: 0;
  font-size: 18px;
  color: white;
}

.cv-area1 .recruit-btn .icon{
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  height: 20px;
  width: 20px;
  object-fit: contain;
}

.swiper-area{ background: #F8F8F8; padding: 140px 0; }
.swiper-area .sectitle-box{ margin-bottom: 45px; }
.swiper-area .sectitle-box h3{font-size: 4.3rem;}
.swiper-area .swiper-container{ max-width: 1100px; margin: 0 auto; padding: 0 50px; }
.swiper-area .swiper-container ul.swiper-wrapper{ padding: 30px 0; }
.swiper-area .swiper-container ul.swiper-wrapper li.swiper-slide{ display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center;  position: relative; width: calc( 100% / 2 ); height: auto; background: #fff; transform: translateY(28px); opacity: 0; transition: all 1.0s; }
.swiper-area .swiper-container ul.swiper-wrapper li.swiper-slide:nth-child(1) { animation-delay: .2s; }
.swiper-area .swiper-container ul.swiper-wrapper li.swiper-slide:nth-child(2) { animation-delay: .4s; }
.swiper-area .swiper-container ul.swiper-wrapper li.swiper-slide:nth-child(3) { animation-delay: .6s; }
.swiper-area .swiper-container ul.swiper-wrapper li.swiper-slide:nth-child(4) { animation-delay: .8s; }
.swiper-area .swiper-container ul.swiper-wrapper li.swiper-slide:nth-child(5) { animation-delay: .10s; }
.swiper-area .swiper-container ul.swiper-wrapper li.swiper-slide:nth-child(6) { animation-delay: .12s; }
.swiper-area .swiper-container.fadeUp ul.swiper-wrapper li.swiper-slide { transform: translateY(0); opacity: 1; }

ul.blog-list li a{ width: 100%; }
ul.blog-list li .img-box{ overflow: hidden; position: relative; padding-top: 65%; }
ul.blog-list li .img-box img{ transition: all .3s;height: 100%; position: absolute; top: 0; object-fit: cover; object-position: center; }
ul.blog-list li .text-box{ padding: 45px; }
ul.blog-list li .text-box .meta{ margin-bottom: 15px; -webkit-box-pack: justify; -ms-flex-pack: justify; justify-content: space-between; gap: 5px 15px; }
ul.blog-list li .text-box .meta span{ line-height: 1em; font-size: 1.4rem; }
ul.blog-list li .text-box p{ overflow: hidden!important; display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 2; font-size: 1.9rem; }
ul.blog-list li.new:before{ content: "NEW"; box-sizing: border-box; position: absolute; right: 0; top: 0; color: #fff; width: 85px; padding: 5px; text-align: center; background: var(--main-color); z-index: 100; font-size: 1.3rem; font-family: var(--en-font); font-weight: 700; }
ul.blog-list.flex{ gap: 45px; }
ul.blog-list.flex li{ position: relative; width: calc( 100% / 2 - ( 27.5px ) ) ; }
ul.blog-list.flex li .text-box{ padding: 30px 0 0; }

ul.blog-list li .img-box:hover img{ transform: scale(1.1); }

ul.recruit-list li{ cursor: pointer; position: relative; }
ul.recruit-list li:not(:last-child){ border-bottom: 1px solid #EBEBEB; }
ul.recruit-list li:before{ content: ""; position: absolute; transition: all .3s; right: 18px; top: 0; bottom: 0; margin: auto; width: 13px; height: 13px; border-top: 1px solid var(--main-color); border-right: 1px solid var(--main-color); -webkit-transform: rotate(45deg); transform: rotate(45deg); }
ul.recruit-list li a{ display: block; padding: 55px 100px 55px 0; }
ul.recruit-list li:hover a{ padding-left: 20px; }
ul.recruit-list li a .text-box .post-title{ font-size: 2.2rem; margin-bottom: 25px; }
ul.recruit-list li a .text-box .message{ font-size: 1.8rem; margin-bottom: 18px; }
ul.recruit-list li a .text-box .text *{ color: #7E7E7E; font-size: 1.8rem; }
ul.recruit-list li a .text-box > *:last-child{ margin-bottom: 0!important; }

.recruit-meta{ margin-bottom: 18px; gap: 8px!important; }
.recruit-meta span{ border: 1px solid var(--main-color); font-size: 1.4rem!important; line-height: 1.5em!important; padding: 2px 9px; }

.footer-img{ overflow: hidden; width: 130%; margin-left: -15%; }
.footer-img img{ width: calc( 100% / 3 ); }

#logo.active{
  position: relative;
  z-index: 9999;
  opacity: 0;
}

#top .fv-w-right{
  position: absolute;
  background: url(../images/top/fv-bg.jpg) no-repeat;
  background-position: right bottom;
  background-size: contain;
  width: 50%;
  height: 100vh;
  right: -5%;
  bottom: -10%;
  z-index: -1;
}
.fv-vide-wrapper{
  height: 0;
  overflow: hidden;
  max-width: 100%;
  padding-bottom: 56.25%; /* 16:9 の高さなので 56.25% (= 9 ÷ 16) */
  position: relative;
}
.fv-vide-wrapper iframe{
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
/* =================== common =================== */

.contact-btn{ position: fixed; right: 0; top: 310px; z-index: 100; }
.contact-btn a{ position: relative; width: 70px; padding: 50px 5px 50px; background: var(--main-color); -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; }
.contact-btn a span{ color: #fff; font-weight: 700; font-size: 1.8rem; -ms-writing-mode: tb-rl; writing-mode: vertical-rl; text-orientation: sideways; }

.contents-box{ max-width: 950px; margin: 0 auto 150px; }

.share-box{ gap: 20px; margin-bottom: 85px; -ms-flex-wrap: wrap; flex-wrap: wrap; -webkit-box-align: center; -ms-flex-align: center; align-items: center; -webkit-box-pack: justify; -ms-flex-pack: justify; justify-content: space-between; }
.share-box .share ul{ gap: 10px; }
.share-box .pdf{ cursor: pointer; }
.share-box .pdf a{ gap: 0 10px; }
.share-box .pdf a img{ width: 15px; }

#sidebar > div:not(:last-child){ margin-bottom: 70px; }
#sidebar h2,
#sidebar h3{ position: relative; margin-bottom: 35px; padding-bottom: 10px; color: var(--main-color); font-size: 2.5rem; font-weight: 700; font-family: var(--en-font); }
#sidebar h2:before,
#sidebar h3:before{ content: ""; position: absolute; bottom: 0; left: 0; height: 2px; width: 20px; background: var(--main-color); }
#sidebar a{ font-size: 1.7rem; font-family: var(--en-font); font-weight: 500; }
#sidebar .menu-item a{ font-weight: 700; color: var(--main-color); }
#sidebar ul li:not(:last-child){ margin-bottom: 25px; }

.swiper-button-next,
.swiper-button-prev{ top: 47%; width: 55px; height: 55px; background: var(--main-color); border-radius: 55px; }
.swiper-button-next:after,
.swiper-button-prev:after{ content: ""; position: absolute; transition: all .3s; right: 5px; left: 0; top: 0; bottom: 0; margin: auto; width: 10px; height: 10px; border-top: 1px solid #fff; border-right: 1px solid #fff; -webkit-transform: rotate(45deg); transform: rotate(45deg); }
.swiper-button-prev:after{ -webkit-transform: rotate(225deg); transform: rotate(225deg); right: 0; left: 5px; }
.swiper-button-prev,
.swiper-rtl .swiper-button-next{ left: 15.5%; }
.swiper-button-next,
.swiper-rtl .swiper-button-prev{ right: 15.5%; }

.pagination{ margin-top: 90px; gap: 20px; }
.pagination li a,
.pagination li span{ display: inline-block; min-width: 15px; min-height: 26.5px; }
.pagination .nav-links a,
.pagination .nav-links span{ border-bottom: 2px solid #fff; font-size: 1.7rem; font-weight: 700; font-family: var(--en-font); text-align: center; }
.pagination .nav-links span{ color: var(--g-blue-color); border-color: var(--g-blue-color); }
.pagination .arrow a{ position: relative; }
.pagination .arrow a:before{ content: ""; position: absolute; transition: all .3s; right: 0; top: -4px; bottom: 0; margin: auto; width: 5px; height: 5px; border-top: 2px solid #000; border-right: 2px solid #000; -webkit-transform: rotate(45deg); transform: rotate(45deg); }
.pagination .arrow.prev a:before{ -webkit-transform: rotate(225deg); transform: rotate(225deg); }

.single-pagenation{ margin: 90px auto 0; max-width: 200px; padding-bottom: 20px; }
.single-pagenation .prev{ float: left; }
.single-pagenation .next{ float: right; }
.single-pagenation .prev a{ padding-left: 25px; }
.single-pagenation .next a{ padding-right: 25px; }
.single-pagenation div a{ position: relative; font-size: 1.4rem; }
.single-pagenation div a:before{ content: ""; position: absolute; transition: all .3s; right: 0; top: 0; bottom: 0; margin: auto; width: 5px; height: 5px; border-top: 2px solid #000; border-right: 2px solid #000; -webkit-transform: rotate(45deg); transform: rotate(45deg); }
.single-pagenation div.prev a:before{ -webkit-transform: rotate(225deg); transform: rotate(225deg); left: 0; right: auto; }

/* =================== sub =================== */

.sub .title-box{ margin: 50px 0 150px; text-align: center; }
.sub .title-box .cat{ display: block; line-height: 1em; font-size: 4rem; }
.sub .title-box span{ line-height: 1em; font-size: 12.9rem; }
.sub .title-box .none{ height: 0; width: 0; font-size: 0; opacity: 0; }
.sub .flex-box{ -ms-flex-wrap: wrap; flex-wrap: wrap; gap: 90px 100px; -webkit-box-pack: justify; -ms-flex-pack: justify; justify-content: space-between; }
.sub .flex-box main{ width: 600px; }


/* =================== single-detail =================== */

#single-detail .meta-box{ border-bottom: 1px solid #EBEBEB; padding-bottom: 34px; margin-bottom: 40px; }
#single-detail .meta-box .meta{ margin-bottom: 25px; gap: 0 15px; }
#single-detail .meta-box .meta span{ line-height: 1em; font-size: 1.7rem; }
#single-detail .meta-box .meta .date{ position: relative; color: #B7B7B7; padding-right: 15px; }
#single-detail .meta-box .meta .date:after{ content: ""; position: absolute; right: 0; height: 100%; width: 1px; background: #EBEBEB; }
#single-detail .meta-box .content-title{ font-size: 2.8rem; }

/* =================== single-detail parts =================== */

#single-detail .contents h3{ margin-bottom: 30px; font-size: 2.1rem; border-left: 2px solid var(--main-color); padding-left: 20px; color: var(--main-color); }
#single-detail .contents > h3:not(:first-child){ margin-top: 95px; }
#single-detail .contents h4{ position: relative; margin-bottom: 30px; padding-left: 35px; font-size: 1.9rem; color: var(--main-color); }
#single-detail .contents h4:before{ content: ""; position: absolute; left: 0; top: 0; bottom: 0; margin: auto; height: 2px; width: 20px; background: var(--main-color); }
#single-detail .contents > h4:not(:first-child){ margin-top: 85px; }
#single-detail .contents h5{ margin-bottom: 30px; font-size: 1.7rem; color: var(--main-color); }
#single-detail .contents > h5:not(:first-child){ margin-top: 65px; }
#single-detail .contents > h3 > *,
#single-detail .contents > h4 > *,
#single-detail .contents > h5 > *{ color: var(--main-color); }

#single-detail .contents cite,
#single-detail .contents a,
#single-detail .contents p,
#single-detail .contents ol,
#single-detail .contents ul,
#single-detail .contents li,
#single-detail .contents pre,
#single-detail .contents pre *{ font-family: var(--noto-font); font-weight: 400; font-size: 1.5rem; line-height: 2em; }
#single-detail .contents a{ color: var(--main-color); text-decoration: underline; }
#single-detail .contents > pre:not(:first-child){ margin-top: 2em; }
#single-detail .contents pre,
#single-detail .contents pre *{ font-size: 1.3rem; color: #969696; }

#single-detail .contents > *:not(:first-child){ margin-top: 1em; }

#single-detail .contents ol,
#single-detail .contents ul{ margin-left: 1em; }
#single-detail .contents > ol:not(:first-child),
#single-detail .contents > ul:not(:first-child){ margin-top: 35px; }
#single-detail .contents ol li{ list-style: decimal; }
#single-detail .contents ul li{ list-style: circle; }
#single-detail .contents li::marker{ color: var(--main-color); font-family: var(--en-font); font-weight: 700; }
#single-detail .contents ol li:not(:last-child),
#single-detail .contents ul li:not(:last-child){ margin-bottom: 5px; }

#single-detail .contents > blockquote:not(:first-child){ margin-top: 75px; }
#single-detail .contents blockquote p{ font-family: var(--ja-font); position: relative; margin-bottom: 15px; font-size: 2.1rem; color: var(--main-color); }
#single-detail .contents blockquote p:before{ content: ""; position: absolute; left: 4em; right: 0; top: 0; bottom: 0; margin: auto; height: 2px; width: calc( 100% - 4em); background: var(--main-color); }

#single-detail .contents > .wp-block-buttons:not(:first-child){ margin-top: 35px; }
#single-detail .contents .wp-block-buttons > .wp-block-button{ width: 100%; }
#single-detail .contents .wp-block-button__link{ line-height: 1.5em; font-family: var(--ja-font); text-decoration: none; font-weight: 700; color: var(--main-color); border-radius: 100px; background: var(--btn-color); text-align: center; display: inline-block; max-width: 315px; width: 100%; text-decoration: none; transition: all .3s; padding: 15px 20px; font-size: 1.8rem; position: relative; }
#single-detail .contents .wp-block-button__link:before{ content: ""; position: absolute; transition: all .3s; right: 18px; top: 0; bottom: 0; margin: auto; width: 5px; height: 5px; border-top: 2px solid var(--main-color); border-right: 2px solid var(--main-color); -webkit-transform: rotate(45deg); transform: rotate(45deg); }
#single-detail .contents .wp-block-button__link:hover:before{ right: 30px; }
#single-detail .contents .wp-block-button__link[target="_blank"]:before{ content: ""; position: absolute; transition: all .3s; right: 20px; top: 0; bottom: 0; margin: auto; width: 12px; height: 12px; background: url(../images/common/blank-blue.svg) no-repeat; background-size: contain; border: none; -webkit-transform: rotate(0deg); transform: rotate(0deg); }


/* =================== about =================== */

#about .contents-box{ max-width: 100%; }
#about main .container{ max-width: 1190px; }
#about section:not(:last-child){ margin-bottom: 150px; }
#about section h3{ margin-bottom: 45px; text-align: center; }
#about section h3 .en{ font-size: 4rem; display: block; line-height: 1em; }
#about section h3 .ja{ font-size: 5.1rem; display: block; line-height: 1.2em; }
#about section h3 span:not(:last-child){ margin-bottom: 50px; }

#about .vision p{ text-align: center; font-size: 1.8rem; line-height: 2em; }

#about .mission{ padding: 150px 0; background: url(../images/sub/mission-bg.jpg) no-repeat; background-size: cover; background-position: center; }
#about .mission p{ text-align: center; font-size: 1.8rem; line-height: 2em; }

.culture h3{ margin-bottom: 45px; text-align: center; }
.culture h3 .en{ font-size: 4rem; display: block; line-height: 1em; }
.culture .culture-list{ margin-top: 110px; gap: 35px 120px; counter-reset: number 0; }
.culture .culture-list dl{ position: relative; width: calc( 100% / 2 - ( 60px ) ); padding: 50px 0 0 130px; }
.culture .culture-list dl:before{ counter-increment: number 1; content: "0" counter(number); position: absolute; left: 47px; top: 50px; color: var(--main-color); font-family: var(--en-font); font-size: 3.7rem; line-height: 1em; }
.culture .culture-list dl:after{ content: ""; position: absolute; left: 0; top: 0; background: url(../images/common/triangle-object.svg) no-repeat; background-size: contain; width: 35px; height: 35px; }
.culture .culture-list dl dt{ line-height: 1.5em; font-size: 2.1rem; margin-bottom: 20px; }
.culture .culture-list dl dd{ font-size: 1.4rem; }

#about .greeting .bg-box{ padding: 150px 0; background: url(../images/sub/greeting-bg.png) no-repeat; background-size: cover; background-position: center; }
#about .greeting h3 .ja{ font-size: 3.2rem; line-height: 1.5em; }
#about .greeting .text{ gap: 1em 50px; }
#about .greeting .text p{ width: calc( 100% / 2 - ( 25px ) ); font-size: 1.4rem; line-height: 1.8em; }

#about .member .member-list{ margin-top: 110px; gap: 35px 60px; }
#about .member .member-list li{ gap: 30px; width: calc( 100% / 2 - ( 30px ) ); }
#about .member .member-list li .right h4{ line-height: 1.2em; font-size: 2.1rem; margin-bottom: 15px; }
#about .member .member-list li .right h4 small{ font-size: 1.5rem; }
#about .member .member-list li .right p{ font-size: 1.4rem; line-height: 1.6em; }
#about .member .member-list li .left{ max-width: 190px; width: 100%; }
#about .member .member-list li .right{ width: calc( 100% - 220px ); }

#about .office .office-box{ position: relative; padding-top: 90px; padding-bottom: 90px; }
#about .office .office-box:before{ content: ""; position: absolute; left: 0; right: 0; top: 0; bottom: 0; margin: auto; height: 100%; width: 100%; max-width: 1100px; background: #F5F5F5; z-index: -1; }
#about .office .office-box p{ text-align: center; margin-bottom: 50px; }
#about .office .office-box .btn-box{ margin-top: 80px; text-align: center; }

#about .logo-story{ margin-bottom: 200px; }
#about .logo-story .img.left{ padding-right: 100px; }
#about .logo-story .text.left{ padding: 90px 0; }
#about .logo-story .img.right img{ width: 120%; margin-left: -20%; position: relative; z-index: -1; }
#about .logo-story .text h4{ letter-spacing: -3px; margin-bottom: 35px; font-size: 5.3rem; font-weight: 400; line-height: 1em; }
#about .logo-story .text .text-box:not(:last-child){ margin-bottom: 120px; }
#about .logo-story .text .text-box p{ line-height: 1.7em; }
#about .logo-story .text .layout-box{ max-width: 530px; position: relative; }
#about .logo-story .text .layout-box h4{ letter-spacing: -4px; font-size: 6.4rem; }
#about .logo-story .text .layout-box img{ position: absolute; right: -25px; bottom: 0; border: 1px solid #707070; max-width: 158px; max-height: 158px; width: 100%; border-radius: 158px; }
#about .logo-story .img-box{ margin: 110px 0; }
#about .logo-story .img-box.flex{ margin: 0; }

#about .company table{ margin: auto; border-collapse: separate; border-spacing: 80px 40px; }
#about .company th,
#about .company td{ line-height: 1.8; font-size: 1.6rem; text-align: left; }
#about .swiper{
  margin-top: 100px;
}
#about .office{
  margin-top: 150px;
}


/* =================== contact =================== */

#contact .contents-box{ max-width: 100%; }
#contact .container{ max-width: 1230px; }
#contact .container .wpforms-container{
  max-width: 760px;
}
#contact div .submit-button{
  background: var(--main-color);
  color: #fff;
}
.submit-button{
  min-width: 260px;
}
.contanct-privacy-area .box{
  overflow: scroll;
  height: 200px;
  background: #f4f4f4;
  padding: 3rem;
  max-width: 760px;
  margin: 0 auto;
}
.contact-btn a{
  flex-direction: column;
  gap: 20px;
  padding: 50px 23px 50px;
}

.contact-btn a span{
  display: flex;
  align-items: center;
}
/* =================== recruit =================== */

#recruit .title-box{ margin: 0; }
#recruit .title-box .en{ display: none; }
#recruit section:not(:last-child){ margin-bottom: 150px; }
#recruit .contents-box{ max-width: 100%; margin-bottom: 0!important; }
#recruit .swiper-area{ margin-bottom: 0!important; }

#recruit .vision{ text-align: center; margin-bottom: 80px; }
#recruit .vision .container{ position: relative; padding-bottom: 10%; }
#recruit .vision .container:before{ content: ""; position: absolute; right: 0; left: 0; bottom: 0; margin: auto; width: 80%; height: 100%; background: url(../images/sub/recruit-vision.jpg) no-repeat; background-size: contain; background-position: bottom center; z-index: -1;}
#recruit .vision h3{ font-size: 5.5rem; margin-bottom: 60px; }
#recruit .vision h3 span{ color: var(--main-color); }
#recruit .vision p{ font-size: 1.9rem;
  line-height: 2em;
  max-width: 1000px;
  margin: 0 auto;
}

#recruit .about-area{ padding: 0; }
#recruit .swiper-area .swiper-container{ max-width: 1200px; margin: 0 auto; padding: 0 50px; }

.document-area .container{ border-radius: 20px; background: url(../images/sub/doc-bg.png) no-repeat; background-size: cover; background-position: center; text-align: center; padding-top: 70px; padding-bottom: 70px; }
.document-area .none{ height: 0; width: 0; font-size: 0; opacity: 0; }
.document-area img{ max-width: 210px; margin-bottom: 20px; }
.document-area p{ font-size: 2rem; }
.document-area .doc-box{ max-width: 700px; margin: 45px auto 0; border-radius: 10px; overflow: hidden; }

#recruit .cv-area1{ margin-bottom: 0!important; }

.member-area h3{ font-size: 3.8rem; margin-bottom: 40px; }
.member-area h3 .en{ margin-bottom: 20px; line-height: 1em; font-size: 5.6rem; display: block; }
.member-area p{ margin-bottom: 45px; font-size: 2.2rem; }
.member-area .flex{ gap: 50px; }
.member-area .left{ width: calc( 40% - 25px); }
.member-area .right{ width: calc( 60% - 25px); }

.qa-area{ background: #F8F8F8; padding: 150px 0; }
.qa-area .container{ max-width: 900px!important; }
.qa-area .sectitle-box{ margin-bottom: 45px; }
.qa-area .sectitle-box h3.en{ font-size: 5.6rem; line-height: 1em; }
.qa-area .sectitle-box p{ font-size: 2.2rem; }
.qa-area .accordion dl{ background: #fff; }
.qa-area .accordion dl:not(:last-child){ margin-bottom: 25px; }
.qa-area .accordion dt{ padding: 20px 50px 20px 25px; position: relative; cursor: pointer; }
.qa-area .accordion dt:after,
.qa-area .accordion dt:before{ content: ""; transition: 0.3s; position: absolute; height: 2px; width: 15px; background: var(--main-color); top: 0; bottom: 0; right: 25px; margin: auto; }
.qa-area .accordion dt:before{ -webkit-transform: rotate(90deg); transform: rotate(90deg); }
.qa-area .accordion dt.active:before{ -webkit-transform: rotate(-180deg); transform: rotate(-180deg); }

.qa-area .accordion dt p{ font-size: 1.8rem; position: relative; cursor: pointer; display: table; }
.qa-area .accordion dt p:before,
.qa-area .accordion dd p:before{ content: "Q"; width: 50px; display: table-cell; font-family: var(--en-font); color: var(--main-color); font-weight: 700; font-size: 2.7rem; }
.qa-area .accordion dd{ display: none; position: relative; font-size: 1.7rem; padding: 20px 25px; margin: 0 }
.qa-area .accordion dd:before{ content: ""; position: absolute; top: 0; left: 25px; width: calc( 100% - 50px); height: 1px; background: #F3F4F4; }
.qa-area .accordion dd p{ font-size: 1.6rem; position: relative; cursor: pointer; display: table; line-height: 1.7em; }
.qa-area .accordion dd p:before{ content: "A"; }

.qa-area .btn-box{ margin-top: 50px; text-align: center; }
.qa-area .btn-box .btn{ max-width: 450px; }


/* Blog animation */

#swiper-blog{
  position: relative;
}

.swiper-mask {
  position: absolute;
  z-index: 2;
  pointer-events: none;
  top: 0;
  left: 0;
  height: 100%;
  width: 100vw;
  transition: opacity .3s ease;
}

@media screen and (max-width: 820px) {
  .swiper-mask {

    background-image: linear-gradient(to right, rgba(248, 248, 248, .0) 80%, rgba(248, 248, 248, .5  ) 100%);
  }
}

.swiper-nav-buttons{
  position: relative;
  max-width: 300px;
  width: 100%;
  height: 100%;
  margin-top: 5rem;
  display: flex;
}

@media screen and (max-width: 820px) {
  .swiper-nav-buttons{
    display: none;
  }
}

.swiper-nav-buttons .swiper-button-prev{
  position: relative;
  left: auto;
  right: auto;
  margin-right: 20px;

}

.swiper-nav-buttons .swiper-button-next{
  position: relative;
  right: auto;
  left: auto;
}


/* Modal menu Btn */

.modalbtn{
  border-radius: 999px;
  width: 44px;
  height: 44px;
  background-color: var(--modal-btn-color);
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  padding: 16px 0;
  display: none;
}

@media screen and (max-width: 820px) {
  .modalbtn{
    display: flex;

    opacity: 1;
  }
}

.modalbtn .box {
  height: 1px;
  background-color: #000;
  width: 13px;
}

.modalbtn.active{
  background-color: #fff;
  transition: background-color .3s ease;
}

.modal-slide{
  background-color: var(--main-color);
  width: 100vh;
  height: 100vh;
  position: fixed;
  z-index: 9999;
  top: 0;
  right:0;
  transform: translateX(100%);
  transition: all .5s ease;
}

.modal-slide.active {
  transform: translateX(-100%);
}

.modal-inner-slide{
  width: 100vh;
  height: 100vh;
  background-color: #f8f8f8;
  position: fixed;
  z-index: 110;
  top: 0;
  right:0;
  transform: translateX(100%);
  transition: all .5s ease;
}

.modal-inner-slide.active {
  transform: translateX(0%);
}

@media screen and (max-width: 820px) {
  #top .fv-w-right{
    background-position: right center;
    width: 50%;
    right: -5%;
    bottom: -20%;
  }
}

@media screen and (max-width: 640px) {
  #top .fv-w-right{
    background-position: right center;
    width: 90%;
    right: -35%;
    bottom: -17%;
  }
}

#top .fv-w-left{
  position: absolute;
  background: url(../images/top/fv-bg.jpg) no-repeat;
  background-position: left top;
  background-size: contain;
  width: 35%;
  height: 100%;
  left: -14%;
  top: 0;
  z-index: -1;
}

@media screen and (max-width: 1080px) {
  #top .fv-w-left{
    display: none;
  }
}


/*============== policy ==============*/

.policy h3{ color: var(--main-color); margin-top: 70px; font-size: 2.5rem; border-bottom: 1px solid #dee2e6; padding-bottom: 10px; }
.policy h4{ margin-bottom: 40px; font-size: 20px; font-weight: 700; margin-left: -50px; }
.policy p{ line-height: 1.8em; font-size: 1.4rem; }
.policy .cti_box{ padding: 50px 50px; line-height: 1.8em; }
.policy .cti_box dl:not(:last-child){ margin-bottom: 4em; }
.policy dd{ font-family: var(--noto-font); font-size: 1.4rem; }
.policy dt{ font-size: 1.6rem; margin-bottom: 15px; }
.policy ol,
.policy ul{ margin-top: 1em; }
.policy li{ line-height: 1.8em; font-family: var(--noto-font); list-style: none; font-size: 1.4rem; }
.policy li:before{ content: none; }
.policy li:not(:last-child){ margin-bottom: 1em; }
.policy .cti_footer .right{ font-family: var(--noto-font); text-align: right; }
.policy .cti_footer .left{ font-family: var(--noto-font); text-align: left; }
.policy ol li{ list-style-type: decimal; margin-left: 1.2em; }
.policy ol.in li { list-style-type: none; counter-increment: cnt; margin-left: 1.5em;  }
.policy ol.in li::before { content: "(" counter(cnt) ") "; margin-left: -1.5em; }
.policy ol.alpha li{ list-style-type: lower-alpha; }
.policy ol li ol.in{ margin-top: 0.8em; }

@media screen and (max-width: 820px) {
  .policy .cti_box{ padding: 50px 0; }
	.policy h4{ margin-left: 0; }
}

#service .contents-box{ max-width: 100%; }
/* #service .container{ max-width: 1190px; } */
#service section:not(:last-child){ margin-bottom: 150px; }
#service section h3{ margin-bottom: 45px; text-align: center; }
#service section h3 .en{ font-size: 4rem; display: block; line-height: 1em; }
#service section h3 .ja{ font-size: 5.1rem; display: block; line-height: 1.2em; }
#service section h3 span:not(:last-child){ margin-bottom: 50px; }

#service .vision p{ text-align: center; font-size: 1.8rem; line-height: 2em; }

#service .mission{ padding: 150px 0; background: url(../images/sub/mission-bg.jpg) no-repeat; background-size: cover; background-position: center; }
#service .mission p{ text-align: center; font-size: 1.8rem; line-height: 2em; }

#service .greeting .bg-box{ padding: 150px 0; background: url(../images/sub/greeting-bg.png) no-repeat; background-size: cover; background-position: center; }
#service .greeting h3 .ja{ font-size: 3.2rem; line-height: 1.5em; }
#service .greeting .text{ gap: 1em 50px; }
#service .greeting .text p{ width: calc( 100% / 2 - ( 25px ) ); font-size: 1.4rem; line-height: 1.8em; }

#service .member .member-list{ margin-top: 110px; gap: 35px 60px; }
#service .member .member-list li{ gap: 30px; width: calc( 100% / 2 - ( 30px ) ); }
#service .member .member-list li .right h4{ line-height: 1.2em; font-size: 2.1rem; margin-bottom: 15px; }
#service .member .member-list li .right h4 small{ font-size: 1.5rem; }
#service .member .member-list li .right p{ font-size: 1.4rem; line-height: 1.6em; }
#service .member .member-list li .left{ max-width: 190px; width: 100%; }
#service .member .member-list li .right{ width: calc( 100% - 220px ); }

#service .office .office-box{ position: relative; padding-top: 90px; padding-bottom: 90px; }
#service .office .office-box:before{ content: ""; position: absolute; left: 0; right: 0; top: 0; bottom: 0; margin: auto; height: 100%; width: 100%; max-width: 1100px; background: #F5F5F5; z-index: -1; }
#service .office .office-box p{ text-align: center; margin-bottom: 50px; }
#service .office .office-box .btn-box{ margin-top: 80px; text-align: center; }

#service .logo-story{ margin-bottom: 200px; }
#service .logo-story .img.left{ padding-right: 100px; }
#service .logo-story .text.left{ padding: 90px 0; }
#service .logo-story .img.right img{ width: 120%; margin-left: -20%; position: relative; z-index: -1; }
#service .logo-story .text h4{ letter-spacing: -3px; margin-bottom: 35px; font-size: 5.3rem; font-weight: 400; line-height: 1em; }
#service .logo-story .text .text-box:not(:last-child){ margin-bottom: 120px; }
#service .logo-story .text .text-box p{ line-height: 1.7em; }
#service .logo-story .text .layout-box{ max-width: 530px; position: relative; }
#service .logo-story .text .layout-box h4{ letter-spacing: -4px; font-size: 6.4rem; }
#service .logo-story .text .layout-box img{ position: absolute; right: -25px; bottom: 0; border: 1px solid #707070; max-width: 158px; max-height: 158px; width: 100%; border-radius: 158px; }
#service .logo-story .img-box{ margin: 110px 0; }
#service .logo-story .img-box.flex{ margin: 0; }

#service .company table{ margin: auto; border-collapse: separate; border-spacing: 80px 40px; }
#service .company th,
#service .company td{ line-height: 1.8; font-size: 1.6rem; text-align: left; }

#service section.member-area{
  text-align: left;
}
#service section.member-area h3{
  text-align: left;
}
.contact-btn{ position: fixed; right: 0; top: 310px; z-index: 100; }


/* 会社について */

#about iframe{
  width: 100%;
}
#about .greeting{
  margin-bottom: 150px;
}
#about .company table {
  margin-bottom: 30px;
}


/* インタビュー記事 */

#single-detail .wp-block-media-text{
  padding-top: 6rem;
  gap: 3rem;
  align-items: start;
}
#single-detail .wp-block-media-text .wp-block-media-text__content{
  padding: 0;
}
#single-detail .container .wp-block-image{
  margin: 10rem 0 4rem 0;;
}
/* ul.blog-list li .text-box{
  background-color: #5e5e5e;
} */
ul.blog-list.flex li .text-box {
  padding: 30px 20px;
}
.gray-tx{
  color: #90959b;
}
.interview-name {
  margin-top: 4rem;
  margin-bottom: 15px;
}
ul.blog-list li .text-box .meta span.date.main {
  font-size: 1.8rem;
}
.f-size25{
  font-size: 2.5rem;
}


/* 採用情報新規ページ（インタビューと同じレイアウト） */

.recruit-detail-wrap .title-box {
  margin: 0;
}

.recruit-detail .meta-box .content-title {
  font-size: 2.8rem;
}

.recruit-detail .meta-box .meta .date {
  position: relative;
  color: #B7B7B7;
  padding-right: 15px;
}

.recruit-detail .meta-box .meta span {
  line-height: 1em;
  font-size: 1.7rem;
}

.recruit-detail .meta-box .meta .date:after {
  content: "";
  position: absolute;
  right: 0;
  height: 100%;
  width: 1px;
  background: #EBEBEB;
}

.recruit-detail .meta-box .meta {
  margin-bottom: 25px;
  gap: 0 15px;
}

.recruit-detail .meta-box {
  border-bottom: 1px solid #EBEBEB;
  padding-bottom: 34px;
  margin-bottom: 40px;
}

.recruit-detail .contents h3 {
  margin-bottom: 30px;
  font-size: 2.1rem;
  border-left: 2px solid var(--main-color);
  padding-left: 20px;
  color: var(--main-color);
}

.recruit-detail .contents > *:not(:first-child) {
  margin-top: 1em;
}

.recruit-detail .contents > h3:not(:first-child) {
  margin-top: 95px;
}

.recruit-detail .contents p{
  font-family: var(--noto-font);
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 2em;
}

.recruit-detail .container .wp-block-image {
  margin: 10rem 0 4rem 0;
}

.recruit-detail .wp-block-media-text {
  padding-top: 6rem;
  gap: 3rem;
  align-items: start;
}

.recruit-detail .wp-block-media-text {
  direction: ltr;
  display: grid;
  grid-template-columns: 50% 1fr;
  grid-template-rows: auto;
  box-sizing: border-box;
}

.recruit-detail .wp-block-media-text.has-media-on-the-right {
  grid-template-columns: 1fr 50%;
}

.recruit-detail .wp-block-media-text .wp-block-media-text__content {
  padding: 0;
}


/* お問合せフォーム */

.justify-center{
  justify-content: center!important;
}

.swiper-area .sectitle-box.f_jc-between{
  -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

/* 募集要項 */

.guidline-area{ background: #F8F8F8; padding: 150px 0; }
.guidline-area .container{ max-width: 1190px!important; }
.guidline-area .sectitle-box{ margin-bottom: 45px; }
.guidline-area .sectitle-box h3.en{ font-size: 5.6rem; line-height: 1em; }
.guidline-area .sectitle-box p{ font-size: 2.2rem; }
.guidline-area .accordion dl{ background: #fff; }
.guidline-area .accordion dl:not(:last-child){ margin-bottom: 25px; }
.guidline-area .accordion dt{ padding: 20px 50px 20px 25px; position: relative; cursor: pointer; margin-bottom: 2rem; margin-top: 2rem;}
.guidline-area .accordion dt:after,
.guidline-area .accordion dt:before{ content: ""; transition: 0.3s; position: absolute; height: 2px; width: 15px; background: var(--main-color); top: 0; bottom: 0; right: 25px; margin: auto; }
.guidline-area .accordion dt:before{ -webkit-transform: rotate(90deg); transform: rotate(90deg); }
.guidline-area .accordion dt.active:before{ -webkit-transform: rotate(-180deg); transform: rotate(-180deg); }

#guidline .contents-box{
  max-width: 950px!important;
}

.guidline-area .accordion dt p{ font-size: 2rem; position: relative; cursor: pointer; display: table; }
.guidline-area .accordion dt p:before,

.guidline-area .accordion dd{ display: none; position: relative; font-size: 1.7rem; padding: 20px 25px; margin: 0 }
.guidline-area .accordion dd:before{ content: ""; position: absolute; top: 0; left: 25px; width: calc( 100% - 50px); height: 1px; background: #F3F4F4; }
.guidline-area .accordion dd p{ font-size: 1.5rem; line-height: 1.7em; }
.guidline-area .accordion dd p{
  max-width: 580px;
}
.guidline-area .btn-box{ margin-top: 50px; text-align: center; }
.guidline-area .btn-box .btn{ max-width: 450px; }
/* .guidline-area .btn-box .btn.blue_btn:hover{
  border: solid 1px var(--main-color);
} */

.guidline-area .accordion dt p:before, .guidline-area .accordion dd ul li .btn-box{
  margin-top: 30px;
}
.guidline-area .accordion dt p:before, .guidline-area .accordion dd ul li .btn-box span{
  color: white;
  font-size: 1.3rem;
}

/* .guidline-area .btn-box .btn.blue_btn:hover span{
  color: var(--main-color);
} */

.guidline-area .btn-box .btn.arrow:hover:before{
  right: 15px;
}

.guidline-area .accordion dt p:before, .guidline-area .accordion dd ul li{
  display: flex;
  border-bottom: 1px solid #e4e4e4;
  padding-bottom: 20px;
}
.guidline-area .accordion dt p:before, .guidline-area .accordion dd ul li:not(:first-child){
  padding-top: 20px;
}
.guidline-area .accordion dt p:before, .guidline-area .accordion dd ul li span{
  width: 220px;
  display: flex;
  align-items: center;
  color: var(--main-color);
}

.guidline-area .accordion dt p:before, .guidline-area .accordion dd ul li:has(.btn-box){
  justify-content: center;
  border-bottom: none;
}


/* TOP fv */
.fv-area {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.fv-area video {
  display: block;
  width: 100vw;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}



/* 202504追記*/

/* 共通 */
.swiper-area{
  background: transparent linear-gradient(245deg, #E5EEF8 0%, #90B2D500 100%) 0% 0% no-repeat padding-box;
}
.accent {
  color: #EE86B4;
}
.btn{ overflow: hidden; font-weight: 700; color: var(--main-color); border-radius: 100px; background: var(--btn-color); text-align: center; display: inline-block; max-width: 315px; min-width: 200px; width: 100%; text-decoration: none; transition: all .3s; padding: 18px 20px; font-size: 2rem; position: relative; }
.sub .title-box {
  margin: 100px 0px 100px;
}
.sub .title-box span{
  font-size: 10rem;
}
.sub .title-box span.ja{
  display: block;
  font-size: 2.5rem;
  margin-top: 1rem;
}
.qa-area{
  background: transparent linear-gradient(245deg, #E5EEF8 0%, #90B2D500 100%) 0% 0% no-repeat padding-box;
}

footer{
  background: transparent linear-gradient(90deg, #65C4F3 0%, #004B9E 100%) 0% 0% no-repeat padding-box;
  background-size: cover;
  background-position: center;
}
footer .bottom{
  margin-bottom: 0;
}
footer .logo img {
  max-width: 211px !important;
}
footer .top nav ul{
  gap: 20px 30px;
}
footer .top nav ul li a{
  font-size: 1.6rem;
}

.br900{
  display: block;
}
.br1080{
  display: block;
}
.sp820{
  display: none;
}


/* TOP */
#sec02.about-area{
  background: transparent linear-gradient(118deg, rgba(0,75,158,0.05) 0%, #FFFFFF 100%) 0% 0% no-repeat padding-box;
}
#top .news-area {
  padding: 140px 0;
}
#top .news-area .left ul .tab, #top .news-area .left ul .tab a{
  color: var(--gray-color);
}
ul.news-list li a .meta .date {
  color: var(--gray-color);
}
@keyframes gradientEffect {
  0% {
    background-position: left;
  }
  100% {
    background-position: right;
  }
}

.cv-area1 {
  position: relative;
  margin: auto;
  text-align: center;
  padding: 140px 0;
  background-image: linear-gradient(-45deg, #004B9E, #4DABDC);
  background-size: 200% auto;
  animation: gradientEffect 4s infinite alternate;
}

/* 事業内容 */
#service .contents-box:last-of-type{
  margin-bottom: 0;
}
#service .member-area .left {
  width: calc(48% - 25px);
}
#service .member-area .right {
  width: calc(52% - 25px);
}
#service .member-area p{
  margin-bottom: 0;
}

/* 会社について */
#about .greeting .bg-box {
  background-image: linear-gradient(-45deg, #004B9E, #4DABDC);
  background-size: 200% auto;
  animation: gradientEffect 4s infinite alternate;
}
.culture .culture-list dl:before{
  color: var(--l-blue-color);
}
.greeting .leader-name{
  margin-top: 2rem;
  text-align: right;
}
#about section h3 span:not(:last-child) {
  margin-bottom: 10px;
}
#about .greeting h3 .message-tx{
  font-size: 2.2rem;
  margin-bottom: 30px;
}

/* ニュース */
#single-detail .contents h2{
  font-size: 2.2rem;
  color: #fff;
  background: var(--main-color);
  padding: 3px 10px;
}
#single-detail .contents h3{
  margin-bottom: 10px;
}
#single-detail .contents h4{
  margin-bottom: 10px;
}
#single-detail .contents > h3:not(:first-child) {
  margin-top: 30px;
}
#single-detail .contents > h4:not(:first-child) {
  margin-top: 30px;
}
#single-detail .meta-box .meta .date::after{
  content: none;
}

/* 採用情報 */
#recruit section:first-of-type {
  margin-top: 100px;
}
#recruit .vision .container:before {
  background: url(../images/sub/recruit-bg.svg) no-repeat;
  background-size: contain;
  background-position: bottom center;
  opacity: 0.6;
  bottom: -8rem;
}
#recruit section.vision{
  margin-bottom: 200px;
}

/* 募集要項 */
.guidline-area .accordion dd ul li{
  display: block;
}
.guidline-area .accordion dd ul li span{
  display: block;
  color: inherit;
  width: auto;
}
.guidline-area .accordion dd ul li span:first-of-type{
  color: var(--main-color);
  margin-bottom: 5px;
}

/* エントリー */
#contact .comment-area{
  max-width: 760px;
  margin: 5rem auto;
}
#contact .comment-area ul{
  list-style: disc;
}
#contact .comment-area ul li{
  list-style: disc;
  margin-left: 2rem;
}
#contact .comment-area ul li:last-of-type{
  list-style: none;
  margin-left: 0;
}
#contact .comment-area ul li{
  margin-top: 1rem;
}
.f-bold{
  font-weight: bold;
}
.d-block{
  display: block;
}
