@charset "utf-8";

/* style.css */

/**********************************************
	nav
***********************************************/
header {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
  display: flex;
  justify-content: space-between; /* 左右に要素を配置 */
  align-items: center;
	z-index: 1000;
}

.logo130 {
  display: none;
}

.logo50 {
  padding-left: 5.334%;
  display: block;
}

@media (min-width: 835px) {
  .logo130{
    display: flex;
    padding-left: 8.4375%;
    padding-right: 5.208%;
	align-items: center;
  }
  
  .logo130 img{
    transition: opacity 0.3s ease;
  }
  
  .logo130 img:hover{
    opacity: 0.7;
  }

  .logo50 {
    display: none;
  }
}




/* ハンバーガーメニューとアイコンをまとめるコンテナ */
.header-right {
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
 top: 0;
  right: 0;
}

/* オンラインストアのアイコン（ハンバーガー時のみ表示） */
.store-icon-hamburger {
  width: 30px;
  height: auto;
 /* display: none;*/
  /*transition: opacity 0.3s ease;*/
}

/*.store-icon-hamburger:hover{
  opacity: 0.7;
}*/




/* ナビゲーションのスタイル */
.nav_sp {
  position: fixed;
	z-index: 999;
  top: 80px;
  right: 0;
  background-color:#FFF5DB;
  width: 300px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
/*  display: none;  デフォルトは非表示 */
  flex-direction: column;
	transform: translateX(100%);
	transition: transform 0.8s;
}

.nav-active{
	transform: translateX(0%);
}

.nav_sp .nav-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav_sp .nav-links li {
  padding: 30px;
	padding-bottom: 50px;
  text-align: center;
}

.nav_sp .nav-links a {
  text-decoration: none;
  color: #440017;
}


/*.nav_sp .store-link {
  text-align: center;
  padding: 15px;
}*/

@media (max-width: 835px) {
  .store-link img {
    display: none;
  }
  
  .store-icon-hamburger {
    display: block;
  }
}

/* ハンバーガーメニューのスタイル */
.hamburger-menu {
  display: flex;
  flex-direction: column;
  cursor: pointer;
  background-color: #BB3B4C;
  padding: 10px;
  border-radius: 0 0 0 10px;
}

.hamburger-menu span {
  width: 30px;
  height: 3px;
  background-color: #FFF5DB;
  margin: 5px;
	transition: all 1s;
}

.hamburger-active span:nth-child(1){
	transform: translateY(15px) rotate(45deg);
}

.hamburger-active span:nth-child(2){
	opacity: 0;
}

.hamburger-active span:nth-child(3){
	transform: translateY(-11px) rotate(-45deg);
}

/* メニューを開いた時のスタイル */
.nav-active {
  display: block;
}

/*.nav_pc {
  display: none;
}*/

.nav_pc_wrap{
	display: none;
}

.nav_sp .nav-links a {
  position: relative;
}

