@charset "UTF-8";
html {
  font-size: 62.5%; }
body {
font-family: 'Noto Sans JP', sans-serif;
text-align:center;
margin:0;
padding:0;
width:100%;
height:100%;
text-decoration: none;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
position: relative;
text-align:center;
	font-size: 1.6rem; /* 16px */
    line-height: 1.5;
    color: #333;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
img {
    max-width: 100%;
    height: auto;
}

/* リンクの下線削除 */
a {
    text-decoration: none;
    color: inherit;
}

/* リストのスタイル削除 */
ul, ol {
    list-style: none;
}
.flex{
display: -webkit-box;
display: -ms-flexbox;
display: flex;
}


.hamburger {
  position: fixed;
  top: 20px;
  right: 20px;
  width: 30px;
  height: 24px;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 3px;
  background: #333;
  margin: 6px 0;
  transition: 0.3s;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

.menu {
  position: fixed;
  top: -100vh;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #ffd900;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: top 0.5s ease;
  z-index: 1000;
}

.menu.active {
  top: 0;
}

.menu ul {
  list-style: none;
  text-align: center;
	width: 100%;
}

.menu li {
	width: 100%;
  margin:1.2em auto;
}

.menu a {
  color: #595757;
  font-size: 1.5rem;
  text-decoration: none;
  transition: color 0.3s;
  display: block;
  width: 80%;
  margin: 0 auto;
  border-bottom: solid 2px #595757;
	max-width: 500px;
  padding-bottom: 1.2em;
}

.menu a:hover {
  color: #600000;
}

.scaleani {
    animation: scaleAnimation 3s ease-in-out;
}
.close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 30px;
  height: 30px;
  cursor: pointer;
  z-index: 1002;
}

.close-btn span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 2px;
  background: #000;
  transition: 0.3s;
}

.close-btn span:nth-child(1) {
  transform: translate(-50%, -50%) rotate(45deg);
}

.close-btn span:nth-child(2) {
  transform: translate(-50%, -50%) rotate(-45deg);
}

@keyframes scaleAnimation {
    0% { transform: scale(1); }
    25% { transform: scale(1.2); }
    75% { transform: scale(1.2); }
    100% { transform: scale(1); }
}
.headermenu{
	position: relative;
	flex-shrink: 0;
	width: calc(100% - 50px);
}

.headermenu .leftbox,
.headermenu .eigyoujikan,
.headermenu .top-oubo{
	position: absolute;
	flex-shrink: 0;
}
.headermenu .leftbox{
	left: 10px;
	top: 10px;
	width: 180px;
}
.headermenu .top-oubo{
	right: 284px;
	top: 18px;
  width:164px;
}
.headermenu .eigyoujikan{
	right: 20px;
	top: 20px;
  width:250px;
}
header{
	background-color: #ffe100;
  height: 70px;
  min-height: 70px;
	position: fixed;
	z-index: 6;
	width: 100%;
}
main{
	margin-top: 0px;
}
.mobile-br {
            display: none;
        }
        
        /* スマホサイズで表示 */
        @media (max-width: 767px) {
            .mobile-br {
                display: block;
            }
        }
        
        /* 方法2: spanをCSSで制御 */
        .mobile-only-br {
            display: none;
        }
        
        @media (max-width: 767px) {
            .mobile-only-br::after {
                content: "\A";
                white-space: pre;
            }
        }
        
        /* 方法3: 別々の要素で制御 */
        .desktop-text {
            display: inline;
        }
        
        .mobile-text {
            display: none;
        }
        
        @media (max-width: 767px) {
            .desktop-text {
                display: none;
            }
            .mobile-text {
                display: inline;
            }
        }

@media only screen and (max-width: 480px){
	.voice{margin-top: -10px;}
	.topimg-firstpc{display: none;}
	.eigyoujikan{display:none}
}

.topimg {
  position: relative;
  background: #eb6100;
  overflow: hidden;
  height: 134vw; /* 子要素と同じ高さに設定 */
}

.kaiten-bg {
  position: absolute;
  top: 72%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  width: 150vmin; /* または希望するサイズ */
  height: 150vmin; /* または希望するサイズ */
}

