@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200..900&family=Outfit:wght@100..900&display=swap');

/*!
Theme Name: M-TEC THEME
*/


/* common-css */
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, dialog, figure, footer, header,
hgroup, menu, nav, section,
time, mark, audio, video {
	margin:0;
	padding:0;
	border:0;
	outline:0;
	font-size:100%;
	vertical-align:baseline;
	background:transparent;
}

input::placeholder{
	color: #ccc;
}
input::-ms-input-placeholder{
	color: #ccc;
}
input:-ms-input-placeholder{
	color: #ccc;
}

:root{
    --base-color: #011635;
    --base-font: "source-han-sans-japanese", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    --font-md-text: 18px;

    --wrap: 1400px;
    --space: calc((100vw - var(--wrap))/2);
    --padding: 100px;
    --outfit: 'Outfit', "source-han-sans-japanese", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    --mincho: 'Noto Serif JP', "source-han-sans-japanese", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;

    --body-color: #E6F2F7;

    --transition: .2s;
}

body{
    min-width: 1200px;
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
    line-height: 1.8;
    color: var(--base-color);
    letter-spacing: .075em;
    font-family: var(--base-font);
    background-color: var(--body-color);
}

body.home .wrap,
.wrap{
    width: 100%;
    max-width: var(--wrap);
    margin: 0 auto;
}

a{
    transition: var(--transition);
    text-decoration: none;
}
a:hover{
    opacity: .6;
    text-decoration: none;
}
img{
    max-width: 100%;
    vertical-align: bottom;
}
.flex{
    display: flex;
    flex-wrap: wrap;
}
.ps-re{
    position: relative;
    z-index: 0;
}
.ps-ab{
    position: absolute;
}
.padding-top{
    padding-top: var(--padding);
}
.padding-bottom{
    padding-bottom: var(--padding);
}
.padding-tb{
    padding: var(--padding) 0;
}


/* LOADING */
#loading{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    pointer-events: none;
}
#loading::before,
#loading::after{
    content: "";
    width: 100%;
    height: 100%;
    opacity: 1;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
}
#loading::before{
    background-color: #fff;
    opacity: 1;
    z-index: 2;
    transition: .4s;
}
#loading::after{
    background-color: transparent;
    backdrop-filter: blur(15px);
    z-index: 1;
    transition: .6s;
}
body.loaded #loading::before{
    opacity: 0;
}
body.loaded #loading::after{
    backdrop-filter: blur(0);
    transition-delay: .2s;
}
body.loading #loading::before{
    opacity: 1;
    transition-delay: .2s;
}
body.loading #loading::after{
    backdrop-filter: blur(15px);
    transition-delay: 0s;
}



/* FADE */
.fadein {
    opacity : 0;
    transform : translate(0, 50px);
    filter: blur(10px);
    transition : all 600ms;
}
.fadeinr {
    opacity : 0;
    transform : translate(50px, 0);
    filter: blur(10px);
    transition : all 600ms;
}
.fadeinb {
    opacity : 0;
    transform : translate(0, -50px);
    filter: blur(10px);
    transition : all 600ms;
    }

.fadeinl {
    opacity : 0;
    transform : translate(-50px, 0);
    filter: blur(10px);
    transition : all 600ms;
    }

.fadeino {
    opacity : 0;
    filter: blur(10px);
    transition : all 600ms;
}

.blur{
    opacity: 0;
    filter: blur(10px);
    transition: .8s;
}
.blur.scrollin{
    opacity: 1;
    filter: blur(0);
}
.img-animation{
    filter: blur(10px);
    transition: 3s;
}
.img-animation img{
    clip-path: circle(0);
    transition: 1.2s;
}
.img-animation.scrollin{
    filter: blur(0);
}
.img-animation.scrollin img{
    clip-path: circle(100%);
}

.ts1 {
    transition-delay: 300ms;
}

.ts2 {
    transition-delay: 600ms;
}

.ts3 {
    transition-delay: 900ms;
}

.ts4 {
    transition-delay: 1200ms;
}

.fadein.scrollin, .fadeinr.scrollin, .fadeinb.scrollin, .fadeinl.scrollin {
    opacity : 1;
    transform : translate(0, 0);
    filter: blur(0);
}