.nav_sp .nav-links a::after {
  position: absolute;
  left: 0;
  bottom: 0;
  display: block;
  content: "";
  width: 0%;
  height: 2px;
  background: #BB3B4C;
  transition: all 0.2s cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

.nav_sp .nav-links a:hover::after {
  width: 100%;
}





/* PC版のナビゲーション */
@media (min-width: 835px) {
  
  .hamburger-menu,.store-icon-hamburger,.nav_sp {
    display: none; 
  }
  
  .nav_pc_wrap{
    width: 100%;
	height: 110px;
    background-color:#bb3b4c;
    display: flex;
  }

  .nav_pc {
    display: flex;
    align-items: center;
    justify-content: space-between;
    /*position: static;*/
    flex-direction: row;
    /*box-shadow: none;*/
    
    color: #fff5d8;
    width: 77.86%;
  }

  .nav_pc .nav-links {
    width: 32.84%;
    display: flex;
    flex-direction: row;
  }

  .nav_pc .nav-links li {
    padding: 10px 40px;
  }

  .nav_pc .store-link {
    transition: opacity 0.3s ease;
/*    display: flex;
    justify-content: space-between;*/
    /*margin-left: auto;*/
    
    padding: 10px 40px;
  }
  
  .store-link:hover {
    opacity: 0.7;
  }
  
  .store-link a{
    display: flex;
    align-items: center;
  }
  
  .store-link p{
    padding-right:18px;
  }
  
  .store-link img {
    transition: opacity 0.3s ease; /* 変化を滑らかに */
  }

  .store-link img:hover {
    opacity: 0.7;
  }
  
  .nav_store_pc{
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .nav_pc .nav-links a {
    position: relative;
  }

  .nav_pc .nav-links a::after {
    position: absolute;
    left: 0;
    bottom: 0;
    display: block;
    content: "";
    width: 0%;
    height: 2px;
    background: #FFF5DB;
    transition: all 0.2s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  }

  .nav_pc .nav-links a:hover::after {
    width: 100%;
  }
}



/**********************************************
	main visual
***********************************************/
.bg_wrap{
	position: relative;
	overflow: hidden;
	padding-bottom: 80px;
/*  background-image: url("../img/pattern100.svg");
  background-repeat: repeat;*/
}

.bg_wrap::before{
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to bottom, 
    #FFFFFF 15%, 
    #FFF5DB 60%)/*,url("../img/pattern100.svg") repeat*/;
	z-index: -10;
}

.bg_wrap::after{
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background:url("../img/pattern100.svg");
	background-repeat: repeat;
    background-size: 20px 20px;
	opacity: 0.35;
	z-index: -5;
}


.Toptitle{
  width: 83px;
  position: absolute;
  /*margin-bottom: 20px;*/
	top: 102px;
	left: 67.73%;
}

@media screen and (min-width: 835px) {
  .Toptitle{
    width:182px;
    position: absolute;
    /*margin-bottom: 20px;*/
    top: 182px;
    left: 78.92%;
  }
}

.Toptitle h2{
	font-size: clamp(20px,calc(54 / 1920 * 100vw),54px);
	font-weight: 500;
}

/*@media screen and (min-width: 520px) {
  .Toptitle h2 {
    font-size: 30px;
  }
}
@media screen and (min-width: 960px) {
  .Toptitle h2 {
    font-size: 54px;
  }
}*/

.toptitle span{
	letter-spacing: 0.2em;
}

@media screen and (min-width: 835px) {
  .toptitle span{
    letter-spacing: 0.3em;
  }
}

.toptitle::after{
  content: "";
  display: block;
  position: absolute;
  width: 83px; /* 二重線の長さ */
  height: 1px; /* 線の太さ（1本目） */
  background-color: #8E5B00;
  bottom: -20px; /* 下部に配置 */
}

.toptitle::before {
  content: "";
  display: block;
  width: 83px; /* 二重線の長さ */
  height: 1px; /* 2本目の線（細めにする） */
  background-color: #8E5B00; /* 色は統一 */
  position: absolute;
  bottom: -25px; /* `::after` の線の下に少し隙間を作る */
}

@media screen and (min-width: 835px) {
.toptitle::after{
  content: "";
  display: block;
  position: absolute;
  width: 195px; /* 二重線の長さ */
  height: 1px; /* 線の太さ（1本目） */
  background-color: #8E5B00;
  bottom: -40px; /* 下部に配置 */
}

.toptitle::before {
  content: "";
  display: block;
  width: 195px; /* 二重線の長さ */
  height: 1px; /* 2本目の線*/
  background-color: #8E5B00; /* 色は統一 */
  position: absolute;
  bottom: -50px; /* `::after` の線の下に少し隙間を作る */
}
}

.toptitle{
  /*width: 32.3%;*/
/*  margin: 0 0 0 300px;*/
  display: flex;
  flex-direction: row-reverse;
  gap: 10px;
	position:relative;
}

.toptitle span{
  writing-mode: vertical-lr;
  display: block;
}

.toptitle1,.toptitle2,.toptitle3{
	position: relative;
}

.toptitle1::after{
	content: "";
	position: absolute;
	top: -5px;
	left: -6px;
	width: 20px;
	height: 210px;
	background-color: rgba(255, 245, 219, 0.8);
	z-index: -1;
}

@media screen and (min-width: 835px) {
  .toptitle1::after{
    content: "";
    position: absolute;
    top: -6px;
    left: 0;
    width: 50px;
    height: 300px;
    background-color: rgba(255, 245, 219, 0.8);
    z-index: -1;
  }
}

@media screen and (min-width: 1024px) {
  .toptitle1::after{
    content: "";
    position: absolute;
    top: -6px;
    left: 0;
    width: 50px;
    height: 400px;
    background-color: rgba(255, 245, 219, 0.8);
    z-index: -1;
  }
}

@media screen and (min-width: 1920px) {
  .toptitle1::after{
    content: "";
    position: absolute;
    top: -6px;
    left: 0;
    width: 50px;
    height: 593px;
    background-color: rgba(255, 245, 219, 0.8);
    z-index: -1;
  }
}

.toptitle2::after{
	content: "";
	position: absolute;
	top: -5px;
	left: -4px;
	width: 20px;
	height: 234px;
	background-color: rgba(255, 245, 219, 0.8);
	z-index: -1;
}

@media screen and (min-width: 835px) {
  .toptitle2::after{
    content: "";
    position: absolute;
    top: -6px;
    left: 0;
    width: 50px;
    height: 300px;
    background-color: rgba(255, 245, 219, 0.8);
    z-index: -1;
  }
}

@media screen and (min-width: 1024px) {
  .toptitle2::after{
    content: "";
    position: absolute;
    top: -6px;
    left: 0;
    width: 50px;
    height: 450px;
    background-color: rgba(255, 245, 219, 0.8);
    z-index: -1;
  }
}

@media screen and (min-width: 1920px) {
  .toptitle2::after{
    content: "";
    position: absolute;
    top: -6px;
    left: 0;
    width: 50px;
    height: 656px;
    background-color: rgba(255, 245, 219, 0.8);
    z-index: -1;
  }
}

/*@media screen and (min-width: 835px) {
  .toptitle2::after{
    content: "";
    position: absolute;
    top: -6px;
    left: 0;
    width: 50px;
    height: 656px;
    background-color: rgba(255, 245, 219, 0.8);
    z-index: -1;
  }
}

@media screen and (min-width: 835px) {
  .toptitle2::after{
    content: "";
    position: absolute;
    top: -6px;
    left: 0;
    width: 50px;
    height: 656px;
    background-color: rgba(255, 245, 219, 0.8);
    z-index: -1;
  }
}*/

.toptitle3::after{
	content: "";
	position: absolute;
	top: -5px;
	left: -2px;
	width: 20px;
	height: 235px;
	background-color: rgba(255, 245, 219, 0.8);
	z-index: -1;
}

@media screen and (min-width: 835px) {
  .toptitle3::after{
    content: "";
    position: absolute;
    top: -6px;
    left: 0;
    width: 50px;
    height: 300px;
    background-color: rgba(255, 245, 219, 0.8);
    z-index: -1;
  }
}

@media screen and (min-width: 1024px) {
  .toptitle3::after{
    content: "";
    position: absolute;
    top: -6px;
    left: 0;
    width: 50px;
    height: 450px;
    background-color: rgba(255, 245, 219, 0.8);
    z-index: -1;
  }
}

@media screen and (min-width: 1920px) {
  .toptitle3::after{
    content: "";
    position: absolute;
    top: -6px;
    left: 0;
    width: 50px;
    height: 651px;
    background-color: rgba(255, 245, 219, 0.8);
    z-index: -1;
  }
}


/*@media screen and (min-width: 835px) {
  .toptitle3::after{
    content: "";
    position: absolute;
    top: -6px;
    left: 0;
    width: 50px;
    height: 651px;
    background-color: rgba(255, 245, 219, 0.8);
    z-index: -1;
  }
}*/

.fastview{
  position: absolute;
  top: 0;
  left: 0;
  z-index: -2;
  object-fit: cover;
  width: 100%;
  display: block;
}

.fastview_pc{
  position: absolute;
  top: 0;
  left: 0;
  z-index: -2;
  width:100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/*.fastview{
  position: relative;
  width: 100%;
  height: auto;
  z-index: -1;
  margin-bottom: 50px;
}*/

.fastview img {
 /* width: 78.7%;*/
  height: auto;
  border-radius: 0 0 30px 0;
  margin: 0 auto 0 0;
}

.fastview_pc img{
  display: none;
}

@media  (min-width: 835px){
  .fastview img{
    display: none;
  }

  .fastview_pc img{
    display:block;
    /*width: 1597px;*/
    width: 83.18%;
    height: auto;
    object-fit: cover;
  object-position: center;
    /*background-size: cover;
    height: auto;*/
    border-radius: 0 0 80px 0;
    margin: 0 auto 0 0;
  }
}

.snsicon{
	width: 52px;
	display: flex;
	justify-content: space-between;
	position: absolute;
	top: 257px;
  /*padding-top: 15px;*/
	transform: translateX(-50%);
	left: 50%;
}

.snsicon_pc{
  display: none;
}

@media  (min-width: 835px){
  .snsicon{
  display: none;
  }
  
  .snsicon_pc{
    width: 135px;
    display: flex;
    justify-content: space-between;
    position: absolute;
    top: 732px;
    /*padding-top: 15px;*/
    transform: translateX(-50%);
    left: 50%;
  }
}

@media  (min-width: 835px){
  .snsicon{
  display: none;
  }
  
  .snsicon_pc{
    width: 135px;
    display: flex;
    justify-content: space-between;
    position: absolute;
    top: 432px;
    /*padding-top: 15px;*/
    transform: translateX(-50%);
    left: 50%;
  }
}

@media  (min-width: 1284px){
	 .snsicon_pc{
		width: 135px;
		display: flex;
		justify-content: space-between;
		position: absolute;
		top: 532px;
		/*padding-top: 15px;*/
		transform: translateX(-50%);
		left: 50%;
  	}
}

@media  (min-width: 1440px){
	 .snsicon_pc{
		width: 135px;
		display: flex;
		justify-content: space-between;
		position: absolute;
		top: 692px;
		/*padding-top: 15px;*/
		transform: translateX(-50%);
		left: 50%;
  	}
}

@media  (min-width: 1920px){
	 .snsicon_pc{
		width: 135px;
		display: flex;
		justify-content: space-between;
		position: absolute;
		top: 732px;
		/*padding-top: 15px;*/
		transform: translateX(-50%);
		left: 50%;
  	}
}

/**********************************************
	コンセプト section
***********************************************/
#concept{
  /*padding-top: 200px;*/
  width: 68.53%;
  text-align: center;
  margin: 0 auto;
/*	margin-top: 86.96vh;*/
	margin-top: 584px;
}

/*@media  (min-width: 835px){
  #concept{
    margin-top: 1044px;
  }
}*/

@media  (min-width: 1024px){
  #concept{
    margin-top: 63.54%;
  }
}

#concept h2{
  position: relative;
  display: inline-block;
  padding-top: 30px;
  padding-bottom: 10px;
}

