/* CSS Document */

/*----------------------------------------------------
 basic
----------------------------------------------------*/
html , body{
	width: 100%;
	height:100%;
}
html {
	/*font-size: 62.5%;*/
    font-size: 10px;
    /*16÷1000×100*/
    /*font-size: 0.714285714285714vw;*/
}
#wrapper {
    /*font-size: 1.4rem;*/
    position: relative;
}

@media screen and (min-width: 768px) and (max-width: 1280px) {
html {
    font-size: 0.78125vw;
}
}

body {
	/*font-feature-settings: "palt";*/
    -webkit-font-smoothing: antialiased;
	color: #000000;
	font-family: "游ゴシック体", "Yu Gothic", YuGothic, 'ヒラギノ角ゴ ProN', "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
	font-size: 16px;
	font-size: 1.6rem;
	line-height: calc(28/16);
    font-weight: 500;
	font-style: normal;
	-webkit-text-size-adjust: none; /* フォントサイズ自動調整 */
    /*position: relative;*/
    width: 100%;
    text-align: left;
 	letter-spacing: 0;
	word-wrap : break-word;
	overflow-wrap : break-word;
	
	background-color: #FFFFFF;
}

/*_:lang(x)::-ms-backdrop, body {
    font-family: "メイリオ", Meiryo, sans-serif;
} */

:root {
    --spacing: 0;
}

* {
   letter-spacing: var(--spacing);
}

body {
}
body.fade {
	/*overflow: hidden;*/
}

/*	@media screen and (min-width: 769px) {
			body{
				min-width: 1024px;
		}
	}*/
	@media screen and (max-width: 768px) {
        html {
            /*font-size: 62.5%;*/
            font-size: 2.33vw; /*430px*/
            /*font-size: 1.208vw;*/
        }
		body{
			/*font-size: 14px;*/
			/*-webkit-text-size-adjust: 100%;  フォントサイズ自動調整 */
		}
		#wrapper{
            font-size: 1.4rem;
			z-index: 1;
			-webkit-transition: 0.2s ease-in-out;  
			   -moz-transition: 0.2s ease-in-out;  
			     -o-transition: 0.2s ease-in-out;  
			        transition: 0.2s ease-in-out; 
		}
		#wrapper.closeCon{
			border-right: 1px solid #ccc;
			-webkit-transform: translate(-280px);
			   -moz-transform: translate(-280px);
			    -ms-transform: translate(-280px);
			     -o-transform: translate(-280px);
			        transform: translate(-280px);
		}
	}

* {
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
         -o-box-sizing: border-box;
        -ms-box-sizing: border-box;
            box-sizing: border-box;
}


a:link {
	color: #000000;
	text-decoration: none;
}
a:visited {
	color: #000000;
}
a:hover{
	text-decoration: none;
	color: #000000;
}
a:focus { outline:none;}



a {
	-webkit-tap-highlight-color: rgba(200,200,200,.6);
}
a { 
    outline: none; 
    -webkit-transition: all .6s;
    transition: all .6s;
}
/*a {
	-moz-transition: all 0.4s ease-in-out, color 0.4s ease-in-out;
	-webkit-transition: all 0.4s ease-in-out, color 0.4s ease-in-out;
	-o-transition: all 0.4s ease-in-out, color 0.4s ease-in-out;
	-ms-transition: all 0.4s ease-in-out, color 0.4s ease-in-out;
	transition: all 0.4s ease-in-out, color 0.4s ease-in-out;
}*/

a.none_link {
    cursor: auto;
}

img {
    /*width: auto;*/
    max-width: 100%;
    height: auto;
	vertical-align: top;
}

img:not([width]) {
	/*zoom: .5; /* Retinaディスプレイ対応のためimg要素は半分の大きさに */
}

p, dl, ol, ul {
	margin:0;
	list-style:none outside;
}
em{
	font-style: normal;
}
ul{
text-align: left;
}

li {
	margin:0;
	list-style:none outside;
}

sup {
    vertical-align: super;
    font-size: 80%;
}

h1,h2,h3,h4,p.txt,ul,dl{
	text-align: left;
}
h1,h2,h3,h4{
font-weight: normal;
}
p.ttl{
	font-size: 100%;
	font-weight: bold;
	margin-bottom: 0.3em;
}
p.txt{
	margin-bottom: 2em;
	font-size: 100%;
}
p.img{
	margin-bottom: 2em;
}

	@media screen and (max-width: 768px) {
		* {
		   -webkit-appearance: none;
		}
	}
a:hover {  
    opacity: 0.6;  
    filter: alpha(opacity=60);  
	-ms-filter: "alpha( opacity=60 )";
	/*
    -webkit-transition: 0.2s ease-in-out;  
       -moz-transition: 0.2s ease-in-out;  
         -o-transition: 0.2s ease-in-out;  
            transition: 0.2s ease-in-out; 
	*/
}
	@media screen and (max-width: 768px) {
		a:hover {  
		    opacity: 1;  
		    filter: alpha(opacity=100);  
			-ms-filter: "alpha( opacity=100 )";
		} 
}


/*アニメーション*/
/*
*::before,
*::after {
	position: absolute;
	z-index: -1;
	display: block;
	content: '';
}
*::before,
*::after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-transition: all .3s;
	transition: all .3s;
}
*/


/*アニメーション*/
/*.anim {
  opacity: 0;
	-ms-filter: blur(1rem);
      filter: blur(1rem);
  transform: translateY(4rem);
  -webkit-transition: opacity 1.5s cubic-bezier(0.5, 1, 0.89, 1) 0.3s, -webkit-transform 1.5s cubic-bezier(0.33, 1, 0.68, 1) 0.3s;
  -moz-transition: opacity 1.5s cubic-bezier(0.5, 1, 0.89, 1) 0.3s, -moz-transform 1.5s cubic-bezier(0.33, 1, 0.68, 1) 0.3s;
  transition: opacity 1.5s cubic-bezier(0.5, 1, 0.89, 1) 0.3s, transform 1.5s cubic-bezier(0.33, 1, 0.68, 1) 0.3s;
}
.anim.po_x {
  transform: translateX(-4rem);
}
.anim.po_x2 {
  transform: translateX(4rem);
}
.anim.size_l-m {
  transform: translateY(0) scale(1.3);
}
.anim._do_anim {
  opacity: 1;
  filter: none;
  transform: none !important;
}
@media print {
  .anim {
    opacity: 1;
    transform: none;
	filter: none;
  }
}

.anim_img_l {
    display: block;
    width: 100%;
    overflow: hidden;
}
.anim_img_l.round {
}
.anim_img_l .img_wrap {
    -webkit-transition: all .6s;
    transition: all .6s;
}
.anim_img_l:hover .img_wrap{
    transform: scale(1.08);
}*/


/* ローディング
----------------------------------------- */
/*body #loader {
width: 292px;
height: 26px;
display: block;
position: fixed;
top: 50%;
left: 50%;
-webkit-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
z-index: 100;
background: url(../images/loading.svg) no-repeat;
-webkit-background-size: 292px;
-moz-background-size: 292px;
background-size: 292px;
}*/

body #fade {
width: 100%;
height: 100vh;
display: block;
background: #EDEBE7;
position: fixed;
top: 0px;
left: 0px;
z-index: 1000;
}

body#top #fade {
background: #EDEBE7;
}

/*wrapper ローディング用*/
body #wrapper {
width: 100%;
/*min-width: 100rem;*/
min-height: 100%;
margin: auto;
/*overflow: auto;*/
/*opacity: 0;*/
filter: alpha(opacity=0);  
-ms-filter: "alpha( opacity=0 )";
-webkit-transition: all .6s;
transition: all .6s;
display: flex;
flex-direction: column;
/*position: relative;*/
}


.loading {
width: 10rem;
height: 3rem;
position: fixed;
top: 50%;
left: 50%;
-webkit-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
overflow: hidden;
}

.loading span.logo {
background: url(../images/loading.svg) repeat-x center / 10rem 3rem;
display: block;
height: 100%;
left: -100%;
position: relative;
width: 200%;
animation: loading 3s infinite linear;
}
@keyframes loading {
  0% {
    left: -100%;
  }
  100% {
    left: 0;
  }
}