.fadeino.scrollin {
   opacity : 1;
}


/* WAVE */
.wave-section{
    padding: 250px 0;
    position: relative;
    z-index: 0;
    color: #fff;
}
.wave-section-padding-sm{
    padding: 100px 0 150px;
}
.wave-section.wh{
    background-color: #fff;
    color: var(--base-color);
}
.wave-section__bg{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(img/common/wave-bg.webp) no-repeat center center / cover;
    z-index: -1;
    animation: mv-brightness 12s infinite ease-in-out;
}
@keyframes mv-brightness {
    0% {
      filter: brightness(1);
    }
    10% {
      filter: brightness(1.3);
    }
    20% {
      filter: brightness(1.35);
    }
    30% {
      filter: brightness(0.9);
    }
    40% {
      filter: brightness(1.3);
    }
    50% {
      filter: brightness(0.95);
    }
    60% {
      filter: brightness(1.3);
    }
    70% {
      filter: brightness(1.05);
    }
    80% {
      filter: brightness(0.9);
    }
    90% {
      filter: brightness(1.3);
    }
    100% {
      filter: brightness(1);
    }
}
.noise {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
	background: url(img/common/noise.webp);
	animation: noise_anima 1s steps(10) infinite;
    z-index: -1;
    mix-blend-mode: multiply;
}
@keyframes noise_anima {
	from {
		background-position: 0 0;
	}
	to {
		background-position: 123px 456px;
	}
}
.wave{
    position: absolute;
    top: -2px;
    left: 0;
    width: 100%;
    height: calc(100% + 2px);
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}
.wave-svg::before{
    content: "";
    background-color: var(--body-color);
    width: 100%;
    height: 20px;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
}
.wave.top .wave-svg{
    top: 0;
    transform: rotate(180deg) scale(1.1);
}
.wave.bottom .wave-svg{
    bottom: 0;
    transform: scale(1.1);
}
.wave-svg{
    position: absolute;
    width: 100%;
    left: -25px;
    width: 100%;
}
.wave-svg svg{
    width: calc(100% + 50px);
    height: 200px;
    filter: blur(10px);
}



/* HEADER */
#header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    transition: .2s;
}
#header .header-logo img{
    display: block;
    transition: var(--transition);
    width: 308px;
}
#header .header-menu ul,
#header .header-menu nav{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
#header .header-menu nav{
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
}
#header .header-menu ul{
    gap: 40px;
}
#header .header-menu ul.has-icon{
    gap: 20px;
}
#header .header-menu ul li a{
    font-weight: bold;
    font-size: 18px;
    position: relative;
    z-index: 0;
}
#header .header-menu ul:not(.has-icon) li a::before{
    content: "";
    width: 25px;
    height: 25px;
    background: linear-gradient(#13b0f7 0%, #230fd1 100%);
    position: absolute;
    transform: translate(-50%,-50%) scale(0);
    top: 50%;
    left: 50%;
    z-index: -1;
    border-radius: 50%;
    opacity: 0;
    transition: var(--transition);
}
#header .header-menu ul.has-icon li a{
    border-radius: 25px;
    display: block;
    text-align: center;
    padding: 5px 30px;
    border: 1px solid var(--base-color);
}
#header .header-menu ul.has-icon li a img{
    vertical-align: sub;
    display: inline-block;
    margin-right: 10px;
    transition: var(--transition);
}
@media screen and (min-width: 992px) {
    #header .header-menu ul.has-icon li a:hover{
        background-color: var(--base-color);
        color: #fff;
    }
    #header .header-menu ul.has-icon li a:hover img{
        -webkit-filter: brightness(0) grayscale(100%) invert(1);
        -moz-filter: brightness(0) grayscale(100%) invert(1);
        -o-filter: brightness(0) grayscale(100%) invert(1);
        -ms-filter: brightness(0) grayscale(100%) invert(1);
        filter: brightness(0) grayscale(100%) invert(1);
    }
    #header .header-menu ul li a:hover{
        opacity: 1;
    }
    #header .header-menu ul li a:hover::before{
        opacity: 0.3;
        transform: translate(-50%,-50%) scale(1);
    }
}