@media  (min-width: 835px){
  #concept h2{
    font-size: 40px;
    padding-top: 60px;
  }
}

#concept h2::before{
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 28px;
  background-image: url("../img/symbol_sp.svg");
  background-size: contain;
  background-repeat: no-repeat;
}

#concept h2::after{
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 100%;
  height: 1px;
  background: repeating-linear-gradient(
    to right,
    #8E5B00, /* 点線の色 */
    #8E5B00 5px,
    transparent 5px,
    transparent 10px
  );
}

@media  (min-width: 835px){
  #concept h2::before{
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 130px;
    height: 60px;
    background-image: url("../img/symbol.svg");
    background-size: contain;
    background-repeat: no-repeat;
  }
  
  #concept h2::after{
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 100px;
  height: 1px;
  background: repeating-linear-gradient(
    to right,
    #8E5B00, /* 点線の色 */
    #8E5B00 5px,
    transparent 5px,
    transparent 10px
    );
  }
}

#concept h3 {
  padding-top: 20px;
  padding-bottom: 10px;
  font-size: 18px;
  font-weight: 500;
}

#concept h3 span{
  display: block;
}

#concept p{
  font-size: 14px;
}

#concept p span{
  display: block;
}

#concept .button1{
  padding-top: 30px;
}

@media  (min-width: 835px){
  #concept h3 {
    padding-top: 40px;
    padding-bottom: 15px;
    font-size: 32px;
    font-weight: 400;
  }
  
  #concept h3 span{
    display: inline;
  }

  #concept p{
    font-size: 18px;
  }

  #concept p span{
    display: block;
    line-height: 1.8;
  }
}


