@charset "utf-8";

*, *:before, *:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    backface-visibility: hidden;
}

html{ margin: 0; padding: 0; }

body {
    font-family: "Noto Sans Japanese","Hiragino Kaku Gothic ProN","Hiragino Sans","Meiryo",sans-serif;
    color: #050B0F;
    font-size: 16px;
    line-height: 1.8;
    word-break: break-all;
    margin: 0;
    padding: 0;
    position: relative;
    background: #0085D3;
}
body::after{
    content: "";
    width: 100vw;
    height: 100%;
    background: url(../images/bg.png) repeat;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    z-index: 1;
    mix-blend-mode: overlay;
    opacity: 0.5;
}

div, p, ul, ul li, dl, dt, dd {
	margin: 0;
	padding: 0;
	font-size: 100%;
	list-style:none;
	box-sizing:border-box;
}
img, video, object {
    max-width: 100%;
    display: block;
    height: auto;
    border: none;
}
img{ image-rendering: -webkit-optimize-contrast; }

a:link { color:blue; text-decoration: none; transition:0.3s; }
a:hover { color:red;}
a:hover img{ opacity: 0.8; transition:0.3s; }
a[href^="tel:"] { text-decoration:none; pointer-events:none ; text-emphasis: none !important;}
a[href^="fax:"] { text-decoration:none; pointer-events:none ;}

.pc{display: inherit;}
.tb{display: none;}
.sm{display: none;}

@media only screen and (max-width:820px){
    .pc {display:none;}
    .tb {display:block;}
    .sm {display:none;}
}
@media only screen and (max-width:468px){
    body {font-size: 15px; min-width: 375px;}
    .pc {display:none;}
    .tb {display:none;}
    .sm {display:block;}
}


/* =========================================================================================
Header
=========================================================================================*/
#header {
    width:auto;
    height: auto;
    background:transparent;
    position: absolute;
    margin: 0;
    z-index: 100;
    top: 0;
}
#header .inner{
    position: relative;
    display: flex;
    align-items: center;
    justify-content:left;
    gap: 20px;
    padding:30px;
    height: 100%;
}
#header .logo{
    width: 100%;
    max-width: 110px;
    margin: 0 !important;
}
#header .logo img{
    display:block;
    width: 100%;
}

@media only screen and (max-width:820px){
    #header .inner{ padding:20px; }
    #header .logo{ max-width: 80px; }
}
@media only screen and (max-width:468px){
    #header .inner{ padding:10px; }
    #header .logo{ max-width: 40px; }
}


/* =========================================================================================
Layout
=========================================================================================*/
#wrapper{
    position: relative;
    max-width: 1000px;
    margin:0 auto;
    padding:0 30px;
    overflow: hidden;
    z-index: 10;
}
#container{
    background: #FFF;
    margin:0;
    padding:0;
}
section{
    padding-inline: 30px;
}
section + section{
    padding-top: 100px;
}
.inner {
    width: 100%;
    margin: 0 auto;
    position:relative;
    box-sizing:border-box;
}

@media only screen and (max-width:820px){
    #container{ padding:0 0 30px 0; }
    section + section { padding-top: 50px; }
}
@media only screen and (max-width:468px){
    section{ padding-left: 20px; padding-right: 20px; }
}

/*midashi*/
h1, h2, h3, h4, h5 ,h6{ line-height: 1.5; font-weight: bold; margin: 0 0 1.0em 0; padding: 0; }
* + h2, * + h3, * + h4, * + h5 ,* + h6 { margin-top: 1.0em; }
h1 { font-size: 2.25em; }
h2 { font-size: 2.0em; }
h3 { font-size: 1.5em; }
h4 { font-size: 1.5em; }
h5 { font-size: 1.25em; }
h6 { font-size: 1.0em; }