.loading.top div.con {
	position: fixed;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
.loading.top div.txt {
	font-size: 3rem;
	letter-spacing: 0.38em;
	white-space: nowrap;
	color: #FFFFFF;
	text-align: center;
	animation: loading_txt 1s 1 ease-in-out forwards alternate;
	opacity: 0;
}
@keyframes loading_txt {
  0% {
	  -ms-filter: blur(1rem);
      filter: blur(1rem);
    opacity: 0;
  }
  100% {
	filter: none;
    opacity: 1;
  }
}

.loading.top div.logo {
	width: 47.5rem;
	text-align: center;
	animation: loading_logo 1.0s 1 ease-in-out forwards alternate;
	opacity: 0;
	margin-top: 6rem;
}
@keyframes loading_logo {
  0% {
	-ms-filter: blur(1rem);
      filter: blur(1rem);
    opacity: 0;
  }
  100% {
	filter: none;
    opacity: 1;
  }
}


@media screen and (max-width: 768px) {
body #wrapper {
    min-width: 100%;
}
	
.loading.top div.txt {
	width: 31rem;
    font-size: 1.6rem;
}
	
.loading.top div.logo {
	width: 16.2rem;
	margin: auto;
    margin-top: 4rem;
}
	
body #fade {
z-index: 1000;
}
}


/* 画像、テキスト振り分け
----------------------------------------- */
.pcShow{
}
.spShow{
	display: none !important;
}

	@media screen and (max-width: 768px) {
		.pcShow{
			display: none !important;
		}
		.spShow{
			display: block !important;
		}
		.spShow.br{
			display: inline;
		}
	}
.pcShow_tw{
}
.twShow{
	display: none;
}
	@media screen and (max-width: 768px) {
		.pcShow_tw{
			display: none;
		}
		.twShow{
			display: block;
		}
	}
.dsnone{
	display: none;
}

/* スペース
----------------------------------------- */
.mb0{
	margin-bottom: 0 !important;
}
.mb1em{
	margin-bottom: 1em !important;
}
.mb2em{
	margin-bottom: 2em !important;
}
.mb3em{
	margin-bottom: 3em !important;
}
.mb4em{
	margin-bottom: 4em !important;
}
.mt1em{
	margin-top: 1em !important;
}
.mt2em{
	margin-top: 2em !important;
}
.mt3em{
	margin-top: 3em !important;
}
.mt4em{
	margin-top: 4em !important;
}
/* フォント
----------------------------------------- */
.fAbc {
    font-family: "Roboto", "游ゴシック体", "Yu Gothic", YuGothic, 'ヒラギノ角ゴ ProN', "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
	font-weight: 400;
    letter-spacing: 0.06em;
    font-optical-sizing: auto;
    font-style: normal;
}
/*
Light 300
Regular 400
Medium 500
Semi-bold 600
Bold 700
ExtraBold 800
Black 900
*/



/* 文字
----------------------------------------- */
.bold{
	font-weight: bold;
}
.fwNormal{
	font-weight: normal;
}
.fs12{
	font-size: 1.2rem;
}
.fs13{
	font-size: 1.3rem;
}
.fs14{
	font-size: 1.4rem;
}
.fs15{
	font-size: 1.5rem;
}
.fs16{
	font-size: 1.6rem;
}
.fs17{
	font-size: 1.7rem;
}
.fs18{
	font-size: 1.8rem;
}
.fs19{
	font-size: 1.9rem;
}
.fs21{
	font-size: 2.1rem;
}
.fs22{
	font-size: 2.2rem;
}
.fs24{
	font-size: 2.4rem;
}
.fs26{
	font-size: 2.6rem;
}
.fs28{
	font-size: 2.8rem;
}

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

	}

.txtC{
	text-align: center !important;
}
.txtL{
	text-align: left !important;
}
.txtR{
	text-align: right !important;
}
/*float*/
.fL{
	float: left;
}
.fR{
	float: right;
}

.fc_pink{
	color: #e7243e;
}

.fRed {
    color: #000000 !important;
}
.fRed a {
    color: #000000 !important;
}



/* flexCover
----------------------------------------- */
.flexCover{
	/*overflow: hidden;*/
    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;
	justify-content: space-between;
}
.flexCover.colum2 > li{
	width: 48%;
}
.flexCover.colum73 > li.txt {
	width: 68%;
}
.flexCover.colum73 > li.img {
	width: 30%;
}
.flexCover.colum3 > li{
	width: 30%;
}
.flexCover.colum3::after{
  content:"";
  display: block;
  width: 30%;
}

.flexCover.colum4 > li{
	width: 23.5%;
}
.flexCover.colum4::before{
  content:"";
  display: block;
  width: 23.5%;
	order:1;
}
.flexCover.colum4::after{
  content:"";
  display: block;
  width: 23.5%;
}

.flexCover.colum5 > li{
	width: 20%;
}

.flexCover.colum6 > li{
	width: 15%;
}

.flexCover.colum1 > li{
	width: 100%;
}
/*.flexCover li img,
.flexCover li.txt{
	width: 100%;
	height: auto;
}*/
.flexCover.flexS{
  justify-content: flex-start;
}

	@media screen and (max-width: 768px) {
		.flexCover.colum2 > li{
			width: 100%;
			margin-bottom: 2rem;
		}
		.flexCover.colum3 > li{
			width: 100%;
			margin-bottom: 2rem;
		}
		.columBox.colum2 > li{
			width: 100%;
		}
		.flexCover.colum4 > li{
			width: 48%;
			margin-bottom: 3rem;
		}
		.flexCover.colum6 > li{
			width: 48%;
			margin-bottom: 3rem;
		}
        .flexCover.colum73 > li.txt {
	width: 100%;
    margin-bottom: 3rem;
}
.flexCover.colum73 > li.img {
	width: 100%;
    margin-bottom: 3rem;
}
}


.column2_wrap > li.left_navi {
	width: 100%;
	max-width: 175px;
}

.column2_wrap > li.main_con {
	width: 100%;
	max-width: 680px;
}

.column2_wrap > li.left_navi h3 {
	font-size: 1.4rem;
	border-bottom: 1px solid #404040;
	padding-bottom: 1em;
	margin-bottom: 2em;
}

.column2_wrap > li.left_navi .categories li {
    font-size: 1.4rem;
    margin-bottom: 1em;
}

@media screen and (max-width: 768px) {
	.column2_wrap > li.left_navi {
	width: 100%;
	max-width: 100%;
		margin-bottom: 40px;
}

.column2_wrap > li.main_con {
	width: 100%;
	max-width: 100%;
}
}


/* header
----------------------------------------- */
header {
    width: auto;
	position: relative;
}

#g_navi_wrap {
    width: 100%;
	height: 12rem;
    position: fixed;
	top: 0;
	left: 0;
    z-index: 10;
	transform: translateY(0);
    /*background-color: rgba(255,255,255,1.00);*/
	-webkit-transition: all .6s;
	transition: all .6s;
}
#g_navi_wrap.is_show {
	height: 12rem;
    /*background-color: rgba(255,255,255,0.95);*/
}
@keyframes g_navi {
0% { transform: translateY(-100%)}
100% { transform: translateY(0)}
}

.drawer-open #g_navi_wrap.is_show,
.drawer-open #g_navi_wrap {
    transform: translateY(0);
	background-color: rgba(0,0,0,0);
	/*z-index: 106;*/
    z-index: 99;
}

#g_navi_wrap .inner {
    width: 100%;
	height: 100%;
	padding: 0;
	display: flex;
	align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

#g_navi_wrap .logo {
    margin-left: 5rem;
    transition: all .6s;
}
#g_navi_wrap.is_show .logo {
}

#g_navi_wrap .logo a {
	display: flex;
}
body.is_show #g_navi_wrap .logo {
}
#g_navi_wrap .logo a svg {
	width: auto;
    height: 5rem;
}

#g_navi_wrap .navigation_wrap {
    height: 100%;
    display: flex;
    flex-flow: column;
    align-items: flex-end;
    justify-content: center;
	padding-right: 11.5rem;
}
#g_navi_wrap .navigation_wrap .navi_layout {
    display: flex;
    align-items: center;
    justify-content: flex-end;
	column-gap: 3.5rem;
}
#g_navi_wrap .navigation_wrap .navi_layout .navi_con a span {
	font-size: 1.5rem;
	line-height: calc(18/15);
    transition: all .6s;
    position: relative;
}
#g_navi_wrap .navigation_wrap .navi_layout .navi_con:not(.lang) a span::after {
	content: '';
    display: block;
    width: 5px;
    height: 5px;
    background-color: #000000;
    border-radius: 50%;
    transition: all .6s;
    position: absolute;
    bottom: -0.8rem;
    left: 50%;
    transform: translate(-50%, 100%);
    z-index: 2;
    opacity: 0;
}
#g_navi_wrap .navigation_wrap .navi_layout .navi_con a:hover {
	opacity: 1;
}
#g_navi_wrap .navigation_wrap .navi_layout .navi_con:hover a span::after {
	opacity: 1;
}
#g_navi_wrap .navigation_wrap .navi_layout .navi_con.current a span::after  {
    opacity: 1;
}