@media (min-width:835px){
  #concept .button1{
    padding-top: 72px;
  }  
  
  #concept .button1 a {
    width: 316px;
    padding: 20px 50px;
    font-size: 34px;
  }
}


/**********************************************
	Menu section
***********************************************/
#menu{
  padding-top: 80px;
  /*width: 68.53%;*/
  text-align: center;
  margin: 0 auto;
}

#menu h2{
  position: relative;
  display: inline-block;
  padding-top: 30px;
  padding-bottom: 10px;
}

@media  (min-width: 835px){
  #menu{
    padding-top: 250px;
  }
  
  #menu h2{
    font-size: 40px;
    padding-top: 60px;
  }
}

#menu h2::before{
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 28px;
  background-image: url("../img/symbol_sp.svg");
  background-size: contain;
  background-repeat: no-repeat;
}

#menu h2::after{
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 100%;
  height: 1px;
  background: repeating-linear-gradient(
    to right,
    #8E5B00, /* 点線の色 */
    #8E5B00 5px,
    transparent 5px,
    transparent 10px
  );
}

@media  (min-width: 835px){
  #menu h2::before{
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 130px;
    height: 60px;
    background-image: url("../img/symbol.svg");
    background-size: contain;
    background-repeat: no-repeat;
  }
  
  #menu h2::after{
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 100px;
  height: 1px;
  background: repeating-linear-gradient(
    to right,
    #8E5B00, /* 点線の色 */
    #8E5B00 5px,
    transparent 5px,
    transparent 10px
    );
  }
}

#menu h3{
	font-size: 20px;
	font-weight: 500;
	margin: 10px 0;
}

#menu p{
	font-size: 16px;
}

@media  (min-width: 835px){
  #menu h3 {
    padding-top: 30px;
    padding-bottom: 10px;
    font-size: 32px;
    font-weight: 500;
  }
  
  #menu p{
    font-size: 18px;
    padding-bottom: 40px;
  }
}

.menu img{
  max-width: 200px;
  height: auto;
  border-radius: 20px;
}

@media (min-width:835px){
  .menu img{
    max-width: 300px;
    height: auto;
  }
}

