@charset "utf-8";

/* *****************************************************************************
=01 reset style
=02 option style
=03 common style
=04 layout style
***************************************************************************** */
/* */
/*---------- =01 reset style ----------*/
/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/

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, sub, sup, 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%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
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;
}
/*---------- //end reset style ----------*/

/*---------- =02 option style ----------*/
.tal{text-align:left!important;}
.tac{text-align:center!important;}
.tar{text-align:right!important;}
.mbNone{margin-bottom:0!important;}
.mbShort{margin-bottom:1em!important;}
.mbMiddle{margin-bottom:2em!important;}
.mbLong{margin-bottom:3em!important;}
.bold{font-weight:bold;}
.red{color:#d30a24;}
.cf{zoom:1;}
.cf:before,.cf:after{content:"";display:table;}
.cf:after{clear:both;}
/*---------- //end option style ----------*/

/*---------- =03 common style ----------*/
*{
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
}
html{
	font-size: 62.5%;
}
@font-face{
    font-family: "Yu Gothic";
    src: local("Yu Gothic Medium");
    font-weight: 400;
}
@font-face{
    font-family: "Yu Gothic";
    src: local("Yu Gothic Bold");
    font-weight: bold;
}
body{
    font-family: Helvetica,source-han-sans-japanese,"Yu Gothic","Yu Gothic Medium","游ゴシック Medium",YuGothic,"游ゴシック体",sans-serif;
    font-style: normal;
    font-weight: 500;
	line-height: 2;
	color: #101010;
	background-color: #ffffff;
	-webkit-text-size-adjust: 100%;
	font-size: 16px;
}
a{
	color: #101010;
	text-decoration: none;
}
a:hover,
a:active{
	text-decoration: none;
}
img,a img{
	vertical-align: bottom;
	border: none;
}
strong{
	font-weight: bold;
}
::selection{
	background-color: #101010;
	color: #ffffff;
}
::-moz-selection{
	background-color: #101010;
	color: #ffffff;
}
.title{
    font-family: ryo-gothic-plusn, sans-serif;
    font-style: normal;
    font-weight: 700;
}
.strong{
    font-family: ryo-gothic-plusn, sans-serif;
    font-style: normal;
    font-weight: 800;
}
.en{
    font-family: rift-soft, sans-serif;
    font-style: normal;
    font-weight: 700;
}
.en-02{
    font-family: basic-sans, sans-serif;
    font-style: normal;
    font-weight: 700;
}

@media print, screen and (max-width: 1000px){
    body.is-fixed{
        position: fixed;
        width: 100%;
        height: 100%;
    }
}

/*---------- //end common style ----------*/

/*---------- =04 layout style ----------*/
/*========================================
header layout
========================================*/
.header{
    background-color: #f2f2f2;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    height: 120px;
    padding-left: 60px;
    padding-right: 60px;
    width: 100%;
}

@media print, screen and (max-width: 1580px){
    .header{
        padding-left: 40px;
        padding-right: 40px;
    }
}

@media print, screen and (max-width: 1380px){
    .header{
        padding-left: 25px;
        padding-right: 25px;
    }
}

@media print, screen and (max-width: 1180px){
    .header{
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media print, screen and (max-width: 1000px){
    .header-area{
        margin-top: 56px;
    }
    .header-area-inner{
        margin-top: -56px;
        padding-top: 56px;
    }
    .header{
        height: 56px;
        position: fixed;
        top: 0;
        padding: 0 0 0 16px;
        z-index: 11;
        border-bottom: 1px solid #d9d9d9;
    }
}

/* logo */
.logo{
    line-height: 0;
    display: inline-block;
    height: 20px;
}
.logo a{
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.logo a:hover{
    opacity: 0.5;
}
.logo img{
    width: 236px;
}

@media print, screen and (max-width: 1280px){
    /* logo */
    .logo{
        width: 19.4%;
    }
    .logo img{
        width: 100%;
    }
}

@media print, screen and (max-width: 1000px){
    /* logo */
    .logo{
        width: 192px;
        height: 17px;
    }
    .logo a:hover{
        opacity: 1;
    }
}

@media print, screen and (max-width: 350px){
    /* logo */
    .logo{
        width: 51%;
    }
}

/* global-nav */
.global-nav ul{
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}
.global-nav li{
    height: 120px;
    display: inline-block;
    text-align: center;
    font-size: 16px;
    line-height: 16px;
    letter-spacing: 0.1em;
}
.global-nav li a{
    display: block;
    height: 120px;
    padding: 40px 30px 0;
    position: relative;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.global-nav li a:hover{
    color: #0072ab;
}
.global-nav li a::after{
    content: "";
    display: block;
    height: 1px;
    width: 100%;
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
    -webkit-transition-duration: .3s;
    transition-duration: .3s;
    -webkit-transition-timing-function: ease;
    transition-timing-function: ease;
    -webkit-transition-delay: 0;
    transition-delay: 0;
    background: #0072ab;
    position: absolute;
    left: 0;
    bottom: 0;
    -webkit-transform: scale(0, 1);
    transform: scale(0, 1);
    -webkit-transform-origin: right top;
    transform-origin: right top
}
.global-nav li a:hover::after{
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transform-origin: left top;
    transform-origin: left top;
    width: 100%;
}
.global-nav li span{
    display: block;
    font-family: basic-sans, sans-serif;
    font-style: normal;
    font-weight: 600;
    line-height: 11px;
    font-size: 11px;
    padding-top: 10px;
    letter-spacing: 0.06em;
}
.global-nav li.global-nav-on{
    background-color: #e8e8e8;
    border-bottom: 1px solid #0072ab;
}
.global-nav li.global-nav-on a::after{
    display: none;
}

@media print, screen and (max-width: 1480px){
    /* global-nav */
    .global-nav li a{
        padding-left: 25px;
        padding-right: 25px;
    }
}

@media print, screen and (max-width: 1380px){
    /* global-nav */
    .global-nav li a{
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media print, screen and (max-width: 1280px){
    /* global-nav */
    .global-nav li{
        font-size: 15px;
        line-height: 15px;
    }
}

@media print, screen and (max-width: 1180px){
    /* global-nav */
    .global-nav li{
        font-size: 14px;
        line-height: 14px;
    }
    .global-nav li a{
        padding-left: 15px;
        padding-right: 15px;
    }
    .global-nav li span{
        line-height: 10px;
        font-size: 10px;
        padding-top: 8px;
    }
}

@media print, screen and (max-width: 1080px){
    /* global-nav */
    .global-nav li a{
        padding-left: 13px;
        padding-right: 13px;
    }
}

@media print, screen and (max-width: 1000px){
    /* global-nav */
    .global-nav{
        display: none;
    }
}

/* header-contact */
.header-contact div:first-child{
    font-size: 30px;
    letter-spacing: 0.05em;
    line-height: 30px;
    padding-left: 35px;
    background: url(../images/icon_tel_01.png) left center no-repeat;
}
.header-contact div:last-child{
    font-size: 13px;
    line-height: 13px;
    padding-top: 4px;
    letter-spacing: 0.06em;
}

@media print, screen and (max-width: 1280px){
    /* header-contact */
    .header-contact div:first-child{
        padding-left: 34px;
        letter-spacing: 0;
    }
    .header-contact div:last-child{
        font-size: 12px;
        line-height: 12px;
        padding-top: 4px;
        letter-spacing: 0.06em;
    }
}

@media print, screen and (max-width: 1180px){
    /* header-contact */
    .header-contact div:first-child{
        font-size: 26px;
        line-height: 26px;
    }
    .header-contact div:last-child{
        font-size: 11px;
        line-height: 11px;
    }
}

@media print, screen and (max-width: 1000px){
    /* header-contact */
    .header-contact{
        display: none;
    }
}

/* header-sp */
.header-sp{
    display: none;
}

@media print, screen and (max-width: 1000px){
    /* header-sp */
    .header-sp{
        display: block;
        border-bottom: 1px solid #d9d9d9;
    }
}

/* header-contact-sp */
@media print, screen and (max-width: 1000px){
    .header-contact-sp{
        width: 56px;
        height: 56px;
    }
    .header-contact-sp{
        display: block;
        line-height: 0;
        text-align: center;
        border-left: 1px solid #d9d9d9;
        border-right: 1px solid #d9d9d9;
        float: left;
    }
    .header-contact-sp a{
        display: block;
        background-color: #ffffff;
        padding-top: 13px;
        height: 56px;
    }
    .header-contact-sp img{
        width: 26px;
        line-height: 0;
    }
    .header-contact-sp span{
        display: block;
        text-align: center;
        line-height: 13px;
        font-size: 13px;
        letter-spacing: 0.12em;
        padding-top: 2px;
    }
}

/* hamburger-button */
@media print, screen and (max-width: 1000px){
    .hamburger-button{
        display: block;
        width: 56px;
        height: 56px;
        background-color: #ffffff;
        float: right;
        cursor: pointer;
        position: relative;
    }
    .hamburger-button span{
        -webkit-transition: all 0.3s ease;
        transition: all 0.3s ease;
        background-color: #101010;
        display: block;
        height: 2px;
        position: absolute;
        width: 23px;
    }
    .hamburger-button span:nth-child(1){
        -webkit-transform: rotate(0);
        transform: rotate(0);
        -webkit-transform-origin: left top;
        transform-origin: left top;
        top: 20px;
        left: 17px;
    }
    .hamburger-button span:nth-child(2){
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        top: 27px;
        left: 17px;
    }
    .hamburger-button span:nth-child(3){
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        top: 34px;
        left: 17px;
    }
    .hamburger-button.is-open span:nth-child(1){
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
        top: 19px;
        left: 19px;
    }
    .hamburger-button.is-open span:nth-child(2){
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg);
        top: 35px;
        left: 19px;
    }
    .hamburger-button.is-open span:nth-child(3){
        display: none;
    }
}

/* hamburger-nav */
.hamburger-nav{
    display: none;
}

@media print, screen and (max-width: 1000px){
    /* hamburger-nav */
    .hamburger-nav{
        background-color: rgba(255,255,255,0.95);
        -webkit-transition-property: opacity, visibility, top;
        transition-property: opacity, visibility, top;
        -webkit-transition-duration: 0.6s;
        transition-duration: 0.6s;
        -webkit-transition-timing-function: cubic-bezier(0.64, 0.01, 0.39, 0.99);
        transition-timing-function: cubic-bezier(0.64, 0.01, 0.39, 0.99);
        -webkit-transition-delay: 0;
        transition-delay: 0;
        display: block;
        height: 100%;
        opacity: 0;
        overflow: auto;
        position: fixed;
        top: -100%;
        left: 0;
        visibility: hidden;
        width: 100%;
        -webkit-overflow-scrolling: touch;
        z-index: 10;
        padding: 56px 0 40px;
    }
    .hamburger-nav.is-open{
        display: block;
        opacity: 1;
        top: 0;
        visibility: visible;
    }
}

/* global-nav-sp */
@media print, screen and (max-width: 1000px){
    .global-nav-sp li{
        font-size: 15px;
        border-bottom: 1px solid #d9d9d9;
        line-height: 1.4;
        letter-spacing: 0.08em;
    }
    .global-nav-sp li a{
        padding: 18px 40px 18px 20px;
        display: block;
        background: url(../images/arrow_nav_01_sp.png) right 20px center no-repeat;
        background-size: 8px 13px;
    }
    .global-nav-sp li a span{
        padding-right: 22px;
        background: url(../images/icon_window.svg) right center no-repeat;
        background-size: 14px 10px;
    }
}

@media print, screen and (max-width: 380px){
    /* global-nav-sp */
    .global-nav-sp li.global-nav-short-sp{
        letter-spacing: 0;
    }
}

/*========================================
contents layout
========================================*/
/* hover-fade */
.hover-fade{
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.hover-fade:hover{
    opacity: 0.5;
}

@media print, screen and (max-width: 760px){
    /* hover-fade */
    .hover-fade:hover{
        opacity: 1;
    }
}

/* js-anchor */
@media print, screen and (max-width: 760px){
    .js-anchor{
        padding-top: 56px;
        margin-top: -56px;
    }
}

/* note */
.note{
    padding-left: 1em;
    text-indent: -1em;
}

/* main-title */
.main-title-area{
    background: #0780bd url(../images/img_main_bg.jpg) top center no-repeat;
    height: 320px;
    border-top: 1px solid #ffffff;
}
.main-title{
    margin: 0 auto;
    height: 320px;
    padding-bottom: 60px;
    background: url(../images/bg_white.png) center bottom no-repeat;
    background-size: 1240px 60px;
}
.main-title-inner{
    width: 1240px;
    height: 260px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}
.main-title-inner > div{
    position: absolute;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%,-50%);
    -webkit-transform : translate(-50%,-50%);
    transform : translate(-50%,-50%);
    text-align: center;
    color: #ffffff;
    width: 100%;
}
.main-title .title{
    font-size: 32px;
    letter-spacing: 0.28em;
    line-height: 32px;
    margin-bottom: 10px;
}
.main-title .en{
    font-size: 18px;
    letter-spacing: 0.18em;
    line-height: 18px;
}
.main-title ul{
    position: absolute;
    top: 15px;
    left: 60px;
    letter-spacing: -.4em;
}
.main-title li{
    display: inline-block;
    font-family: source-han-sans-japanese,"Yu Gothic","Yu Gothic Medium","游ゴシック Medium",YuGothic,"游ゴシック体",sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 13px;
    letter-spacing: 0.12em;
    padding-left: 15px;
    margin-left: 10px;
    background: url(../images/arrow_breadcrumb.png) left center no-repeat;
}
.main-title li:first-child{
    margin-left: 0;
    padding-left: 0;
    background-image: none;
}
.main-title li a{
    color: #ffffff;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.main-title li a:hover{
    opacity: 0.7;
}


@media print, screen and (max-width: 1377px){
    /* main-title */
    .main-title{
        margin: 0 60px;
    }
    .main-title-inner{
        width: 100%;
    }
}

@media print, screen and (max-width: 1240px){
    /* main-title */
    .main-title{
        margin: 0 40px;
    }
    .main-title ul{
        left: 40px;
    }
}

@media print, screen and (max-width: 1000px){
    /* main-title */
    .main-title{
        margin: 0 20px;
    }
    .main-title ul{
        left: 5px;
    }
}

@media print, screen and (max-width: 760px){
    /* main-title */
    .main-title-area{
        background: url(../images/img_main_bg_sp.jpg) top center no-repeat;
        height: auto;
        border-top: none;
        background-size: auto 130px;
    }
    .main-title{
        height: auto;
        padding-bottom: 0;
        background-image: none;
        margin: 0;
    }
    .main-title-inner{
        height: auto;
    }
    .main-title-inner > div{
        top: 45px;
        -ms-transform: translate(-50%,0);
        -webkit-transform : translate(-50%,0);
        transform : translate(-50%,0);
    }
    .main-title .title{
        font-size: 25px;
        letter-spacing: 0.24em;
        line-height: 25px;
        margin-bottom: 6px;
    }
    .main-title .en{
        font-size: 15px;
        line-height: 15px;
    }
    .main-title ul{
        position: static;
        padding: 133px 15px 3px;
        border-bottom: 1px solid #e0e0e0;
    }
    .main-title li{
        font-size: 12px;
        letter-spacing: 0.1em;
        padding-left: 16px;
        margin-left: 10px;
        background: url(../images/arrow_breadcrumb_sp.png) left 9px no-repeat;
        background-size: 6px 8px;
    }
    .main-title li:first-child{
        margin-left: 0;
        padding-left: 0;
        background-image: none;
    }
    .main-title li a{
        color: #101010;
    }
    .main-title li a:hover{
        opacity: 1;
    }
}

/* contents-block */
.contents-block{
    width: 1360px;
    margin: 0 auto 100px;
    padding: 0 120px;
}

@media print, screen and (max-width: 1377px){
    /* contents-block */
    .contents-block{
        width: 100%;
    }
}

@media print, screen and (max-width: 1240px){
    /* contents-block */
    .contents-block{
        margin-top: -20px;
        padding: 0 80px;
    }
}

@media print, screen and (max-width: 1000px){
    /* contents-block */
    .contents-block{
        margin-top: -40px;
        padding: 0 40px;
    }
}

@media print, screen and (max-width: 760px){
    /* contents-block */
    .contents-block{
        margin-top: 0;
        margin-bottom: 40px;
        padding: 20px 20px 0;
    }
}

/* intro-text */
.intro-text{
    width: 1360px;
    margin: 0 auto 80px;
    padding: 20px 120px 0;
}
.intro-text p{
    font-size: 17px;
    letter-spacing: 0.04em;
    line-height: 2;
    margin-bottom: 1.8em;
    text-align: center;
}
.intro-text p:last-child{
    margin-bottom: 0;
}

@media print, screen and (max-width: 1377px){
    /* intro-text */
    .intro-text{
        width: 100%;
    }
}

@media print, screen and (max-width: 1240px){
    /* intro-text */
    .intro-text{
        padding: 20px 80px 0;
    }
}

@media print, screen and (max-width: 1240px){
    /* intro-text */
    .intro-text p{
        line-height: 1.8;
    }
}

@media print, screen and (max-width: 760px){
    /* intro-text */
    .intro-text{
        margin-top: 0;
        margin-bottom: 30px;
        padding: 30px 20px 0;
    }
    .intro-text p{
        font-size: 14px;
        margin-bottom: 1.5em;
        text-align: left;
    }
}

/* category-title */
.category-title-area{
    text-align: center;
    margin-bottom: 60px;
}
.category-title{
    font-size: 28px;
    line-height: 28px;
    letter-spacing: 0.22em;
    background: url(../images/bg_gray_01.png) center bottom no-repeat;
    background-size: 36px 3px;
    padding-bottom: 16px;
    margin-bottom: 15px;
}
.category-title-area .en{
    color: #6b6b6b;
    font-size: 17px;
    line-height: 17px;
    letter-spacing: 0.1em;
}

@media print, screen and (max-width: 760px){
    /* category-title */
    .category-title-area{
        margin-bottom: 30px;
    }
    .category-title{
        font-size: 23px;
        line-height: 23px;
        letter-spacing: 0.2em;
        background: url(../images/bg_gray_01.png) center bottom no-repeat;
        background-size: 35px 3px;
    }
    .category-title-area .en{
        font-size: 16px;
        line-height: 16px;
    }
}

/* guideline-link */
.guideline-link{
    background: url(../images/guideline_link_bg.jpg) center center no-repeat;
    background-size: cover;
    padding: 60px 0;
}
.guideline-link-inner{
    width: 1120px;
    margin: 0 auto;
}
.guideline-link-title{
    color: #ffffff;
    font-family: ryo-gothic-plusn, sans-serif;
    font-style: normal;
    font-weight: 800;
    text-align: center;
    font-size: 26px;
    line-height: 1.6;
    letter-spacing: 0.12em;
    margin-bottom: 60px;
}
.guideline-link-main{
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    border-left: 1px solid #b2e5ff;
}
.guideline-link-main > div{
    border-right: 1px solid #b2e5ff;
    -webkit-flex-grow: 1;
    flex-grow: 1;
    text-align: center;
    color: #ffffff;
    padding: 20px 0;
}
.guideline-link-main > div div:first-child{
    font-size: 16px;
    letter-spacing: 0.1em;
    line-height: 1.5;
    margin-bottom: 20px;
}
.guideline-link-main > div h3{
    font-family: ryo-gothic-plusn, sans-serif;
    font-style: normal;
    font-weight: 800;
    font-size: 25px;
    line-height: 25px;
    letter-spacing: 0.12em;
    margin-bottom: 30px;
}
.guideline-link-button a{
    width: 150px;
    text-align: left;
    margin: 0 auto;
    line-height: 42px;
    padding: 2px 0 0 14px;
    display: block;
    color: #0f88c4;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    letter-spacing: 0.1em;
    font-size: 14px;
    background: #ffffff url(../images/arrow_button_04.png) right 15px center no-repeat;
}
.guideline-link-button a:hover{
    background: rgba(255,255,255,0.9) url(../images/arrow_button_04.png) right 12px center no-repeat;
}

@media print, screen and (max-width: 1377px){
    /* guideline-link */
    .guideline-link{
        padding: 60px 120px;
    }
    .guideline-link-inner{
        width: 100%;
    }
    .guideline-link-main > div div:first-child{
        font-size: 15px;
    }
    .guideline-link-main > div h3{
        font-size: 23px;
        line-height: 23px;
    }
}

@media print, screen and (max-width: 1240px){
    /* guideline-link */
    .guideline-link{
        padding: 60px 80px;
    }
}

@media print, screen and (max-width: 1000px){
    /* guideline-link */
    .guideline-link{
        padding: 60px 40px;
    }
    .guideline-link-main > div div:first-child{
        font-size: 14px;
    }
    .guideline-link-main > div h3{
        font-size: 21px;
        line-height: 21px;
        letter-spacing: 0.1em;
    }
}

@media print, screen and (max-width: 760px){
    /* guideline-link */
    .guideline-link{
        padding: 40px 20px;
        background: url(../images/guideline_link_bg_sp.jpg) left bottom no-repeat;
        background-size: cover;
    }
    .guideline-link-title{
        font-size: 17px;
        line-height: 1.5;
        margin-bottom: 30px;
    }
    .guideline-link-main{
        display: block;
        border-top: 1px solid #b2e5ff;
        border-left: none;
    }
    .guideline-link-main > div{
        display: block;
        border-right: none;
        border-bottom: 1px solid #b2e5ff;
        padding: 30px 0;
    }
    .guideline-link-main > div div:first-child{
        font-size: 13px;
        margin-bottom: 12px;
    }
    .guideline-link-main > div div:first-child br{
        display: none;
    }
    .guideline-link-main > div h3{
        font-size: 21px;
        letter-spacing: 0.1em;
        margin-bottom: 19px;
    }
    .guideline-link-button a,
    .guideline-link-button a:hover{
        width: 100px;
        line-height: 32px;
        padding: 2px 0 0 10px;
        -webkit-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
        letter-spacing: 0.08em;
        font-size: 12px;
        background: #ffffff url(../images/arrow_button_04_sp.png) right 10px center no-repeat;
        background-size: 5px 8px;
    }
}

/* support-link */
.support-link{
    background: url(../images/support_link_bg.jpg) center center no-repeat;
    background-size: cover;
    padding: 60px 0;
}
.support-link-inner{
    width: 660px;
    margin: 0 auto;
}
.support-link-title{
    text-align: center;
    font-family: ryo-gothic-plusn, sans-serif;
    font-style: normal;
    font-weight: 800;
    margin-bottom: 40px;
}
.support-link-title > div{
    background-color: #ffffff;
    display: inline-block;
    color: #0f89c5;
    line-height: 38px;
    padding: 4px 22px 0;
    letter-spacing: 0.1em;
    position: relative;
    margin-bottom: 27px;
}
.support-link-title > div:before{
    content: "";
    display: block;
    height: 0;
    width: 0;
    position: absolute;
    top: auto;
    right: 0;
    bottom: -22px;
    left: 0;
    border-top: 12px transparent solid;
    border-right: 7px transparent solid;
    border-bottom: 12px transparent solid;
    border-left: 7px transparent solid;
    border-top-color: #ffffff;
    margin: auto;
    z-index: 1;
}
.support-link-title h2{
    color: #ffffff;
}
.support-link-title h2 span{
    display: block;
}
.support-link-title h2 span:first-child{
    font-size: 20px;
    line-height: 20px;
    letter-spacing: 0.1em;
    margin-bottom: 12px;
}
.support-link-title h2 span:last-child{
    font-size: 36px;
    line-height: 36px;
    letter-spacing: 0.1em;
}
.support-link-main{
    background-color: #ffffff;
    padding: 40px;
}
.support-link-main p{
    color: #138cc8;
    text-align: center;
    font-family: ryo-gothic-plusn, sans-serif;
    font-style: normal;
    font-weight: 800;
    font-size: 18px;
    letter-spacing: 0.1em;
    line-height: 1.8;
    margin-bottom: 25px;
}
.support-link-break{
    display: none;
}
.support-link-button{
    text-align: center;
}
.support-link-button a{
    text-align: left;
    width: 210px;
    line-height: 60px;
    padding-left: 20px;
    display: inline-block;
    color: #ffffff;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    letter-spacing: 0.12em;
    font-size: 17px;
    background: #212121 url(../images/arrow_button_05.png) right 20px center no-repeat;
    font-family: basic-sans, sans-serif;
    font-style: normal;
    font-weight: 700;
}
.support-link-button a:hover{
    background: #0072ab url(../images/arrow_button_05.png) right 16px center no-repeat;
}

@media print, screen and (max-width: 760px){
    /* support-link */
    .support-link{
        background: url(../images/support_link_bg_sp.jpg) center center no-repeat;
        background-size: cover;
        padding: 40px 20px;
    }
    .support-link-inner{
        width: 100%;
    }
    .support-link-title{
        margin-bottom: 30px;
    }
    .support-link-title > div{
        line-height: 31px;
        padding: 4px 20px 0;
        margin-bottom: 27px;
        font-size: 14px;
    }
    .support-link-title > div:before{
        bottom: -21px;
    }
    .support-link-title h2 span:first-child{
        font-size: 16px;
        line-height: 16px;
        margin-bottom: 10px;
    }
    .support-link-title h2 span:last-child{
        font-size: 23px;
        line-height: 23px;
    }
    .support-link-main{
        padding: 30px 20px;
    }
    .support-link-main p{
        font-size: 15px;
        line-height: 1.7;
        margin-bottom: 20px;
    }
    .support-link-break{
        display: inline;
    }
    .support-link-button a,
    .support-link-button a:hover{
        width: 130px;
        line-height: 34px;
        padding-left: 12px;
        padding-top: 2px;
        letter-spacing: 0.14em;
        font-size: 12px;
        background: #212121 url(../images/arrow_button_05_sp.png) right 12px center no-repeat;
        background-size: 5px 8px;
    }
}

@media print, screen and (max-width: 360px){
    /* support-link */
    .support-link-title h2 span:last-child{
        font-size: 21px;
        line-height: 21px;
    }
}

/* basic-box */
.basic-box-inner{
    width: 1360px;
    margin: 0 auto 80px;
    padding: 0 120px;
}
.basic-text{
    margin-bottom: 60px;
}
.basic-text p{
    font-size: 17px;
    letter-spacing: 0.04em;
    line-height: 2;
    margin-bottom: 1.8em;
}

@media print, screen and (max-width: 1377px){
    /* basic-box */
    .basic-box-inner{
        width: 100%;
    }
}

@media print, screen and (max-width: 1240px){
    /* basic-box */
    .basic-box-inner{
        padding: 0 80px;
    }
}

@media print, screen and (max-width: 1000px){
    /* basic-box */
    .basic-box-inner{
        padding: 0 40px;
    }
}

@media print, screen and (max-width: 760px){
    /* basic-box */
    .basic-box-inner{
        margin-top: 0;
        margin-bottom: 40px;
        padding: 20px 20px 0;
    }
    .basic-text{
        margin-bottom: 30px;
    }
    .basic-text p{
        font-size: 14px;
        line-height: 1.8;
        margin-bottom: 1.5em;
    }
}

/* basic-section-box */
.basic-section-box{
    margin-top: 60px;
}

@media print, screen and (max-width: 760px){
    /* basic-section-box */
    .basic-section-box{
        margin-top: 40px;
    }
}

/* basic-heading */
.basic-heading{
    font-family: ryo-gothic-plusn, sans-serif;
    font-style: normal;
    font-weight: 800;
    font-size: 22px;
    line-height: 19px;
    background-color: #efefef;
    text-align: center;
    padding: 30px 20px;
    letter-spacing: 0.2em;
    margin-bottom: 35px;
}

@media print, screen and (max-width: 760px){
    /* basic-box */
    .basic-heading{
        font-size: 18px;
        padding: 20px 10px;
        margin-bottom: 20px;
    }
}

/* basic-heading-line */
.basic-heading-line{
    font-family: ryo-gothic-plusn, sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 1.8;
    letter-spacing: 0.12em;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid #d4d4d4;
    position: relative;
}
.basic-heading-line:before {
    content: '';
    width: 40px;
    height: 1px;
    background-color: #0a80bf;
    display: inline-block;
    position: absolute;
    left: 0;
    bottom: -1px;
}

@media print, screen and (max-width: 760px){
    /* basic-heading-line */
    .basic-heading-line{
        font-size: 18px;
        margin-bottom: 20px;
        padding-bottom: 12px;
        letter-spacing: 0.04em;
    }
    .basic-heading-line:before {
        width: 30px;
    }
}

/* basic-box-text */
.basic-box-text{
    font-size: 16px;
    line-height: 1.8;
}
.basic-box-text > p{
    margin-top: 1.5em;
}

@media print, screen and (max-width: 760px){
    /* basic-box-text */
    .basic-box-text{
        font-size: 15px;
    }
}

/* basic-list */
.basic-list > li:nth-child(1){
    margin-top: 0;
}
.basic-list > li{
    font-size: 16px;
    line-height: 1.8;
    position: relative;
    padding-left: 18px;
    margin-top: 0.5em;
}
.basic-list > li::before{
    content: "";
    position: absolute;
    top: 10px;
    left: 0;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #0a80bf;
}

@media screen and (max-width: 760px){
    /* heading-disc */
    .basic-list > li{
        font-size: 15px;
        padding-left: 15px;
    }
    .basic-list > li::before{
        width: 5px;
        height: 5px;
    }
}

/*========================================
footer layout
========================================*/
.footer{
    width: 100%;
    background-color: #f2f2f2;
}
.footer-inner{
    width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}
.page-top{
    border-bottom: 1px solid #dedede;
}
.page-top a{
    width: 64px;
    height: 64px;
    display: block;
    padding-top: 24px;
    margin: 0 auto;
}
.page-top a img{
    width: 26px;
    vertical-align: top;
    -webkit-transition-property: top;
    transition-property: top;
    -webkit-transition-duration: .3s;
    transition-duration: .3s;
    -webkit-transition-timing-function: ease;
    transition-timing-function: ease;
    -webkit-transition-delay: 0;
    transition-delay: 0;
    display: block;
    position: relative;
    top: 7px;
    left: 50%;
    -ms-transform: translate(-50%,-50%);
    -webkit-transform : translate(-50%,-50%);
    transform : translate(-50%,-50%);
}
.page-top a:hover img{
    top: 3px;
}
.footer-contents{
    padding: 50px 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: row-reverse;
    flex-direction: row-reverse;
}
.footer-nav{
    width: 680px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}
.footer-nav div div{
    font-size: 15px;
}
.footer-nav a{
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.footer-nav a:hover{
    color: #0072ab;
}
.footer-nav-space{
    margin-bottom: 25px;
}
.footer-nav ul{
    padding-left: 10px;
}
.footer-nav li{
    font-size: 13px;
}
.footer-nav .footer-accordion-item-sp{
  display: none;
}
.icon-window{
    padding-right: 23px;
    background: url(../images/icon_window.svg) right center no-repeat;
    background-size: 14px 10px;
}
.footer-nav a:hover .icon-window{
    background: url(../images/icon_window_on.svg) right center no-repeat;
    background-size: 14px 10px;
}
.footer-information{
    width: 400px;
    margin-right: 40px;
}
.footer-information > div:first-child{
    height: 20px;
    margin-bottom: 28px;
}
.footer-information > div:first-child img{
    width: 236px;
}
.footer-information > div:nth-child(2){
    font-size: 14px;
    letter-spacing: 0.1em;
    line-height: 1.8;
    margin-bottom: 40px;
}
.footer-banner > div{
    margin-bottom: 10px;
    width: 256px;
}
.footer-banner > div:last-child{
    margin-bottom: 0;
}
.footer-banner > div > a > img{
    width: 100%;
}

@media print, screen and (max-width: 1217px){
    .footer-inner{
        width: 100%;
    }
}

@media print, screen and (max-width: 1000px){
    .footer-contents{
        display: block;
    }
    .footer-nav{
        width: 100%;
        margin-bottom: 50px;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        -webkit-justify-content: center;
        justify-content: center;
    }
    .footer-nav > div:nth-child(1){
        margin-right: 80px;
    }
    .footer-nav > div:nth-child(3){
        margin-left: 80px;
    }
    .footer-information{
        width: 100%;
        margin-right: 0;
        text-align: center;
    }
    .footer-banner > div{
        margin-left: auto;
        margin-right: auto;
    }
}

@media print, screen and (max-width: 760px){
    .footer-inner{
        padding: 0 20px;
    }
    .page-top a{
        width: 54px;
        height: 54px;
        padding-top: 21px;
    }
    .page-top a:hover img{
        top: 7px;
    }
    .footer-contents{
        padding: 0 0 30px;
    }
    .footer-nav{
        margin-bottom: 20px;
        display: block;
    }
    .footer-nav > div:nth-child(1){
        margin-right: 0;
    }
    .footer-nav > div:nth-child(3){
        margin-left: 0;
    }
    .footer-nav div div{
        font-size: 13px;
        border-bottom: 1px solid #d4d4d4;
    }
    .footer-nav a{
        display: block;
    }
    .footer-nav a:hover{
        color: #101010;
    }
    .footer-nav div div a{
        padding: 14px 0 12px 5px;
        background: url(../images/arrow_nav_01_sp.png) right 10px center no-repeat;
        background-size: 8px 13px;
    }
    .footer-nav div div.footer-accordion a{
        background-image: none;
        position: relative;
    }
    .footer-nav div div.footer-accordion a::before,
    .footer-nav div div.footer-accordion a::after{
        -webkit-transition-property: background-color, -webkit-transform;
        transition-property: background-color, -webkit-transform;
        transition-property: background-color, transform;
        transition-property: background-color, transform, -webkit-transform;
        -webkit-transition-duration: 0.3s;
        transition-duration: 0.3s;
        -webkit-transition-timing-function: ease;
        transition-timing-function: ease;
        -webkit-transition-delay: 0;
        transition-delay: 0;
        background-color: #101010;
        content: '';
        position: absolute;
        -webkit-transform-origin: center center;
        transform-origin: center center;
    }
    .footer-nav div div.footer-accordion a::before{
        height: 14px;
        width: 2px;
        top: 20px;
        right: 14px;
        z-index: 1;
    }
    .footer-nav div div.footer-accordion a::after{
        height: 2px;
        width: 14px;
        top: 26px;
        right: 8px;
    }
    .footer-nav div div.footer-accordion.is-open a::before{
        -webkit-transform: rotate(90deg);
        transform: rotate(90deg);
    }
    .footer-nav-space{
        margin-bottom: 0;
    }
    .footer-nav ul{
        padding: 18px;
        background-color: #fafafa;
        border-bottom: 1px solid #d4d4d4;
        display: none;
    }
    .footer-nav li{
        font-size: 12px;
        padding: 2px 0;
    }
    .footer-nav li a{
        display: inline;
    }
    .footer-nav .footer-accordion-item-sp{
        display: block;
    }
    .icon-window,
    .footer-nav a:hover .icon-window{
        padding-right: 23px;
        background: url(../images/icon_window.svg) right center no-repeat;
        background-size: 14px 10px;
    }
    .footer-information > div:first-child{
        height: 20px;
        margin-bottom: 25px;
    }
    .footer-information > div:first-child img{
        width: 209px;
    }
    .footer-information > div:nth-child(2){
        font-size: 13px;
        letter-spacing: 0.08em;
        margin-bottom: 20px;
    }
    .footer-banner > div{
        width: 100%;
        height: 61px;
    }
    .footer-banner > div > a{
        background-color: #ffffff;
        display: block;
    }
    .footer-banner > div.aichi-sdgs-partners > a{
        width: 240px;
        margin-left: auto;
        margin-right: auto;
    }
    .footer-banner > div > a > img{
        width: auto;
        height: 61px;
    }
    .footer-banner > div.aichi-sdgs-partners > a > img{
        width: 100%;
        height: auto;
    }
}

/* copyright */
.copyright{
    background-color: #dedede;
    text-align: center;
    font-size: 13px;
    letter-spacing: 0.08em;
    padding: 18px 10px;
}

@media print, screen and (max-width: 760px){
    /* copyright */
    .copyright{
        font-size: 11px;
        letter-spacing: 0.06em;
        padding: 15px;
    }
}