body.home #header:not(.over):not(.open) a{
    color: #fff;
}
body.home #header:not(.over):not(.open) a img{
    -webkit-filter: brightness(0) grayscale(100%) invert(1);
    -moz-filter: brightness(0) grayscale(100%) invert(1);
    -o-filter: brightness(0) grayscale(100%) invert(1);
    -ms-filter: brightness(0) grayscale(100%) invert(1);
    filter: brightness(0) grayscale(100%) invert(1);
}
body.home #header:not(.over):not(.open) .header-menu ul.has-icon li a{
    border-color: #fff;
}
body > canvas{
    z-index: 1 !important;
    pointer-events: none;
}
#header.over{
    background-color: rgb(255 255 255 / .4);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    box-shadow: 0 4px 60px rgb(56 39 206 / .1);
}
#header.over .header-logo img{
    width: 260px;
}
.nav-toggle{
    position: relative;
    width: 28px;
    height: 20px;
    display: none;
}
.nav-toggle span{
    position: absolute;
    right: 0;
    width: 100%;
    height: 2px;
    background-color: var(--base-color);
    transition: var(--transition);
}
.nav-toggle span:nth-child(1){
    top: 0;
}
.nav-toggle span:nth-child(2){
    top: 9px;
}
.nav-toggle span:nth-child(3){
    top: 18px;
    width: 50%;
}
.open .nav-toggle span:nth-child(1){
    transform: translateY(9px) rotate(45deg);
}
.open .nav-toggle span:nth-child(2){
    opacity: 0;
}
.open .nav-toggle span:nth-child(3){
    transform: translateY(-9px) rotate(-45deg);
    width: 100%;
}