.menu_wrap{
  display: flex;
}

.menu{
  width: 240px!important;
  height: 390px;
  background-color: #fff;
  text-align: center;
  padding: 25px 20px;
/*  margin:auto 20px; */
  margin-top: 30px;
  border-top: 5px solid #BB3B4C;
}

#menu .button1{
	margin: 0 auto;
  padding-top: 45px;
}


@media (min-width:835px){
  .menu01 br{
    display: none;
  }
  
  .menu{
    width: 358px!important;
    height: 550px;
    padding: 30px;
    margin-top: 70px;
    margin-right:100px;
  }
  
  .menu:last-child{
    margin-right:0;
  }
  
  .menu_wrap{
    width: 66.35%/*1274px*/;
    margin: 0 auto;
    justify-content: center;
  }
}

@media (min-width:835px){
  #menu .button1{
    padding-top: 80px;
    padding-bottom: 100px;
  }  
  
  #menu .button1 a {
    width: 450px;
    padding: 30px 93px;
    font-size: 34px;
  }
}


.slider .slick-slide{
  display: flex;
  justify-content: center;
  align-items: center;
  height: auto;
  overflow: visible;
  margin-right: 20px!important;
  margin-left: 20px!important;
}

.slider .slick-slide:last-child {
  margin-right: 0;
}

@media (min-width:835px){
  .slider .slick-slide{
    display: none;
  }
 } 





/* スライドのサイズ調整 
.swiper-slide img {
  max-width: 100%;
  height: auto;
}

/* 中央のスライドを大きくする 
.swiper-slide-active {
  transform: scale(1.1);
}

/* 端のスライドを少し小さくする 
.swiper-slide-prev,
.swiper-slide-next {
  transform: scale(0.85);
  opacity: 0.7;
}
*/
/**********************************************
	news section
***********************************************/
#news{
  position: relative;
  background-color: #fff;
  padding-top: 30px;
  padding-bottom: 80px;
  /*width: 77.87%;*/
  text-align: center;
/*  margin: 0 auto;*/
}

@media (min-width:835px){
  #news{
    margin-top:100px;
  }
}

.wave-top {
  position: absolute;
  top: -28px; /* 隙間をなくす */
  left: 0;
  width: 100%;
  height: auto;
  /*z-index: 3;*/
}

.wave_top_pc{
  display: none;
}

@media (min-width:835px){
  .wave-top {
    display: none;
  }

  .wave_top_pc{
    display: block;
    position: absolute;
    top: -280px;
    left: 0;
    width: 100%;
    height: 300px;
   /* z-index: 3;*/
    }
}

#news img{
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

#news::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%,50px);
  width: 100%;
  height: 110px;
  background-image: url("../img/Union_sp.png");
  background-size: cover;
  background-repeat: no-repeat;
  padding-top: 80px;
  /*background-position: center bottom;*/
  /*z-index: 3;*/
}

@media (min-width:835px){
  /*#news::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 50px;
    z-index: 4; 
  }*/
  
  #news::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%,100px);
    width: 100%;
    /*top: 1120px;*/
    height: 110px;
    background-image: url("../img/partition.png");
    background-size: cover;
    background-position: bottom center;
    background-repeat: no-repeat;
    padding-top: 80px;
    /*background-position: center bottom;*/
    /*z-index: 3;*/
    padding-bottom: 300px;
    margin-top:150px;
  }
  
  
}

#news h2{
  position: relative;
  display: inline-block;
  padding-top: 30px;
  padding-bottom: 10px;
}

#news h2::before{
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 28px;
  background-image: url("../img/symbol_sp.svg");
  background-size: contain;
  background-repeat: no-repeat;
}

#news h2::after{
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 100%;
  height: 1px;
  background: repeating-linear-gradient(
    to right,
    #8E5B00, /* 点線の色 */
    #8E5B00 5px,
    transparent 5px,
    transparent 10px
  );
}

@media  (min-width: 835px){
  #news h2::before{
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 130px;
    height: 60px;
    background-image: url("../img/symbol.svg");
    background-size: contain;
    background-repeat: no-repeat;
  }
  
  #news h2::after{
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 100px;
    height: 1px;
    background: repeating-linear-gradient(
      to right,
      #8E5B00, /* 点線の色 */
      #8E5B00 5px,
      transparent 5px,
      transparent 10px
      );
  }
}

.news_wrap{
  display: flex;
  text-align: left;
  width: 77.87%;
  margin: 0 auto;
	flex-direction: column;
  font-weight: 500;
}

.news_wrap2{
  display: flex;
  margin-top: 20px;
  margin-bottom: 30px;
	justify-content: space-between;
}

.news01,.news02,.news03,.news04{
  width: 46.58%;
}

.news02,.news04{
  margin-left: 20px;
}

