@charset "utf-8";
/* CSS Document */

/*--------------------------------------------------------------------
header
--------------------------------------------------------------------*/
header {
    width: 100%;
    margin: 0 auto;
    position: fixed;
    padding: 2em 0;
    z-index: 10;
    transition: 0.3s;
    top: 0;
}
.fixed header {
    background: rgba(255,255,255,0.7);
}
header #header_contents {
	width: 92%;
	max-width: 1522px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
header #header_contents h1 {
    max-width: 241px;
    width: 15%;
}
header #header_contents h1 img {
    width: 100%;
}
@media screen and (max-width: 768px) {
#contents {
    margin-top: 11vw;
}
}
@media screen and (max-width: 480px) {
#contents {
    margin-top: 16%;
}
}


/*--------------------------------------------------------------------
ナビバー
--------------------------------------------------------------------*/
.navi {
    display: block;
    width: 100%;
    max-width: 638px;
    font-family: 'Cormorant Garamond', serif;
    float: right;
}
.navi nav{
	width: 100%;
	margin: 0;
}
.navi li{
	display: inline-block;
	margin: 0 0 0 1.85em;
	letter-spacing: 0.15em;
}
#nav_toggle{
	display: none;
}
nav ul {
    margin: 5px 0;
    display: flex;
}
nav ul li {
    text-align: center;
}
nav ul li a {
    padding: 6px 0;
    display: block;
    color: #333;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    position: relative;
}
nav ul li a::after {
    content: "";
    width: 0;
    height: 0;
    transition: 0.3s;
    bottom: 0;
}
nav ul li a:hover::after {
    width: 0.35em;
    height: 0.35em;
    background: #333;
    position: absolute;
    bottom: -0.25em;
    left: 0;
    right: 0;
    transform: rotate(45deg);
    margin: auto;
}


 
.navi li.nav_contact a {
    background: #444444;
    color: #fff;
    padding: 0.3em 1.175em;
    display: block;
}
.navi li.nav_contact a::before {
    content: "";
    width: 1em;
    height: 1em;
    background: url(../img/common/icon_contact.svg) no-repeat center;
    background-size: contain;
    display: inline-block;
    margin: 0 0.5em -0.25em 0;
}
.navi li.nav_contact a::after {
    display: none;
}


@media screen and (max-width: 768px) {
header {
    width: 100%;
    margin: 0 auto;
    position: fixed;
    padding: 0.85em 0 0.5em;
    z-index: 10;
    background: #fff;
    top: 0;
}
	
header #header_contents h1 {
    width: 34%;
}
.navi {
    display: block;
    height: 3em;
    max-height: 45px;
    max-width: 50px;
    width: 3.5em;
    min-width: auto;
}
.navi nav {
    width: 100%;
    z-index: 10;
}
nav {
    display: none;
    position: absolute;
    top: 100%;
    width: 100%;
    background: #ffffff;
    left: 0;
    height: 100vh;
}
header nav ul {
    display: block;
    margin: 0 auto;
    width: 100%;
}
.navi li {
    float: none;
    margin: 0 auto;
    display: block;
}
.navi li:not(:last-of-type) {
    border-bottom: 1px solid #DBDBDB;
}
.navi li.nav_contact {
    margin: 1.85em auto;
    width: 50%;
}
.navi li.nav_contact a {
    text-align: center;
}
header nav ul li {
    margin: 0 auto;
    text-align: center;
    border-bottom: 1px solid #fff;
    float: none;
    width: 90%;
}

header nav ul li a{
  display: block; 
}
nav ul li a {
    padding: 0.65em 0.5em;
    text-align: left;
}
nav ul li a::after {
    display: none;
}
nav .sp_nav {
    text-align: center;
}
nav .sp_nav a {
    padding: 0 1em;
}
nav .sp_nav a:not(:last-of-type) {
    border-right: 1px solid #DBDBDB;
}
	
