@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Noto+Sans+JP:wght@100..900&display=swap');

/* *****************************************************************************
=01 reset style
=02 option style
=03 common style
=04 layout style
***************************************************************************** */
/*---------- =02 option style ----------*/
.tal{text-align:left!important;}
.tac{text-align:center!important;}
.tar{text-align:right!important;}
.mtNone{margin-top:0!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:#;}
.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;
	box-sizing: border-box;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
}
html{
	font-size: 62.5%;
    -webkit-text-size-adjust: 100%;
}
body{
    color: #222222;
    font-size: 1.6rem;
    line-height: 2;
    font-family: "Inter", "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    background-color: #f8f8f8;
    font-feature-settings: "palt";
}
a{
    color: #222222;
	text-decoration: none;
}
a:hover,
a:active{
	text-decoration: none;
}
img{
    height: auto;
	display: block;
}
img,a img{
	vertical-align: bottom;
}
b,
strong,
.bold{
}
::selection{
	background-color: #222222;
	color: #ffffff;
}
::-moz-selection {
	background-color: #222222;
	color: #ffffff;
}
.en{
	font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
}

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

/*---------- =04 layout style ----------*/
/*========================================
header layout
========================================*/
/* site-header */
.site-header{
	height: 190px;	
	padding-left: 4rem;
	padding-right: 4rem;
    background-color: #f1f2f6;
}
.site-header.-no-color{
    background-color: transparent;
}
.site-header > .-inner{
	height: 190px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	max-width: 1280px;
	margin-left: auto;
	margin-right: auto;
}

@media print, screen and (max-width: 1160px){
    /* site-header */
    .site-header{	
	    padding-left: 2.5rem;
    	padding-right: 2.5rem;
    }
}

@media print, screen and (max-width: 1000px){
	/* site-header */
    .site-header{
        height: 120px;
	    padding-left: 2rem;
	    padding-right: 2rem;
    }
    .site-header > .-inner{
        height: 120px;
    }
}

@media print, screen and (max-width: 760px){
	/* site-header */
    .site-header{
	    height: 100px;	
    }
    .site-header > .-inner{
	    height: 100px;	
    }
}

/* site-name */
.site-name{
    width: 286px;
}
.site-name > a{
	-webkit-transition: all 0.2s ease;
    transition: all 0.2s ease; 
    display: flex;
    justify-content: space-between;
	align-items: center;
}
.site-name > a:hover{
    opacity: 0.75;
}
.site-name > a > .-mark{
	width: 80px;
}
.site-name > a > .-name{
	width: 175px;
}
.site-name > a > .-mark > img,
.site-name > a > .-name > img{
    width: 100%;
}

@media print, screen and (max-width: 1160px){
    /* site-name */
    .site-name{
        width: 275px;
    }
}

@media print, screen and (max-width: 1000px){
    /* site-name */
    .site-name{
        width: 286px;
    }
}

@media print, screen and (max-width: 760px){
    /* site-name */
    .site-name{
        width: 240px;
    }
    .site-name > a > .-mark{
        width: 68px;
    }
    .site-name > a > .-name{
        width: 146px;
    }
}

/* header-primary */
.header-primary{
	display: flex;
    align-items: center;
}

/* header-nav */
.header-nav > .-main{
	letter-spacing: -.4em;
    text-align: left;
}
.header-nav > .-main > .-item{
	font-size: 1.6rem;
	line-height: 1;
	white-space: nowrap;
    letter-spacing: normal;
    font-weight: 900;
    display: inline-block;
    padding-left: 3.5rem;
}
.header-nav > .-main > .-item:nth-child(1){
    padding-left: 0;
}
.header-nav > .-main > .-item > a{
	color: #1d2c6b;
	-webkit-transition: all 0.2s ease;
    transition: all 0.2s ease; 
}
.header-nav > .-main > .-item > a:hover{
    opacity: 0.75;
}

@media print, screen and (max-width: 1160px){
    /* header-nav */
    .header-nav > .-main > .-item{
        padding-left: 2.5rem;
    }
}

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

