@charset "UTF-8";
/* CSS Document */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Oswald:wght@400&family=Jost:wght@300;400;500&family=M+PLUS+1p:wght@400;500;600;900&family=Noto+Sans+JP:wght@400;500;600;800&family=Noto+Serif+JP:wght@500&display=swap');

* {
    margin: 0;
    padding: 0;
} 
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, 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%;
    vertical-align: baseline;
}
strong {
font-weight: bold;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
    display: block;
}
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;
}

*, *::before, *::after {
	box-sizing: border-box;
}

.clearfix:before, .clearfix:after{content:""; display:table;}
.clearfix:after{clear:both;}
.clearfix{zoom:1;}

/*base*/
html {
	font-size: 62.5%;
	position: relative;
	text-align: center;
	/*scroll-behavior: smooth;*/
}
body {
	background: #ffffff;
	text-align: center;
	color: #494949;
	font-size: 1.6rem;
	font-family: 'Noto Sans JP', sans-serif;
	line-height: 1.8;
	-webkit-text-size-adjust: none;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	font-weight: 400;
	position:relative;
	min-width: 140rem;
	overflow-x:hidden;
}

a {
	color: #333;
	text-decoration: none;
	-webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all  0.2s ease;
}

img {
	box-shadow: #fff 0 0 0;
	vertical-align:middle;
	max-width:100%;
}
a:hover {
	color: #00c6ff;
}
a img{
	-webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all  0.2s ease;
}

.fw_jost{ font-family: 'Jost', sans-serif;}
.fw_mplus{ font-family: 'M PLUS 1p', sans-serif;}
.fw_mincho{font-family: 'Noto Serif JP', serif;}

.container{
max-width:136rem;
margin:0 auto;
    position: relative;
}

#container{
    padding-top: 7em;
}

.flexbox{
    display: flex;
}

/*------------------------------------------------------------------------------------header*/
header{
    position: fixed;
    width: 100%;
    background-color: #fff;
    left: 0;
    top: 0;
    z-index: 99;
    padding: 0 12em 0 5em;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
header h1{
    width: 4em;
    padding:1em 0; 
}
header ul{
    display: flex;
}
header li{
    padding-left: 2em;
}

header li a {
    position: relative;
}

header li a::before,
header li a::after {
    position: absolute;
    width: 100%;
    height: 1px;
    background: currentColor;
    top: 100%;
    left: 0;
    pointer-events: none;
}


header li a::before {
    content: '';
    height: 10px;
    top: 100%;
    opacity: 0;
}

header li a:hover::before {
    opacity: 1;
    animation: lineUp 0.3s ease forwards;
}

@keyframes lineUp {
    0% {
        transform-origin: 50% 100%;
        transform: scale3d(1, 0.045, 1);
    }

    50% {
        transform-origin: 50% 100%;
        transform: scale3d(1, 1, 1);
    }

    51% {
        transform-origin: 50% 0%;
        transform: scale3d(1, 1, 1);
    }

    100% {
        transform-origin: 50% 0%;
        transform: scale3d(1, 0.045, 1);
    }
}

header li a::after {
    content: '';
    transition: opacity 0.3s;
    opacity: 0;
    transition-delay: 0s;
}

header li a:hover::after {
    opacity: 1;
    transition-delay: 0.3s;
}

/*------------------------------------------------------------------------------------footer*/
footer{
    padding: 8em 5em 0 5em;
}
.footer{
    justify-content: space-between;
}
.footer .addbox{
    text-align: left;
    padding-top: 1em;
    order: 1;
}
.footer .addbox .a_title{
    font-size: 2rem;
    font-weight: 600;
}
.footer .addbox .txt{
    padding: 1em 0 2em 0;
}
.footer .addbox .access img{
    width: 1.8em;
}
.footer .addbox a{
    color: #00c6ff;
}
.footer .addbox a:hover{
    text-decoration: underline;
}

.footer .contactbox{
    border: 1px solid #00c6ff;
    color: #00c6ff;
    padding: 2.5em 3em;
    text-align: left;
    order: 2;
}
.footer .contactbox .c_title span{
    font-family: 'Bebas Neue', sans-serif;
    font-size: 6rem;
    line-height: 1;
}
.footer .contactbox .txt{
    padding: 2em 0 1em 0;
}
.footer .contactbox .tel{
    font-family: 'Jost', sans-serif;
    font-size: 3.4rem;
    line-height: 1;
}
.footer .contactbox .tel span{
    font-size: 4rem;
}

.footmenu{
    padding: 5em 0 1em 0;
}
.footmenu li{
    font-size: 1.4rem;
    padding-right: 2em;
}
#copyright{
    background-color: #00c6ff;
    padding: 1em 5em;
}
#copyright p{
    color: #fff;
    text-align: left;
    font-size: 1.3rem;
}

/*------------------------------------------------------------------------------------drawer*/
#nav-overlay{}
#nav-overlay .navibox{
    padding-top: 10em;
}
#nav-overlay .navibox ul{
    
}
#nav-overlay .navibox li{
    border-bottom: 1px solid #cdcdcd;
}
#nav-overlay .navibox a{
    display: block;
    padding: 1em;
}