/*開閉ボタン*/
#nav_toggle{
  display: block;
  position: relative;
  top: 0;
  z-index: 100;
  margin: 0 auto;
  width: 100%;
  height: 100%;
}
#nav_toggle div {
  position: relative;
  width: 100%;
  height: 100%;
  margin: 0 auto;
}
#nav_toggle span{
  display: block;
  height: 2px;
  background: #333;
  position:absolute;
  width: 70%;
  left: 0;
  right: 0;
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  margin: auto;
}
#nav_toggle span:nth-child(1){
  top: 20%;
}
#nav_toggle span:nth-child(2){
  top: 45%;
}
#nav_toggle div p {
    font-size: 12px;
    text-align: center;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
}
	
	
/*開閉ボタンopen時*/
body.open {
    overflow: hidden;
    height: 100%;
}
.open nav {
    display: block;
    animation-name: fadein;
    animation-duration: 0.5s;
}

.open #nav_toggle span:nth-child(1) {
  top: 25%;
  width: 60%;
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  transform: rotate(135deg);
}
.open #nav_toggle span:nth-child(2) {
  top: 25%;
  width: 60%;
  -webkit-transform: rotate(-135deg);
  -moz-transform: rotate(-135deg);
  transform: rotate(-135deg);
}
}

@media screen and (max-width: 480px) {
#nav_toggle div p {
    font-size: 3vw;
}
nav ul li a {
    font-size: 3.8vw;
}
nav .sp_nav a {
    font-size: 3vw;
}
}

/*--------------------------------------------------------------------
footer
--------------------------------------------------------------------*/
a.page_top {
    max-width: 60px;
    max-height: 60px;
    width: 3em;
    height: 3em;
    text-indent: -99999px;
    display: block;
    border: 1px solid #555555;
    position: fixed;
    bottom: -4em;
    right: 4em;
    background: #fff;
    color: #555;
    transition: 0.3s;
}
a.page_top::before {
    content: "";
    width: 0.75em;
    height: 0.75em;
    border-left: 1px solid;
    border-top: 1px solid;
    position: absolute;
    left: 0;
    right: 0;
    top: 0.25em;
    bottom: 0;
    margin: auto;
    transform: rotate(45deg);
    transition: 0.3s;
}
a.page_top:hover {
    background: #555;
    color: #fff;
}
a.page_top.fixed {
    bottom: 4em;
}