#g_navi_wrap .navigation_wrap .navi_layout .lang {
    margin-left: 1rem;
    position: relative;
}
#g_navi_wrap .navigation_wrap .navi_layout .lang .pd {
    display: flex;
}
#g_navi_wrap .navigation_wrap .navi_layout .lang .sub {
    position: absolute;
    /*left: 50%;
    transform: translateX(-50%);*/
    padding-top: 1rem;
    white-space: nowrap;
    display: flex;
    flex-flow: column;
    grid-gap: 2rem 0;
    align-items: flex-end;
}
#g_navi_wrap .navigation_wrap .navi_layout .lang .sub a {
    display: flex;
    flex-flow: column;
    position: relative;
}
#g_navi_wrap .navigation_wrap .navi_layout .lang .sub a span {
    font-size: 1.5rem;
    line-height: calc(18 / 15);
}
#g_navi_wrap .navigation_wrap .navi_layout .lang .sub a::after {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    background-color: #000000;
    position: absolute;
    bottom: -0.6rem;
    left: 50%;
    transform: translate(-50%, 100%);
    transition: all .6s;
    opacity: 0;
}
#g_navi_wrap .navigation_wrap .navi_layout .lang .sub a:hover::after {
    opacity: 1;
}
#g_navi_wrap .navigation_wrap .navi_layout .lang .sub a.current::after {
    opacity: 1;
}


#g_navi_wrap .navigation {
    height: 100%;
	align-items: center;
    column-gap: 2rem;
    padding-right: 0;
}
.drawer-open #g_navi_wrap .navigation {
	/*opacity: 0;
    z-index: -1;*/
}
#g_navi_wrap .navigation > li {
	line-height: 1;
    height: 100%;
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
}
#g_navi_wrap .navigation > li:not(:first-child) {
}
#g_navi_wrap .navigation > li.navi a {
	display: flex;
	position: relative;
    transition: all .6s;
}

#g_navi_wrap .navigation > li.navi a span {
	font-size: 1.4rem;
    letter-spacing: 0;
	line-height: 1;
    font-weight: 700;
    color: #000000;
    transition: all .6s;
    position: relative;
}
/*#g_navi_wrap .navigation > li.navi a span::after {
	content: '';
    display: block;
    width: 100%;
    height: 2px;
    background-color: #000000;
    transition: all .6s;
    position: absolute;
    bottom: -0.8rem;
    left: 50%;
    transform: translate(-50%, 100%);
    z-index: 2;
    opacity: 0;
}*/

#g_navi_wrap .navigation > li.contact .btn {
    padding: 1.6rem 2rem;
}
#g_navi_wrap .navigation > li.contact .btn span {
    font-weight: bold;
}

#g_navi_wrap .navigation a:hover {
	opacity: .6;
}
#g_navi_wrap .navigation > li.navi:hover a span::after {
	opacity: 1;
}
#g_navi_wrap .navigation > li.current a span::after  {
    opacity: 1;
}

#g_navi_wrap .navigation > li.lang {
	display: flex;
    align-items: center;
}
#g_navi_wrap .navigation > li.lang .lang_list {
	display: flex;
    align-items: center;
}
#g_navi_wrap .navigation > li.lang .lang_list li {
	display: flex;
    align-items: center;
}
#g_navi_wrap .navigation > li.lang .lang_list li:not(:first-child)::before {
	content: '';
    display: block;
    width: 1px;
    height: 1rem;
    background-color: #000000;
    transform: rotate(30deg);
    margin: 0 0.8rem;
    margin-bottom: -0.1rem;
}
#g_navi_wrap .navigation > li.lang a {
    font-size: 1.2rem;
    font-weight: 700;
    color: #CCCCCC;
    display: flex;
    align-items: center;
}
#g_navi_wrap .navigation > li.lang a.current {
    color: #000000;
}


#g_navi_wrap .navigation > li.pd {
	/*position: relative;*/
}
#g_navi_wrap .navigation > li.pd .pd_btn {
    height: 100%;
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
    position: relative;
}
#g_navi_wrap .navigation > li.pd .pd_btn > span {
	font-size: 1.4rem;
    letter-spacing: 0;
	line-height: 1;
    font-weight: 700;
    color: #000000;
    transition: all .6s;
    position: relative;
}
#g_navi_wrap .navigation > li.pd .pd_btn > span::after {
	content: '';
    display: block;
    width: 100%;
    height: 2px;
    background-color: #000000;
    transition: all .6s;
    position: absolute;
    bottom: -0.8rem;
    left: 50%;
    transform: translate(-50%, 100%);
    z-index: 2;
    opacity: 0;
}
#g_navi_wrap .navigation > li.pd .pd_btn > span:hover {
	opacity: .6;
}
#g_navi_wrap .navigation > li.pd:hover .pd_btn > span::after {
	opacity: 1;
}
#g_navi_wrap .navigation > li.current .pd_btn > span::after {
    opacity: 1;
}

#g_navi_wrap .navigation > li.pd .pd_btn::after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-right: 0.6rem solid transparent;
    border-left: 0.6rem solid transparent;
    border-bottom: 0.6rem solid #000000;
    border-top: 0;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    transition: all .6s;
    opacity: 0;
}
#g_navi_wrap .navigation > li.pd:hover .pd_btn::after,
#g_navi_wrap .navigation > li.pd.open .pd_btn::after {
    opacity: 1;
}
#g_navi_wrap .navigation > li.pd .sub {
    width: 100vw;
    height: calc(5rem + 1px);
	position: absolute;
    top: calc(100% - 1px);
    left: 0;
    /*transform: translateX(-50%);*/
    z-index: 2;
    background-color: rgba(0,0,0,1.00);
    display: none;
}
#g_navi_wrap .navigation > li.pd.open .sub {
    display: block;
}
#g_navi_wrap .navigation > li.pd.open2 .sub {
    z-index: 3;
}
#g_navi_wrap .navigation > li.pd .sub .child_list {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    grid-gap: 1rem 0;
}
#g_navi_wrap .navigation > li.pd .sub .child_list > li {
}
#g_navi_wrap .navigation > li.pd .sub a {
    white-space: nowrap;
    font-size: 1.3rem;
    font-weight: 400;
    color: #FFFFFF;
    padding: 0 2rem;
}
#g_navi_wrap .navigation > li.pd .sub a:hover {
    opacity: .6;
}
#g_navi_wrap .navigation > li.pd .sub .child_list > li.current2 a {
    font-weight: 700;
}


#g_navi_wrap .icon_navi {
    margin-left: 4rem;
    display: flex;
}
#g_navi_wrap .icon_navi > li:not(:last-child) {
    margin-right: 2rem;
}
#g_navi_wrap .icon_navi > li a {
    display: flex;
    width: 4rem;
}


button.drawer-hamburger {
	margin: 0;
	padding: 0;
	background: none;
	border: none;
	border-radius: 0;
	outline: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
    
    color: #000000;
	font-family: "游ゴシック体", "Yu Gothic", YuGothic, 'ヒラギノ角ゴ ProN', "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
}

.drawer--left .drawer-hamburger {
	position: fixed;
    top: 6rem;
    right: 5rem;
	bottom: auto;
    left: auto;
    width: auto;
    height: auto;
    padding: 0;
    margin: 0;
	box-sizing: border-box;
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
    align-content: center;
    flex-wrap: wrap;
    transform: translateY(-50%);
	padding-bottom: 0;
	 -webkit-transition: all .6s;
    transition: all .6s;
	
	z-index: 107;
    /*display: none;*/
	/*filter: drop-shadow(0 0 0.5rem rgb(0,0,0,0.2));*/
}

/*.drawer--left.is_show .drawer-hamburger {
	top: 0;
}*/

.drawer--left .drawer-hamburger .btn_wrap {
	/*position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);*/
    width: 3rem;
    height: 1.8rem;
	box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    align-content: center;
    flex-wrap: wrap;
	 -webkit-transition: all .6s;
    transition: all .6s;
}
.drawer--left .drawer-hamburger .menu {
	font-size: 1rem;
}

.drawer--left.is_show .drawer-hamburger {
    /*-webkit-transform: translate(0,0);
    transform: translate(0,0);*/
}

.drawer--left.drawer-open .drawer-hamburger {
    left: auto;
    /*right: 1.5rem;*/
    /*-webkit-transform: translate(0,0);
    transform: translate(0,0);*/
}

