@charset "UTF-8";
/*
=====================================================
common
=====================================================
*/
*{
font-family: 'Noto Sans JP', sans-serif;
}
body{
position: relative;
}
dl {
line-height: 1.5em;
font-size: 14px;
line-height: 1.5em;
}
dt {
float: left;
}
dd {
margin-left: 1.3em;
}
.note{font-size: 12px;}

/*
=====================================================
アコーディオン
=====================================================
*/
.accordion {
margin: 0 auto;
max-width: 100%;
}
.toggle {
display: none;
}
.option {
position: relative;
margin-bottom: 1em;
}
.title,
.content {
-webkit-backface-visibility: hidden;
backface-visibility: hidden;
transform: translateZ(0);
transition: all 0.3s;
}
.title {
background:#7D85A0;
padding: 1em 2.5em 1em 1em;
display: block;
color: #fff;
font-weight: 700;
}
.title::after,
.title::before {
content: "";
position: absolute;
right: 1.25em;
top: 1.25em;
width: 2px;
height: 0.75em;
background-color: #fff;
transition: all 0.3s;
}
.title::after {
transform: rotate(90deg);
}
.content {
max-height: 0;
overflow: hidden;
}
.content p {
margin: 0;
padding: 0.5em 1em 1em;
font-size: 0.9em;
line-height: 1.5;
}
.toggle:checked + .title + .content {
max-height: 500px;
transition: all 1.5s;
}
.toggle:checked + .title::before {
transform: rotate(90deg) !important;
}

/*
=====================================================
画像調整用
=====================================================
*/
.img_wrap > div {
width:32%;
}
.img_wrap > div img {
width:100%;
}

/*
=====================================================
ハンバーガーボタン
=====================================================
*/
/* .hamburger {
display : block;
position: fixed;
z-index : 3;
right : 13px;
top   : 12px;
width : 42px;
height: 42px;
cursor: pointer;
text-align: center;
}
.hamburger span {
display : block;
position: absolute;
width   : 30px;
height  : 2px ;
left    : 6px;
background : #555;
-webkit-transition: 0.3s ease-in-out;
-moz-transition   : 0.3s ease-in-out;
transition        : 0.3s ease-in-out;
}
.hamburger span:nth-child(1) {
top: 10px;
}
.hamburger span:nth-child(2) {
top: 20px;
}
.hamburger span:nth-child(3) {
top: 30px;
}

/* ナビ開いてる時のボタン */
/* .hamburger.active span:nth-child(1) {
top : 16px;
left: 6px;
background :#fff;
-webkit-transform: rotate(-45deg);
-moz-transform   : rotate(-45deg);
transform        : rotate(-45deg);
}

.hamburger.active span:nth-child(2),
.hamburger.active span:nth-child(3) {
top: 16px;
background :#fff;
-webkit-transform: rotate(45deg);
-moz-transform   : rotate(45deg);
transform        : rotate(45deg);
}

nav.globalMenuSp {
position: fixed;
z-index : 2;
top  : 0;
left : 0;
color: #fff;
background: rgba(0,0,0,0.7);
text-align: center;
width: 100%;
opacity: 0;
transition: opacity .6s ease, visibility .6s ease;
height: 100%;
display: flex;
align-items: center;
}

nav.globalMenuSp ul {
margin: 0 auto;
padding: 0;
width: 100%;
flex-wrap: wrap;
}

nav.globalMenuSp ul li {
list-style-type: none;
padding: 0;
width: 100%;
transition: .4s all;
}
nav.globalMenuSp ul li:last-child {
padding-bottom: 0;
}
nav.globalMenuSp ul li:hover{
background :#ddd;
}

nav.globalMenuSp ul li a {
display: block;
color: #fff;
padding: 1em 0;
text-decoration :none;
}

nav.globalMenuSp.active {
opacity: 100;

}

@media screen and (min-width:1099px){
.hamburger, .globalMenuSp {display: none }
}
@media screen and (max-width:1100px){
.header_nav {display: none }
} */ */

/*
=====================================================
PC用
=====================================================
*/
@media screen and (min-width:641px){
.sp{display: none !important;}

}

/*
=====================================================
SP用
=====================================================
*/
@media screen and (max-width:640px){
.pc{display: none !important;}
.img_wrap > div {width: 100%;}

}