#news img{
/*  width: 46.58%;*/
  height: auto;
}

.news_wrap h3{
  font-size: 14px;
  padding: 5px 0;
}

.news_wrap p{
  font-size: 12px;
}

@media  (min-width: 835px){
  #news h2 {
    padding-top: 60px;
    padding-bottom: 10px;
    font-size: 40px;
  }
  
  .news_wrap{
    width: 66.35%;
  }
  
  .news_wrap h3{
    font-size: 34px;
    font-weight: 500;
    /*padding: 5px 0;*/
  }

  .news_wrap p{
    font-size: 25px;
    font-weight: 500;
  }
  
  .news_wrap2:last-child{
    display: flex;
    /*margin-top: 80px;*/
    margin-top: 70px;
    margin-bottom: 80px;
    /*justify-content: space-between;*/
  }
  
  .news01{
    display: flex;
    align-items: center;
    width: 580px;
  }
  
  .news01 img{
    width: 43.1%;
    max-width: 250px;
    height: auto;
  }
  
  .news01 a {
    /*display: flex;*/
    align-items: center;
    /*width: 100%;*/
  }
  
  .news02{
    display: flex;
    align-items: center;
    width: 580px;
  }
  
  .news02 img{
    width: 43.1%;
    max-width: 250px;
    height: auto;
  }
  
  .news02 a {
    /*display: flex;*/
    align-items: center;
    /*width: 100%;*/
  }
  
  .news03{
    display: flex;
    align-items: center;
    width: 580px;
  }
  
  .news03 img{
    width: 43.1%;
    max-width: 250px;
    height: auto;
  }
  
  .news03 a {
    /*display: flex;*/
    align-items: center;
    /*width: 100%;*/
  }
  
  .news04{
    display: flex;
    align-items: center;
    width: 580px;
  }
  
  .news04 img{
    width: 43.1%;
    max-width: 250px;
    height: auto;
  }
  
  .news04 a {
    /*display: flex;*/
    align-items: center;
    /*width: 100%;*/
  }
  
  .news_txt{
    margin-left: 20px;
  }
}

@media (min-width:1024px){
	.news01 a,.news02 a,.news03 a,.news04 a{
		display: flex;
	}
}

@media (min-width:1600px){
	.news_wrap2{
		display: flex;
		margin-top: 80px;
		margin-bottom: 0;
		/*justify-content: space-between;*/
	  }
}

#news .button1{
	width: 68.53%;
	margin: 0 auto;
  padding-bottom: 80px;
}

@media (min-width:835px){
  #news .button1{
    padding-top: 80px;
    padding-bottom: 100px;
    margin-bottom: 450px;
  }  
  
  #news .button1 a {
    width: 450px;
    padding: 30px 100px;
    font-size: 34px;
  }
}

/**********************************************
	access section
***********************************************/
#access_container{
  background-color: #FFF5DB;
}

#access{
  padding-top: 80px;
  width: 68.53%;
  margin: 0 auto;
  padding-bottom: 50px;
}

#access h2{
  position: relative;
  display: inline-block;
  padding-top: 30px;
  padding-bottom: 10px;
}

@media  (min-width: 835px){
  #access{
  padding-top: 170px;
  width: 66.35%;
  padding-bottom: 220px;
}
  
  #access h2{
    font-size: 40px;
    padding-top: 60px;
  }
}

#access h2::before{
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 28px;
  background-image: url("../img/symbol_sp.svg");
  background-size: contain;
  background-repeat: no-repeat;
}

#access h2::after{
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 100%;
  height: 1px;
  background: repeating-linear-gradient(
    to right,
    #8E5B00, /* 点線の色 */
    #8E5B00 5px,
    transparent 5px,
    transparent 10px
  );
}

@media  (min-width: 835px){
  #access h2::before{
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 130px;
    height: 60px;
    background-image: url("../img/symbol.svg");
    background-size: contain;
    background-repeat: no-repeat;
  }
  
  #access h2::after{
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 100px;
    height: 1px;
    background: repeating-linear-gradient(
      to right,
      #8E5B00, /* 点線の色 */
      #8E5B00 5px,
      transparent 5px,
      transparent 10px
      );
  }
}

.access_station_wrap{
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
}

.access_station{
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 1px solid #BB3B4C;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
	font-size: 12px;
}

@media (min-width:835px){
  .access_wrap{
    display: flex;
    width:100%;
    justify-content: space-between;
    align-items: center;
  }
	
	.access_table{
		width: 47.25%;
	}
  
  .access_station_wrap{
    width: 100%/*47.25%*/;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
  }
  
  .access_station{
    width: 160px;
    height: 160px;
    border-radius: 50%;
    border: 3px solid #BB3B4C;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 32px;
  }
  
  table{
    width: 344px;
    order: 1;
    margin-top: 77px;
  }
}

