@charset "utf-8";

/* ---------------------------------------------------------------------------------------------------*/
/* rest css */
/* ---------------------------------------------------------------------------------------------------*/
html,body,div,span,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,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,output,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,figcaption,figure,footer,header,menu,nav,section,main,summary,time,mark,audio,video,embed{
    outline: 0;
    margin: 0;
    padding: 0;
    border: 0;
    font: inherit;
    vertical-align: baseline;
    background: transparent;
}
article,aside,canvas,details,figcaption,figure,footer,header,menu,nav,section,main,summary,address{
    display: block;
}
h1,h2,h3,h4,h5,h6,strong,em,b,i{
    font-style: normal;
    font-weight: bold;
}
div,p,li,span,i,u{
    word-wrap: break-word;
    word-break: normal;
    overflow-wrap: break-word;
}
ol,ul{
    list-style: none;
}
li{
    list-style: inherit;
}
blockquote,q{
    quotes: none;
}
blockquote:before,blockquote:after,q:before,q:after{
    content: "";
    content: none;
}
a, a:hover{
    color: #333;
}
img{
    vertical-align: bottom;
}
table{
    border-spacing: 0;
    border-collapse: separate;
    word-break: break-all;
    empty-cells: show;
}
caption,th{
    text-align: left;
}
input,button,textarea,select{
    margin: 0;
    font: inherit;
}
input,textarea{
    padding: 0;
}
*{
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
}
html>*{
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

/* ---------------------------------------------------------------------------------------------------*/
/* base style */
/* ---------------------------------------------------------------------------------------------------*/
body{
    margin: 0;
    width: 100%;
    font-family: -apple-system, BlinkMacSystemFont, Montserrat, Avenir,"Helvetica Neue", "Yu Gothic", YuGothic, "\30D2\30E9\30AE\30CE\89D2\30B4 ProN W3", Hiragino Kaku Gothic ProN, Arial, "\30E1\30A4\30EA\30AA", Meiryo, sans-serif;
    font-weight: 500;
    word-break: break-all;
    display: flex;
    min-height: 100vh;
    flex-direction: column;
    display: none;
}
body::before{
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: #8bd140;
    position: fixed;
    z-index:9999;
    transform: scale(0, 1);
    animation: start-in .4s ease 0s forwards alternate, start-out .4s ease .4s forwards alternate;
}
body::after{
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9998;
    background:#FFF;
    transform: scale(0, 1);
    animation: start-bg .4s 0s forwards;
}
/* ローディングアニメーション */
@keyframes start-bg {
  0%,
  99% {
    transform: scale(1, 1);
  } 100% {
    transform: scale(0, 1);
  }
}
@keyframes start-in {
  0% {
    transform-origin: left top;
    transform: scale(0, 1);
  } 100% {
    transform-origin: left top;
    transform: scale(1, 1);
  }
}
@keyframes start-out {
  0% {
    transform-origin: right top;
    transform: scale(1, 1);
  } 100% {
    transform-origin: right top;
    transform: scale(0, 1);
  }
}

html,body,#wrap{
    height: 100%;
}
h1, h2, h3, h4, table, tr, th, td, ul, ol, dl, li, dd, dt{
    line-height: 1.6em;
    color: #333;
}
p{
    line-height: 1.8em;
    color: #333;
}
#wrap{
    display: flex;
    flex-direction: column;
}
#contents{
    flex: 1;
}
.inner{
    margin: 0 auto;
    width: 100%;
    max-width: 1220px;
    display: flex;
}
.inner.column{
    flex-direction: column;
}
.pc_hide{
    display: none;
}
.sp_hide{
    display: block;
}
a{
    transition: all 0.3s ease-out;
    text-underline-offset: .3em;
}
.mark_notice{
    font-size: 12px;
}
.border_slash{
    margin: 120px auto 0;
    width: 90%;
    height: 16px;
    background: url(../images/bg_slash.png);
}