.drawer .drawer-hamburger-icon,
.drawer .drawer-hamburger-icon:before,
.drawer .drawer-hamburger-icon:after {
    width: 100%;
    display: block;
    /*height: 0.15rem;*/
    height: 1px;
    margin-top: 0;
    -webkit-transition: all .6s cubic-bezier(0.190, 1.000, 0.220, 1.000);
    transition: all .6s cubic-bezier(0.190, 1.000, 0.220, 1.000);
}

.drawer.drawer-open .drawer-hamburger-icon:before {
    -webkit-transform: rotate(20deg);
    transform: rotate(20deg);
}
.drawer.drawer-open .drawer-hamburger-icon:after {
    /*max-width: 3rem;*/
    -webkit-transform: rotate(-20deg);
    transform: rotate(-20deg);
}
	
.drawer .drawer-hamburger-icon {
    width: 3rem;
    background-color: transparent;
}
.drawer .drawer-hamburger-icon:before {
    width: 3rem;
    background-color: #000000;
}
.drawer .drawer-hamburger-icon:after {
    width: 3rem;
    background-color: #000000;
}
.drawer.is_show .drawer-hamburger-icon {
   background-color: transparent;
}
.drawer.is_show .drawer-hamburger-icon:before {
    background-color: #000000;
}
.drawer.is_show .drawer-hamburger-icon:after {
    background-color: #000000;
}
.drawer.drawer-open .drawer-hamburger-icon {
    background-color: transparent;
}
.drawer.drawer-open .drawer-hamburger-icon:before {
    background-color: #000000;
}
.drawer.drawer-open .drawer-hamburger-icon:after {
    /*width: 3rem;*/
    background-color: #000000;
}


.drawer-hamburger-icon:before,
.drawer-hamburger-icon:after {
  position: absolute;
  left: 0;
  content: '';
}
.drawer-hamburger-icon:before {
  top: -0.3rem;
}
.drawer-hamburger-icon:after {
  top: 0.3rem;
}

.drawer--left .drawer-hamburger:hover {
    opacity: 1;
}

.drawer--left .drawer-nav .drawer-hamburger {
    display: none;
}
.drawer--left.drawer-open .drawer-nav .drawer-hamburger {
    display: block;
}

/*.drawer--left.drawer-open .drawer-nav,
.drawer--left .drawer-hamburger,
.drawer--left.drawer-open .drawer-navbar .drawer-hamburger {
    left: 0;
}*/

.drawer--left.drawer-open .drawer-hamburger .btn_wrap {
    /*background-color: #000000;
    border: 0.1rem solid #000000;*/
}

.drawer--left .drawer-nav {
    /*width: 100%;*/
    width: 100%;
    max-width: 55.5rem;
	left: auto;
    right: 0;
	opacity: 0;
	transform: translateY(0) translateX(100%);
	transition: all .6s;
    /*display: flex;
    align-items: flex-start;
    align-content: center;
    flex-wrap: wrap;*/
    height: 100vh;
    /*overflow: scroll;*/
    overflow: hidden;
    box-sizing: border-box;
	display: flex;
	align-items: flex-start;
	justify-content: flex-end;
	z-index: -1;
}

.drawer--left .drawer-nav::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(255,255,255,1);
    /*mix-blend-mode: Multiply;*/
    z-index: -1;
}
.drawer--left .drawer-nav::after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: transparent;
    z-index: -2;
}
.drawer--left.is_show .drawer-nav {
   /*padding-top: 8rem;*/
}
.drawer--left.drawer-open .drawer-nav {
	transform: translateY(0) translateX(0);
    z-index: 106;
    left: auto;
    right: 0;
    opacity: 1;
    background-color: transparent;
}

.drawer--left .drawer-nav .navi_wrap {
    width: calc(100% - 9rem);
    max-width: 108rem;
    margin: auto;
    padding: 0;
	padding-top: 9rem;
    padding-bottom: 6rem;
    height: 100%;
    display: flex;
    flex-flow: column;
    align-items: stretch;
    justify-content: space-between;
}

.drawer--left .drawer-nav .navi_wrap .navi_layout {
	width: 100%;
    height: 100%;
    display: flex;
    flex-flow: column;
    grid-gap: 2rem 0;
    margin-top: 0;
    padding-left: 1.0rem;
    overflow-y: scroll;
}
.drawer--left .drawer-nav .navi_wrap .navi_layout .navi_con {
}
.drawer--left .drawer-nav .navi_wrap .navi_layout .navi_con.in_the_works {
    padding-top: 3rem;
}
.drawer--left .drawer-nav .navi_wrap .navi_layout .navi_con a {
    font-size: 2.7rem;
    line-height: 1;
}

.drawer--left .drawer-nav .navi_wrap .navi_layout .navi_con.donation {
    padding-top: 2rem;
}
.drawer--left .drawer-nav .navi_wrap .navi_layout .navi_con.donation a {
    font-size: 1.8rem;
    line-height: 1;
}

.drawer--left .drawer-nav .navi_wrap .navi_layout .navi_con .navi_ttl {
    line-height: 1;
    margin-bottom: 2.5rem;
}
.drawer--left .drawer-nav .navi_wrap .navi_layout .navi_con .navi_ttl span {
    font-size: 2.7rem;
    line-height: 1;
}
.drawer--left .drawer-nav .navi_wrap .navi_layout .navi_con .navi_list {
	padding-top: 1.5rem;
    padding-bottom: 2rem;
    padding-left: 3rem;
    display: flex;
    flex-flow: column;
    grid-gap: 1.5rem 0;
}
.drawer--left .drawer-nav .navi_wrap .navi_layout .navi_con .navi_list > li {
	line-height: 1;
}
.drawer--left .drawer-nav .navi_wrap .navi_layout .navi_con .navi_list a {
    font-size: 1.8rem;
    line-height: 1;
}
.drawer--left .drawer-nav .navi_wrap .navi_layout .navi_con .navi_list a span.en {
    display: none;
}
.drawer--left .drawer-nav .navi_wrap .navi_layout .navi_con .navi_list a.blank[target="_blank"]::after {
	background: url(../images/blank2.svg) no-repeat center center;
    background-size: contain;
}

.drawer--left .drawer-nav .navi_wrap .lang_wrap {
    margin-top: 4rem;
}
.drawer--left .drawer-nav .navi_wrap .lang_wrap .layout {
    display: flex;
    align-items: center;
    column-gap: 2rem;
}
.drawer--left .drawer-nav .navi_wrap .lang_wrap .layout a {
    display: flex;
    position: relative;
}
.drawer--left .drawer-nav .navi_wrap .lang_wrap .layout a.en {
    margin-left: 3rem;
}
.drawer--left .drawer-nav .navi_wrap .lang_wrap .layout a::after {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    background-color: #000000;
    position: absolute;
    bottom: -0.8rem;
    left: 50%;
    transform: translate(-50%,100%);
    transition: all .6s;
    opacity: 0;
}
.drawer--left .drawer-nav .navi_wrap .lang_wrap .layout a:hover::after {
    opacity: 1;
}
.drawer--left .drawer-nav .navi_wrap .lang_wrap .layout a.current::after {
    opacity: 1;
}
.drawer--left .drawer-nav .navi_wrap .lang_wrap .layout a span {
    font-size: 2.25rem;
    line-height: 1;
}

.drawer-overlay {
    position: fixed;
    z-index: auto;
    top: 0;
    left: 0;
    display: none;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0);
}

.drawer-open {
	overflow: hidden;
}

#g_navi_wrap .logo #logo_svg .a,
#g_navi_wrap .logo #logo_svg .b {
    transition: all .6s;
}


.drawer-open #g_navi_wrap .inner {
}
.drawer-open #g_navi_wrap .navigation {
}
.drawer-open #g_navi_wrap .logo #logo_svg .a,
.drawer-open #g_navi_wrap .logo #logo_svg .b {
    fill:#FFFFFF;
}
.drawer-open #g_navi_wrap .navigation_wrap {
    /*display: none;*/
}

.drawer-open #g_navi_wrap .navigation > li.contact.btn_wrap .btn.reverse {
    background-color: #FFFFFF;
    border: 1px solid #000000;
}
.drawer-open #g_navi_wrap .navigation > li.contact.btn_wrap .btn.reverse span {
    color: #000000;
}
.drawer-open #g_navi_wrap .navigation > li.contact.btn_wrap .btn:hover.reverse {
    background-color: #000000;
    border: 1px solid #FFFFFF;
}
.drawer-open #g_navi_wrap .navigation > li.contact.btn_wrap .btn:hover.reverse span {
    color: #FFFFFF;
}
.drawer-open #g_navi_wrap .navigation > li.lang a.current {
    color: #FFFFFF;
}
.drawer-open #g_navi_wrap .navigation > li.lang .lang_list li:not(:first-child)::before {
    background-color: #FFFFFF;
}