/* FOOTER */
.footer-recruit__flex{
    justify-content: space-between;
}
.footer-recruit__flex-title{
    padding-top: 100px;
}
.footer-recruit__flex-title .title-en{
    font-size: 110px;
}
.footer-recruit__flex-cont{
    width: 100%;
    max-width: 50%;
}
.footer-recruit__flex-cont__lead{
    font-size: 62px;
    font-weight: 900;
    letter-spacing: 0.05em;
    line-height: 1.29;
    margin-bottom: 40px;
}
.footer-recruit__flex-cont__text{
    margin-bottom: 50px;
}
.footer-recruit__flex-cont__more a{
    display: inline-block;
    font-size: 24px;
    font-weight: bold;
}
.footer-recruit__flex-cont__more a img{
    -webkit-filter: brightness(0) grayscale(100%) invert(1);
    -moz-filter: brightness(0) grayscale(100%) invert(1);
    -o-filter: brightness(0) grayscale(100%) invert(1);
    -ms-filter: brightness(0) grayscale(100%) invert(1);
    filter: brightness(0) grayscale(100%) invert(1);
    display: inline-block;
    margin-left: 20px;
    vertical-align: middle;
    position: relative;
    top: -4px;
}
.empty-section{
    background-color: var(--body-color);
    height: 120px;
    margin: -20px 0;
    position: relative;
    z-index: 1;
}
.footer-content{
    padding: 50px 0 var(--padding);
    background-color: var(--body-color);
    position: relative;
    z-index: 1;
}
.footer-content__flex{
    justify-content: space-between;
}
.footer-content__flex-info__address{
    margin-top: 3px;
    font-size: 14px;
}
.footer-content__flex-info__address a{
    display: inline-block;
    background-color: var(--base-color);
    color: #fff;
    margin-left: 10px;
    font-size: 12px;
    border-radius: 13px;
    padding: 0 10px;
}
.footer-content__flex-contact{
    width: 100%;
    max-width: 670px;
}
.footer-content__flex-contact__ttl{
    text-align: center;
    margin-bottom: 20px;
    font-size: var(--font-md-text);
    font-weight: bold;
}
.footer-content__flex-contact__grid{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 10px;
}
.footer-content__flex-contact__grid-item__text{
    display: block;
    text-align: center;
    color: #fff;
    font-size: 24px;
    font-weight: bold;
    font-family: var(--outfit);
    border-radius: 30px;
    height: 60px;
    line-height: 60px;
}
.footer-content__flex-contact__grid-item__text img{
    -webkit-filter: brightness(0) grayscale(100%) invert(1);
    -moz-filter: brightness(0) grayscale(100%) invert(1);
    -o-filter: brightness(0) grayscale(100%) invert(1);
    -ms-filter: brightness(0) grayscale(100%) invert(1);
    filter: brightness(0) grayscale(100%) invert(1);
    margin-right: 20px;
    display: inline-block;
    vertical-align: middle;
    width: 30px;
    position: relative;
    top: -3px;
}
.footer-content__flex-contact__grid-item__text.tel{
    background-color: #3827CE;
}
.footer-content__flex-contact__grid-item__text.fax{
    background-color: #28A0D6;
}
.footer-content__bottom{
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #C4D5DC;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}
.footer-content__bottom-menu{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 50px;
}
.footer-content__bottom-menu li a{
    font-size: 14px;
    display: inline-block;
}
.footer-content__bottom-copy{
    font-size: 12px;
    font-family: var(--outfit);
}



/* TOP */
.top-fixed{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -10;
}
.top-fixed__bg,
.mv-bg{
    width: 100%;
    height: 100vh;
    background: url(img/frontpage/mv.webp) no-repeat center center / cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -3;
}
.top-fixed__en,
.mv-en{
    position: absolute;
    transform: translateY(-50%);
    top: 45%;
    left: 0;
    width: 100%;
    text-align: center;
    z-index: 2;
    opacity: 0.85;
    mix-blend-mode: soft-light;
    pointer-events: none;
}
.top-fixed__text,
.mv-text{
    position: absolute;
    transform: translateY(-50%);
    top: 45%;
    left: 0;
    width: 100%;
    z-index: 3;
    pointer-events: none;
}
.top-fixed__en img,
.mv-en img{
    width: 100%;
    display: block;
}
.top-fixed__text img,
.mv-text img{
    display: block;
    margin: 0 auto;
    width: 52.76vw;
}
.top-fixed.is-blur .top-fixed__en,
.top-fixed.is-blur .top-fixed__text{
    filter: blur(20px);
    transition-delay: 0s;
}
.mv{
    position: relative;
    z-index: 0;
    overflow: hidden;
    height: 100vh;
}
.mv-bottom{
    height: 120vh;
}
.mv-bottom .mv-bg{
    height: 100%;
}
.mv-text,
.mv-en{
    top: 50%;
}
.mv-wave{
    position: absolute;
    z-index: 1;
    bottom: 0;
    left: 0;
    width: 100%;
    transform: translateY(8vw);
    pointer-events: none;
}
.top-concept__flex{
    align-items: center;
}
.top-concept__flex-img{
    width: 100%;
    max-width: 550px;
}
.top-concept__flex-box{
    width: 100%;
    max-width: calc(100% - 550px);
    padding-left: 150px;
}
.top-concept__flex-box__lead{
    margin-bottom: 50px;
}
.top-concept__flex-box__text{
    font-size: 21px;
    line-height: 2.27;
    letter-spacing: 0.075em;
}
.top-business{
    background-color: var(--body-color);
}
.top-business__flex{
    flex-direction: row-reverse;
    align-items: center;
}
.top-business__flex-box{
    width: 100%;
    max-width: 573px;
}
.top-business__flex-img{
    width: 100%;
    max-width: calc(100% - 573px);
    padding-right: 30px;
}
.title{
    margin-bottom: 50px;
}
.title-text{
    font-size: 20px;
    letter-spacing: 0.1em;
}
.title-text span{
    display: inline-block;
    position: relative;
    padding-left: 20px;
}
.title-text span::before{
    content: "";
    position: absolute;
    top: 12px;
    left: 0;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: linear-gradient(#13b0f7 0%, #230fd1 100%);
}
.title-en{
    font-size: 60px;
    font-family: var(--outfit);
    letter-spacing: 0;
    font-weight: bold;
    line-height: 1.1;
}
.title-flex{
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
    flex-direction: row-reverse;
    justify-content: flex-end;
    align-items: flex-end;
}
.title-flex .title-text span{
    padding-left: 0;
}
.title-flex .title-text span::before{
    display: none;
}
.top-business__flex-box__lead{
    font-size: 52px;
    font-weight: 500;
    letter-spacing: 0.068em;
    line-height: 1.66;
}
.top-business__list{
    margin-top: 130px;
}
.top-business__list-box{
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 195px;
}
.top-business__list-box:last-child{
    margin-bottom: 0;
}
.top-business__list-box__item{
    width: 100%;
    max-width: calc(100% - 550px);
    padding-right: 100px;
}
.top-business__list-box__img{
    width: 100%;
    max-width: 550px;
}
.top-business__list-box__item-ttl{
    font-size: 40px;
    font-weight: bold;
    position: relative;
    z-index: 0;
    margin-bottom: 20px;
}
.top-business__list-box__item-ttl span{
    display: inline-block;
    position: absolute;
    bottom: 35px;
    left: 5px;
    z-index: -1;
}
.top-business__list-box__item-text{
    font-size: var(--font-md-text);
    margin-bottom: 60px;
}
.top-business__list-box__item-detail__elm{
    border-top: 1px solid #C4D5DC;
    padding: 25px 0;
    position: relative;
    cursor: pointer;
}
.top-business__list-box__item-detail__elm:last-child{
    border-bottom: 1px solid #C4D5DC;
}
.top-business__list-box__item-detail__elm-ttl{
    font-size: 28px;
    font-weight: bold;
}
.top-business__list-box__item-detail__elm-text{
    font-size: var(--font-md-text);
    padding-top: 20px;
}
.top-business__list-box__item-detail__elm-toggle{
    position: absolute;
    top: 25px;
    right: 0;
    width: 50px;
    height: 50px;
    cursor: pointer;
}
.top-business__list-box__item-detail__elm-toggle::before,
.top-business__list-box__item-detail__elm-toggle::after{
    content: "";
    width: 40%;
    height: 3px;
    background-color: #8FAAB5;
    position: absolute;
    top: 50%;
    left: 50%;
    transition: var(--transition);
}
.top-business__list-box__item-detail__elm-toggle::before{
    transform: translate(-50%,-50%);
}
.top-business__list-box__item-detail__elm-toggle::after{
    transform: translate(-50%,-50%) rotate(90deg);
}
.top-business__list-box__item-detail__elm-toggle.active::after{
    transform: translate(-50%,-50%) rotate(0deg);
}
.top-business__reason{
    padding: 0 58px 64px;
    border: 4px solid #fff;
    border-radius: 30px;
    margin-top: 270px;
}
.top-business__reason-ttl{
    text-align: center;
    margin: -112px 0 40px;
}
.top-business__reason-ttl span{
    display: inline-block;
    padding: 0 113px;
    background-color: var(--body-color);
}
.top-business__reason-text{
    text-align: center;
    font-size: var(--font-md-text);
}
.top-business__reason-grid{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 70px;
    margin-top: 75px;
}
.top-business__reason-grid__item-illust{
    text-align: center;
    height: 135px;
    margin-bottom: 40px;
}
.top-business__reason-grid__item-ttl{
    text-align: center;
    margin-bottom: 30px;
}
.top-business__reason-grid__item-lead{
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    line-height: 1.41;
    margin-bottom: 20px;
}
.top-case,
.top-about{
    position: relative;
    z-index: 1;
}
.top-case__slider-wrap{
    padding-left: var(--space);
}
.top-case__slider-item{
    width: 360px;
    margin-right: 50px;
}
.top-case__slider-item__thumb-inner{
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    padding-top: 66.666%;
}
.top-case__slider-item__thumb-inner img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.top-case__slider-item__thumb{
    margin-bottom: 20px;
}
.top-case__slider-item__ttl{
    font-size: 20px;
    margin-bottom: 20px;
}
.top-case__slider-item__tag{
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}
.top-case__slider-item__tag span{
    display: block;
    padding: 0 15px;
    font-size: 12px;
    border: 1px solid var(--base-color);
    border-radius: 12px;
}
.top-case__slider-nav{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 70px;
    justify-content: space-between;
    padding-right: var(--space);
}
.top-case__slider-nav__arrow{
    width: 100%;
    max-width: 90px;
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 10px;
}
.top-case__slider-nav__arrow-item{
    cursor: pointer;
}
.top-case__slider-nav__arrow-item img{
    display: block;
}
.top-case__slider-nav__bar{
    height: 1px;
    background-color: #C4D5DC;
    width: 100%;
    max-width: calc(100% - 110px);
    position: relative;
}
.top-case__slider-nav__bar span{
    position: absolute;
    transform: translateY(-50%);
    top: 50%;
    left: 0;
    width: 0;
    height: 3px;
    background-color: #8BACB9;
    transition: 1s;
}
.top-about__flex{
    justify-content: space-between;
}
.top-about__flex-cont{
    width: 100%;
    max-width: 65%;
}
.top-about__flex-cont__box{
    border-top: 1px solid #C4D5DC;
}
.top-about__flex-cont__box:last-child{
    border-bottom: 1px solid #C4D5DC;
}
.top-about__flex-cont__box a{
    padding: 30px 0;
    display: block;
    position: relative;
}
.top-about__flex-cont__box a::before{
    content: "";
    width: 40px;
    height: 40px;
    background: url(img/common/arrow.svg) no-repeat center center / contain;
    position: absolute;
    top: 45px;
    right: 0;
    transition: var(--transition);
}
@media screen and (min-width: 992px) {
    .top-about__flex-cont__box a:hover{
        opacity: 1;
        padding: 30px;
        background-color: #ecf4f7;
    }
    .top-about__flex-cont__box a:hover::before{
        right: 30px;
    }
}
.top-about__flex-cont__box-ttl{
    font-weight: bold;
    margin-bottom: 20px;
}
.top-about__flex-cont__box-ttl span{
    display: inline-block;
    font-family: var(--outfit);
    font-weight: 500;
    letter-spacing: 0;
    font-size: 60px;
    line-height: 1.1;
    margin-right: 20px;
}



/* PAGE */
main{
    position: relative;
    z-index: 0;
}
.first-section{
    padding-top: 190px;
}
.page-title{
    margin-bottom: 80px;
}
.page-bg{
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 110vh;
}


/* ABOUT */
.about-sec01__lead{
    margin-bottom: 40px;
    font-size: 46px;
    font-weight: 900;
    letter-spacing: 0.015em;
    line-height: 1.6;
    font-family: var(--mincho);
}
.about-sec01__text{
    font-size: 20px;
    line-height: 2;
}
.about-sec02__flex-img{
    width: 100%;
    max-width: 550px;
}
.about-sec02__flex-box{
    width: 100%;
    max-width: calc(100% - 550px);
    padding-left: 110px;
}
.about-sec02__flex-box__text{
    font-size: var(--font-md-text);
    margin-bottom: 35px;
}
.about-sec02__flex-box__name small{
    display: inline-block;
    font-size: 15px;
    font-weight: 500;
    margin-right: 25px;
}
.about-sec03__flex-img{
    width: 100%;
    max-width: 440px;
    padding-top: var(--padding);
}
.about-sec03__flex-box{
    width: 100%;
    max-width: calc(100% - 440px);
    padding-left: 110px;
}
.about-sec03__flex-img__sticky{
    position: sticky;
    top: 100px;
}
.about-sec03__flex-box__table table{
    width: 100%;
}
.about-sec03__flex-box__table th,
.about-sec03__flex-box__table td{
    font-size: var(--font-md-text);
    padding: 35px 0;
    border-bottom: 1px solid #C4D5DC;
}
.about-sec03__flex-box__table th{
    width: 150px;
    padding-left: 25px;
    font-weight: bold;
}
.about-sec03__flex-box__table td{
    width: calc(100% - 150px);
    padding-left: 50px;
}
.about-sec03__flex-box__table td ul li{
    position: relative;
    padding-left: 25px;
    margin-bottom: 5px;
}
.about-sec03__flex-box__table td ul li:last-child{
    margin-bottom: 0;
}
.about-sec03__flex-box__table td ul li::before{
    content: "";
    position: absolute;
    top: 12px;
    left: 0;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: linear-gradient(#13b0f7 0%, #230fd1 100%);
}
.about-sec04__map iframe{
    width: 100%;
    height: 730px;
    vertical-align: bottom;
}


/* フォーム */
.wpcf7-not-valid-tip{
    font-size: 14px;
    font-weight: 500;
    margin-top: 10px;
}
.wpcf7 input[type="checkbox"],
.wpcf7 input[type="radio"]{
    appearance: auto;
    -webkit-appearance: auto;
}
.wpcf7-spinner{
    display: block;
    margin-top: 10px;
}

/* PRIVACY POLICY */
.privacy-sec__text{
    margin-bottom: 30px;
}
.privacy-sec .sin-ul>li{
    margin-bottom: 60px;
}
.privacy-sec .sin-ul>li span{
    font-weight: bold;
}
.privacy-sec .sec-ul{
    margin-top: 10px;
}
.privacy-sec .sec-ul>li{
    font-size: 14px;
    padding-left: 1em;
}
.privacy-sec .sec-ul>li::before{
    content: "・";
    margin-left: -1em;
}


/* CONTACT */
.contact-sec__text{
    margin-bottom: 30px;
    text-align: center;
}
.contact-sec__text a{
    color: #2A63D1;
    text-decoration: underline;
}
.form-wrap{
    z-index: 1;
}
.form-wrap table th p,
.form-wrap table td p{
    margin: 0;
}
.form-wrap table th .form-header{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.form-wrap span.must{
    font-size: 13px;
    color: var(--base-color);
    background-color: #fff;
    display: inline-block;
    padding: 0 5px;
    margin-left: 10px;
}
.form-wrap input[type="text"],
.form-wrap input[type="email"],
.form-wrap input[type="tel"],
.form-wrap input[type="number"],
.form-wrap textarea{
    -webkit-appearance: none;
    appearance: none;
    border: 1px solid #aaa;
    border-radius: 3px;
    width:100%;
    padding:12px;
    box-shadow: none;
}
.form-wrap select {
    border: 1px solid #aaa;
    border-radius: 3px;
    padding: 0 12px;
    height: 42px;
}
.form-wrap textarea{
    width: 100%;
    resize: none;
}
.submit_btn{
    margin-top: 50px;
    justify-content: center;
    display: flex;
    position: relative;
}
.submit_btn input{
    font-weight: bold;
    width: 285px;
    padding: 19px;
    text-align: center;
    transition: .3s;
    appearance: none;
    -webkit-appearance: none;
}
.submit_btn input:disabled{
    background: gray !important;
    pointer-events: none;
    border: 1px solid gray !important;
}
.submit_btn input[type="submit"]{
    color: #fff;
    background-color: var(--base-color);
    border: 1px solid var(--base-color);
}
.submit_btn input[type="submit"]:hover{
    opacity: 1;
    background-color: #fff;
    color: var(--base-color);
}
.submit_btn input[type="button"]{
    background-color: gray;
    border: none;
    box-shadow: none;
    appearance: none;
    -webkit-appearance: none;
}
.form-wrap div.wpcf7 .ajax-loader{
    position: absolute;
    transform: translateX(-50%);
    left: 50%;
    bottom: -30px;
}
.form-wrap div.wpcf7-response-output {
    margin: 3em 0.5em 1em;
}
.form-wrap .wpcf7-spinner{
	display:none;
}
.form-wrap table th,
.form-wrap table td{
    padding: 15px;
    border: 1px solid #ccc;
}
.form-wrap table th{
    font-weight: bold;
    background-color: var(--base-color);
    border-bottom: 1px solid #fff;
    color: #fff;
}
.form-wrap table{
    width: 100%;
    background-color: #fff;
    max-width: 1100px;
    margin:0 auto;
}
.form-wrap table th,
.form-wrap table td{
    padding: 15px;
}
.form-wrap table th{
    font-weight: bold;
    border-bottom: 1px solid #ccc;
    width:20em;
}
.form-wrap table td{
    border-bottom: 1px solid #ccc;
}