/*table{
  width: 241px;
}*/

table tbody tr th{
  font-size: 13px;
  font-weight: normal;
  padding-right: 20px;
  padding-bottom: 20px;
}

@media (min-width:835px){
  table tbody tr th{
    font-size: 18px;
    font-weight: 500;
    padding-right: 50px;
    padding-bottom: 40px;
  }
  
  td{
    font-size: 18px;
    font-weight: 500;
    padding-bottom: 40px;
  }
}

/*table tbody tr th:last-child{
  margin-bottom: 0;
}*/

.map_wrap{
  display: flex;
  justify-content: center;
  width: 100%;
}

@media (min-width:835px){
  .map_wrap{
    width: 47.22%;
  }
}

iframe{
  width: 100%;
  height: 200px;
  background-size: cover;
}

@media (min-width:835px){
  iframe{
    width: 100%;
    height: 522px;
    background-size: cover;
    border-radius: 10px;
  }
}

  /*@media (min-width: 835px) {
  .map-container {
    flex-direction: row;
    align-items: center;
  }

  iframe {
    width: 50%; PC版で半分の幅に 
    max-width: 400px;
    height: 350px;
  }
}*/

/**********************************************
	footer
***********************************************/
footer{
  background-color: #BB3B4C;
  color: #FFF5DB;
}

.footer_wrap{
  padding-top: 30px;
  /*margin-left: 40px;*/
}

@media (min-width:835px){
  .footer_wrap{
    width: 66.35%;
    margin: 0 auto;
    padding-top: 137px;
  }
}

.footerttl{
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
    margin-bottom: 25px;
	margin-left: 10.67%;
}

@media (min-width:835px){
  .footerttl{
    margin-bottom: 80px;
    margin-left: 0;
  }
}

.footerttl h3{
  /*position: relative;*/
  font-size: 14px;
  font-weight: 500;
  margin-right: 10px;
}

.footerttl::before{
  content: "";
/*  position: absolute;*/
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #fff5d8;
  display: inline-block;
  order: 1;
}

.footerttl::after{
  content: "";
  /*position: absolute;*/
  flex-grow: 1;
/*  display: inline-block;*/
  height: 1px;
  background-color: #fff5d8;
/*  border: 1px solid #fff5d8;
  width: 220px;*/
  order: 2;
}

@media (min-width:835px){
  .footerttl h3{
    /*position: relative;*/
    font-size: 32px;
    font-weight: 500;
    margin-right: 34px;
  }
  
  .footerttl::before{
    content: "";
  /*  position: absolute;*/
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background-color: #fff5d8;
    display: inline-block;
    order: 1;
  }

  .footerttl::after{
    content: "";
    /*position: absolute;*/
    flex-grow: 1;
  /*  display: inline-block;*/
    height: 2px;
    background-color: #fff5d8;
  /*  border: 1px solid #fff5d8;
    width: 220px;*/
    order: 2;
  }
}

.navlist ul li a{
  font-size: 12px;
  font-weight: 500;
}

@media (min-width:835px){
  .navlist ul li a{
    /*position: relative;*/
    font-size: 18px;
    font-weight: 500;
  }
}

.navlist ul li{
  margin-bottom: 20px;
}

@media (min-width:835px){
  .navlist ul li{
    margin-bottom: 30px;
  }
}

.navlist{
	margin-left: 10.67%;
  display: flex;
}

.navlist01{
  margin-right: 20px;
}

.navlist01_wrap{
  display: flex;
}

.footer_snsicon a:nth-child(1){
  margin-right: 20px;
}

.footer_snsicon_pc{
  display: none;
}

.pagetop{
	display: none !important;
}