@media screen and (max-width: 768px) {
header {
    width: 100%;
    padding-top: 0;
}
#g_navi_wrap {
    width: 100%;
	height: 12rem;
}
#g_navi_wrap .inner {
}
#g_navi_wrap .logo {
    width: auto;
    height: 4.5rem;
    margin-left: 2rem;
}
#g_navi_wrap .logo {
    margin-left: 2rem;
}
#g_navi_wrap .logo a svg {
	width: auto;
    height: 4.5rem;
}
#g_navi_wrap .navigation_wrap {
    padding-right: 8.5rem;
}
#g_navi_wrap .navigation_wrap .navi_layout {
    column-gap: 0;
}
#g_navi_wrap .navigation_wrap .navi_layout .navi_con:not(.lang) {
    display: none;
}
    
.drawer--left .drawer-nav {
    /*width: 100%;*/
    max-width: none;
	left: auto;
    right: 0;
	opacity: 0;
	transform: translateY(0) translateX(100%);
	transition: all .6s;
    /*display: flex;
    align-items: flex-start;
    align-content: center;
    flex-wrap: wrap;*/
    height: calc(var(--vh, 1vh) * 100);
    /*overflow: scroll;*/
    overflow: hidden;
    box-sizing: border-box;
	display: flex;
	align-items: flex-start;
	justify-content: flex-end;
	z-index: -1;
}

}


/* .drawer カスタマイズ
----------------------------------------- */
@media screen and (max-width: 768px) {

.drawer--left .drawer-hamburger {
    top: 6rem;
    right: 2rem;
}

    
}



/* .pure-drawer カスタマイズ
----------------------------------------- */
.pure-drawer ul{
	padding: 20px;
	margin-top: 120px;
}

.pure-drawer li{
	padding-bottom: 20px;
}

.pure-drawer li img{
	width: auto;
	max-width: 100%;
}


/* layout
----------------------------------------- */
main {
	display: block;
}

#conWrap {
	clear: both;
    padding: 0;
    position: relative;
	overflow: hidden;
    background-color: #EDEBE7;
    /*transition: all .6s;*/
    z-index: 1;
    padding-top: 12rem;
}
body#top #conWrap,
body#about #conWrap {
    padding-top: 0;
}

#conWrap::before {
    content: '';
    display: block;
    width: 100%;
    /*height: 100%;*/
    aspect-ratio: 1440 / 830;
    background: url("../images/body_top_bg.jpg") no-repeat center top / cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}


#conWrap section {
	/*position: relative;*/
}

#conWrap section > .sec_fix_ttl {
	position: fixed;
    top: 50%;
    left: 3rem;
    transform: translate(0,-50%);
    opacity: 0;
    z-index: -1;
    transition: all .2s;
}
#conWrap section.show > .sec_fix_ttl {
    opacity: 1;
    z-index: 2;
}
#conWrap section > .sec_fix_ttl .sec_ttl {
    font-family: "Roboto", "游ゴシック体", "Yu Gothic", YuGothic, 'ヒラギノ角ゴ ProN', "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
	font-weight: 400;
    letter-spacing: 0.06em;
    font-optical-sizing: auto;
    font-style: normal;
    
	font-size: 2rem;
    line-height: 1;
    display: flex;
    -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    -moz-font-feature-settings: 'pkna';
    -webkit-font-feature-settings: 'pkna';
    font-feature-settings: 'pkna';
    
}
#conWrap section > .sec_fix_ttl .sec_ttl:after {
    content: "";
    display: block;
    position: absolute;
    top: 0px;
    left: -1rem;
    width: 6px;
    transform: translateX(-100%);
    height: 0;
    background-color: #000000;
    border-radius: 7px 0 7px 0;
    /*transition: height 1s 0s cubic-bezier(0.19, 1, 0.22, 1);*/
    transition: all .6s;
}
#conWrap section.show > .sec_fix_ttl .sec_ttl:after {
    height: 100%
}

#conWrap .inner {
	width: 100%;
    /*max-width: calc(100% - 4rem);*/
    max-width: 113rem;
    /*max-width: 100rem;*/
	margin-left: auto;
	margin-right: auto;
	transition: all .6s;
}

.f_red {
	font-weight: bold;
	color: #ff0000;
}
.highlight {
	position: relative;
    z-index: 1;
}
/*.highlight::before {
	content: "";
	display: block;
	width: 100%;
	height: 1rem;
	background-color: #FFF000;
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: -1;
}*/

.fx_bg_sp {
  display: none;
}


.btn_wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-right: 1.3rem;
}
.btn_wrap .btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    height: auto;
    padding: 0.7rem 2.5rem;
    border: 1px solid #000000;
    border-radius: 10rem;
    position: relative;
    transition: all .6s;
}
.btn_wrap .btn span {
    font-size: 1.2rem;
    line-height: calc(14.4/12);
    letter-spacing: 0.02em;
    /*margin-top: -0.1em;*/
    transition: all .6s;
}
.btn_wrap .btn::after {
    content: '';
    display: block;
    width: 2.6rem;
    height: 1px;
    background-color: #000000;
    position: absolute;
    top: 50%;
    right: -1.3rem;
    transform: translate(0,-50%);
    transition: all .6s;
}
.btn_wrap .btn:hover::after {
    transform: translate(30%,-50%);
}

.btn_wrap.none_arrow {
    padding-right: 0;
}
.btn_wrap.none_arrow .btn::after {
    display: none;
}

.btn_wrap.small .btn {
    padding: 0.5rem 1.5rem;
    padding-right: 2rem;
}
.btn_wrap.small .btn::after {
}
.btn_wrap.none_arrow.small .btn {
    padding-right: 1.5rem;
}

.btn_wrap.large {
    padding-right: 2.5rem;
}
.btn_wrap.large .btn {
    padding: 1.8rem 5.5rem;
}
.btn_wrap.large .btn span {
    font-size: 1.8rem;
}
.btn_wrap.large .btn::after {
    width: 5rem;
    right: -2.5rem;
}

.btn_wrap .btn svg {
}
.btn_wrap .btn #arrow2_s .cls-1{transition: all .6s;}

.btn_wrap .btn:hover {
    opacity: 1;
    background-color: #000000;
}
.btn_wrap .btn:hover span {
    color: #FFFFFF;
}
.btn_wrap .btn:hover #arrow2_s .cls-1{fill:#FFFFFF;}


.btn_wrap .btn.reverse {
    border: 1px solid #FFFFFF;
}
.btn_wrap .btn.reverse span {
    color: #FFFFFF;
}
.btn_wrap .btn.reverse::after {
    background-color: #FFFFFF;
}
.btn_wrap .btn.reverse:hover {
    background-color: #FFFFFF;
}
.btn_wrap .btn.reverse:hover span {
    color: #000000;
}

.btn_wrap .btn.current {
    background-color: #000000;
}
.btn_wrap .btn.current span {
    color: #FFFFFF;
}


a.blank[target="_blank"] {
	display: inline-flex;
    align-items: center;
}

a.blank[target="_blank"]::after {
	content: "";
    display: block;
    width: 1.0rem;
    height: 1.0rem;
    background: url(../images/blank.svg) no-repeat center center;
    background-size: contain;
    margin-left: 1rem;
}
a.reverse.blank[target="_blank"]::after {
	content: "";
    display: block;
    width: 1.0rem;
    height: 1.0rem;
    background: url(../images/blank2.svg) no-repeat center center;
    background-size: contain;
    margin-left: 1rem;
}


.b_over {
	position: relative;
	overflow: hidden;
	z-index: 1;
}
.b_over::before {
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background-color: rgba(0,0,0,0.30);
	z-index: -1;
}


@media screen and (max-width: 768px) {
main {
    width: 100%;
}
#conWrap {
    padding-top: 12rem;
}
body:not(#top) #wrapper.pd_menu_open #conWrap {
    padding-top: 15.7rem;
}
body#office #wrapper #conWrap,
body#house #wrapper #conWrap,
body#event-space #wrapper #conWrap {
    padding-top: 15.7rem;
}
#conWrap .inner {
	width: 100%;
    max-width: 35rem;
}
	
.fx_bg_sp {
  z-index: -1;
}
	