/* header-button */
.header-button{
    margin-left: 4rem;
}
.header-button > a{
    background-color: #1d2c6b;
	border: 2px solid #1d2c6b;
    color: #ffffff;
    width: 200px;
    line-height: 48px;
	border-radius: 25px;
    display: inline-block;
	font-weight: 900;
    font-size: 1.4rem;
    text-align: center;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
.header-button > a:hover{
	color: #1d2c6b;
	background-color: #ffffff;
}

@media print, screen and (max-width: 1160px){
    /* header-button */
    .header-button{
        margin-left: 2.5rem;
    }
    .header-button > a{
        width: 160px;
    }
}

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

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

@media screen and (max-width: 1000px){
    /* hamburger-button */
    .hamburger-button{
        display: block;
        position: absolute;
        width: 66px;
        height: 66px;
        cursor: pointer;
        top: 2.7rem;
        right: 2rem;
        background-color: #1d2c6b;
        z-index: 11;
        border-radius: 50%;
    }
    .fixed .hamburger-button{
        position: fixed;        
    }
    .hamburger-button span{
        -webkit-transition: all 0.2s ease;
        transition: all 0.2s ease;
        background-color: #ffffff;
        display: block;
        height: 2px;
        position: absolute;
        width: 22px;
    }
    .hamburger-button span:nth-child(1){
        -webkit-transform: rotate(0);
        transform: rotate(0);
        -webkit-transform-origin: left top;
        transform-origin: left top;
        top: 25px;
        left: 22px;
    }
    .hamburger-button span:nth-child(2){
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        top: 32px;
        left: 22px;
    }
    .hamburger-button span:nth-child(3){
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        top: 39px;
        left: 22px;
    }
    .hamburger-button.is-open span{
        width: 25px;
    }
    .hamburger-button.is-open span:nth-child(1){
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
        top: 24px;
        left: 25px;
    }
    .hamburger-button.is-open span:nth-child(2){
        display: none;
    }
    .hamburger-button.is-open span:nth-child(3){
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg);
        top: 24px;
        left: 18px;
    }
}

@media screen and (max-width: 760px){
    /* hamburger-button */
    .hamburger-button{
        width: 60px;
        height: 60px;
        top: 2rem;
    }
    .hamburger-button span:nth-child(1){
        top: 22px;
        left: 19px;
    }
    .hamburger-button span:nth-child(2){
        top: 29px;
        left: 19px;
    }
    .hamburger-button span:nth-child(3){
        top: 36px;
        left: 19px;
    }
    .hamburger-button.is-open span:nth-child(1){
        top: 21px;
        left: 22px;
    }
    .hamburger-button.is-open span:nth-child(3){
        top: 21px;
        left: 15px;
    }
}

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

@media screen and (max-width: 1000px){
    /* hamburger-nav */
    .hamburger-nav{
        background: #ffffff;
        display: block;
        height: 100%;
        opacity: 0;
        overflow: auto;
        padding-top: 12rem;
        position: fixed;
        top: 0;
        left: 0;
        -webkit-transition: all 0.2s ease;
        transition: all 0.2s ease;
        visibility: hidden;
        width: 100%;
        -webkit-overflow-scrolling: touch;
        z-index: 10;
    }
    .hamburger-nav.is-show{
        opacity: 1;
        top: 0;
        visibility: visible;
    }
    .hamburger-nav-main{
        margin-top: 3.5rem;
    }
    .hamburger-nav-main > li{
        margin-left: 6rem;
        margin-right: 6rem;
        border-bottom: 1px solid #e6e6e6;
        font-size: 2.1rem;
        line-height: 1;
        font-weight: 900;
    }
    .hamburger-nav-main > li > a{
        background: url(/assets/images/arrow-link-circle-blue.svg) right 2rem center no-repeat;
        background-size: 28px auto;
        display: block;
        padding: 3.5rem 1rem;
        -webkit-transition: all 0.2s ease;
        transition: all 0.2s ease;
        color: #1d2c6b;
    }
    .hamburger-nav-main > li > a:hover{
        opacity: 0.75;
    }
}