.rotating-svg {
  animation: spin 10s linear infinite;
  /* 親要素のサイズに対して150% */
  width: 150%;
  height: 150%;
  /* 中央配置のための調整 */
  position: absolute;
  top: 32vw;
  left: 50%;
  transform: translate(-50%, -50%);
}

@keyframes spin {
  0% { transform: translate(-50%, -50%) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(360deg); }
}

.topbox {
  margin-top: 50px;
	margin-bottom: 150px;
}

.topimg-first {
  position: relative;
  background-size: 100%;
  display: flex;
  align-items: flex-end;
  height: 100%;
}

.topimg-first img:nth-child(1) {
  /* oil-top01-sp.png - 下から70％の位置、幅80% */
  position: absolute;
	top: 11.33vw;
  width: 90%;
  height: auto;
  z-index: 3;
	left: 5%;
}

.topimg-first img:nth-child(2) {
  position: absolute;
	top: 37.25vw;
  width: 95%;
	left: 2.5%;
  height: auto;
  z-index: 3;
}
.topimg-first img:nth-child(3) {
  position: absolute;
	bottom: 0;
  width: 100%;
  height: auto;
  z-index: 3;
}

.topimg-first img:nth-child(4) {
  position: absolute;
	bottom: 0;
  width: auto;
  height: auto;
  z-index: 2;
}
.saraniban{
	position:sticky;
	margin-top: -44px;
	z-index: 4;
}
.underyellow{
	background: #ffe100;
	padding:30px 20px 20px;
	margin: -20px auto 0;
}

.fixedsp{
	z-index: 5;
}
.fixedsp > div{
	position: fixed;
	bottom: -8px;
	width: 48%;
}
.fixedsp > div:nth-child(2){
	right: 0;
}
.firstsec h1{
	width: 80%;
	margin: auto;
	padding: 30px 0 10px;
}
.firstsec{
	background-image: url("../images/backgroundimg.png");
}
.firstsec h2{
	width: 80%;
	padding: 50px 0 30px;
	margin: auto;
}
.underled{
	font-size: 1.4em;
	font-weight: bolder;
	color: #e60012;
	margin-bottom: 0.5em;
 }
.undertext{
	text-align: justify;
	font-size:0.8em;
}
.underyellow-second{
	padding:30px 20px 50px;
	margin: -20px auto 0;
}
.brown-sec > div{
	width: 100%;
	color: #fff;
	font-weight: bolder;
	font-size: 1.4em;
	padding-bottom: 0.3em;
}
.brown-sec{
	background: #4b2300;
	padding: 8px 0 3px;
}