.attachment {
position: absolute;
  left: 0;
  top: 0;
  display: block;
  height: 100%;
  width: 100%;
}
	
.btn_wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-right: 1.3rem;
}
.btn_wrap .btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    height: auto;
    padding: 0.7rem 2.5rem;
    border: 1px solid #000000;
    border-radius: 10rem;
    position: relative;
}
.btn_wrap .btn span {
    font-size: 1.2rem;
    line-height: calc(14.4/12);
    letter-spacing: 0.02em;
    /*margin-top: -0.1em;*/
    transition: all .6s;
}
.btn_wrap .btn::after {
    content: '';
    display: block;
    width: 2.6rem;
    height: 1px;
    background-color: #000000;
    position: absolute;
    top: 50%;
    right: -1.3rem;
    transform: translate(0,-50%);
    transition: all .6s;
}
.btn_wrap .btn:hover::after {
    transform: translate(30%,-50%);
}

.btn_wrap.none_arrow {
    padding-right: 0;
}
.btn_wrap.none_arrow .btn::after {
    display: none;
}

.btn_wrap.small .btn {
    padding: 0.5rem 1.5rem;
    padding-right: 2rem;
}
.btn_wrap.small .btn::after {
}

.btn_wrap.large {
    padding-right: 2.5rem;
}
.btn_wrap.large .btn {
    padding: 1.8rem 5.5rem;
}
.btn_wrap.large .btn span {
    font-size: 1.8rem;
}
.btn_wrap.large .btn::after {
    width: 5rem;
    right: -2.5rem;
}
    
}



/* modal
----------------------------------------- */
.remodal {
    max-width: 80rem;
    padding: 0px;
}
.remodal-wrapper {
    padding: 4rem 2rem;
    width: 100%;
}
.modal_con {
	width: 100%;
    max-height: 90vh;
    overflow-y: scroll;
	padding: 4rem 4rem;
	border-radius: 1rem;
	margin: auto;
	background-color: #FFFFFF;
	position: relative;
}
.modal_con .close {
    position: absolute;
    top: 2.5rem;
    right: 3.5rem;
}
.remodal-is-locked .remodal-overlay {
    background: rgba(0, 0, 0, 0.6);
}
.modal_con section {
	max-height: 70vh;
    overflow-y: scroll;
}
.modal_con section .inner {
	padding-right: 5rem;
}
.modal_con h1 {
	width: 100%;
    font-size: 2.4rem;
    letter-spacing: 0.16em;
    font-weight: 700;
    color: #008bd6;
    line-height: 1;
    margin-bottom: 3rem;
}

.modal_con .layout {
	width: 100%;
}
.modal_con .layout > li.txt {
	width : calc(410 / 840 * 100%) ;
}
.modal_con .layout > li.img {
	width : calc(400 / 840 * 100%) ;
}

.modal_con .txt_wrap {
	font-size: 1.3rem;
	letter-spacing: 0.16em;
	line-height: 2.3;
	color: #008bd6;
}

.modal_con .txt_wrap.lead {
	font-size: 1.3rem;
	letter-spacing: 0.16em;
	line-height: 2.3;
	color: #008bd6;
	text-align: left;
	margin-bottom: 4rem;
}

.modal_con .layout:not(:last-child) {
	margin-bottom: 6rem;
}


@media screen and (max-width: 768px) {
#products .remodal {
    max-width: 100%;
    padding: 0px;
}
#products .remodal-wrapper {
    padding: 0;
    width: 100%;
}
.modal_con {
	width: 100%;
	padding: 2rem 2rem;
	border-radius: 0;
}
.modal_con .close {
    width: 3rem;
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
}

.remodal-is-locked .remodal-overlay {
    background: rgba(0, 0, 0, 0);
}
.modal_con section {
	max-height: 45rem;
    overflow-y: scroll;
}
.modal_con section .inner {
	padding-right: 2.5rem;
}
.modal_con h1 {
    font-size: 1.7rem;
    margin-bottom: 3rem;
}

.modal_con .layout {
	width: 100%;
}
.modal_con .layout > li.txt {
	width: 100%;
	margin-bottom: 2.5rem;
}
.modal_con .layout > li.img {
	width: 100%;
}

.modal_con .txt_wrap {
	font-size: 1.2rem;
	letter-spacing: 0.1em;
	line-height: 1.8;
}

.modal_con .txt_wrap.lead {
	font-size: 1.2rem;
	letter-spacing: 0.1em;
	line-height: 1.8;
	margin-bottom: 3rem;
}

.modal_con .layout:not(:last-child) {
	margin-bottom: 6rem;
}
}


/* #contents_page_ttl
----------------------------------------- */
#contents_page_ttl {
	width: 100%;
    position: relative;
    z-index: 1;
    margin-bottom: 3rem;
}

#contents_page_ttl .inner {
    padding: 6rem;
    padding-top: 4rem;
    padding-bottom: 9rem;
    position: relative;
    z-index: 1;
}

#contents_page_ttl h1 {
    display: flex;
    flex-flow: column;
    align-items: flex-start;
    position: absolute;
    top: calc(4rem + 3.5rem);
    left: 0;
    z-index: 2;
}
#contents_page_ttl h1 span {
    display: block;
}
#contents_page_ttl h1 .cat {
    font-size: 2.5rem;
    font-weight: 700;
	line-height: calc(25.2/25);
    color: #FFFFFF;
    padding: 0.5rem 1.0rem 0.8rem;
    background-color: #000000;
    border-radius: 0.4rem;
}
#contents_page_ttl h1 .ttl {
    font-size: 3.6rem;
    font-weight: 700;
	line-height: calc(48/36);
    padding: 1rem 1.5rem 1.3rem;
    padding-left: 0;
    background-color: #F0EBDE;
    margin-top: 2rem;
}

#contents_page_ttl .lead {
    position: absolute;
    bottom: calc(9rem + 4.5rem);
    left: 0;
    z-index: 2;
    display: flex;
    flex-flow: column;
    align-items: flex-start;
    grid-gap: 0.6rem 0;
}
#contents_page_ttl .lead span {
    display: block;
    background-color: #FFFFFF;
    border: 1px solid #000000;
    padding: 0 1rem 0.3rem;
    font-size: 3rem;
    font-weight: 700;
	line-height: calc(48/30);
}

#contents_page_ttl .txt {
    width: 100%;
    max-width: 45rem;
    position: absolute;
    z-index: 2;
    bottom: 0;
    right: 0;
    display: block;
    background-color: #F0EBDE;
    padding: 3rem 3rem 3.3rem;
    padding-right: 0;
    border-radius: 0.5rem;
}

#contents_page_ttl .photo_slider {
}


#contents_page_ttl .page_navi {
    margin-top: 6rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    grid-gap: 1.5rem 6rem;
    padding: 2.5rem;
    position: relative;
}
#contents_page_ttl .page_navi::before {
    content: '';
    display: block;
    width: 100%;
    height: 2px;
    background: url(../images/dot_line.svg) repeat-x center center / auto;
    position: absolute;
    top: 0;
    left: 0;
}
#contents_page_ttl .page_navi::after {
    content: '';
    display: block;
    width: 100%;
    height: 2px;
    background: url(../images/dot_line.svg) repeat-x center center / auto;
    position: absolute;
    bottom: 0;
    left: 0;
}
#contents_page_ttl .page_navi .con {
    display: flex;
    grid-gap: 1.5rem 3rem;
}
#contents_page_ttl .page_navi .con .ttl {
    font-size: 1.6rem;
    font-weight: 700;
    white-space: nowrap;
}
#contents_page_ttl .page_navi .con .list {
    display: flex;
    flex-wrap: wrap;
    grid-gap: 1.5rem 3rem;
}
#contents_page_ttl .page_navi .con .list a {
    display: flex;
    align-items: center;
    font-size: 1.6rem;
    line-height: calc(25.6/16);
}
#contents_page_ttl .page_navi .con .list a::before {
    content: '';
    display: block;
    width: 1.4rem;
    height: 0.9rem;
    background: url("../images/arrow_down.svg") no-repeat center center / contain;
    margin-right: 1rem;
}

@media screen and (max-width: 768px) {
#contents_page_ttl {
    margin-bottom: 0;
}

#contents_page_ttl .inner {
    padding: 1rem;
    padding-top: 9rem;
    padding-bottom: 3rem;
}