@media screen and (max-width: 760px){
    /* hamburger-nav */
    .hamburger-nav{
        padding-top: 10rem;
    }
    .hamburger-nav-main{
        margin-top: 2rem;
    }
    .hamburger-nav-main > li{
        margin-left: 4rem;
        margin-right: 4rem;
        font-size: 1.9rem;
    }
    .hamburger-nav-main > li > a{
        background: url(/assets/images/arrow-link-circle-blue.svg) right 2rem center no-repeat;
        background-size: 24px auto;
        padding-top: 3rem;
        padding-bottom: 3rem;
	}
}

/* header-button-sp */
.header-button-sp{
    margin-top: 6rem;
    padding-inline: 6rem;
}
.header-button-sp > a{
    display: inline-block;
    width: 100%;
    line-height: 76px;
    color: #ffffff;
    background-color: #1d2c6b;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
    font-size: 2rem;
    text-align: center;
    white-space: nowrap;
    border-radius: 4rem;
    font-weight: 900;
    border: 2px solid #1d2c6b;
}
.header-button-sp > a:hover{
    color: #1d2c6b;
    background-color: #ffffff;
}

@media screen and (max-width: 760px){
    /* header-button-sp */
    .header-button-sp{
        margin-top: 4.5rem;
        padding-inline: 4rem;
    }
    .header-button-sp > a{
        line-height: 70px;
        border-radius: 3.7rem;
    }
}

/*========================================
contents layout
========================================*/
/* note */
.note{
    margin-left: 1em;
    display: block;
}
.note::before{
  content: '※';
  margin-left: -1em;
}

