@charset "utf-8";

/*========共通設定===============*/

/*=======フォントサイズリセット10pxに=======================*/
html{
 font-family: "BIZ UDMincho","Yu Mincho", serif;
 font-size:62.5%;
 line-height:2;
 color:#333;/*文字色*/
 min-width: 300px;
}

body{
 font-size:1.7rem;
}

h2{
 font-size:2.2rem;
 color:#333;
}

h3{
font-size:1.8rem;
 color:#333;  
}

h4{
  font-size:1.6rem;
 color:#333;
}

.red{
  color:rgba(240, 39, 0,.94);
}

.holiday-blue{
  color: rgba(24, 92, 240, .94);
}


/*=======リンク関連==========*/
a{
 text-decoration:none;
 color:#333;
}

a:hover{
 cursor:pointer;
 opacity: 0.6;
}

a.color{
  color: #4E5E3B;
  font-weight: bold;
}

.wrapper{
  padding:15px;
  margin:0 auto;
}

a.blue{
  color: #4c5284;
  font-weight: bold;
}


/*=======ホバーで下線======*/
.under-line {
  position: relative;
  display: inline-block;
  text-decoration: none;
}

.under-line::after {
  position: absolute;
  bottom: -3px;
  left: 0;
  content: '';
  width: 100%;
  height: 1px;
  background: #000000;
  color: #333;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform .4s;
}

.under-line:hover::after {
  transform: scale(1, 1);
}

img{
 width:100%;
 height:auto;
 vertical-align:bottom;
}

ul{
 list-style:none;
}


ol{
  list-style:none;
 }

/*===============パンくずリストなどの空白======================*/

.mrg-right{
 margin-right: 1rem;
}

.mrg-both{
  margin-right: 1rem;
  margin-left: 1rem;
}

.mrg-left{
  margin-left: 1rem;
}

.bold-em{
  font-weight: bold;
  font-style: normal;
}

/*======================段落間のマージン=====================================*/

.mrg-para{
  margin-bottom: 15px;
}

/*========bg-slider=======================*/
/*=========ヘッダー除け上部隙間========*/
.full{
  margin-top:60px;
}

/*=========スライダー高さ==============*/
.full div {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 60vh;
  margin: 0;
}

/*========スライダーおしまい！==========================*/
/*===========headerここから====================*/
header{
	width: 100%;
/*	height: 70px;*/
	padding: 5px 0;
	position: fixed;
	top: 0;
	background-color: #fff;
  box-shadow: 0 1px 6px 0 rgb(32 33 36 / 28%);
  z-index: 30;
}

.header{
 display:flex;
 justify-content:space-between;
}

/*=========ロゴ=====================*/

h1{
	font-size:0;
	display:block;
	margin-left:15px;
  width: 140px;
}


/*============navのくるりんぱ=============*/
nav.sp{
  display: block;
}

nav.pc{
  display: none;
}

nav.sp {
  display: block;
  position: fixed;
  top: 0;
  left: -300px;
  bottom: 0;
  width: 300px;
  background: #ffffff;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  transition: all .5s;
  z-index: 3;
  opacity: 0;
}
.open nav.sp {
  left: 0;
  opacity: 1;
}
nav.sp .inner {
  padding: 25px;
}
nav.sp .inner ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
nav.sp .inner ul li {
  position: relative;
  margin: 0;
  border-bottom: 1px solid #333;
}
nav.sp .inner ul li a {
  display: block;
  color: #333;
  font-size: 14px;
  padding: 1em;
  text-decoration: none;
  transition-duration: 0.2s;
}
nav.sp .inner ul li a:hover {
  background: #e4e4e4;
}
@media screen and (max-width: 767px) {
  nav.sp {
    left: -220px;
    width: 220px;
  }
}
/*============.toggle_btn=============*/
.toggle_btn {
  display: block;
  position: fixed;
  top: 15px;/*三本線の高さ*/
  right: 30px;
  width: 30px;
  height: 30px;
  transition: all .5s;
  cursor: pointer;
  z-index: 3;
}
.toggle_btn span {
  display: block;
  position: absolute;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: #333;
  border-radius: 4px;
  transition: all .5s;
}
.toggle_btn span:nth-child(1) {
  top: 4px;
}
.toggle_btn span:nth-child(2) {
  top: 14px;
}
.toggle_btn span:nth-child(3) {
  bottom: 4px;
}
.open .toggle_btn span {
  background-color: #fff;
}
.open .toggle_btn span:nth-child(1) {
  -webkit-transform: translateY(10px) rotate(-315deg);
  transform: translateY(10px) rotate(-315deg);
}
.open .toggle_btn span:nth-child(2) {
  opacity: 0;
}
.open .toggle_btn span:nth-child(3) {
  -webkit-transform: translateY(-10px) rotate(315deg);
  transform: translateY(-10px) rotate(315deg);
}
/*============#mask=============*/
#mask {
  display: none;
  transition: all .5s;
}
.open #mask {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: .8;
  z-index: 2;
  cursor: pointer;
}
/*============navのくるりんぱおしまい！=======================*/ 