#contents_page_ttl h1 {
    top: 2rem;
    left: 0;
}
#contents_page_ttl h1 span {
    display: block;
}
#contents_page_ttl h1 .cat {
    font-size: 1.6rem;
	line-height: calc(25.2/16);
    padding: 0.3rem 1.0rem 0.5rem;
}
#contents_page_ttl h1 .ttl {
    font-size: 2.4rem;
	line-height: calc(35/24);
    padding: 0.7rem 1.5rem 0.8rem;
    border-radius: 0 0.5rem 0.5rem 0;
    padding-left: 0;
    margin-top: 1rem;
}

#contents_page_ttl .lead {
    position: absolute;
    /*bottom: 3rem;*/
    bottom: auto;
    top: 24.5rem;
    grid-gap: 0.5rem 0;
}
#contents_page_ttl .lead span {
    padding: 0 1rem 0.3rem;
    font-size: 1.8rem;
	line-height: calc(33/18);
}

#contents_page_ttl .photo_slider {
    margin-bottom: 8rem;
}
    
#contents_page_ttl .txt {
    max-width: none;
    position: relative;
    padding: 0;
    border-radius: 0.5rem;
}
#contents_page_ttl .txt br {
    display: none;
}
    
    
#contents_page_ttl .page_navi {
    margin-top: 3rem;
    display: flex;
    flex-wrap: nowrap;
    align-items: flex-start;
    justify-content: flex-start;
    grid-gap: 1.5rem 0;
    padding: 2rem;
    position: relative;
}
#contents_page_ttl .page_navi .con {
    width: 50%;
    flex-flow: column;
    grid-gap: 1.0rem 0;
}
#contents_page_ttl .page_navi .con .ttl {
    font-size: 1.4rem;
}
#contents_page_ttl .page_navi .con .list {
    flex-flow: column;
    grid-gap: 1.0rem 0;
}
#contents_page_ttl .page_navi .con .list a {
    display: flex;
    align-items: center;
    font-size: 1.2rem;
    line-height: calc(17/12);
}
#contents_page_ttl .page_navi .con .list a::before {
    content: '';
    display: block;
    width: 1.0rem;
    height: 0.62rem;
    background: url("../images/arrow_down.svg") no-repeat center center / contain;
    margin-right: 0.7rem;
}
    
#contents_page_ttl .page_navi.w100 .con {
    width: 100%;
    flex-flow: column;
    grid-gap: 1.0rem 0;
}
#contents_page_ttl .page_navi.w100 .con .list {
    width: 100%;
    flex-flow: row;
    flex-wrap: wrap;
    grid-gap: 1.0rem 0;
}
#contents_page_ttl .page_navi.w100 .con .list li {
    width: 50%;
}
}



/* #page_ttl_wrap
----------------------------------------- */
#page_ttl_wrap {
	width: 100%;
    position: relative;
    z-index: 1;
    /*padding-left: 2rem;*/
}

#page_ttl_wrap .inner {
    padding-top: 12rem;
    padding-bottom: 8rem;
}
#page_ttl_wrap .inner.pd_none {
    padding: 0;
}

#page_ttl_wrap .inner > h1 {
    display: flex;
    flex-flow: column;
}
#page_ttl_wrap .inner > h1 span {
    display: block;
}
#page_ttl_wrap .inner > h1 .ttl {
    font-size: 4rem;
	line-height: calc(48/40);
    font-weight: 300;
}

#page_ttl_wrap .inner > .lead {
    font-size: 3.2rem;
	line-height: calc(45/32);
    letter-spacing: 0.02em;
    font-weight: 700;
    margin-top: 4rem;
}
#page_ttl_wrap .inner > .txt {
    font-size: 1.8rem;
	line-height: calc(42/18);
    letter-spacing: 0.02em;
    margin-top: 3rem;
}



@media screen and (max-width: 768px) {
#page_ttl_wrap {
    /*padding-left: 0;*/
}
#page_ttl_wrap .inner {
    max-width: 35rem;
    /*margin-right: 2rem;*/
    padding-top: 8rem;
    padding-bottom: 8rem;
}

div#page_ttl_wrap .inner {
    margin-right: 0;
}
#page_ttl_wrap .inner > .txt {
    margin-top: 3rem;
    letter-spacing: 0;
}

}


/* sec_ttl_wrap
----------------------------------------- */
.sec_ttl_wrap {
	width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

.sec_ttl_wrap h2 {
    display: flex;
    flex-flow: column;
    align-items: flex-start;
}
.sec_ttl_wrap h2 span {
    display: block;
    color: #000000;
}
.sec_ttl_wrap h2 .sub {
    font-size: 2.0rem;
    letter-spacing: -0.01em;
    font-weight: 500;
	line-height: calc(30/20);
    padding-bottom: 1.0rem;
}
.sec_ttl_wrap h2 .ttl {
    font-size: 2.8rem;
    letter-spacing: 0;
	line-height: calc(33.6/28);
}
.sec_ttl_wrap h2 .ttl.small {
    font-size: 2.4rem;
    font-weight: 700;
	line-height: calc(35/24);
}
.sec_ttl_wrap > h3 .ttl {
    font-size: 2.4rem;
    font-weight: 700;
	line-height: calc(35/24);
    text-align: center;
}
.sec_ttl_wrap.center {
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
}
.sec_ttl_wrap.center h2 {
    display: block;
}
.sec_ttl_wrap.center h2 .ttl {
    text-align: center;
}
.sec_ttl_wrap h2.sec_ttl {
    font-size: 3.6rem;
    font-weight: 700;
	line-height: calc(58/36);
    text-align: center;
}
.sec_ttl_wrap h2.sec_ttl ruby rt {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}
.sec_ttl_wrap .lead_wrap {
    margin-top: 3rem;
}
.sec_ttl_wrap .lead_wrap .ttl {
    font-size: 2.4rem;
    font-weight: 700;
	line-height: calc(35/24);
    text-align: center;
    /*margin-top: 3rem;*/
    margin-bottom: 2rem;
}
.sec_ttl_wrap .lead_wrap .txt {
    /*font-size: 1.4rem;
	line-height: calc(25/14);*/
    width: 100%;
    max-width: 80rem;
    text-align: center;
    margin: auto;
}
.sec_ttl_wrap .lead_wrap .txt.left {
    text-align: left;
}

.sec_ttl_wrap .lead_wrap .att {
    margin-top: 0.5rem;
    font-size: 1.2rem;
    line-height: calc(18/12);
    color: #666666;
    padding-left: 1.3em;
    position: relative;
}
.sec_ttl_wrap .lead_wrap .att::before {
    content: '※';
    position: absolute;
    top: 0;
    left: 0;
}

.sec_ttl_wrap.left {
    display: flex;
    flex-flow: column;
    align-items: flex-start;
    justify-content: center;
}
.sec_ttl_wrap.left .lead_wrap .ttl {
    text-align: left;
}
.sec_ttl_wrap.left .lead_wrap .txt {
    text-align: left;
}

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

}


/* #report_feed
----------------------------------------- */
#report_feed {
}
#report_feed .inner {
    padding-top: 8rem;
    margin-bottom: 18rem;
}
#report_feed .post_list_wrap.report {
    margin-top: 5rem;
}

#report_feed .inner > .btn_wrap {
    margin-top: 6rem;
}

@media only screen and (max-width: 768px) {
#report_feed .inner {
    padding-top: 6rem;
    margin-bottom: 16rem;
}

}



/* .info_table
----------------------------------------- */
.info_table {
    width: 100%;
    border-top: 1px solid #FFFFFF;
    /*border-collapse: inherit;
    border-radius: 0.5rem;
    background-color: #FFFFFF;*/
}
.info_table th,
.info_table td {
    padding: 2rem 0;
    border-bottom: 1px solid #FFFFFF;
    vertical-align: middle;
}
/*.info_table tbody > tr th:last-child,
.info_table tbody > tr td:last-child {
    border-right: none;
}
.info_table tbody > tr:last-child th,
.info_table tbody > tr:last-child td {
    border-bottom: none;
}*/
.info_table th {
    white-space: nowrap;
    font-weight: 500;
    padding-right: 4rem;
}
.info_table td {
    width: 100%;
}
.info_table th a,
.info_table td a {
    text-decoration: underline;
    font-weight: 600;
}
/*
.info_table tbody > tr:first-child th:first-child,
.info_table tbody > tr:first-child td:first-child {
    border-top-left-radius: 0.5rem;
}
.info_table tbody > tr:first-child th:last-child,
.info_table tbody > tr:first-child td:last-child  {
    border-top-right-radius: 0.5rem;
}
.info_table tbody > tr:last-child th:first-child,
.info_table tbody > tr:last-child td:first-child {
    border-bottom-left-radius: 0.5rem;
}
.info_table tbody > tr:last-child th:last-child,
.info_table tbody > tr:last-child td:last-child {
    border-bottom-right-radius: 0.5rem;
}*/