/* ---------------------------------------------------------------------------------------------------*/
/* header */
/* ---------------------------------------------------------------------------------------------------*/
header{
    position: relative;
    z-index: 999;
    width: 100%;
    height: 114px;
    border-bottom: 1px solid #DDD;
    display: flex;
}
header h1{
    margin-left: 5%;
    width: 35%;
    display: flex;
    align-items: center;
}
header h1 a{
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: -0.03em;
}
header h1 img{
    margin-right: 10px;
    height: 34px;
    width: auto;
}
header nav {
    margin-left: auto;
    margin-right: 5%;
}
header nav ul{
    margin-right: -20px;
    display: flex;
}
header nav li{
    height: 114px;
}
header nav li a{
    padding: 0 20px;
    color: #333;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    line-height: 114px;
    display: block;
    position: relative;
}
header nav li a::after{
    content: '';
    display: block;
    width: calc(100% - 40px);
    height: 2px;
    background: #8bd140;
    opacity: 0;
    top: calc(50% + 7px);
    pointer-events: none;
    position: absolute;
    transition: all 0.3s ease-out;
}
header nav li a:hover::after,
header nav li a.hover::after{
    opacity: 1;
    top: calc(50% + 17px);
}
.gnav_burger {
    display: none;
}

/* ---------------------------------------------------------------------------------------------------*/
#sec_title{
    display: flex;
    height: 260px;
    position: relative;
}
#sec_title::after {
    content: "";
    display: block;
    width: 90%;
    height: 16px;
    background: url(../images/bg_slash.png);
    position: absolute;
    left: 5%;
    bottom: -16px;
}
#sec_title h1{
    margin-left: 5%;
    width: 25%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-size: 32px;
    background: #FFF;
}
#sec_title h1 span{
    font-size: 18px;
}
#sec_title .title_image{
    flex-shrink: 0;
    width: 70%;
}
#sec_title .title_image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ---------------------------------------------------------------------------------------------------*/
/* footer */
/* ---------------------------------------------------------------------------------------------------*/
footer{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #333;
}
footer .pagetop{
    display: block;
    cursor: pointer;
    width: 100%;
    height: 48px;
    background: #999;
    position: relative;
}
footer .pagetop:hover,
footer .pagetop.hover{
    background: #8bd140;
}
footer .pagetop span{
    position: absolute;
    top: 22px;
    right: 0;
    left: 0;
    margin: auto;
    width: 12px;
    height: 12px;
    border-top: 3px solid #fff;
    border-right: 3px solid #fff;
    transform: rotate(-45deg);
    transition: all 0.3s ease-out;
}
footer .pagetop:hover > span{
    top: 19px;
}
footer p.logo{
    margin: 48px 0 0;
    width: 180px;
    position: relative;
}
footer p.logo::after{
    content: "";
    display: block;
    width: 180px;
    height: 33.797px;
    position: absolute;
    top: 0;
    left: 0;
    background: url(../images/i-mobile_logo-w.svg) 0 0 no-repeat;
    opacity: 0;
    transition: all 0.3s ease-out;
    pointer-events: none;
}
footer p.logo:hover::after,
footer p.logo.hover::after{
    opacity: 1;
}
footer p.logo a:hover,
footer p.logo a.hover{
    opacity: 0;
}
footer ul{
    padding: 40px 0;
}
footer ul li{
    display: inline-block;
    margin: 0 16px 0 0;
    font-size: 14px;
}
footer ul li a{
    color: #fff;
    text-decoration: none;
}
footer ul li a:hover,
footer ul li a.hover{
    color: #999;
}
footer ul li:after{
    content: "|";
    margin: 0 0 0 16px;
    color: #fff;
}
footer ul li:last-child:after{
    content: "";
    margin: 0;
}
footer .copy{
    width: 100%;
    font-size: 12px;
    text-align: center;
    line-height: 60px;
    color: #aaa;
    background: #121212;
}