@charset "UTF-8";

/*---------------リセット------------------*/
body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,code,form,fieldset,legend,input,textarea,p,blockquote,th,td{
	margin:0; padding:0;
}
table{border-collapse:collapse;border-spacing:0}
fieldset,img,video{border:0;vertical-align: bottom;}
address,caption,cite,code,dfn,em,strong,th,var{font-style:normal;font-weight:normal}
ol,ul{list-style:none;}
caption,th{text-align:left}
h1,h2,h3,h4,h5,h6{font-size:100%;font-weight:normal}
q:before,q:after{content:''}
abbr,acronym{border:0;font-variant:normal}
sup{vertical-align:text-top}
sub{vertical-align:text-bottom}
input,textarea,select{font-family:inherit;font-size:inherit;font-weight:inherit}
input,textarea,select{font-size:100%}legend{color:#000}
html, body, form, fieldset, p, div, h1, h2, h3, h4, h5, h6 { -webkit-text-size-adjust:none;}

/*-----------------ベース-----------------*/
html, body { height:100%;}
@import url('https://fonts.googleapis.com/css?family=Noto+Serif+JP&display=swap');
@font-face {
    font-family: "YakuHanJP";
    font-style: normal;
    font-weight: normal;
    font-display: swap;
    src: url("../font/YakuHanJP-Regular.woff2") format("woff2"), url("../font/YakuHanJP-Regular.woff") format("woff")
}

@font-face {
    font-family: "YakuHanJP";
    font-style: normal;
    font-weight: bold;
    font-display: swap;
    src: url("../font/YakuHanJP-Bold.woff2") format("woff2"), url("../font/YakuHanJP-Bold.woff") format("woff")
}
body {
    color: #000;
    font-family: "YakuHanJP", "cholla-wide", 'Noto Sans JP', 游ゴシック体, 'Yu Gothic', YuGothic, 'ヒラギノ角ゴシック Pro', 'Hiragino Kaku Gothic Pro', メイリオ, Meiryo, Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
    /*font-family: 'Hiragino Mincho Pro', 'ヒラギノ明朝 Pro', 'Noto Serif JP', HGS明朝E, '游明朝 Medium', 'Hiragino Mincho ProN', 'ヒラギノ明朝 ProN', "ＭＳ 明朝", "MS Mincho", serif;*/
    font-size: 16px;
    font-weight: 500;
    line-height: 1.8;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
@media screen and (max-width: 920px) {
    body{ font-size: 1.6vw;}
}
@media screen and (max-width: 740px) {
    body{ font-size: 2.2vw;}
}
@media screen and (max-width: 580px) {
    body{ font-size: 2.8vw;}
}
@media screen and (max-width: 480px) {
    body{ font-size: 3.6vw;}
}

img{
    width: 100%;
    height: auto;
    vertical-align: bottom;
    border: none;
}
a{
    text-decoration: none;
    color: inherit;
}

.clears { clear: both;}
.clearfix:after {
	content: ".";
	display: block;
	clear: both;
	height: 0;
	visibility: hidden;
}

.bold{ font-weight: bold;}
.narrow{ letter-spacing: -0.05em;}
.display_flex{ display: flex; flex-wrap: wrap;}
.display_inline-block{ display: inline-block;}
.attention{ font-size: 80%;}
.display-sp,
.display-1020{ display: none;}
@media screen and (max-width: 1020px) {
    .display-1020{ display: block;}
}
@media screen and (max-width: 740px) {
    .display-pc{ display: none;}
    .display-sp{ display: block;}
    .display-1020{ display: none;}
}

.fade_out{
    opacity: 0.0;
    -webkit-transition: all 0.5s;
    -ms-transition: all 0.5s;
    transition: all 0.5s;
}
.fade_in{
    opacity: 1.0;
    -ms-transition: all 0.5s;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}
/*------------------------------------------------
　　　　ヘッダー
------------------------------------------------*/
.header{
    width: 100%;
	position: fixed;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
    padding: 12px 1.5vw;
    box-sizing: border-box;
    z-index: 9999;
}
.header__logo{
    background: url(../img/logo.svg) no-repeat 0 0;
    width: 270px;
    height: 52px;
    background-size: contain;
    overflow: hidden;
    text-indent: 100%;
    white-space: nowrap;
    margin-top: 0.3em;
}
.header__list{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    padding-top: 0.6em;
}
.header__item{
    margin: 0 1.4vw;
    line-height: 1em;
    font-weight: bold;
}
.header__item__link{
    display: block;
    position: relative;
    font-size: 160%;
    text-align: center;
}
.header__item__link span{ font-size: 50%;}
@media screen and (min-width: 740px) {
    .header__item__link::before {
      content: '';
      width: 100%;
      height: 0.12em;
      position: absolute;
      left: 0;
      bottom: -0.15em;
      margin: auto;
      transform-origin: right top;
      transform: scale(0, 1);
      transition: transform 300ms;
      background: rgb(255,138,0);
      background: -moz-linear-gradient(-45deg,  rgba(255,138,0,1) 0%, rgba(133,0,128,1) 50%, rgba(46,0,163,1) 100%);
      background: -webkit-gradient(linear, left top, right bottom, color-stop(0%,rgba(255,138,0,1)), color-stop(50%,rgba(133,0,128,1)), color-stop(100%,rgba(46,0,163,1)));
      background: -webkit-linear-gradient(-45deg,  rgba(255,138,0,1) 0%,rgba(133,0,128,1) 50%,rgba(46,0,163,1) 100%);
      background: -o-linear-gradient(-45deg,  rgba(255,138,0,1) 0%,rgba(133,0,128,1) 50%,rgba(46,0,163,1) 100%);
      background: -ms-linear-gradient(-45deg,  rgba(255,138,0,1) 0%,rgba(133,0,128,1) 50%,rgba(46,0,163,1) 100%);
      background: linear-gradient(135deg,  rgba(255,138,0,1) 0%,rgba(133,0,128,1) 50%,rgba(46,0,163,1) 100%);
      filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ff8a00', endColorstr='#2e00a3',GradientType=1 );
    }
    .header__item__link:hover::before {
      transform-origin: left top;
      transform: scale(1, 1);
    }
}

.header__sp-btn{
    display: none;
    width: 60px;
    height: 60px;
    box-sizing: border-box;
    position: absolute;
    top: 6px;
    right: 0;
    cursor: pointer;
}
.header__sp-btn span{
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 34px;
    height: 4px;
    background-color: #000;
    border-radius: 2px;
    transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
	-moz-transform: rotate(0deg);
	-ms-transform: rotate(0deg);
    transition: all 300ms ease-out;
}
.header__sp-btn span:nth-of-type(1){ top: 16px;}
.header__sp-btn span:nth-of-type(2){ top: 28px;}
.header__sp-btn span:nth-of-type(3){ top: 40px;}
.header__sp-btn.on span:nth-of-type(1){
    transform: rotate(225deg) translate3d(-9px, -8px, 0);
    -webkit-transform: rotate(225deg) translate3d(-9px, -8px, 0);
	-moz-transform: rotate(225deg) translate3d(-9px, -8px, 0);
	-ms-transform: rotate(225deg) translate3d(-9px, -8px, 0);
    -webkit-transform-origin: center center;
    -moz-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
    transition: all 300ms ease-out;
}
.header__sp-btn.on span:nth-of-type(3){
    transform: rotate(-225deg) translate3d(-8px, 8px, 0);
    -webkit-transform: rotate(-225deg) translate3d(-8px, 8px, 0);
	-moz-transform: rotate(-225deg) translate3d(-8px, 8px, 0);
	-ms-transform: rotate(-225deg) translate3d(-8px, 8px, 0);
    -webkit-transform-origin: center center;
    -moz-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
    transition: all 300ms ease-out;
}
.header__sp-btn.on span:nth-of-type(2){
    opacity: 0.0;
}

@media screen and (max-width: 800px) {
    .header__logo{
        width: 370px;
        height: 55px;
    }
}
@media screen and (max-width: 740px) {
    .header__logo{
        margin-top: 0;
    }
    .header__nav{
        position: fixed;
        top: 90px;
        left: 0;
        background-color: rgba(255,255,255,0.9);
        width: 100%;
        height: 100vh;
        transform: translate3d(100%, 0, 0);
        -webkit-transform: translate3d(100%, 0, 0);
        -moz-transform: translate3d(100%, 0, 0);
        -ms-transform: translate3d(100%, 0, 0);
        transition: all 200ms ease-out;
    }
    .header__nav.on{
        transform: translate3d(0, 0, 0);
        -webkit-transform: translate3d(0, 0, 0);
        -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
        transition: all 200ms ease-out;
    }
    .header__list{
        display: block;
        padding: 2em;
    }
    .header__item{
        border-bottom: solid 0.1em #555;
        line-height: 3.6em;
    }
    .header__item__link{ position: relative; text-align: left;}
    .header__item__link::before{
        content: "";
        display: block;
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 0.3em 0 0.3em 0.4em;
        border-color: transparent transparent transparent #000;
        position:absolute;
        top: 50%;
        right: 0.8em;
        margin-top: -0.3em;
    }
    .header__item__link span{ margin-left: 1em;}
    .header__sp-btn{
        display: block;
    }
}
@media screen and (max-width: 480px) {
    .header__logo{
        margin-top: 0;
        width: 268px;
        height: 40px;
    }
    .header__sp-btn{
        top: 3px;
        width: 54px;
        height: 50px;
    }
    .header__sp-btn span{ width: 30px;}
    .header__sp-btn span:nth-of-type(1){ top: 14px;}
    .header__sp-btn span:nth-of-type(2){ top: 24px;}
    .header__sp-btn span:nth-of-type(3){ top: 34px;}
    .header__sp-btn.on span:nth-of-type(1){
        transform: rotate(225deg) translate3d(-7px, -6px, 0);
        -webkit-transform: rotate(225deg) translate3d(-7px, -6px, 0);
        -moz-transform: rotate(225deg) translate3d(-7px, -6px, 0);
        -ms-transform: rotate(225deg) translate3d(-7px, -6px, 0);
    }
    .header__sp-btn.on span:nth-of-type(3){
        transform: rotate(-225deg) translate3d(-7px, 7px, 0);
        -webkit-transform: rotate(-225deg) translate3d(-7px, 7px, 0);
        -moz-transform: rotate(-225deg) translate3d(-7px, 7px, 0);
        -ms-transform: rotate(-225deg) translate3d(-7px, 7px, 0);
    }
}
@media screen and (max-width: 340px) {
    .header__logo{
        width: 228px;
        height: 36px;
    }
    .header__sp-btn{
        width: 46px;
        height: 46px;
    }
    .header__sp-btn span{ width: 26px;}
    .header__sp-btn span:nth-of-type(1){ top: 12px;}
    .header__sp-btn span:nth-of-type(2){ top: 22px;}
    .header__sp-btn span:nth-of-type(3){ top: 32px;}
    .header__sp-btn.on span:nth-of-type(3){
        transform: rotate(-225deg) translate3d(-8px, 7px, 0);
        -webkit-transform: rotate(-225deg) translate3d(-8px, 7px, 0);
        -moz-transform: rotate(-225deg) translate3d(-8px, 7px, 0);
        -ms-transform: rotate(-225deg) translate3d(-8px, 7px, 0);
    }
}

/*------------------------------------------------
　　　　コンテンツエリア
------------------------------------------------*/
.contents-all{
    position: relative;
    z-index: 5555;
    overflow: hidden;
}
.section--l{
    width: 100%;
    position: relative;
}
.section--l.color{
  overflow: hidden;
  clip-path: inset(0);
}
.section--l.color::after{
  content: "";
  display: block;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-repeat: repeat;
  background-position: center center;
  background-size: cover;
  z-index: -1;
  opacity: 0.7;
}
.webp .section--l.color::after{
  background-image: url("../photo/bg1.webp");
}
.no-webp .section--l.color::after{
  background-image: url("../photo/bg1.jpg");
}
.section--m800,
.section--m1000,
.section--m1200,
.section--m1600{
    width: 90%;
    margin: 0 auto;
    padding: 2.6em 0 4.6em;
}
@media screen and (min-width: 900px) {
    .section--m800{ width: 800px;}
}
@media screen and (min-width: 1100px) {
    .section--m1000{ width: 1000px;}
}
@media screen and (min-width: 1300px) {
    .section--m1200{ width: 1200px;}
}
@media screen and (min-width: 1700px) {
    .section--m1600{ width: 1600px;}
}

.h2Wrap{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 4em;
}
.h2Wrap::before,
.h2Wrap::after{
    content: "";
    display: block;
    width: calc( 50% - 10em);
    height: 1em;
    background: url("../img/h2_line.svg") repeat-x left center;
    background-size: contain;
    margin-top: -1em;
}
.h2Wrap::before{
    transform: rotate(180deg);
}
h2{
    font-size: 340%;
    text-align: center;
    line-height: 0.5;
}
.h2__sub{
    font-size: 36%;
    font-weight: bold;
}
.h4Wrap{
    /* border: 2px solid #ff8a00;
    border-image: linear-gradient(to right, rgba(255,138,0,1) 0%,rgba(133,0,128,1) 50%,rgba(46,0,163,1) 100%) 2; */
    background: rgb(255,138,0);
    background: -moz-linear-gradient(-45deg,  rgba(255,138,0,1) 0%, rgba(133,0,128,1) 50%, rgba(46,0,163,1) 100%);
    background: -webkit-gradient(linear, left top, right bottom, color-stop(0%,rgba(255,138,0,1)), color-stop(50%,rgba(133,0,128,1)), color-stop(100%,rgba(46,0,163,1)));
    background: -webkit-linear-gradient(-45deg,  rgba(255,138,0,1) 0%,rgba(133,0,128,1) 50%,rgba(46,0,163,1) 100%);
    background: -o-linear-gradient(-45deg,  rgba(255,138,0,1) 0%,rgba(133,0,128,1) 50%,rgba(46,0,163,1) 100%);
    background: -ms-linear-gradient(-45deg,  rgba(255,138,0,1) 0%,rgba(133,0,128,1) 50%,rgba(46,0,163,1) 100%);
    background: linear-gradient(135deg,  rgba(255,138,0,1) 0%,rgba(133,0,128,1) 50%,rgba(46,0,163,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ff8a00', endColorstr='#2e00a3',GradientType=1 );
    display: inline-block;
    padding: 2px 0 2px 2px;
    position: relative;
    margin-bottom: 0.8em;
}
.h4Wrap::before{
    content: "";
    display: block;
    width: 0px;
	height: 0px;
	border-style: solid;
	border-width: 0 0 1.8em 1.7em;
	border-color: transparent transparent transparent rgba(46,0,163,1);
    position: absolute;
    top: 0;
    right: -1.68em;
}
.h4Wrap::after{
    content: "";
    display: block;
    width: 0px;
	height: 0px;
	border-style: solid;
	border-width: 0 0 1.5em 1.42em;
	border-color: transparent transparent transparent #fff;
    position: absolute;
    top: 2px;
    right: -1.39em;
}
h4{
    font-size: 110%;
    line-height: 1.0;
    font-weight: bold;
    padding: 0.2em 0.1em 0.2em 0.3em;
    display: flex;
    align-items: center;
    background-color: #fff;
    font-family: "YakuHanJP", 'Noto Sans JP', 游ゴシック体, 'Yu Gothic', YuGothic, 'ヒラギノ角ゴシック Pro', 'Hiragino Kaku Gothic Pro', メイリオ, Meiryo, Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
}
.color .h4Wrap::after{ border-color: transparent transparent transparent #eeeefb;}
.color h4{ background-color: #eeeefb;}
/* h4::after{
    content: "";
    display: block;
    width: 0px;
	height: 0px;
	border-style: solid;
	border-width: 0 0 1.4em 1em;
	border-color: transparent transparent transparent #000;
} */
@media screen and (max-width: 740px) {
    .h2Wrap::before,
    .h2Wrap::after{ background-size: cover;}
}
@media screen and (max-width: 480px) {
    h2{ font-size: 270%;}
    .h2Wrap::before,
    .h2Wrap::after{ width: calc( 50% - 7em); height: 0.6em;}
}

.button--link{
    display: block;
    width: 60%;
    margin: 0 auto;
    background-color: #4636bd;
    line-height: 1.2;
    padding: 1.0em;
    color: #fff;
    font-size: 110%;
    font-weight: bold;
    text-align: center;
    position: relative;
    transition: all 200ms ease-out;
    border: solid 0.2em #4636bd; 
    border-radius: 5em;
}
.button--link::after{
    content: "";
    display: block;
    background: url("../img/arrow_wh.svg") no-repeat center center;
    width: 1em;
    height: 1em;
    background-size: contain;
    position: absolute;
    top: 50%;
    right: 3%;
    margin-top: -0.5em;
}
@media screen and (min-width: 740px) {
    .button--link:hover{
        background-color: #fff;
        color: #4636bd;
    }
    .button--link:hover::after{
        background: url("../img/arrow_bk.svg") no-repeat center center;
        background-size: contain;
    }
}
@media screen and (max-width: 740px) {
    .button--link{ width: 80%;}
}

/*------------------------------------------------
　　　　フッター
------------------------------------------------*/
.footer{
    border-top: solid 0.1em #ccc;
    padding: 1em;
}
.footer__copyright{
    text-align: center;
    font-size: 94%;
}