@media screen and (max-width: 768px) {
.info_table {
    
}
.info_table th,
.info_table td {
    padding: 1rem 0;
}

.info_table th {
    padding-right: 2rem;
}
}


/* footer
----------------------------------------- */
footer {
	position: relative;
    width: 100%;
    background: url("../images/foot_bg.jpg") no-repeat center center / cover;
    z-index: 2;
}
footer .inner {
	width: 100%;
    max-width: none;
    margin: auto;
    padding-top: 7rem;
    padding-bottom: 4rem;
    padding-left: 10rem;
    padding-right: 5rem;
}

footer .lang_wrap {
    position: absolute;
    top: 5rem;
    right: 5rem;
}
footer .lang_wrap .layout {
    display: flex;
    flex-flow: column;
    align-items: flex-end;
    grid-gap: 2.0rem 0;
}
footer .lang_wrap .layout a {
    display: flex;
    flex-flow: column;
    position: relative;
}
footer .lang_wrap .layout a::after {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    background-color: #000000;
    position: absolute;
    bottom: -0.6rem;
    left: 50%;
    transform: translate(-50%,100%);
    transition: all .6s;
    opacity: 0;
}
footer .lang_wrap .layout a:hover::after {
    opacity: 1;
}
footer .lang_wrap .layout a.current::after {
    opacity: 1;
}
footer .lang_wrap .layout a span {
    font-size: 1.5rem;
    line-height: calc(18/15);
}

footer .navi_layout {
	display: grid;
    grid-template-columns: repeat(4, auto);
    grid-gap: 0 12rem;
    justify-content: flex-start;
    align-items: flex-start;
}
footer .navi_layout .navi_wrap {
	display: flex;
    flex-flow: column;
    grid-gap: 2.5rem 0;
}
footer .navi_layout .navi_con {
    display: flex;
    flex-flow: column;
}
footer .navi_layout .navi_con.initiatives {
    grid-row: 1 / 4;
}
footer .navi_layout .navi_con a {
    font-size: 1.8rem;
    line-height: calc(21.6/18);
    letter-spacing: 0.06em;
}
footer .navi_layout .navi_con.donation a {
    font-size: 1.4rem;
    line-height: calc(16.8/14);
    letter-spacing: 0.06em;
    padding-top: 0.5em;
}

footer .navi_layout .navi_con .navi_ttl {
    font-size: 1.8rem;
    line-height: calc(21.6/18);
    letter-spacing: 0.06em;
}
footer .navi_layout .navi_con .navi_list {
	display: flex;
    flex-flow: column;
    grid-gap: 1.0rem 0;
    margin-top: 1.5rem;
}
footer .navi_layout .navi_con .navi_list > li {
    display: flex;
	line-height: 1;
}
footer .navi_layout .navi_con .navi_list a {
    font-size: 1.4rem;
    line-height: calc(16.8/14);
    letter-spacing: 0.02em;
}

footer .foot_bottom_layout {
    margin-top: 6rem;
    width: 100%;
    padding: 0;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}
footer .foot_bottom_layout .logo {
    margin-right: 4rem;
}
footer .foot_bottom_layout .info {
    margin-top: -0.5rem;
    margin-right: auto;
}
footer .foot_bottom_layout .info .table {
	font-size: 1.4rem;
    line-height: calc(16.8/14);
    letter-spacing: 0.02em;
}
footer .foot_bottom_layout .info .table th,
footer .foot_bottom_layout .info .table td {
    padding: 0.5rem 0;
}
footer .foot_bottom_layout .info .table th {
	padding-right: 4rem;
    font-weight: 500;
}

footer .copyright {
	font-size: 1.2rem;
    line-height: calc(14.4/12);
    margin-top: 3rem;
}

#page_top {
	display: none;
}


@media screen and (max-width: 768px) {
footer {
	background: url("../images/foot_bg_sp.jpg") no-repeat center center / cover;
}
footer .inner {
	width: 100%;
    max-width: none;
    margin: auto;
    padding-top: 4rem;
    padding-bottom: 5rem;
    padding-left: 4rem;
    padding-right: 1rem;
}

footer .lang_wrap {
    position: relative;
    top: auto;
    right: auto;
    display: flex;
    justify-content: flex-end;
    padding-right: 1rem;
}
footer .lang_wrap .layout {
    display: flex;
    flex-flow: row;
    align-items: center;
    justify-content: flex-end;
    grid-gap: 2rem 2rem;
}
footer .lang_wrap .layout img {
    order: 3;
}
footer .lang_wrap .layout a.jp {
    order: 1;
}
footer .lang_wrap .layout a.en {
    order: 2;
}
footer .lang_wrap .layout a {
    display: flex;
    flex-flow: column;
    position: relative;
}
footer .lang_wrap .layout a::after {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    background-color: #000000;
    position: absolute;
    bottom: -0.6rem;
    left: 50%;
    transform: translate(-50%,100%);
    transition: all .6s;
    opacity: 0;
}
footer .lang_wrap .layout a:hover::after {
    opacity: 1;
}
footer .lang_wrap .layout a.current::after {
    opacity: 1;
}
footer .lang_wrap .layout a span {
    font-size: 1.5rem;
    line-height: calc(18/15);
}

footer .navi_layout {
	display: grid;
    grid-template-columns: repeat(2, auto);
    grid-gap: 3rem 0;
    justify-content: space-between;
    align-items: flex-start;
    padding-right: 6rem;
    margin-top: 6rem;
}
footer .navi_layout .navi_wrap {
	display: contents;
    grid-gap: 0 0;
}
footer .navi_layout .navi_con {
    display: flex;
    flex-flow: column;
}
footer .navi_layout .navi_con.initiatives {
    grid-row: auto;
}
footer .navi_layout .navi_con.top {
    grid-column: 1 / 3;
}
footer .navi_layout .navi_con a {
    font-size: 1.8rem;
    line-height: calc(21.6/18);
    letter-spacing: 0.06em;
}
footer .navi_layout .navi_con .navi_ttl {
    font-size: 1.8rem;
    line-height: calc(21.6/18);
    letter-spacing: 0.06em;
}
footer .navi_layout .navi_con .navi_list {
	display: none;
}

footer .foot_bottom_layout {
    margin-top: 6rem;
    flex-flow: column;
}
footer .foot_bottom_layout .logo {
    margin-right: 0;
}
footer .foot_bottom_layout .info {
    margin-top: 3rem;
}
footer .foot_bottom_layout .info .table {
	font-size: 1.4rem;
    line-height: calc(16.8/14);
    letter-spacing: 0.02em;
}
footer .foot_bottom_layout .info .table th,
footer .foot_bottom_layout .info .table td {
    padding: 0.5rem 0;
}
footer .foot_bottom_layout .info .table th {
	padding-right: 4rem;
    font-weight: 500;
}
footer .foot_bottom_layout .isct_logo {
    margin-top: 4rem;
}
    
footer .copyright {
	font-size: 1.2rem;
    line-height: calc(14.4/12);
    margin-top: 4.5rem;
}

#page_top {
	display: none;
}
}




/* #breadcrumbs
----------------------------------------- */
#breadcrumbs {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    margin: auto;
    margin-right: 0;
    padding: 1rem 0;
    padding-top: 2rem;
}

body.single #breadcrumbs {
    background-color: transparent;
}

#breadcrumbs > span {
    /*width: -webkit-calc(1200 / 1400 * 100%);
    width: calc(1200 / 1400 * 100%);*/
    width: calc(100% - 8rem);
	margin: auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

#breadcrumbs span.arrow {
    padding: 0 0.5rem;
}
#breadcrumbs span.arrow::before {
	content: "";
    display: block;
    width: 0.6rem;
    height: 1px;
    background-color: #000000;
}

#breadcrumbs span,
#breadcrumbs a {
    font-size: 1.2rem;
    font-weight: 400;
    color: #666666;
    padding: 0;
    text-align: left;
    -webkit-transition: all .6s;
    transition: all .6s;
}
#breadcrumbs a:hover {
    color: #000000;
	opacity: 1;
}

#breadcrumbs span.breadcrumb_last {
    color: #000000;
}


@media screen and (max-width: 768px) {
#breadcrumbs {
    padding: 2rem 0;
}

body.single #breadcrumbs {
    background-color: transparent;
}

#breadcrumbs > span {
    width: calc(100% - 4rem);
	margin: auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

}