/*------------------------------------------------------------------------------------detail*/
#pankuzu{
    padding: 0 4em 2em 0;
}
.breadcrumb__list{
    display: flex;
    justify-content: flex-end;
}
.breadcrumb__item{
    font-size: 1.2rem;
}
.breadcrumb__item:after{
    content: ">";
    display: inline-block;
    margin: 0 1em;
}
.breadcrumb__item:last-child:after{
    content: "";
    display: none;
}

#detail_title{
    padding: 4em 0;
}
#detail_title .container{
    align-items: center;
}
#detail_title h2{
    font-size: 1.8rem;
    font-weight: 500;
    padding-right: 6em;
}
#detail_title h2 span{
    font-size: 6rem;
    font-weight: 400;
}
#detail_title .line{
    flex: 1;
    border-bottom: 1px solid #c1c8cd;
}
#detail_title ul{
    display: flex;
    justify-content: flex-end;
    padding: 0 1em 0.6em 0;
}
#detail_title li{
    margin-left: 2em;
}
#detail_title li a{
    display: block;
    background-image: url("../img/arrow.svg");
    background-repeat: no-repeat;
background-position: 0 80%;
    background-size: 1.5em auto;
    padding-left: 1.8em;
}
#detail_title li a:hover{
background-position: 0.3em 80%;
}


h2.lineh3{
    text-align: left;
    font-size: 2rem;
    margin-bottom: 3em;
}
h2.lineh3:after{
    content: "";
    display: inline-block;
    width: 5em;
    margin-left: 2em;
    border-bottom: 1px solid #c1c8cd;
    vertical-align: middle;
}

.linkbtn {
    cursor: pointer;
    position: relative;
    white-space: nowrap;
    color: var(--color-text);
    text-transform: uppercase;
    padding-bottom: 0.4em;
}

.linkbtn::before,
.linkbtn::after {
    position: absolute;
    width: 100%;
    height: 1px;
    background: currentColor;
    top: 100%;
    left: 0;
    pointer-events: none;
}

.linkbtn::before {
    content: '';
    height: 100%;
    top: 0;
    opacity: 0;
}

.linkbtn:hover::before {
    opacity: 1;
    animation: coverUp 0.3s ease forwards;
}

@keyframes coverUp {
    0% {
        transform-origin: 50% 100%;
        transform: scale3d(1, 0.045, 1);
    }

    50% {
        transform-origin: 50% 100%;
        transform: scale3d(1, 1, 1);
    }

    51% {
        transform-origin: 50% 0%;
        transform: scale3d(1, 1, 1);
    }

    100% {
        transform-origin: 50% 0%;
        transform: scale3d(1, 0.045, 1);
    }
}

.linkbtn::after {
    content: '';
    transition: opacity 0.3s;
}

.linkbtn:hover::after {
    opacity: 0;
}


@media screen and (min-width: 769px) and (max-width: 1486px) {
/*base*/
html {
	font-size: 0.7vw;
    overflow-x: hidden;
}
body {
	min-width: 100%;
	font-size:1.6rem;
    overflow-x: hidden;
}

.container{
max-width:100%;
padding:0 2.5em;
margin:0 auto;
}
/*------------------------------------------------------------------------------------header mini*/
header{
    padding: 0 10em 0 5em;
}
/*------------------------------------------------------------------------------------detail mini*/
    
    #pankuzu{
    padding: 0 2.5em 2em 0;
}
/*------------------------------------------------------------------------------------footer mini*/


}

@media only screen and (max-width: 768px) {


html{
	font-size:2.5vw;
    overflow-x: hidden;
	}

body {
	min-width: 100%;
    overflow-x: hidden;
}

.container{
max-width:100%;
padding:0 1.5em;
margin:0 auto;
}
/*------------------------------------------------------------------------------------header sp*/
header{
    left: 0;
    top: 0;
    padding: 0 1em;
    border-right: none;
}
header h1{
    padding: 0.5em 0;
    width: 3em;
}
#container{
    padding-top: 5em;
}

/*------------------------------------------------------------------------------------detail sp*/
#pankuzu{
    padding: 0 1.5em 1em 0;
}
.breadcrumb__list{
    display: block;
}
.breadcrumb__item{
    text-align: right;
    font-size: 1.2rem;
}
.breadcrumb__item:after{
    margin: 0 0 0 0.5em;
}
    
#detail_title{
    padding: 2em 0;
}
#detail_title .container{
    display: block;
    text-align: justify;
}
#detail_title h2{
    font-size: 1.6rem;
    padding-right: 0;
}
#detail_title h2 span{
    font-size: 4rem;
    font-weight: 600;
}
#detail_title .line{
}
#detail_title ul{
    padding: 0.5em 0 0.6em 0;
    flex-wrap: wrap;
}
#detail_title li{
    margin-left: 1em;
}
    
/*------------------------------------------------------------------------------------footer sp*/
footer{
    padding: 5em 1.5em 0 1.5em;
}
.footer{
    display: block;
}
.footer .addbox{
    padding: 2em 0;
}

.footer .contactbox{
    padding: 1.5em 1em;
}
.footer .contactbox .c_title span{
    font-size: 5rem;
}
.footer .contactbox .txt{
    padding: 1em 0 0.5em 0;
}
.footer .contactbox .tel{
    font-size: 2.4rem;
}
.footer .contactbox .tel span{
    font-size: 3.8rem;
}

#copyright{
    padding: 1em 1.5em;
}
#copyright p{
    text-align: center;
}
}