footer {
    margin-top: 3em;
    background: #fff;
    padding: 2em 0;
    border-top: 2px solid #dbdbdb;
}
.footer_inner {
    max-width: 1522px;
    width: 90%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.footer_inner .footer_inner_access {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 55%;
}
.footer_inner .footer_inner_access img {
    width: 30%;
    margin-right: 3%;
}
.footer_inner .footer_inner_access div p {
    margin: 1em 0;
    line-height: 1.6;
    font-size: 14px;
}

.footer_inner .footer_inner_list ul {
    width: 100%;
    margin: 0 auto;
    padding: 0;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-box;
    display: -webkit-flexbox;
    display: -moz-flexbox;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: flex;
    -webkit-box-lines: multiple;
    -moz-box-lines: multiple;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.footer_inner .footer_inner_list ul li {
    font-size: 16px;
    margin: 0;
    padding: 0 1em;
    line-height: 1;
}
.footer_inner .footer_inner_list ul li:not(:last-of-type) {
    border-right: 1px solid #DBDBDB;
}
.footer_inner .footer_inner_list copy {
    margin: 1.25em 0 0;
    display: block;
    text-align: right;
    font-size: 12px;
	color: #777777;
}

@media screen and (max-width: 768px) {
a.page_top {
    right: 1em;
}
a.page_top.fixed {
    bottom: 1em;
}
	
.footer_inner {
    display: block;
}
.footer_inner .footer_inner_access {
    display: block;
    width: 100%;
    text-align: center;
}
.footer_inner .footer_inner_list ul {
    justify-content: center;
    margin: 2em 0 0;
}

.footer_inner .footer_inner_list copy {
    text-align: center;
}
}

@media screen and (max-width: 480px) {
.footer_inner .footer_inner_access img {
    width: 50%;
    margin: 1vw 0;
}
.footer_inner .footer_inner_access div p {
    font-size: 3.4vw;
}
	
.footer_inner .footer_inner_list ul li {
    font-size: 3.0vw;
}
.footer_inner .footer_inner_list copy {
    font-size: 2.6vw;
}
}
	
/*--------------------------------------------------------------------
common
--------------------------------------------------------------------*/

#contents {
    overflow: hidden;
}
.dl_sp {
	display: none;
}
.ttl01 {
    font-size: 60px;
    margin: 1.5em 0 0.5em;
    text-align: center;
	font-family: 'Cormorant Garamond', serif;
}
.ttl03 {
    margin: 3em auto;
    text-align: center;
    font-size: 40px;
    max-width: 1522px;
    width: 90%;
}
.ttl03.border_bm {
    padding: 0.5em 0;
    border-bottom: 1px solid #DBDBDB;
}

.ttl04 {
    margin: 3em auto 1.5em;
    text-align: center;
    font-size: 28px;
    max-width: 1522px;
    width: 90%;
}

.item_list {
	max-width: 1522px;
    width: 90%;
    margin: 0 auto;
    padding: 0;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-box;
    display: -webkit-flexbox;
    display: -moz-flexbox;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: flex;
    -webkit-box-lines: multiple;
    -moz-box-lines: multiple;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

/*3つ並び*/
.item_list.item03 li {
    max-width: 490px;
    width: calc((100%/3) - 1.2%);
    margin: 0 1.65% 1.65% 0;
}
.item_list.item03 li:nth-of-type(3n) {
    margin-right: 0;
}

/*リスト*/
ol.lint_nm {
    list-style-type: decimal;
    margin: 0.45em 0 0.45em 1.5em;
}
ol.lint_nm li {
    margin: 0.25em 0;
}



@media screen and (max-width: 768px) {

.dl_pc {
  display: none;
}
.dl_sp {
  display: block;
	
}
	
.ttl01 {
    font-size: 50px;
    margin: 1.5em 0 0.5em;
}
.ttl03 {
    margin: 1.5em auto 1em;
    font-size: 5vw;
}
.ttl04 {
    font-size: 4.2vw;
}
	
.item_list.item03 li {
    width: calc((100%/2) - 1.2%);
}
.item_list.item03 li:nth-of-type(3n) {
    margin-right: 1.65%;
}
.item_list.item03 li:nth-of-type(2n) {
    margin-right: 0;
}
	
}
@media screen and (max-width: 480px) {
.ttl01 {
    font-size: 7vw;
    margin: 1em 0 0.5em;
}
.ttl03 {
    font-size: 5.4vw;
}
.ttl04 {
    font-size: 5vw;
}
}
	
	@keyframes fadein {
from {
    opacity: 0;
    transform: translateY(-20px);
}
to {
    opacity: 1;
    transform: translateY(0);
}
}

/*--------------------------------------------------------------------
middle
--------------------------------------------------------------------*/
.sub_wrapper {
    padding-top: 114px;
}
.sub_wrapper header {
    background: #fff;
    border-bottom: 1px solid #DBDBDB;
}

/*パンくずリスト*/
ul.item_list.breadcrumbs {
    margin: 1em auto;
}
ul.item_list.breadcrumbs li {
    color: #444444;
}
ul.item_list.breadcrumbs li:not(:last-of-type) {
    padding: 0 2em 0 0;
    position: relative;
}
ul.item_list.breadcrumbs li:not(:last-of-type)::before {
    content: "";
    width: 0.5em;
    height: 0.5em;
    border-top: 1px solid;
    border-right: 1px solid;
    position: absolute;
    right: 0.75em;
    top: 0;
    bottom: 0;
    margin: auto;
    transform: rotate(45deg);
}
ul.item_list.breadcrumbs li a {
    color: #999999;
	text-decoration: underline;
}

@media screen and (max-width: 1652px) {
.sub_wrapper {
    padding-top: 105px;
}
}
@media screen and (max-width: 768px) {
.sub_wrapper {
    padding-top: 0;
}
	
ul.item_list.breadcrumbs li {
    font-size: 2.2vw;
}
}

@media screen and (max-width: 480px) {
ul.item_list.breadcrumbs li {
    font-size: 2.6vw;
}
}

header #header_contents .clear.navi{
    max-width: 900px;
}