/*Hr*/
hr{ width: 100%; height: 1px; border: none; background-color: #000; margin: 1.5em auto; }

/*table*/
table { margin: 50px 0; width: 100%; border-spacing:0; }
caption { font-size: small; text-align: left; color: #808080; display: block; margin-bottom: 0.5em;}
th{ font-weight: bold; padding: 0.5em 1.0em; border-bottom: 1px solid #000; }
td{ padding: 1.0em; border-bottom: 1px solid #000; }
tr:first-child th , tr:first-child td { border-top: 2px solid #000; }
tr:last-child th , tr:last-child td{ border-bottom: 2px solid #000; }

@media only screen and (max-width:820px){
    th , td { display: block; }
    th { text-align: left; }
    tr:first-child td { border-top: none; }
    tr:last-child th { border-bottom: 1px solid #000; }

    table.scroll { display: block; overflow-x: scroll;}
    table.scroll tbody{ width: 1000px; display: block;}
    table.scroll th , table.scroll td { display:table-cell;}
    table.scroll th { text-align: center;}
    table.scroll tr:last-child th{ border-bottom: none; }
}
@media only screen and (max-width:468px){

}

/*list*/
ul.list , ol.list{ margin:1.0em 0 1.0em 1.5em; }
ul.list li { position: relative; }
ul.list li:before{ content: ""; position: absolute; background: #000; width: 7px; aspect-ratio: 1 / 1; border-radius: 50%; top: 0.75em; left: -1.0em; }

/*list-note*/
ul.note{ margin-left: 1.75em; list-style: none; }
ul.note.center{ width: fit-content; margin: auto; }
ul.note li{ text-indent: -1.5em;}
ul.note li:before{ content: "※"; position: static; background: none; margin-right: 0.5em; top: 0.2em; left: -1.0em; }

/*decoration*/
strong{ font-weight:bold;}



/* =========================================================================================
Home
=========================================================================================*/
/*MAIN VISUAL*/
.main-visual{
    position: relative;
    margin-bottom: 100px;
}
.main-visual .inner{
    display: grid;
    grid-template-columns: 12% 70% 8%;
    justify-content: space-between;
    gap: 5%;
    margin-top: -30px;
    padding-inline: 5%;
}
.main-visual .inner div{
    display: flex;
    align-items: center;
    justify-content: start;
    flex-direction: column;
    gap: 35px;
}
.main-visual .inner .left img{
    max-height: 455px;
}
.main-visual .inner .right img{
    max-height: 440px;
    max-width: 50%;
}
@media only screen and (max-width:820px){
    .main-visual{ margin-bottom: 75px; }
}
@media only screen and (max-width:468px){
    .main-visual{ margin-bottom: 50px; }
    .main-visual .inner{ margin-top: -15px; }
    .main-visual .inner div{ gap: 10px;}
}


/*LIST*/
.list .inner {
    display : grid ;
    grid-template-columns : repeat(2, 1fr) ;
    gap:7.5%;
}
.list .box {
    display: flex;
    align-items: start;
    justify-content: start;
    flex-direction: column;
    gap: 1.25em;
}
.list .box .btn{
    width: 100%;
    margin: 0 !important;
}
.list .box dl{
    position: relative;
    display: grid;
    grid-template-columns:fit-content(85%) 3.0em;
    align-items: center;
    justify-content: space-between;
    gap: 0;
    width: calc( 100% - 1.5em );
    font-size: 1.25em;
    font-weight: 900;
    margin-inline: auto 0;
}
.list .box dl::before{
    content: "";
    background: #000;
    width: 0.35em;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    position: absolute;
    top:0.65em;
    left: -1.0em;
}
.list .box dl::after{
    content: "";
    background: radial-gradient(circle farthest-side, #000, #000 30%, transparent 40%, transparent);
    background-size: 4px;
    height: 4px;
    width: 100%;
    position: absolute;
    top: 50%;
    left: 0%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    z-index: 1;
}
.list .box dl dt{
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    background: linear-gradient(90deg, #FFF 0%, #FFF 65%, transparent 65%, transparent 100%);
    gap: 0;
    line-height: 1.4;
    letter-spacing: -0.025em;
    padding-right: 0.5em;
    position: relative;
    z-index: 2;
}
.list .box dl dt *{
    background: #FFF;
}
.list .box dl dt *{
    padding-right: 8px;
}
.list .box dl dt.wrap{
    flex-direction: column;
    align-items: start;
    justify-content: baseline;
    gap: 0;
    padding-top: 0.35em;
}
.list .box dl dd{
    text-align: right;
    background: #FFF;
    position: relative;
    z-index: 2;
}
.list .box dl dd{
    display: flex;
    flex-wrap: nowrap;
    align-items: baseline;
    justify-content: right;
    gap: 2px;
    font-size: 1.375em;
    line-height: 1.0;
}
.list .box dl dd small{
    margin-bottom: 0.5em;
}
.list .box dl small{
    font-size: 0.8125rem;
    display: flex;
    align-items: center;
}

/*kobe*/
.list .box.kobe dl::before{ background: #2F78C0; }
.list .box.kobe dd{ color: #2F78C0; }

/*asahi*/
.list .box.asahi dl::before{ background: #E73A20; }
.list .box.asahi dd{ color: #E73A20; }

@media only screen and (max-width:820px){
    .list .inner{ display: flex; flex-direction: column; gap: 75px; max-width: 550px; margin-inline:auto;}
    .list .box .btn{ margin-bottom: 1.0em; }
}
@media only screen and (max-width:468px){
}


/*GOODS */
.goods h3{
    display : flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0 0.5em;
    text-align: center;
    line-height: 1.4;
}
.goods .ribbon{
    font-size: 0.8rem;
    width: fit-content;
    background: #FFB9D9;
    padding: 0.25em 25px;
    position: relative;
    overflow: hidden;
}
.goods .ribbon::before,
.goods .ribbon::after {
    content: "";
    background: #FFF;
    height: 2.0em;
    aspect-ratio: 1 / 1;
    position: absolute;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    -webkit-transform: translateY(-50%) rotate(45deg);
    -ms-transform: translateY(-50%) rotate(45deg);
    z-index: 2;
    pointer-events: none;
}
.goods .ribbon::before { left: -1.25em ; }
.goods .ribbon::after { right: -1.25em; }

.goods h3.column{
    flex-direction: column;
}
.goods h3 small{
    font-size: 0.9rem;
}
.goods strong{
    color: #FFF;
    font-size: 1.25em;
    line-height: 1.4;
    display: block;
    padding: 0.25em 0.25em;
    text-align: center;
    margin-bottom: 0.5em;
}
.goods strong.pink{ background: #FF4EA0; }
.goods strong.blue{ background: #2F78C1; }
.goods strong.red{ background: #E83820; }
.goods strong span { display: inline-block; }

.goods p{
    font-size: 0.85rem;
}
.goods small{
    font-size: 0.65rem;
    line-height: 1.4;
    display: block;
}
.goods p + small{
    margin-top: 0.25em;
}
.goods small.right{
    text-align: right;
    margin-top: 1.0em;
}

/*GOODS parent1 */
.goods .parent1 {
    display : grid ;
    grid-template-columns : repeat(2, calc( (100% - 50px) / 2 ) ) ;
    align-items: stretch;
    gap: 50px;
    margin-bottom: 30px;
}
.goods .parent1 .item{
    display: flex;
    flex-direction: column;
    align-items: stretch;
}
.goods .parent1 .item h3{
    flex-grow: 1;
}

/*GOODS parent2 */
.goods .parent2 {
    display : grid ;
    grid-template-columns : repeat(2, calc( (100% - 50px) / 2 ) ) ;
    align-items: center;
    gap: 50px;
    margin-bottom: 10px;
}
.goods .parent2 .item{
    display : flex;
    flex-direction: row;
    align-items: start;
    flex-wrap: wrap;
    gap: 0;
}
.goods .parent2 .item h3{
    margin-block: 0.5em;
}
.goods .parent2 .item .left,
.goods .parent2 .item .right{
    width: 50%;
}
.goods .parent2 .item .image{
    position: relative;
    z-index: 5;
}
.goods .parent2 .item .left .image img{
    width: calc( 100% + 40px );
    max-width: calc( 100% + 40px );
    margin-left: -20px ;
}
.goods .parent2 .item .right .image img{
    width: calc( 100% + 30px );
    max-width: calc( 100% + 30px );
    margin-top: 10px;
    margin-left: -30px ;
}
.goods .parent2 .item p{
    width: 100%;
}


/*GOODS parent3 */
.goods .parent3 {
    display : grid ;
    grid-template-columns : repeat(3, 1fr) ;
    gap: 30px;
}
.goods .parent3 h3{
    font-size: 1.3em;
    justify-content: left;
    margin-bottom: 0.375em;
}
.goods .parent3 h3 *{
    text-align: left;
}
.goods .parent3 > div{
    display: flex;
    flex-direction: column;
    align-items: stretch;
}
/*1*/
.goods .parent3 .item1 { grid-area: 1 / 1 / 2 / 3; }
    .goods .parent3 .item1{
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 10px;
    }
    .goods .parent3 .item1 h3{
        flex-direction: column;
        align-items: start;
    }
    .goods .parent3 .item1 .left{
        width: calc( 42% - 10px);
    }
    .goods .parent3 .item1 .right{
        width: 55%;
    }
/*2*/
.goods .parent3 .item2 { grid-area: 2 / 1 / 3 / 2; }
/*3*/
.goods .parent3 .item3 { grid-area: 2 / 2 / 3 / 3; }
    .goods .parent3 .item3 h3 small:last-child{
        width: 100%;
    }
    .goods .parent3 .item3 .image img{
        width: calc( 100% + 20px );
        max-width: calc( 100% + 20px );
        margin-left: -10px ;
    }
/*4*/
.goods .parent3 .item4 { grid-area: 1 / 3 / 3 / 4; }
    .goods .parent3 .item4 .image{
        margin-top: 3.5em;
    }

@media only screen and (max-width:820px){
    .goods .parent1,
    .goods .parent2,
    .goods .parent3{ display: flex; flex-direction: column; max-width: 550px; margin-inline: auto; gap: 60px;}
    .goods .parent1,
    .goods .parent2{ margin-bottom: 50px;}

    .goods .parent2 .item{ flex-direction: column; }
    .goods .parent2 .item strong span:last-child::before{ content: "/"; }
    .goods .parent2 .item .left,
    .goods .parent2 .item .right{ width: 100%; }
    .goods .parent2 .item .left .image img,
    .goods .parent2 .item .right .image img{ width: 100%; max-width: 100%; margin: 0 !important;}
    .goods .parent2 .item:nth-last-of-type(1) .left { order: 2; }
    .goods .parent2 .item:nth-last-of-type(1) .right { order: 1; }
    .goods .parent2 .item:nth-last-of-type(1) p{ order: 3; }

    .goods .parent3 .item1{ flex-direction: column-reverse; }
    .goods .parent3 .item1 .left,
    .goods .parent3 .item1 .right{ width: 100%; }
    .goods .parent3 .item3 h3 small:last-child{ width: fit-content; }
    .goods .parent3 .item4 .image{ margin-top: 0;}

    .goods small.right { max-width: 550px; margin-inline: auto; }
}
@media only screen and (max-width:468px){
    .goods small.right { text-align: left; }
}


/* =========================================================================================
Footer
=========================================================================================*/
#footer {
    background: #FFF;
    padding-inline: 30px;
}
#footer .inner {
    padding-block: 30px;
}
#footer .box {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: start;
    justify-content: left;
    gap: 20px;
}
#footer .box h4{
    font-size: 1.0rem;
    display: inline-block;
    padding: 0.25em 1.25em;
    color: #FFF;
    background-color: #0020A7;
    border-radius: 100px;
    margin-bottom: 0.5em;
}
#footer .box.apply{
    font-weight: bold;
}
#footer .box.apply .item:first-child{
    width: calc( 45% - 20px );
}
#footer .box.apply .item:last-child{
    width: 55%;
}

#footer .box.contact{
    font-size: 0.65rem;
    justify-content: left;
    gap: 0 20px;
}
#footer .box.contact .item:first-child{
    width: calc( 70% - 20px );
}
#footer .box.contact .item:first-child strong{
    line-height: 1.2;
    display: block;
}
#footer .box.contact .item:first-child b{
    font-size: 1.125rem;
    line-height: 1.2;
    display: inline-block;
}
#footer .box.contact .item:last-child{
    width: 30%;
}
#footer .box.contact .item:last-child b{
    font-size: 0.8rem;
    line-height: 1.2;
}

#footer .box small{
    font-size: 0.7rem;
    font-weight: normal;
    display: inline-block;
    line-height: 1.6;
}
@media only screen and (max-width:820px){
    #footer .box{ flex-direction: column; }
    #footer .box .item { width: 100% !important; }
}
@media only screen and (max-width:468px){
    #footer { padding-inline: 20px; }
}


/* =========================================================================================
Page Top
=========================================================================================*/
#page-top {
    position: fixed;
    z-index: 9999;
    bottom: 1.5%;
    right: 1.5%;
}
#page-top a {
    display: block;
    text-decoration: none;
    color: #FFF;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    line-height:1.0;
    font-weight: bold;
    background: #0085D3 url(../images/common/arrow_up.svg) no-repeat center;
    background-size: 1.5em;
    text-indent: -9999px;
}
#page-top a:hover{opacity: 0.7;}

@media only screen and (max-width:820px){
    
}
@media only screen and (max-width:468px){

}