.tenpoimg {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.campasec01{
	margin-right: -4em;
}
.campasec01,.campasec02{ text-align:left;font-family: 'Noto Sans JP', sans-serif; font-weight:400; margin:30px auto; font-size:0.8em; line-height:2em;}
.campcenter{ border-right:solid 1px #000; margin:30px auto;}
.compimg img{ width:84%; margin:30px auto;}
h2.voice,
h2.question,
	h2.nagare{
	width: 90%;
	margin: auto;
	margin-bottom: 30px;
}
h2.question img,
h2.nagare img{
	border-radius: 0.3em;
	display: block;
}
.nagare-sec{
	width: 100%;
	padding: 50px 0;
}

.nagare-img{
	width: 70%;
	margin: auto;
	margin-bottom: 20px;
}
.nagare-sec > div:nth-child(6){
	margin-top: 30px;
}
.nagare-sec > div:nth-child(n+6){
	width: 90%;
}
.nagare-img img{
	border-radius: 0.5em;
	display: block;
}
.reservation-container {
  display: flex;
  border: 3px solid #e60012;
  border-radius: 0.5em;
  overflow: hidden;
  max-width: 800px;
	width: 80%;
	margin: auto;
}

.left-section {
  background-color: #e60012;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  flex-shrink: 0;
}

.step-number {
  color: white;
  font-size: 2em;
  font-weight: bold;
}

.right-section {
  background-color: white;
  padding: 20px;
  flex: 1;
}

.icon-text {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.reservation-icon {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
}

.icon-text h3 {
  font-size: 1.8em;
  font-weight: bold;
  margin: 0;
  line-height: 1.2;
  color: black;
}

.notes p {
  font-size: 0.8em;
  margin: 5px 0;
  color: black;
	text-align: left;
}
.question-sec{
	margin: 50px auto;
}



.voice{
	padding: 50px 0;
}
.googletittle{
	width: 84%;
	margin: -50px auto 0;
}
.copyright{
	font-size: 0.7em;
	margin: 10px auto 50px;
	text-align: center
}
.googlevoice > div{
	margin-top: 0.5em;
}
.googlevoice img{
	width: 80%;
}
.googlevoice{
	width: 84%;
	margin: 20px auto 0;
	background: #fff;
	padding:20px 30px;
	display: block;
	border-radius: 0.8em;
	text-align: left;
	font-size: 90%;
}

/* iPhone Safari 完全対応CSS - 全体書き直し版 */

.faq-container {
	width: 84%;
    max-width: 600px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
}

/* buttonではなくdivアプローチ */
.faq-question {
    background: #e6ebee;
    color: #000;
    padding: 20px;
    border-radius: 0.5rem;
    border: none;
    width: 100%;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
    
    /* iPhone Safari対策 */
    display: block !important;
    text-align: left !important;
    -webkit-appearance: none;
    appearance: none;
    -webkit-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}

.faq-question:hover {
    opacity: 0.9;
}

.faq-question.open {
    background: #e85298;
    color: white;
    border-radius: 0.5rem 0.5rem 0 0;
}

/* 画像コンテナを追加 */
.question-content {
    display: block;
    width: 100%;
    text-align: left;
    margin: 0;
    padding: 0;
}

.question-image {
    height: 40px; /* max-heightからheightに変更 */
    width: auto;
    min-height: 40px; /* 最小高さを保証 */
    display: inline-block !important;
    vertical-align: top;
    margin: 0;
    padding: 0;
    text-align: left !important;
    
    /* SVG対策 */
    object-fit: contain;
    
    /* iPhone Safari対策 */
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    position: relative;
    left: 0;
    right: auto;
}

.plus-icon {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    transition: all 0.3s ease;
}

.faq-question.open .plus-icon {
    transform: translateY(-50%) rotate(45deg);
    right: 15px;
    top: 15px;
}

.faq-answer {
    background: #fff;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
	margin-bottom: 60px;
}

.faq-answer.open {
    max-height: 400px;
    border: 3px solid #e85298;
    border-top: none;
}

.faq-answer-content {
    padding: 20px;
    color: #000;
    text-align: left !important;
}

.faq-answer-content img {
    display: block !important;
    max-width: 100%;
    height: auto;
    margin: 0 !important;
    text-align: left !important;
    
    /* iPhone Safari対策 */
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    position: relative;
    left: 0;
}
.obj {
    opacity: 0;
    transition: opacity 0.1s;
}

.obj.show {
    opacity: 1;
}


	.fixedsp > div:nth-child(3){display: none;}
@media (min-width: 481px) {
	
	.fixedsp > div:nth-child(1),
	.fixedsp > div:nth-child(2){display: none;}
.fixedsp > div:nth-child(3){display: block;
    width: 340px;
    height: 340px;
	}
.righttopfix{
  position: fixed;
  top: 30px;
  right: -80px;
    width: 200px;
    height: 200px;
  cursor: pointer;
  z-index: 2;
    transition: all 0.3s ease;
    animation: pulseAnimation 2s ease-in-out infinite;
	animation-delay: 0.5s;
    transform-origin: top right;
}
.topimg {
  height: auto;
	width: auto;
}

.kaiten-bg {
  position: absolute;
  top: 70vw;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  width: 200vmin; /* または希望するサイズ */
  height: 200vmin; /* または希望するサイズ */
}
	.saraniban img{margin-bottom: -5px;}
.saraniban{
	margin-top: -111px;
	background: linear-gradient(to bottom, 
  transparent 91px, 
  #e60012 91px
);
}
	.google-map {
    height: 600px; /* PC用 */
  }
	.firstsec > div,
	.firstsec h1,
	.underyellow .undertext,
	.underyellow .underled
	{
		width: 100%;
		max-width: 1200px;
		margin-left: auto;
		margin-right: auto;
	}
	.underyellow-second,
	.underyellow{
		font-size: 140%;
		line-height: 1.4em;
		padding: 60px 0;
	}
/* メディアクエリ - PC用 */
@media (min-width: 481px) {
  /* Google Map iframe の高さ調整 */
  .google-map {
    height: 800px;
  }
}

/* 背景グラデーション - 上80px透明、以下#e60012 */
.gradient-bg {
  background: linear-gradient(to bottom, 
    transparent 80px, 
    #e60012 80px
  );
}
	.topimg.second{
		display: none;
	}
/* Google Map iframe 基本スタイル */
.google-map {
  width: 100%;
  height: 450px; /* デフォルト（モバイル用） */
}
	.saraniban.second{
		margin-top: -100px;
	}
.brown-sec > div{
	font-size: 2.4em;
	padding: 0.3em 0 0.5em;
	letter-spacing: 0.07em;
}
	.voice {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 20px;
}
#okyakusamanokoe .googlevoice {
    flex: 0 0 calc(50% - 10px) !important;
    width: calc(50% - 10px) !important;
    max-width: calc(50% - 10px) !important;
    margin: 0 !important;
    display: block !important;
    float: none !important;
    position: relative !important;
    box-sizing: border-box !important;
  }
	
	
	.firstsec{
		display: flex;flex-wrap: wrap;padding-top: 60px;
  margin: 0 auto;
  padding-left: calc(50vw - 550px);
  padding-right: calc(50vw - 550px);
	
	}
	.firstsec > div:nth-child(2),
	.firstsec > div:nth-child(3){
		width: 48%;
	}
	.firstsec h1{
		max-width: 1000px;
	}
	.holiy > div{
		margin-bottom: 8px;
	}
	.flex.justse.pcwid{
		font-size: 1.4em;
	}
	
.campasec01,.campasec02{ size:1.2em; line-height:2.2em;}
.campcenter{ border-right:solid 1px #000; margin:30px -50px ;}
	.holiy{margin-bottom: 100px;}
.question-sec,
	.nagare-sec{
	width: 100%;
	padding: 100px 0;
  padding-left: calc(50vw - 550px);
  padding-right: calc(50vw - 550px);
}	
.nagare-img{
	width: 70%;
	margin-bottom: 50px;
}
.nagare-sec > div:nth-child(n+6){
	width: 70%;
	margin-top: 60px;
}
.faq-container {
	width: 84%;
    max-width: 900px;
    margin: 0 auto 30px;
}
.question-image {
    height: 100px;
    width: auto;
    min-height: 100px;
    display: inline-block !important;
    vertical-align: top;
    margin: 0;
    padding: 10px 0;
    text-align: left !important;
    
    object-fit: contain;
    
    transform: translateZ(0);
    position: relative;
    left: 0;
    right: auto;
	
}
.faq-question {
    border-radius: 1rem;
}	
	
	h2.question{
		margin-bottom: 80px;
	}
h2.voice{
	width: 90%;
	margin: auto;
	margin-bottom: 50px;
}
	h2.nagare{
	width: 90%;
	margin: auto;
		margin-top: 100px;
	margin-bottom: 70px;
}
h2.question img,
h2.nagare img{
	border-radius: 1em;
	display: block;
}
.faq-answer.open {
    max-height: 800px;
}
.faq-answer-content img {
    display: block !important;
    max-width: 100%;
    height: auto;
    margin: 0 !important;
    text-align: left !important;
    
    /* iPhone Safari対策 */
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    position: relative;
    left: 0;
}
.faq-answer-content img {
	width: 100%;
}
	h2.question{
		width: 90%;
		margin-top: 80px;
	}
.googletittle{
	width: 70%;
	margin-top: -150px;
}	

	#okyakusamanokoe.voice{
		padding-bottom: 100px;
  padding-left: calc(50vw - 550px);
  padding-right: calc(50vw - 550px);
	}
#okyakusamanokoe a {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 20px !important;
	width: 90%;
	margin:0 auto;
    align-items: stretch !important; /* 高さを揃える */
  }
	.googletittle{
		margin-bottom: 60px;
	} 
.topbox {
 	margin-bottom: 30px;
}

	.topimg-first{
		display: none;
	}	
	

	.kaiten-bg{display: none;}
	
	
}

@keyframes pulseAnimation {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.togooglelink{
	width: 70%;
	margin: 30px auto 50px;
}
.togooglelink{
	width: 84%;
	margin: 30px auto 50px;
}
@media (min-width: 481px) {
.togooglelink{
	width: 70%;
	margin: 50px auto 80px;
	}
}