@media (min-width:835px){
  .navlist{
    margin-left: 0;
    margin-bottom: 50px;
    display: flex;
    justify-content: space-between;
  }
  
/*  .navlist01_wrap{
    display: flex;
  }*/
  
  .navlist01{
    margin-right: 80px;
  }
  
  .footer_snsicon{
    display: none;
  }
  
  .footer_snsicon_pc{
    display: block;
    margin-bottom: 10px;
  }
  
  .footer_snsicon_pc a:nth-child(1){
    margin-right: 30px;
  }
  
  .footer_snsicon_pc img{
    transition: opacity 0.3s ease;
  }

  .footer_snsicon_pc img:hover{
    opacity: 0.7;
  }
  
  .pagetop{
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 1px solid #FFF5D8;
    display: flex !important;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 32px;
    font-weight: 500;
    color: #440017;
    background-color: rgba(252, 241, 211, 0.5);
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .pagetop:hover {
    background-color: #FFF5DB;
  }
  
  .pagetop a {
    display: block;
    background-color: #ccc;
    text-align: center;
    color: #222;
    font-size: 12px;
    text-decoration: none;
    padding: 5px 10px;
	  filter:alpha(opacity=50);
    -moz-opacity: 0.5;
    opacity: 0.5;
  }
  
  .pagetop a:hover {
      display: block;
      background-color: #b2d1fb;
      text-align: center;
      color: #fff;
      font-size: 12px;
      text-decoration: none;
      padding:5px 10px;
      filter:alpha(opacity=50);
      -moz-opacity: 0.5;
      opacity: 0.5;
  }
  
  .navlist01 ul li a {
    position: relative;
    display: inline-block;
  }

  .navlist01 ul li a::after {
    position: absolute;
    left: 0;
    bottom: -2px;
    display: block;
    content: "";
    width: 0%;
    height: 2px;
    background: #FFF5DB;
    transition: all 0.2s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  }

  .navlist01 ul li a:hover::after {
    width: 100%;
  }
  
  .navlist02 ul li a {
    position: relative;
    display: inline-block;
  }

  .navlist02 ul li a::after {
    position: absolute;
    left: 0;
    bottom: -2px;
    display: block;
    content: "";
    width: 0%;
    height: 2px;
    background: #FFF5DB;
    transition: all 0.2s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  }

  .navlist02 ul li a:hover::after {
    width: 100%;
  }
}

.copyattention{
  font-size: 10px;
  font-weight: normal;
}

#footer_sns_copy{
  width: 78.67%;
	margin: 0 auto;
  display: flex;
  justify-content: space-between;
  padding-bottom: 12px;
}

.attention{
  text-align: right;
}

@media (min-width:835px){
  #footer_sns_copy{
    width: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
    padding-bottom: 22px;
  }
  
  .copyattention{
    display: flex;
    /*width: 66.35%;*/
    justify-content: space-between;
    font-size: 14px;
    font-weight: 400;
    flex-direction: row-reverse;
  }
  
  .attention br{
    display: none;
  }
}


/**********************************************
	右下の常時のトップページ戻るボタン
***********************************************/
#pageTop_btn { 
	position: fixed;
	bottom: 80px;
	right: 20px;
}
.pageTop_link { 
	background: #8E5B00; 
	border-radius: 50%; 
	display: block; 
	position: relative;
	height: 55px; /* ボタンの高さ */
	width: 55px; /* ボタンの幅（円にしたいときは、高さと幅を同じ数値にします）*/ 
}
	
/*▼ ボタンの中の上向き矢印装飾 */
.pageTop_link:before {  
	content: ''; 
	position: absolute;	 /* ボタン（親）の子として浮かせる */
	border-top: solid 2px #fff; /* top・left・rotate(45deg)セットで上向き矢印 */
	border-left: solid 2px #fff; /* top・left・rotate(45deg)セットで上向き矢印*/
	margin: auto; /* positionで浮かせたものを上下中央寄せにする際に必須 */
	top: 5px; /* ボタン（親）の上からどのくらいか*/ 
	right: 0; /* ボタン（親）の右からどのくらいか */
	left: 0; /* ボタン（親）の左から */
	bottom: 0; /* ボタン（親）の下から */
	transform: rotate(45deg); /* top・left・rotate(45deg)セットで上向き矢印 */
	ms-transform: rotate(45deg); /* Internet Explorer用 */
	webkit-transform: rotate(45deg); /* Google Chrome、Safari用 */
	height: 10px; /* 矢印の大きさ */
	width: 10px; /* 矢印の大きさ */
}

@media (min-width:835px){
	#pageTop_btn { 
		position: fixed;
		bottom: 100px;
		right: 50px;
	}
	
	.pageTop_link { 
		background: #8E5B00; 
		border-radius: 50%; 
		display: block; 
		position: relative;
		height: 100px;
		width: 100px;
	}
	
	.pageTop_link:before {  
		content: ''; 
		position: absolute;
		border-top: solid 2px #fff; /* top・left・rotate(45deg)セットで上向き矢印 */
		border-left: solid 2px #fff; /* top・left・rotate(45deg)セットで上向き矢印*/
		margin: auto; /* positionで浮かせたものを上下中央寄せにする際に必須 */
		top: 5px; /* ボタン（親）の上からどのくらいか*/ 
		right: 0; /* ボタン（親）の右からどのくらいか */
		left: 0; /* ボタン（親）の左から */
		bottom: 0; /* ボタン（親）の下から */
		transform: rotate(45deg); /* top・left・rotate(45deg)セットで上向き矢印 */
		ms-transform: rotate(45deg); /* Internet Explorer用 */
		webkit-transform: rotate(45deg); /* Google Chrome、Safari用 */
		height: 15px; /* 矢印の大きさ */
		width: 15px; /* 矢印の大きさ */
	}
}