/* =============================main======================================== */

/*=========ヘッダー除け上部隙間========*/
.item-top{
  margin-top: 60px;
}

/*=========文章の間明け========*/
.margin{
  margin-bottom: 30px;
}

/*==========詳しくボタン============================*/

.btn a,
.instagram-btn a{
  border:1px solid #333;
  border-radius:5px;
  padding:1rem 3rem;
  display:block;
  text-align:center;
  margin-top:8px;
  width:100%;
  position: relative;
}


.btn a:hover{
  background-color: rgba(76, 82, 132, .8);/*(51, 51, 51, .8)*/;
  color: #fff;
  border:1px solid #fff;
  opacity: unset;
}
/*------ボタンやじるし*/
.btn a::after,
.instagram-btn a::after {
  content: "";
  position: absolute;
  top: 46%;
  right: 35px;
  width: 10px;
  height: 10px;
  border-top: 2px solid;
  border-right: 2px solid;
  transform: rotate(45deg) translateY(-50%);
}

/* =======main下隙間============== */
.main-last{
  margin-bottom: 50px;
}

.mrg-bottom-30{
  margin-bottom: 30px;
}

/*==========footer=======================*/

footer{
 font-size:1.3rem;
 text-align:center;
 height:auto;
 background-color: rgba(32, 33, 36,.15);

}

.footer-about{
  margin-bottom:20px;
  line-height:1.7;
}

.footer-nav ul{
  margin-bottom: 20px;
  line-height:1.7;
}

.sns{
 display:flex;
 justify-content:space-between;
 width:150px;
 margin:auto;
}

.sns img{
  width:50%;
 margin-bottom:20px;
}

/* ============タブレットサイズ======================================== */
@media (min-width:600px) {
/*========bg-slider=======================*/


.full div {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 80vh;
  margin: 0;
}

}

/*========PC版=================================================*/
@media (min-width:1024px){

h1{
  font-size:0;
  display:block;
  margin-left:80px;
  width: 160px;
}

h2{
 font-size:2.4rem;
 color:#333;
}

h3{
font-size:2rem;
 color:#333;
}

h4{
  font-size:1.8rem;
 color:#333;
}


.wrapper{
  padding:50px 8%;
  max-width: 1300px;
  margin:0 auto;
}
/*========bg-slider=======================*/
/*=========ヘッダー除け上部隙間========*/
.full{
  margin-top:70px;
}

.full div {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 80vh;
  margin: 0 auto;
}
/*===========グローバルナビゲーション====================*/
nav.pc{
  display: block;
}

nav.sp {
  display: none;
}

.toggle_btn{
  display: none;
}

nav.pc {
  margin: 0  auto;
}

nav.pc ul {
  display: flex;
  justify-content: space-between;
}

nav.pc ul li a{
  margin-top: 13px;
  display: block;
  margin-right: 25px;
}

nav.pc ul li:last-child{
  margin-right: 80px;
}

nav.pc ul li a:hover{
  opacity: .5;
}

/*========= ナビここまで========================*/


/*.full{
  height: 80vh;
}

.full img{
  object-fit: cover;
  width: 100%;
  height: 80vw;
}

/*==========詳しくボタン============================*/

.btn a{
  border:1px solid #999;
  border-radius:5px;
  padding:1.2rem 3rem;
  display:block;
  text-align:center;
  margin-top:8px;
  font-size:1.2rem;
  width:180px;
}

.footer-nav ul{
 display:flex;
 justify-content:space-between;
  margin:0 auto 20px;
  width:500px;
}

.footer-about {
 display:flex;
 justify-content:space-between;
  margin:0 auto 20px;
  width:350px;
}


.footer-about, .footer-nav{
  font-size:1.3rem;
}



}