/* basic-button */
.basic-button > a{
    background-color: #1d2c6b;
    color: #ffffff;
    font-size: 1.4rem;
    line-height: 4.4rem;
    display: inline-block;
    border-radius: 2.4rem;
    padding-left: 3.5rem;
    padding-right: 3.5rem;
    border: 2px solid #1d2c6b;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
.basic-button > a:hover{
    background-color: #ffffff;
    color: #1d2c6b;
}
.basic-button > a > .-pdf{
    background: url(/assets/images/icon-pdf-white.svg) right center no-repeat;
    background-size: 19px auto;
    display: inline-block;
    padding-right: 3.2rem;
}
.basic-button > a:hover > .-pdf{
    background: url(/assets/images/icon-pdf-blue.svg) right center no-repeat;
    background-size: 19px auto;
}

/* page-title */
.page-title{
    background-color: #f1f2f6;
    padding-left: 6rem;
    padding-right: 6rem;
    overflow-x: hidden;
}
.page-title > .-inner{
    padding-top: 12rem;
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}
.page-title > .-inner::after{
    content: "";
    width: 545px;
    height: 258px;
    position: absolute;
    top: 0;
    left: 509px;
    z-index: 2;
    background: url(/assets/images/illust-page-title.svg) center center no-repeat;
    background-size: contain;
}
.page-title-bg::after{
  background: url(../images/home/hero_background.svg) center center no-repeat;
  background-size: contain;
  content: '';
  height: 13.06vw;
  position: absolute;
  bottom: 0;
  left: calc(-50vw + 50%);
  width: 100vw;
  z-index: 2;
}

@media screen and (max-width: 1000px){
    /* page-title */
    .page-title{
        padding-left: 4rem;
        padding-right: 4rem;
    }
    .page-title > .-inner{
        padding-top: 9rem;
    }
    .page-title > .-inner::after{
        top: 20px;
        left: auto;
        right: -60px;
    }
}

@media screen and (max-width: 760px){
    /* page-title */
    .page-title{
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

@media screen and (max-width: 580px){
    /* page-title */
    .page-title > .-inner::after{
        top: 0;
        width: 446px;
        height: 300px;
        background: url(/assets/images/illust-page-title-sp.svg) center center no-repeat;
        background-size: contain;
    }
}

/* page-title-primary */
.page-title-primary{
    display: flex;
    align-items: flex-end;
    position: relative;
    z-index: 3;
    padding-bottom: 21rem;
}
.page-title-primary > .-en{
    font-size: 6rem;
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 800;
    font-style: normal;
    line-height: 1;
    white-space: nowrap;
    color: #1d2c6b;
    padding-right: 3.6rem;
}
.page-title-primary > .-main{
    color: #1d2c6b;
    font-weight: 900;
    line-height: 1;
    font-size: 2.1rem;
    white-space: nowrap;
    padding-bottom: 0.7rem;
}

@media screen and (max-width: 1000px){
    /* page-title-primary */
    .page-title-primary{
        display: block;
        padding-bottom: 18rem;
    }
    .page-title-primary > .-en{
        margin-bottom: 1.5rem;
    }
    .page-title-primary > .-main{
        padding-bottom: 0;
    }
}

@media screen and (max-width: 1000px){
    /* page-title-primary */
    .page-title-primary{
        padding-bottom: 16rem;
    }
}

/* contents */
.contents{
    padding-top: 8rem;
    padding-bottom: 9rem;
}

@media screen and (max-width: 1000px){
    /* contents */
    .contents{
        padding-top: 6rem;
        padding-bottom: 5rem;
    }
}

@media screen and (max-width: 760px){
    /* contents */
    .contents{
        padding-top: 5rem;
        padding-bottom: 4rem;
    }
}

/* basic-box */
.basic-box{
    padding-left: 6rem;
    padding-right: 6rem;
    margin-bottom: 10rem;
}
.basic-box > .-inner{
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
}
.basic-box.-middle > .-inner{
    max-width: 790px;
}
.basic-box.-small > .-inner{
    max-width: 620px;
}

@media screen and (max-width: 1000px){
    /* basic-box */
    .basic-box{
        padding-left: 4rem;
        padding-right: 4rem;
    }
}

@media screen and (max-width: 760px){
    /* basic-box */
    .basic-box{
        margin-bottom: 8rem;
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

/* basic-heading */
.basic-heading{
    font-size: 2.4rem;
    font-weight: 700;
    text-align: center;
    line-height: 1.5;
    color: #1d2c6b;
    margin-bottom: 4rem;
}
.basic-heading > span{
    background: linear-gradient(transparent 75%,#f7931e 75%);
    padding-bottom: 0;
}

@media screen and (max-width: 760px){
    /* basic-heading */
    .basic-heading{
        font-size: 2.3rem;
        margin-bottom: 3.5rem;
    }
}

/* simple-title */
.simple-title{
    margin-top: 3rem;
    font-size: 1.4rem;
    line-height: 1.6429;
    font-weight: 400;
}

/* simple-text */
.simple-text{
    font-size: 1.6rem;
    line-height: 2;
}
.simple-text.-center{
    text-align: center;
}

/* note-list */
.note-list{
    margin-top: 3rem;
}
.note-list > .-item{
    margin-left: 1em;
    display: block;
    font-size: 1.4rem;
    line-height: 1.6429;
    font-weight: 400;
}
.note-list > .-item::before{
  content: '※';
  margin-left: -1em;
}

/* simple-list */
.simple-list{
    margin-top: 3rem;
}
.simple-list > .-item{
    margin-left: 1em;
    display: block;
    font-size: 1.4rem;
    line-height: 1.6429;
    font-weight: 400;
}
.simple-list > .-item::before{
  content: '※';
  margin-left: -1em;
}


/* table-wrap */
.table-wrap{
    overflow-x: auto;
}

/* table-data */
.table-data{
    width: 100%;
    margin-top: 3rem;
}
.table-width-400{
    min-width: 400px;
}
.table-width-500{
    min-width: 500px;
}
.table-width-600{
    min-width: 600px;
}
.table-width-700{
    min-width: 700px;
}
.table-data > thead > tr > th{
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    padding-bottom: 1.5rem;
    font-size: 1.6rem;
    line-height: 1.75;
    color: #f7931e;
    font-weight: 500;
    border-bottom: 1px solid #c8ccdc;
}
.table-data > thead > tr > th:nth-child(1){
    padding-left: 0;
}
.table-data > thead > tr > th:last-child{
    padding-right: 0;
}
.table-data > tbody > tr > th,
.table-data > tbody > tr > td{
    border-bottom: 1px solid #c8ccdc;    
}
.table-data > tbody > tr > th{
    padding-top: 1.5rem;
    padding-right: 1.5rem;
    padding-bottom: 1.5rem;
    font-size: 1.6rem;
    line-height: 1.75;
    color: #1d2c6b;
    font-weight: 700;
}
.table-data > tbody > tr > td{
    padding: 1.5rem;
    font-size: 1.6rem;
    line-height: 1.75;
}
.table-data > tbody > tr > td:last-child{
    padding-right: 0;
}
.table-data > tbody > tr > th > .-thin{
    font-weight: 500;
}
.table-data > tbody > tr > th > .-small,
.table-data > tbody > tr > td > .-small{
    font-size: 1.4rem;
}

@media screen and (max-width: 760px){
    /* table-data */
    .table-data{
        margin-top: 2.5rem;
    }
}

/* table-data-middle */
.table-data-middle > tbody > tr > th,
.table-data-middle > tbody > tr > td{
    vertical-align: middle;
}

/* table-parts */
.table-parts{
    display: table;
    border-collapse: collapse;
}
.table-parts > .-row{
    display: table-row;
}
.table-parts > .-row > .-cell{
    display: table-cell;
    padding-left: 1em;
}
.table-parts > .-row > .-cell:nth-child(1){
    padding-left: 0;
}

/* reserve-box */
.reserve-box{
    background-color: #1d2c6b;
    padding: 10rem 6rem;
}
.reserve-box > .-inner{
    max-width: 1060px;
    margin-left: auto;
    margin-right: auto;
}

@media screen and (max-width: 1000px){
    /* reserve-box */
    .reserve-box{
        padding-left: 4rem;
        padding-right: 4rem;
    }
}

@media screen and (max-width: 760px){
    /* reserve-box */
    .reserve-box{
        padding: 6rem 2rem;
    }
}

/* reserve-two-column */
.reserve-two-column{
    display: flex;
    justify-content: space-between;
}

@media screen and (max-width: 1000px){
    /* reserve-two-column */
    .reserve-two-column{
       display: block;
    }
}

/* reserve-heading */
.reserve-heading{
    color: #ffffff;
    padding-right: 6rem;
}
.reserve-heading > .-en{
  font-size: 6rem;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 800;
  font-style: normal;
  line-height: 1;
  margin-bottom: 1.8rem;
  white-space: nowrap;
}
.reserve-heading > .-main{
  font-size: 2.1rem;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;  
}

@media screen and (max-width: 1000px){
  /* reserve-heading */
  .reserve-heading{
      display: flex;
      align-items: flex-end;
      padding-right: 0;
  }
  .reserve-heading > .-en{
      padding-right: 4rem;
  }
  .reserve-heading > .-main{
      padding-bottom: 2.4rem;
  }
}

@media screen and (max-width: 760px){
  /* reserve-heading */
  .reserve-heading > .-en{
      padding-right: 3.5rem;
      font-size: 5.4rem;
  }
  .reserve-heading > .-main{
      font-size: 1.9rem;
  }
}

@media screen and (max-width: 640px){
  /* reserve-heading */
  .reserve-heading{
      display: block;
      text-align: center;
  }
  .reserve-heading > .-en{
      padding-right: 0;
      margin-bottom: 1.2rem;
  }
  .reserve-heading > .-main{
      padding-bottom: 0;
  }
}

/* reserve-box-primary */
.reserve-box-primary{
    width: 65.0943%;
}
.reserve-box-primary > .-box{
    margin-top: 6rem;
}
.reserve-box-primary > .-box:nth-child(1){
    margin-top: 0;
}

@media screen and (max-width: 1000px){
    /* reserve-box-primary */
    .reserve-box-primary{
        width: 100%;
        margin-top: 2.5rem;
    }
}

@media screen and (max-width: 760px){
    /* reserve-box-primary */
    .reserve-box-primary{
        margin-top: 6rem;
    }
}

/* reserve-heading-sub */
.reserve-heading-sub{
    font-size: 2.1rem;
    line-height: 1.75;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 1.5rem;
    position: relative;
    padding-left: 3.5rem;
}
.reserve-heading-sub::before{
    content: "";
    position: absolute;
    top: 1.6rem;
    left: 0;
    width: 20px;
    height: 2px;
    background-color: #ffffff;
}

/* reserve-box-tel */
.reserve-box-tel{
    font-size: 1.8rem;
    line-height: 1.75;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
}
.reserve-box-tel > a{
    color: #ffffff;
    text-decoration: underline;
}
.reserve-box-tel > a:hover{
    text-decoration: none;
}

/* reserve-button */
.reserve-button{
    width: 46.9565%;
}
.reserve-button > a{
    display: inline-block;
    font-weight: 700;
    color: #1d2c6b;
    width: 100%;
    font-size: 1.8rem;
    line-height: 1.75;
    padding: 2.3rem 9.2593%;
    background: #ffffff url(/assets/images/arrow-link-circle-blue.svg) center right 3rem no-repeat;
    background-size: 22px auto;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
.reserve-button > a:hover{
    opacity: 0.75;
}

@media screen and (max-width: 640px){
    /* reserve-button */
    .reserve-button{
        width: 100%;
    }
}

/* reserve-nav */
.reserve-nav{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.reserve-nav > .-item{
    width: 46.9565%;
}
.reserve-nav > .-item > a{
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
.reserve-nav > .-item > a:hover{
    opacity: 0.75;
}

@media screen and (max-width: 1000px){
    /* reserve-nav */
    .reserve-nav{
        width: 100%;
        margin-top: 2.5rem;
    }
}

@media screen and (max-width: 760px){
    /* reserve-nav */
    .reserve-nav > .-item{
        width: 50%;
    }
    .reserve-nav > .-item:nth-child(odd){
        padding-right: 1rem;
    }
    .reserve-nav > .-item:nth-child(even){
        padding-left: 1rem;
    }
}

@media screen and (max-width: 640px){
    /* reserve-nav */
    .reserve-nav{
        display: block;
        margin-top: 3.5rem;
    }
    .reserve-nav > .-item{
        width: 100%;
        margin-top: 2rem;
    }
    .reserve-nav > .-item:nth-child(1){
        margin-top: 0;
    }
    .reserve-nav > .-item:nth-child(odd){
        padding-right: 0;
    }
    .reserve-nav > .-item:nth-child(even){
        padding-left: 0;
    }
}

/*========================================
footer layout
========================================*/
/* site-footer */
.site-footer{
    padding: 4.5rem 6rem 6rem;
    background-color: #f1f2f6;
}
.site-footer > .-inner{
    max-width: 1060px;
    margin-left: auto;
    margin-right: auto;
}

@media screen and (max-width: 1000px){
    /* site-footer */
    .site-footer{
        padding-left: 4rem;
        padding-right: 4rem;
        padding-bottom: 4.5rem;
    }
}

@media screen and (max-width: 760px){
    /* site-footer */
    .site-footer{
        padding: 4rem 2rem;
    }
}

/* footer-name */
.footer-name{
    text-align: center;
    margin-bottom: 1.5rem;
}
.footer-name > a{
    display: inline-block;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
    text-align: center;
}
.footer-name > a:hover{
    opacity: 0.75;
}
.footer-name > a > .-mark{
    width: 80px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1.2rem;
    
}
.footer-name > a > .-mark > img{
    width: 100%;
}
.footer-name > a > .-name{
    width: 140px;
}
.footer-name > a > .-name > img{
    width: 100%;
}

@media screen and (max-width: 760px){
    /* footer-name */
    .footer-name{
        margin-bottom: 4rem;
    }
}

/* footer-nav */
.footer-nav > .-list{
    text-align: center;
    line-height: 1;
    letter-spacing: -.4em;
}
.footer-nav > .-list > .-item{
    display: inline-block;
    white-space: nowrap;
    font-size: 1.3rem;
    letter-spacing: 0.1em;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}
.footer-nav > .-list > .-item > a{
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease; 
}
.footer-nav > .-list > .-item > a:hover{
	color: #1d2c6b;
}

@media screen and (max-width: 1000px){
    /* footer-nav */
    .footer-nav > .-list{
        margin-left: auto;
        margin-right: auto;
    }
}

@media screen and (max-width: 760px){
    /* footer-nav */
    .footer-nav > .-list{
        text-align: left;
        max-width: none;
        border-top: 1px solid #ced8ea;
    }
    .footer-nav > .-list > .-item{
        display: block;
        padding-left: 0;
        padding-right: 0;
        padding-top: 0;
        font-size: 1.5rem;
    }
    .footer-nav > .-list > .-item > a{
        display: block;
        border-bottom: 1px solid #ced8ea;
        padding: 2.5rem 0.5rem;
        background: url(/assets/images/arrow-link-circle-blue.svg) right 2rem center no-repeat;
        background-size: 20px auto;
    }
}

/* footer-information */
.footer-information{
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 4.8rem;
}
.footer-information > .-data{
    display: flex;
    align-items: center;
}
.footer-information > .-data > .-name{
    font-size: 1.5rem;
    letter-spacing: 0.1em;
    line-height: 1;
    white-space: nowrap;
    padding-right: 2rem;
}
.footer-information > .-data > .-address{
    font-size: 1.2rem;
    letter-spacing: 0.1em;
    line-height: 1.75;
    white-space: nowrap;
    padding-left: 2rem;
    padding-right: 2rem;
}
.footer-information > .-link{
    font-size: 1.2rem;
    letter-spacing: 0.1em;
    line-height: 1;
    white-space: nowrap;
    padding-left: 2rem;
}
.footer-information > .-link > a{
    color: #1d2c6b;
    position: relative;
}
.footer-information > .-link > a::after{
    position: absolute;
    left: 0;
    content: '';
    width: 100%;
    height: 1px;
    background: #1d2c6b;
    bottom: -6px;
    transform: scale(1, 1);
    transform-origin: left top;
    transition: transform 0.3s;
}
.footer-information > .-link > a:hover::after{
    transform: scale(0, 1);
    transform-origin: right top;
}
.footer-information > .-link > a > span{
    padding-right: 2.5rem;
    display: inline-block;
    background: url(/assets/images/arrow-link-blue.svg) right center no-repeat;
    background-size: 14px auto;
}

@media screen and (max-width: 760px){
    /* footer-information */
    .footer-information{
        padding-top: 4rem;
    }
    .footer-information > .-data{
        display: block;
    }
    .footer-information > .-data > .-address{
        padding-top: 1.5rem;
        padding-left: 0;
    }
}

@media screen and (max-width: 580px){
    /* footer-information */
    .footer-information{
        display: block;
        text-align: center;
    }
    .footer-information > .-data{
        margin-bottom: 2rem;
    }
    .footer-information > .-data > .-name{
        padding-right: 0;
    }
    .footer-information > .-data > .-address{
        padding-right: 0;
        white-space: normal;
    }
    .footer-information > .-link{
        padding-left: 0;
    }
}

/* copyright */
.copyright{
    font-size: 1.2rem;   
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    letter-spacing: 0.1em;
    text-align: center;
    line-height: 1.75;
    padding-top: 3rem;
}

@media screen and (max-width: 760px){
    /* copyright */
    .copyright{
        padding-top: 4rem;
        font-size: 1.1rem;
    }
}
