@charset "utf-8";
/* CSS Document */
.jinwari{
 animation-name: textanime;/*keyname*/
 animation-duration:2s;/*最大再生時間*/
}

@keyframes textanime
{
 0% {
	 opacity: 0;
    filter: blur(10px);
  }
  100% {
    filter: blur(0);
	  opacity: 1;
  }
}

/* スクロールアップ */
.scroll-up {
  opacity: 0; 
  visibility: hidden;
  transform: translateY(50px);
  transition: all 1s;
}
.scroll-up.is-show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
}

 
/*基本設定*/

.base_inner {
    width: 1080px;
    padding: 0;
    margin: 0 auto;
}

.row {
    flex-direction: row-reverse;
}

.sp-on{
		display: none;
	}

html {
    font-size: 14px;
}

p{
    line-height: 2.0;
    font-style: normal;
	font-size: 1rem; /* 16px */
	color: #000000;
}

img{
	width: 100%;
}

h2 {
  font-size: 1.8rem;
  font-weight: bold;
	letter-spacing: 5px;
}

.en-2{
	font-family: 'Tilt Warp', cursive;
}

.en{
	font-family: 'Montserrat', sans-serif;
}

body {
    width: 100%;
    height: 100%;
    max-width: 1920px;
    min-width: 1020px;
	position: relative;
	margin: auto;
    color: #000;
    font-size: 1rem;
    line-height: 1.8;
    letter-spacing: 0.08em;
    word-wrap: break-word;
    overflow-wrap: break-word;
	overflow-x: hidden;
	font-family: "Zen Maru Gothic", serif;
    font-weight: 400;
    font-style: normal;
}

li{
	 list-style: none;
}

.sp-br{
		display: none;
	}

.pc-br{
	display: block;
}

/*
.base_inner {
    width: 1080px;
    padding: 0;
    margin: 0 auto;
}
*/

/*画像ズーム*/
.moimg1 {
	overflow: hidden;
	border-radius: 50px;
}

.moimg2 {
	overflow: hidden;
}

.moimg1 img , .moimg2 img{
	display: block;
	transition: 0.5s;
}
.moimg1 img:hover , .moimg2 img:hover{
	transform: scale(1.1, 1.1);
}

.zoom-in{
	display: block;
	transition: 0.5s;
}

.zoom-in:hover {
	transform: scale(1.1,1.1);
}
/* 画像ズームここまで */



/*お問い合わせここから*/
/*
.form-main {
	margin-top: 100px;
 }
*/

#contact .page-title h2{
  border-bottom: 1px solid #edf2fa;
  width: 40%;
  padding-bottom: 20px;
}

.contact-p{
  text-align: center;
    margin: 80px 0;
}

.contact-p a{
  width: 15%;
    border: solid 1px #008ec2;
    color: #008ec2;
    background: #fff;
    padding: 5px;
    border-radius: 10px;
    margin: 0 auto;
    margin-top: 20px;
}

  @media (max-width: 768px) {
    .form-main {
      padding: 0 2rem 5rem; } }

.contact-title {
  text-align: center; }
  .contact-title h1 {
    margin: 0;
    padding-top: 10rem; }

form {
  max-width: 50%;
  width: calc(100% - 10px);
  margin: 0 auto;
}

.item {
  display: grid;
  align-items: center;
  padding-top: 30px; }

.sex {
  padding-top: 20px; }

.label {
  font-size: 16px;
  font-weight: bold;
  width: 300px;
  padding-left: 10px;
  border-left: solid 5px #008ec2;
	
}

.label-required {
  color: #dc2f04;
  font-weight: bold;
  font-size: 16px; }

label{
	font-size: 16px;
}

input[type="text"], input[type="email"] {
  border: solid 1px #999;
  padding: 3px;
  font-size: 15px;
  width: 100%;
  margin: 2rem 0; }
  @media (max-width: 768px) {
    input[type="text"], input[type="email"] {
      width: auto; } }

select {
  appearance: none;
  cursor: pointer;
  border: solid 1px #aaa;
  border-radius: 5px;
  padding: 0;
  font-size: 15px; }

textarea {
  border: solid 1px #999;
  padding: 10px;
  height: 160px;
  width: auto;
  font-size: 15px;
  margin: 2rem 0; }

  .btn {
    text-align: center;
}

.btn :hover {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all .4s;
  transition: all .4s; }

button {
 font-size: 14px;
 cursor: pointer;
 font-size: 17px;
 padding: 10px 60px;
 border-style: none;
}

.btn .link-btn::after{
  bottom: 5px;
}

#formWrap {
  width: 700px;
  margin: 0 auto;
  color: #555;
  line-height: 120%;
  font-size: 90%; }

table.formTable {
  width: 100%;
  margin: 0 auto;
  border-collapse: collapse; }

table.formTable td, table.formTable th {
  border: 1px solid #ccc;
  padding: 10px; }

table.formTable th {
  width: 30%;
  font-weight: normal;
  background: #efefef;
  text-align: left; }

p.error_messe {
  margin: 5px 0;
  color: red; }

/*　簡易版レスポンシブ用CSS（必要最低限のみとしています。ブレークポイントも含め自由に設定下さい）　*/
@media screen and (max-width: 572px) {
  #formWrap {
    width: 95%;
    margin: 0 auto; }

  table.formTable th, table.formTable td {
    width: auto;
    display: block; }

  table.formTable th {
 margin-top: 5px;
 border-bottom: 0; }

  form input[type="submit"], form input[type="reset"], form input[type="button"] {
 display: block;
 width: 100%;
 height: 40px; } }
/*お問い合わせここまで*/



/* ヘッダーここから */
.header {
    position: fixed;
    top: 0px;
    left: 0px;
    z-index: 9999;
    width: 100%;
    height: 100px;
    transition: transform 0.5s;
}
.header.js_hide {
    transform: translateY(-200px);    
}

.header-bg{
  background-color: #edf2fa;
}

.header-bg::before {
  content: "";
  background: url(../img/wave-3.png) no-repeat;
  background-size: contain;
  width: 100%;
  height: 30vh;
  position: absolute;
  z-index: -100;
  top: -45%;
  left: 0;
}

/*topヘッダー*/
.header-page {
position: absolute;
  z-index: 999;
  top: 0;
  left: 0;
  width: 100%;
  padding: 0 40px;
  box-sizing: border-box;
	background: #fff;
}


header .inner {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
}
.logo {
  position: relative;
  margin: 0;
  margin: 40px 0 0 40px;
  width: 60px;
}

/* header-navi */

header .navi {
  margin: 0 0 0 auto;
  border-radius: 0 0 0 30px;
  opacity: 0.8;
  display: flex;
  justify-content: flex-end;
  list-style: none;
  background-color: #fff;
  align-items: center;
  width: auto;
  height: 12vh;
  padding: 0 10px 0 50px;
  font-weight: 500;
}
header .navi li {
  margin: 5px 0 5px 40px;
}

header .navi li:nth-child(4){
    margin: 5px 0 5px 70px;   
}


header .navi li:first-child {
  margin-left: 0;
}
.header-top .navi li a {
  display: block;
  box-sizing: border-box;
  text-decoration: none;
}

.header-page .navi li a {
  display: block;
  box-sizing: border-box;
  text-decoration: none;
  color: #666;
}

header .navi li a {
  position: relative;
  display: inline-block;
  text-decoration: none;
}

header .navi a::after {
  position: absolute;
  bottom: -8px;
  left: 0;
	right: 0;
	margin: 0 auto;
  content: '';
  width: 50%;
  height: 2px;
  background: #008ec2;
  opacity: 0;
  visibility: hidden;
  transition: .3s;
}
header .navi li a:hover::after {
  bottom: -15px;
  opacity: 1;
  visibility: visible;
}

/* add css  */

/* サブメニューの初期状態を非表示 */
.navi li {
    position: relative;
  }
  
.child_menu {
    display: none;
    position: absolute;
    background: #fff;
    list-style: none;
    padding: 10px 0;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    min-width: 170px;
    font-size: 0.8rem;
  }
  
  /* 会社概要にカーソルを当てるとサブメニューを表示 */
  .navi li:hover .child_menu {
    display: block;
  }
  
  /* サブメニュー内のリストスタイル */
  .child_menu li {
    margin: 0!important;
    padding: 10px 0;
  }
  
  .child_menu li a {
    text-decoration: none;
    display: block;
    padding: 5px 10px;
  }
  
  /* サブメニューのリンクにホバー時のスタイル */
  .child_menu li a:hover {
    background: #f0f0f0;
  }

 .header-ec{
    width: 25px;
 }

 .header-contact{
    background-color: #f4c65c;
    color: #fff;
    padding: 5px 25px;
    border-radius: 10px;
 }

 .header-contact a::after , .header-ec a::after , .child_menu a::after{ 
    display: none;
 }

/* ヘッダーここまで */

/* 回転しながらフェードインアニメーション */
/* 少し回転して下から */
.rotate-fadeUp {
  animation-name: rotate-fadeUp-animation;
  /* アニメーションの時間。適宜変更してください。 */
  animation-duration: 2s;
  animation-fill-mode: forwards;
  opacity: 0;
}

.js-rotate-fadeUp-trigger {
  opacity: 0;
  transform: translateY(100px) rotateY(90deg);
  transition: none;
  will-change: transform, opacity;
}

@keyframes rotate-fadeUp-animation {
  from {
    opacity: 0;
    transform: translateY(100px) rotateY(180deg);
  }
  to {
    opacity: 1;
    transform: translateY(0) rotateY(0deg);
  }
}

/*トップ*/
.top-fv{
  position: relative;
    background-color: #edf2fa;
    width: 100%;
    height: 50vh;
    margin-bottom: 35%;
}

.top-fv::before {
    content: "";
    background: url(../img/wave-1.png) no-repeat;
    background-size: contain;
    width: 100%;
    height: 50vh;
    position: absolute;
    z-index: -100;
    top: 87%;
    left: 0;
}

/* トップスライダー */
#slideshow-pc , #slideshow-sp {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

#slideshow-pc img ,#slideshow-sp img {
  position: absolute;
  margin-top: 10%;
  right: 0;
  width: 70%;
  height: auto;
  object-fit: cover;
  z-index: 1;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  filter: drop-shadow(4px 4px 4px rgba(0, 0, 0, 0.2));
  will-change: opacity, filter;
}

#slideshow-pc img.active , #slideshow-sp img.active {
  z-index: 2;
  opacity: 1;
}

#slideshow-pc img.last-active , #slideshow-sp img.last-active{
  z-index: 1;
}
 /* トップスライダー ここまで*/

 /* 縁に沿った文字がぐるぐる回る */
.block {
  position: absolute;
    width: 160px;
    height: 160px;
    margin: auto;
    bottom: -65%;
    left: 25%;
    z-index: 10;
}
.circleText {
  overflow: visible;
  animation: rotation 18s linear infinite;
}

.circleText__circle {
  fill: none;
}

.circleText__text {
  fill: #f4c65c;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
}
@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* 縁に沿った文字がぐるぐる回るここまで */

.fv-text p{
  writing-mode: tb-rl;
    position: absolute;
    top: 35%;
    left: 13%;
    font-size: 2.2rem;
    font-weight: 500;
    letter-spacing: 5px;
    color: #008ec2;
    height: max-content;
    padding: 50px 0 30px;
    border-bottom: 2px solid;
    border-top: 2px solid;
}

.top-about-text{
  width: 50%;
    margin: 0 auto;
}

.top-about-text h2{
  font-weight: bold;
  padding-bottom: 50px;
}

.top-about-text p{
  padding-bottom: 30px;
}

.link-btn{
  position: relative;
  font-weight: 500;
}



/* ホバーで文字間隔広がる */
.sample_btn{
  display: inline-block;
  -webkit-transition: all .3s;
  transition: all .3s;
  padding-bottom: 5px;
  padding-left: 10px;
  font-weight: 500;
}

.sample_btn:hover {
  letter-spacing: 0.12em;
  text-indent: 0.12em;
}

/* リンク矢印の動き */

.c-btn>svg>circle:first-child {
  stroke: #f4c65c;
  stroke-dashoffset: 0;
  transition: stroke-dashoffset 2.5s cubic-bezier(.165, .84, .44, 1);
}

.c-btn>svg>circle:last-child {
  stroke: #ff860d;
  stroke-dashoffset: 200;
  transition: stroke-dashoffset 2.5s cubic-bezier(.165, .84, .44, 1);
}

.c-btn>svg>circle {
  fill: transparent;
  stroke-width: 1;
  stroke-dasharray: 200;
}

.c-btn:hover>svg>circle:first-child {
  stroke-dashoffset: 0;
}

.c-btn:hover>svg>circle:last-child {
  stroke-dashoffset: 0;
}

.c-btn {
  display: inline-flex;
  align-items: center;
  position: relative;
  line-height: 1.5;
  text-decoration: none;
}

.c-btn:before {
  content: "→";
  position: absolute;
  top: 9px;
  bottom: 0;
  left: 12px;
  margin: auto;
  font-size: 19px;
  line-height: 1;
  transition: none;
  color: #f4c65c;
}

.c-btn:after {
  content: "→";
  position: absolute;
  top: 9px;
  bottom: 0;
  left: 12px;
  margin: auto;
  font-size: 19px;
  line-height: 1;
  transform: translateX(-100%);
  opacity: 0;
  transition: opacity 0s ease, transform 0.6s ease;
  color: #f4c65c;
}

.c-btn:hover:before {
  animation: arrow-move-out 0.6s forwards;
}

.c-btn:hover:after {
  animation: arrow-move-in 0.6s 0.2s forwards;
}

@keyframes arrow-move-out {
  0% {
    transform: translateX(0);
    opacity: 1;
  }
  100% {
    transform: translateX(100%);
    opacity: 0;
  }
}

@keyframes arrow-move-in {
  0% {
    transform: translateX(-100%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}


.top .btn {
  text-align: left;
}


.top-about{
  padding-bottom: 100px;
}

.top-about{
  position: relative;
}

.top-about::after {
  content: '';
    position: absolute;
    background: url(../img/ashirai-1.png) no-repeat;
    width: 20%;
    height: 160px;
    background-size: contain;
    margin: auto;
    left: 0%;
    bottom: 0;
}

.top-about::before {
  content: '';
    position: absolute;
    background: url(../img/ashirai-2.png) no-repeat;
    width: 210px;
    height: 250px;
    background-size: contain;
    margin: auto;
    right: 0%;
    bottom: 0;
}

.top-service{
  padding: 100px 0;
  background-color: #fffdf3;
  border-radius: 0 100px 100px 0;
}

.midashi h2{
  text-align: center;
  font-weight: 500;
  margin-bottom: 50px;
  letter-spacing: 2px;
}

.midashi p{
  padding-bottom: 80px;
  text-align: center;
  font-size: 1.2rem;
}

.midashi h2 span{
  display: block;
  color: #008ec2;
  font-weight: normal;
  font-size: 0.8rem;
  letter-spacing: 1px;
}

.top-service-area:nth-of-type(2) ul{
  display: flex;
  margin-bottom: 50px;
}

.top-service-area li{
  width: 28%;
  margin-right: 50px;
}

.service-sub{
  font-size: 1.2rem;
    font-weight: 600;
    padding: 30px 0;
    position: relative;
    margin-left: 60px;
}

.service-sub::before {
  position: absolute;
  content: "";
    display: inline-block;
    background-image: url(../img/top-pet-service.png);
    background-size: cover;
    background-repeat: no-repeat;
    width: 25px;
    height: 25px;
    left: -40px;
}

.top-service-area:nth-of-type(3) .service-sub::before {
  background-image: url(../img/top-life-service.png);
}

.top-service-area li h3{
  text-align: center;
  font-size: 1.2rem;
  padding: 30px 0;
}

.top-service-p{
  font-size: 0.85rem;
  padding-bottom: 30px;
}

.scroll-indicator {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #ccc;
  font-size: 12px;
  letter-spacing: 3px;
  font-weight: 300;

  /* 💡 base_inner の右端に揃える */
  justify-content: flex-end;
  margin-top: 50px; /* 好みで調整 */

  /* 固定表示ではなく、section内で右寄せ */
  position: relative;
}

/* 横のアニメーション線 */
.scroll-line {
  position: relative;
  width: 60px;
  height: 1px;
  background: rgba(204, 204, 204, 0.3);
  overflow: hidden;
  border-radius: 2px;
}

.scroll-line::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(to right, transparent, #ccc, transparent);
  transform: translateX(-100%);
  animation: scrollLine 1.8s ease-in-out infinite;
}

@keyframes scrollLine {
  0%   { transform: translateX(-100%); opacity: 0; }
  20%  { opacity: 1; }
  50%  { transform: translateX(150%); opacity: 1; }
  100% { transform: translateX(150%); opacity: 0; }
}



.top-ec{
  padding: 100px 0;
}

.top-ec ul{
    background: #008ec2;
    border-radius: 50px;
    display: flex;
    padding: 30px;
    justify-content: center;
}

.top-ec ul li:nth-child(1){
  width: 32%;
}

.top-ec ul li:nth-child(2){
  width: 50%;
  color: #fff;
  padding-left: 7%;
}

.top-ec ul li:nth-child(2) p{
  color: #fff;
  margin-top: 20px;
}

.top-ec ul li:nth-child(2) img{
      width: 9%;
    margin-left: 20%;
    margin-bottom: 10px;
}

.top-ec ul li:nth-child(3){
  width: 20%;
}

.service-sub::beforea:nth-of-type(2){
  position: absolute;
  content: "";
    display: inline-block;
    background-image: url(../img/top-life-service.png);
    background-size: cover;
    background-repeat: no-repeat;
    width: 25px;
    height: 25px;
    left: -40px;
}

.top-service-area:nth-of-type(3) ul {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 10px;
}

.top-service-area:nth-of-type(3) ul li {
  flex: 0 0 auto;
  width: 28%;
  scroll-snap-align: start;
}

.top-service-area:nth-of-type(3) ul::-webkit-scrollbar {
  display: none;
}

/* 順番にフェードイン */
.ponpon{
  position: relative;
}

.fade-in-text {
  position: absolute;
  opacity: 0;
  transform: translateY(100px);
  transition: opacity 1s ease-out, transform 2s ease-out;
  transition-delay: calc(var(--delay) * 1.5s);
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  padding-bottom:24px;
  width: 30%;
  margin: auto;
  left: 0;
  right: 0;
  z-index: 1;
}

.fade-in-text:nth-child(2){
  left: 35%;
  top: 120px;
}

.fade-in-text:nth-child(3){
  right: 37%;
  top: 150px;
  width: 25%;
  z-index: -1;
}


.fade-in-text:nth-child(4){
  width: 15%;
  right: 40%;
}

.fade-in-text.visible {
  opacity: 1;
  transform: translateY(0);
}
/* 順番にフェードインここまで*/

.top-ec-text{
  padding-top: 420px;
  padding-bottom: 50px;
  width: 40%;
  margin: 0 auto;
  text-align: center;
}

.top-ec .btn{
  text-align: center;
}

.top-ec .link-btn::after{
  left: 40%;
}

.parallax {
	height: 100vh;
    background: url("../img/parallax.jpg");
    background-size: contain;
	margin-left: calc( ( 100% - 100vw ) / 2 );
    margin-right: calc( ( 100% - 100vw ) / 2 );
		background-repeat: no-repeat;
}

.top-contact ul {
  display: flex;
  margin: 0 auto;
  width: 60%;
  align-items: center;
}

.top-contact{
  position: relative;
  padding: 200px 0 250px;
}

.top-contact::before {
  content: '';
    position: absolute;
    background: url(../img/ashirai-3.png) no-repeat;
    width: 80px;
    height: 90px;
    background-size: contain;
    margin: auto;
    bottom: 0;
    right: 0;
    left: 0;
}

.top-contact li:nth-child(1){
  width: 33%;
  border-right: 1px solid #008ec2;
}

.top-contact li:nth-child(1) h2{
  text-align: left;
    margin-bottom: 0;
    padding: 50px 0;
}

.top-contact li:nth-child(2){
  padding-left: 50px;
}

.top-contact li:nth-child(2) p{
  padding-bottom: 20px;
  font-size: 1.13rem;
}

.top-contact .btn{
  text-align: left;
}

/* フッター */
footer {
  position: relative;
  background: #edf2fa;
  text-align: center;
  padding: 0 0 20px;
  font-weight: normal;
  margin-top: 200px;
  width: 100%;
  overflow: hidden; /* ←追加 */
}

footer ul {
  display: flex;
  gap: 30px;
  justify-content: center;
}

footer li{
  padding-bottom: 20px;
}

footer li a{
  position: relative;
}

footer .acd {
  display: block;
  text-align: left;
}

footer small {
  display: block;
  margin-top: 30px;
  font-size: 12px;
}

footer h1 {
  width: 80px;
  margin: 60px auto;
}

footer li a::after {
  position: absolute;
  bottom: -8px;
  left: 0;
  right: 0;
  margin: 0 auto;
  content: '';
  width: 50%;
  height: 2px;
  background: #008ec2;
  opacity: 0;
  visibility: hidden;
  transition: .3s;
}
footer li a:hover::after {
  bottom: -15px;
  opacity: 1;
  visibility: visible;
}

footer::before {
  content: "";
  display: block;
  position: absolute;
  top: -255px; /* 画像の高さに合わせて調整する */
  left: 0;
  width: 100%;
  height: 255px; /* 画像の高さ */
  background: url("../img/wave-2.png") no-repeat center top;
  background-size: cover; /* もしくは contain でもOK */
  z-index: -1;
}

.change {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all  0.3s ease;
  }
.change:hover {
  background-color: #f4dba8;
  }


/* company　会社概要 */
.page-title{
  margin-top: 250px;
}

.page-title h2 span {
  color: #008ec2;
  font-weight: normal;
  font-size: 1.2rem;
  letter-spacing: 1px;
}

.page-title h2 {
  font-size: 2.0rem;
  font-weight: 500;
  margin-bottom: 50px;
  letter-spacing: 2px;
}

.com-text , .top-text{
  padding: 100px 0;
  font-size: 1.1rem;
}

.com-text h3{
  font-size: 1.86rem;
    font-weight: bold;
    padding-bottom: 20px;
}

.com-text p {
  width: 62%;
  padding-bottom: 50px;
  font-size: 1.15rem;
}

/* 文字がループ */
.loop_wrap {
  display: flex;
  width: 100%;
  height: 180px;
  overflow: hidden;
  color: #cccccc;
  font-family: "EB Garamond", serif;
}

.loop_wrap div {
  flex: 0 0 auto;
  white-space: nowrap;
  font-size: 5.0rem;
  overflow: hidden;
}

.loop_wrap div:nth-child(odd) {
animation: loop 50s -25s linear infinite;
}

.loop_wrap div:nth-child(even) {
animation: loop2 50s linear infinite;
}

/* 画像が画面内に入ると、アニメーション */
.img-wrap {
  opacity: 0;
}

.img-animation {
  animation: img-opacity 2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  overflow: hidden;
  position: relative;
}

.img-animation::before {
  animation: img-animation 2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  background: #fff;
  content: '';
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 1;
}

@keyframes img-opacity {
  100% {
    opacity: 1;
  }
}

@keyframes img-animation {
  100% {
    transform: translateX(100%);
  }
}

@keyframes loop {
  0% {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}

@keyframes loop2 {
  0% {
    transform: translateX(0);
  }
  to {
    transform: translateX(-200%);
  }
}

.com-text ul{
  display: flex;
  justify-content: center;
  padding: 100px 0;
}

.com-text li:nth-child(1){
  width: 30%;
  margin-right: 20px;
}

.com-text li:nth-child(2){
  width: 30%;
  margin-left: 20px;
}

.message-txt{
  width: 70%;
  margin: 0 auto;
  padding-bottom: 30px;
}

.message-name{
  text-align: center;
  font-size: 1.15rem;
}

.message{
  position: relative;
  margin-bottom: 300px;
}

.message::before {
  content: '';
  position: absolute;
  background: url(../img/ashirai-4.png) no-repeat;
  width: 400px;
    height: 200px;
    background-size: contain;
    margin: auto;
    right: -5%;
    bottom: -55%;
}

.overview dl{
  display: flex;
    width: 70%;
    margin: 0 auto;
    padding-bottom: 30px;
    border-bottom: 1px solid #008ec2;
    margin-bottom: 30px;
    line-height: 3;
    align-items: baseline;
}

.overview dt {
  margin-right: 100px; /* dtとddの間にスペースを作る */
  font-weight: normal;
  width: 10%;
}

.overview dd {
  margin: 0; /* ddの余白を削除 */
}

.overview{
  margin-bottom: 200px;
}

/*お問い合わせ*/

/* 霊園 */
.top-text{
  position: relative;
}
.top-text h3{
  font-size: 1.86rem;
    font-weight: bold;
    padding-bottom: 20px;
    letter-spacing: 5px;
}

.top-text span{
  color: #ff7bac;
}

.top-text p {
  width: 62%;
  padding-bottom: 50px;
  font-size: 1.15rem;
}

/* ふわふわ動く */
.wrapper {
  width: 70%;
  max-width: 350px;
  margin: 0 auto;
}
.target {
  display: block;
  width: 100%;
  height: auto;
}

/* Animation */
.fuwafuwa-wrapper {
  animation: floating-x 10s ease-in-out infinite alternate-reverse;
  width: 22%;
  position: absolute;
    right: 15%;
    top: 380px;
    z-index: 1;
}
.fuwafuwa-target {
  animation: floating-y 4s ease-in-out infinite alternate-reverse;
}
@keyframes floating-x {
  0% {
    transform: translateX(-5%);
  }
  100% {
    transform: translateX(5%);
  }
}
@keyframes floating-y {
  0% {
    transform: translateY(-10%);
  }
  100% {
    transform: translateY(10%);
  }
}

.park-plan{
  background: #fffdf3;
    padding: 100px 0 150px;
    border-radius: 0 100px 0 0;
}

/*タブ切り替え全体のスタイル*/
.tabs {
  margin-top: 50px;
  background-color: #fff;
  box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.3);
  width: 90%;
  margin: 0 auto;
  border-radius: 40px;
}

/*タブのスタイル*/
.tab_item {
  border-radius: 5px;
  position: relative;
  width: calc(100%/4);
  height: 50px;
  background-color: #e6e6e6;
  line-height: 50px;
  font-size: 16px;
  text-align: center;
  color: #999;
  display: block;
  float: left;
  text-align: center;
  font-weight: bold;
  transition: all 0.2s ease;
}
.tab_item:hover {
  opacity: 0.75;
}

.tabs input:checked + .tab_item::before {
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 18px;
  height: 9px;
  background-color: #f4c65c;
  content: '';
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}

/*ラジオボタンを全て消す*/
input[name="tab_item"] {
  display: none;
}

/*タブ切り替えの中身のスタイル*/
.tab_content {
  display: none;
  padding: 50px 50px;
  clear: both;
  overflow: hidden;
}


/*選択されているタブのコンテンツのみを表示*/
#plan-1:checked ~ #plan1-content,
#plan-2:checked ~ #plan2-content,
#plan-3:checked ~ #plan3-content,
#plan-4:checked ~ #plan4-content {
  display: block;
}

/*選択されているタブのスタイルを変える*/
.tabs input:checked + .tab_item {
  background-color: #f4c65c;
  color: #fff;
}

.plan-about-box{
  display: flex;
  justify-content: center;
}

.plan-about-box li:nth-child(1){
  width: 35%;
}

.plan-about-box li:nth-child(2){
  width: 50%;
  padding-left: 50px;
  position: relative;
}

.plan-about-box li:nth-child(2)::before{
  content: "";
  background: url(../img/park-ahirai-2.png) no-repeat;
  background-size: contain;
  width: 320px;
  height: 117px;
  position: absolute;
  z-index: 0;
  top: 70%;
  right: -130px;
}

.plan-about-box h2 {
  display: inline-flex;
  align-items: center;  /* 垂直方向に中央揃え */
  padding: 0 0 20px;
  letter-spacing: inherit;
  font-size: 1.45rem;
}

.plan-about-box h2::before {
  content: "";
  display: inline-block;
  background-image: url(../img/park-ahirai-4.png);
  background-size: cover;
  background-repeat: no-repeat;
  width: 1em;
  height: 1em;
  margin-right: 0.5em;  /* アイコンと文字の間にスペース */
  vertical-align: middle;  /* 画像と文字を中央揃え */
}

.price-section{
  text-align: center;
}

.price-title {
  display: inline-block;
  background-color: #008ec2;
  color: #fff;
  padding: 10px 30px;
  border-radius: 15px;
  font-weight: bold;
  margin: 50px 0;
}

.price-table{
  display: flex;
  justify-content: center;
  align-items: stretch;
  margin-top: 80px;
}

.hiyou{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 15%;
  background: #f2ebe2;
  border-top: 1px solid;
  border-bottom: 1px solid #4d4d4d;
  margin-right: 20px;
  font-size: 1.15rem;
  font-weight: 500;
}

.price-item {
  width: 30%;
  background: #f2ebe2;
  border-top: 1px solid;
  border-bottom: 1px solid #4d4d4d;
  margin-right: 20px;
}

.price-item li:nth-child(1) , .price li:nth-child(1){
  border-bottom: 1px solid #4d4d4d;
  padding: 20px;
}

.price-item li:nth-child(2), .price li:nth-child(2){
  padding: 20px;
}

.price{
  width: 30%;
  background: #f7f5f2;
  border-top: 1px solid;
  border-bottom: 1px solid;
}

.price span{
  font-size: 0.6rem;
  display: block;
}

#plan3-content .price li:nth-child(1){
  padding: 9px;
}

#plan4-content .price li:nth-child(1){
  padding: 5px;
  font-size: 0.8rem;
}

.hakaishi .ponpon{
  background: url(../img/park-ahirai-3.png) no-repeat;
  background-size: cover;
  height: 300px;
  width: 30%;
  margin: 0 auto;
  text-align: center;
}

.hakaishi .fade-in-text {
  position: absolute;
  opacity: 0;
  transform: translateY(100px);
  transition: opacity 1s ease-out, transform 2s ease-out;
  transition-delay: calc(var(--delay) * 1.5s);
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  padding-bottom:24px;
  width: 52%;
    margin: auto;
    left: 0;
    right: 0;
    top: -30px;
}

.hakaishi .fade-in-text:nth-child(2){
  left: 60%;
  top: 80px;
  width: 60%;
}

.hakaishi .fade-in-text:nth-child(3){
  top: 100px;
  width: 57%;
  left: -200px;
}

.fade-in-text:nth-child(4){
  width: 15%;
  right: 40%;
}

.hakaishi .fade-in-text.visible {
  opacity: 1;
  transform: translateY(0);
  z-index: 1;
}

.hakaishi-p{
  width: 23%;
  position: absolute;
  right: -50px;
  top: -50px;
}

.hakaishi-p-2{
  width: 56%;
  position: absolute;
  top: 10px;
  left: -100px;
}

.hakaishi{
  padding: 150px 0;
}

.park-access ul{
  display: flex;
  justify-content: center;
  margin-bottom: 100px;
}

.access-box div{
  padding-bottom: 20px;
}

.access-box span{
    width: 15px;
    display: inline-flex;
    margin-left: 10px;
}

.park-access iframe{
  border-radius: 30px;
}

.park-access li:nth-child(2){
  width: 50%;
  margin-left: 50px;
}

.park-access p{
  padding-bottom: 15px;
}

.insta-link{
  width: 7%;
}

/*====================================================================
.s_01 .accordion_one
====================================================================*/

.s_01 .accordion_one {
  width: 80%;
  margin: 0 auto;
  padding-bottom: 30px;
}
.s_01 .accordion_one .accordion_header {
  font-size: 1.4rem;
  padding: 30px 0%;
  text-align: left;
  position: relative;
  z-index: +1;
  cursor: pointer;
  transition-duration: 0.2s;
  background-color: #f9f9f9;
  border-radius: 50px;
  padding-left: 4em; /* Q. の分だけ余白を確保 */
}

.s_01 .accordion_one .accordion_header:hover {
  opacity: .8;
}
.s_01 .accordion_one .accordion_header .i_box {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 50%;
  right: 5%;
  width: 40px;
  height: 40px;
  margin-top: -20px;
  box-sizing: border-box;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transform-origin: center center;
  transition-duration: 0.2s;
}
.s_01 .accordion_one .accordion_header .i_box .one_i {
  display: block;
  width: 18px;
  height: 18px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transform-origin: center center;
  transition-duration: 0.2s;
  position: relative;
}
.s_01 .accordion_one .accordion_header.open .i_box {
  -webkit-transform: rotate(-360deg);
  transform: rotate(-360deg);
}
.s_01 .accordion_one .accordion_header .i_box .one_i:before, .s_01 .accordion_one .accordion_header .i_box .one_i:after {
  display: flex;
    content: '';
    background-color: #999;
    border-radius: 10px;
    width: 18px;
    height: 2px;
    position: absolute;
    top: 7px;
    left: 0px;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    transform-origin: center center;
}
.s_01 .accordion_one .accordion_header .i_box .one_i:before {
  width: 2px;
    height: 17px;
    top: 0;
    left: 8px;
}
.s_01 .accordion_one .accordion_header.open .i_box .one_i:before {
  content: none;
}
.s_01 .accordion_one .accordion_header.open .i_box .one_i:after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.s_01 .accordion_one .accordion_inner {
  display: none; /* 初期状態を非表示にする */
  padding: 30px 0px;
  box-sizing: border-box;
  text-align: left;
}

.s_01 .accordion_one .accordion_inner .box_one {
  position: relative;
}
.s_01 .accordion_one .accordion_inner p.txt_a_ac {
  margin: 0;
  padding-left: 3em; /* A. の分だけ余白を確保 */
}
@media screen and (max-width: 1024px) {
  .s_01 .accordion_one .accordion_header {
    font-size: 18px;
  }
  .s_01 .accordion_one .accordion_header .i_box {
    width: 30px;
    height: 30px;
    margin-top: -15px;
  }
}
@media screen and (max-width: 767px) {
  .s_01 .accordion_one .accordion_header {
    font-size: 14px;
    text-align: left;
    padding: 15px 40px 15px 45px;
  }
}

.s_01 .accordion_one .accordion_header::before{
    top: 3px;
    left: 5px;
    content: 'Q.';
    font-size: 1.4rem;
    display: inline-block;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #6dc8eb;
    text-align: center;
    line-height: 35px;
    padding-left: 6px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-style: normal;
    color: #fff;
    margin: 0px 20px;
    position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%); /* 縦方向の中央揃え */
}

.s_01 .accordion_one .accordion_inner p.txt_a_ac::before{
	top: -5px;
  left: 15px;
  position: absolute;
  content: 'A.';
  font-family: 'Montserrat', sans-serif;
  font-style: normal;
  font-size: 1.4rem;
}

.access-box h2 {
    display: inline-flex;
    align-items: center;
    padding: 0 0 20px;
    letter-spacing: inherit;
    font-size: 1.45rem;
}

.access-box h2::before {
    content: "";
    display: inline-block;
    background-image: url(../img/park-ahirai-4.png);
    background-size: cover;
    background-repeat: no-repeat;
    width: 1em;
    height: 1em;
    margin-right: 0.5em;
    vertical-align: middle;
}

.park-access li:nth-child(1) {
    width: 49%;
}

.park-access .access-box:nth-of-type(2) li:nth-child(2){
  margin-left: 0;
}

.park-access .access-box:nth-of-type(2) li:nth-child(1){
  margin-left: 50px;
}

.park-access .access-box:nth-of-type(2){
  margin-bottom: 250px;
}

/*====================================================================*/

.park-qa{
    padding-bottom: 100px;
}

/* プラン・料金について */


.plan-page , .funeral-flow {
  background: #fffdf3;
  padding: 150px 0 150px;
  border-radius: 0 100px 0 0;
}

.funeral-flow{
  margin-top: 0;
}

.width{
  display: flex;
  justify-content: space-between;
  margin-top: 100px;
}

.planpage-about ul{
  width: 32%;
  background: #fff;
  border-radius: 30px;
  text-align: center;
  position: relative;
  padding: 60px 30px 30px;
  box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.3);
}


.planpage-about li h3{
  position: absolute;
  top: -20px;
  left: 0;
  right: 0;
  margin: auto;
  background: #f4c65c;
  color: #fff;
  width: 30%;
  font-size: 1.2rem;
  font-weight: bold;
  padding: 15px 20px;
  border-radius: 15px;
  text-align: center;
}

.planpage-about ul:nth-of-type(3) li h3{
  line-height: 1;
  padding: 13px 20px;
}

.planpage-about li img{
  width: 25%;
  height: 85px;
  margin: 0 auto;
  padding-bottom: 20px;
}

.planpage-about ul:nth-of-type(2) li img{
  width: 15%;
}

.planpage-about li h2 span{
  color: #008ec2;
}

.planpage-about li h2 {
  padding-bottom: 20px;
  font-size: 1.5rem;
}

.plan-detial{
  display: flex;
  justify-content: center;
  padding-top: 30px;
  flex-wrap: wrap;
}

.plan-detial p{
  border: 1px solid #008ec2;
  padding: 0px 10px;
  border-radius: 5px;
  color: #008ec2;
  font-size: 0.8rem;
  margin-bottom: 10px;
}

.plan-detial p:nth-child(2) , .plan-detial p:nth-child(3){
  margin-left: 20px;
}

.planpage-about ul:nth-of-type(2) .plan-detial p:nth-child(3){
  margin-left: 0;
}


/* テーブル用スタイル */
.plan-chart{
  padding: 150px 0 200px;
  background: #fffdf3;
  position: relative;
  margin-bottom: 200px;
}

.plan-chart::before {
  content: '';
  position: absolute;
  background: url(../img/plan-ashirai-4.png) no-repeat;
  width: 160px;
  height: 190px;
  background-size: contain;
  margin: auto;
  bottom: -100px;
  right: 0;
  left: 0;
}

.planprice-table {
  width: 100%;
  border-collapse: separate;
  text-align: center;
  border-spacing: 10px 0;
  font-weight: bold;
}

.planprice-table th,
.planprice-table td {
  text-align: center;
  vertical-align: middle;
  border-top: 1px solid #999;
  padding: 20px;
  font-weight: initial;
}

.planprice-table th {
  font-size: 1.15rem;
  width: 0%;
  font-weight: 500;
  text-align: center;
  color: #008ec2;
}

/* .planprice-table td[rowspan] {
  border-bottom: 1px solid #999;
} */

/* .planprice-table tbody tr:last-child td {
  border-bottom: 1px solid #999; 
} */

.data-title {
  width: 20%;
  background-color: #f2ebe2;
  font-weight: 500!important;
}

.data-plan{
  background-color: #f7f5f2;
  width: 10%;
}

.jump-page .link-btn {
  text-align: center;
  margin-bottom: 150px;
}

.jump-page .link-btn::after {
  left: 42%;
}



/* 火葬について */
#funeral-page .fade-in-text{
  bottom: -210px;
  width: 30%;
  right: 0;
  left: auto;
}

#funeral-page .fade-in-text:nth-child(2) {
  bottom: -400px;
  right: -100px;
  top: 0;
  width: 30%;
  z-index: 1;
}

.funeral-flow{
  position: relative;
  margin-bottom: 200px;
}

.flow-box{
  margin-top: 100px;
}

.flow-box ul{
  width: 80%;
  margin: 0 auto;
  position: relative;
  text-align: center;
  background: #fff;
  border-radius: 40px;
  padding: 50px 100px 70px;
  margin-bottom: 100px;
  box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.3);
}

.contact-icon{
  width: 20%;
  margin: 0 auto;
  display: flex;
  padding: 30px 0 0;
}

.contact-icon a{
  margin: 0 10px;
}

.flow-nmb{
  position: absolute;
  top: -36px;
  font-size: 1.5rem;
  color: #008ec2;
  left: 0;
  right: 0;
  margin: auto;
  font-family: 'Montserrat', sans-serif;
  font-style: italic;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid;
  padding-top: 5px;
}

.funeral-flow h3{
  font-size: 1.5rem;
  padding-bottom: 20px;
}

.flow-box .jump-page .btn{
  margin-top: 50px;
}

.flow-box::before {
  content: '';
  position: absolute;
  background: url(../img/plan-ashirai-4.png) no-repeat;
  width: 160px;
  height: 190px;
  background-size: contain;
  margin: auto;
  bottom: -100px;
  right: 0;
  left: 0;
}

/* ドッグラン */
.dogrun-page{
  padding: 100px 0;
}

.point-box ul{
  display: flex;
  padding: 50px 0;
  justify-content: space-between;
}

.point-box li:nth-child(1){
  width: 46%;
}

.point-box li:nth-child(2){
  width: 45%;
  margin-left: 50px;
}

.point-box li h3{
  font-size: 1.5rem;
  padding-bottom: 20px;
  font-weight: 500;
  line-height: 1.5;
}

.point-box li h3 span{
  display: block;
    font-size: 1.5rem;
    color: #008ec2;
    font-family: 'Montserrat', sans-serif;
    font-style: italic;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid;
    padding-top: 10px;
    padding-left: 10px;
    margin-bottom: 10px;
}

.point-box ul:nth-of-type(2) li:nth-child(2) {
  margin-right: 50px;
  margin-left: 0;
}

.area-box{
  background: #fffdf3;
  border-radius: 0 100px 0 0;
  padding: 150px 0 200px;
}

.area-bg{
  background: #fff;
  border-radius: 40px;
  box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.3);
  padding: 100px;
}

.area-type{
  display: flex;
}

.area-type ul{
  padding: 0 50px 0;
}

.area-type ul:nth-child(1){
  border-right: 1px solid #cccccc;
}

.area-type li h3{
  width: 50%;
  background: #f4c65c;
  color: #fff;
  font-size: 1.2rem;
  font-weight: bold;
  padding: 15px 20px;
  border-radius: 15px;
  text-align: center;
  margin: 0 auto;
}

.area-type ul img {
  width: 60%;
  height: 115px; /* 任意の高さ */
  object-fit: contain; /* アスペクト比を保ちながらサイズ調整 */
}

.area-type ul li:nth-child(2){
  text-align: center;
  padding: 20px 0 20px;
}

.area-type ul li h4{
  font-size: 1.45rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
}

.area-type ul li h4::before {
  content: "";
  display: inline-block;
  background-image: url(../img/park-ahirai-4.png);
  background-size: cover;
  background-repeat: no-repeat;
  width: 1em;
  height: 1em;
  margin-right: 0.5em;
  margin-bottom: -2px;
}

.area-type ul p{
  text-align: center;
}

.dogrun-notice{
  padding: 150px 0;
}

.dogrun-notice ul li{
  position: relative;
  padding-bottom: 20px;
  padding-left: 40px;
}

.dogrun-notice ul li::before {
  position: absolute;
  content: "";
  display: inline-block;
  background-image: url(../img/park-ahirai-4.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 15px;
  height: 15px;
  top: 14px;
  left: 10px;
  transform: translateY(-50%);
}

.dogrun-notice h2{
  position: relative;
  border: 1px solid #008ec2;
  border-radius: 5px;
  width: 25%;
  margin: 0 auto;
  display: block;
  text-align: center;
  padding-left: 30px;
  font-weight: 500;
}

.dogrun-notice h2::before {
  position: absolute;
  content: "";
  display: inline-block;
  background-image: url(../img/mark-1.png);
  background-size: cover;
  background-repeat: no-repeat;
  width: 6px;
  height: 25px;
  left: 65px;
  top: 50%;
  transform: translateY(-50%);
}

.dogrun-notice ul{
  margin: 0 auto;
  width: 60%;
  padding: 30px 0;
  font-weight: 500;
}

/* その他事業 */
.page-title ul{
    display: flex;
    justify-content: space-between;
}

.page-title ul li:nth-child(1){
    width: 50%;
}

.page-title ul li:nth-child(2){
  width: 100vw;
  margin-right: calc(50% - 50vw);
}

.life-jump{
  display: flex;
    align-items: center;
    border-bottom: 1px solid #cccccc;
    padding-bottom: 15px;
    width: 80%;
    justify-content: space-between;
    margin-bottom: 20px;
}

.life-jump h3{
  font-size: 1.5rem;
    font-weight: 500;
}

.life-page{
  padding: 200px 0;
}

.life-jump a{
  width: 30px;
}

.life-box ul{
  display: flex;
  justify-content: space-between;
}

.life-box ul li:nth-child(1){
  width: 42%;
}

.life-box ul li:nth-child(2){
  width: 48%;
}

.life-box h3{
  background: #666666;
    color: #fff;
    font-size: 1.5rem;
    display: inline-block;
    padding: 5px 30px;
    margin-bottom: 30px;
    box-shadow: 5px 5px 0px 0 rgb(211, 217, 226);
}

.life-box h3 span{
  padding-right: 20px;
}

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

.life-point p{
  display: flex;               /* ← これを追加 */
  flex-direction: column;      /* 縦方向に要素を並べる */
  justify-content: center;     /* 縦中央寄せ */
  align-items: center;         /* 横中央寄せ（中央揃え） */
  position: relative;
  width: 32%;
  border: #008ec2 solid 1px;
  padding: 20px 10px;
  margin-top: 50px;
  border-radius: 10px;
  text-align: center;
}

.life-point p:before {
    content: "";
    display: inline-block;
    background-image: url(../img/life-check.png);
    background-size: cover;
    background-repeat: no-repeat;
    width: 2.5em;
    height: 2.5em;
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    top: -15px;
}

#gomiyashiki, #ihinseiri , #tokusyuseisou{
  margin-top: 150px;
}

#ihinseiri{
  position: relative;
}

#ihinseiri::before {
    content: "";
    background: url(../img/life-ashirai-3.png) no-repeat;
    background-size: contain;
    width: 150px;
    height: 117px;
    position: absolute;
    z-index: 0;
    top: -40%;
    right: auto;
    left: -15%;
}

.life-ashirai{
  position: relative;
  margin-bottom: 200px;
}

.life-ashirai li:nth-child(1){
  width: 18%;
  position: absolute;
  margin: 0 auto;
  left: 0;
  right: 22%;
  bottom: -40px;
}

.life-ashirai li:nth-child(2){
  width: 10%;
  position: absolute;
  margin: 0 auto;
  right: 0;
  left: 0;
}

/* 初期は非表示、出現はスッと */
/* 位置はCSS変数で調整できるように */
.contact-fixed{
  position: fixed;
  right: var(--contact-right, 0px);
  bottom: var(--contact-bottom, 200px); /* ←出現位置をここで調整 */
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(var(--contact-enter-offset, 12px)); /* ←出現時のズレ量 */
  transition: opacity .25s ease, transform .25s ease, visibility 0s linear .25s;
  text-align: end;
}
.contact-fixed.is-visible{
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition-delay: 0s;
  z-index: 1;
}

.hiroshima{
  display: block;
  font-size: 12px!important;
  color: #000!important;
}

.hiroshima-2{
font-size: 14px!important;
padding-right: 0px!important;
}

/* 例：スマホだけもう少し上に出したい時 */
@media (max-width: 640px){
  .contact-fixed{
    --contact-bottom: 24px;  /* <- モバイル時の出現位置 */
    --contact-right: 0px;
    --contact-enter-offset: 16px;
  }
}

#fuyohin, #gomiyashiki, #ihinseiri, #tokusyuseisou{
  scroll-margin-top: 150px; /* ← 上に100pxの余白を残して止まる */
}


.contact-fixed img{
  width: 50%;
}

/*スマホ*/
@media screen and (max-width: 768px){
/*ハンバーガーメニュー*/
.header.js_hide {
  transform: translateY(-100%);
  transition: transform 0.5s ease-in-out;
}

.logo{
	display: none;
}

.header-ec {
  width: 40%;
  margin: 0 auto;
  text-align: center;
  border-bottom: none !important;
  padding: 10px 0 0 !important
}

.sp-nav-logo{
  width: 15%;
  margin: 0 auto;
  text-align: center;
}

.header-contact{
  padding: 5px!important;
  width: 60%;
  text-align: center;
  margin: 0 auto;
  margin-top: 30px;
  color: #fff!important;
}

.nav-list {
  padding-top: 50px;
  padding-bottom: 50px;
  margin: 0 80px;
}
  .nav-list li {
    font-size: 1.15rem;
    padding: 15px 0;
    color: #fff;
    font-weight: bold;
}

.nav-list li:nth-child(6)::before {
  content: "";
  display: inline-block;
  background-image: url(../img/icon-jump.png);
  background-size: cover;
  background-repeat: no-repeat;
  width: 20px;
  height: 20px;
  margin-right: 0.5em;
  margin-bottom: 5px;
  vertical-align: middle;
}

.sp-child_menu li{
  font-weight: normal;
  padding-left: 10px;
  padding-top: 10px;
  padding-bottom: 0;
  font-size: 1rem;
}

.nav-list2 {
  font-size: 1.2rem;
  width: 100%;
  list-style: none;
  font-family: 'Marcellus', serif;
  margin: 0;
  padding: 0; }
  .nav-list2 li {
    text-align: start;
    color: #ffffff;
    margin: 0;
    padding-bottom: 0; }
  .nav-list2 a {
    color: #ffffff; }

.overlay {
  content: "";
  display: block;
  width: 0;
  height: 0;
  background-color: rgba(0, 0, 0, 0.5);
  top: 0;
  left: 0;
  z-index: 5;
  opacity: 0;
  transition: opacity .5s;
  position: fixed; }

.overlay.open {
  width: 100%;
  height: 100%;
  opacity: 1; }

main {
  transition: all .5s;
 }

main.open {
  transform: translateX(-250px);
  transition: all .5s; }

footer.open {
  transform: translateX(-250px);
  transition: all .5s; }

.menu-trigger {
  display: inline-block;
  width: 45px;
  height: 14px;
  vertical-align: middle;
  cursor: pointer;
  position: fixed;
  right: 7rem;
  z-index: 1000; }
  @media (max-width: 768px) {
    .menu-trigger {
      top: 20px;
      right: 1rem;
      width: 35px; } }
  .menu-trigger p {
    font-size: 0.6rem;
        font-weight: 600;
        text-align: center;
        margin-top: 1.1rem;
      font-family: 'Montserrat', sans-serif; }

.menu-trigger span {
  display: inline-block;
  box-sizing: border-box;
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #000;
  transition: all .5s; }

.menu-trigger.active span {
  background-color: #000; }

.menu-trigger span:nth-of-type(1) {
  top: 0; }

.menu-trigger.active span:nth-of-type(1) {
  transform: translateY(6px) rotate(-45deg); }

.menu-trigger span:nth-of-type(2) {
  bottom: 0px; }

.menu-trigger.active span:nth-of-type(2) {
  transform: translateY(-6px) rotate(45deg); }

.menu-trigger.active p {
  opacity: 0;
  transition: all .2s; }

nav {
  padding-top: 3rem;
  height: 100vh;
  justify-content: center;
  background-color: #008ec2;
  width: 100%;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 10;
  transform: translate(700px);
  transition: all .5s; }

/*
  nav img {
    width: 150px;
    height: 45px;
    margin-bottom: 4rem;
}
*/

nav.open {
  transform: translateZ(0); 
  overflow: scroll;
}
/* 
nav li {
  color: #fff;
  padding: 10px 0; } */

.header {
  box-sizing: border-box;
  display: flex;
  width: 100%;
  position: fixed;
  top: 0;
  justify-content: space-between;
  align-items: center;
  vertical-align: baseline;
  padding: 1rem;
  z-index: 9999;
   }
  @media (max-width: 768px) {
    .header {
      padding: 1rem; } }
  /* @media (max-width: 768px) {
    .header img {
      max-width: 75%; } } */

.sp-header-bg{
  position: relative;
  background: #edf2fa;
  height: 5rem;
}

.sp-header-bg::before {
  content: "";
  background: url(../img/wave-3.png) no-repeat;
  background-size: contain;
  width: 100%;
  height: 10vh;
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 0;
}

.top-text p {
  width: auto;
  font-size: 1rem;
}

.menu-trigger.active span {
  background-color: #fff; /* 開いたときのバーの色を白に */
}

/*ハンバーガーメニュー*/

	
	html{
		width: 100%;
		overflow-x: hidden;
	}

.en-2{
	font-family: 'Tilt Warp', cursive;
}

.en{
	font-family: 'Montserrat', sans-serif;
	font-weight: 300;
}

h2{
  font-size: 1.29rem;
}
	
	p{
		font-size: 1rem;
	}
	
	.pc-on{
		display: none;
	}
	
	
.sma{
        display: block;
    }
	
	.sp-on{
		display: block;
	}
	
	.sp-br{
		display: block;
	}
	
	.pc-br{
	display: none;
	}
	
	body {
    min-width: 320px!important;
    max-width: 100%!important;
	font-size: 14px;
    font-size: 1rem;
		overflow-x: hidden;
}
	
	.base_inner {
    width: 100% !important;
    padding: 0 30px !important;
}

.top-fv::before{
  top: 96%;
}
/* 	
#slideshow img {
  content: url("../img/sp-top-slider-1.png");
}
#slideshow img:nth-child(2) {
  content: url("../img/sp-top-slider-2.png");
}
#slideshow img:nth-child(3) {
  content: url("../img/sp-top-slider-3.png");
} */

#slideshow-pc img ,#slideshow-sp img {
  margin-top: 50%;
  right:0;
  left: 0;
  margin: 0 auto;
  padding-top: 50%;
  z-index: 8;
  opacity: 0.0;
  width: 80%;
  height: auto;
}

.fv-text p {
  top: 10%;
  left: 10%;
  font-size: 1.85rem;
  padding: 0;
  z-index: 100;
  filter: drop-shadow(2px 2px 3px rgba(255, 255, 255, 0.8));
  writing-mode:inherit;
  border-bottom: none;
  border-top: none;
}

.circleText__text {
  font-size: 1.1rem;
}

.block {
  width: 100px;
  height: 100px;
  bottom: 0;
  left: auto;
  right: 40px;
  top: -20%;
}

.top-about-text h2{
  padding-bottom: 30px;
}

.top-about-text {
  width: auto;
  margin: initial;
}

.top-about::after{
  width: 35%;
  height: 100px;
  bottom: -10px;
}

.top-about::before{
  width: 130px;
  height: 140px;
  right: -2%;
}

.top-service {
  border-radius: 0 50px 50px 0;
  padding: 50px 0 50px;
}

.midashi h2{
  margin-bottom: 20px;
}

.midashi p {
  padding-bottom: 20px;
  font-size: 1rem;
}

.top-service-area:nth-of-type(2) ul{
  display: block;
}

.top-service-area li {
  width: auto;
  margin-right: auto;
}

.top-service-area:nth-of-type(3) ul{
  gap: 20px;
}

.top-service-area:nth-of-type(3) ul li{
  width: 100%;
}

.scroll-indicator{
  margin-top: -50px;
}

.top-service-area li h3 {
  text-align: left;
  padding: 10px 0;
  font-size: 1.15rem;
}

.top-service-p {
  font-size: 1rem;
}

.top-service-area .link-btn {
  text-align: center;
  margin-bottom: 50px;
}

.top-service-area .link-btn::after {
  bottom: -5px;
  left: 25%;
}

.top-ec {
  padding: 100px 0 150px;
}

.fade-in-text{
  width: 45%;
  margin-top: 30px;
}

.fade-in-text:nth-child(2) {
  left: 45%;
  top: 60px;
}

.fade-in-text:nth-child(3) {
  right: 60%;
  top: 80px;
  width: 40%;
}
.fade-in-text:nth-child(4) {
  width: 25%;
  right: 65%;
}

.top-ec-text {
  padding-top: 250px;
  padding-bottom: 50px;
  width: 100%;
}

.top-ec .link-btn::after{
  left: 20%;
}

.parallax {
  height: 75vh;
  background: url(../img/sp-parallax.jpg);
  background-size: contain;
  margin-left: 0;
  margin-right: 0;
  background-repeat: no-repeat;
}

.top-contact ul {
  display: block;
  width: 90%;
}

.top-contact li:nth-child(1) {
  width: auto;
  border-right: none;
  border-bottom: 1px solid #008ec2;
  margin-bottom: 20px;
}

.top-contact li:nth-child(1) h2 {
  text-align: left;
  margin-bottom: 0;
  padding: 0 0 10px;
}

.top-contact li:nth-child(2) {
  padding-left: 0;
}

.top-contact li:nth-child(2) p {
  padding-bottom: 30px;
  font-size: inherit;
}

.top-contact {
  padding: 50px 0 150px;
}

.top-contact::before {
  width: 40px;
  height: 60px;
}

footer::before {
  content: "";
  display: block;
  position: absolute;
  top: -119px;
  height: 120px;
  background: url(../img/sp-wave-2.png) no-repeat center top;
  background-size: cover;
  z-index: -1;
}

footer{
  margin-top: 100px;
}

footer h1 {
  width: 15%;
  margin: 30px auto;
}

footer li {
  padding-bottom: 10px;
}

footer ul {
  display: none;
}

.top-fv {
  height: 500px;
  margin-bottom: 35%;
}

.page-title {
  margin-top: 50px;
}

.page-title h2 {
  font-size: 1.45rem;
  font-weight: 500;
  margin-bottom: 20px;
}

.com-text, .top-text {
  padding: 30px 0;
}

.com-text h3 , .top-text h3 {
  font-size: 1.29rem;
}

.com-text p {
  width: auto;
  font-size: 1rem;
  padding-bottom: 20px;
}

.com-text ul {
  padding: 40px 0 50px;
}

.com-text li:nth-child(1), .com-text li:nth-child(2){
  width: 45%;
}

.message-txt {
  width: auto;
}

.message::before {
  width: 260px;
  height: 120px;
  bottom: -20%;
  right: -30%;
}

.message {
  margin-bottom: 250px;
}

.overview dl {
  display: block;
  width: auto;
  padding-bottom: 20px;
  margin-bottom: 20px;
}

.funeral-flow {
  margin-top: 100px;
  padding: 80px 0 50px;
}

.plan-page {
  position: relative;
  margin-top: 50px;
  padding: 80px 0 50px;
}

#funeral-page .fade-in-text {
  bottom: -180px;
  width: 40%;
  right: 0;
  left: -140px;
  z-index: 1;
}

#funeral-page .fade-in-text:nth-child(2) {
  bottom: auto;
  right: -270px;
  top: -40px;
  width: 42%;
  z-index: 1;
}

.flow-nmb {
  top: -25px;
}

.flow-box ul {
  width: auto;
  padding: 50px 30px 50px;
  margin-bottom: 70px;
}

.flow-box .jump-page .link-btn::after {
  left: 20%;
}

.overview {
  margin-bottom: 100px;
}

.flow-box::before , .plan-chart::before {
  width: 100px;
  height: 130px;
  bottom: -70px;
}

.funeral-flow {
  margin-bottom: 150px;
}

.jump-page .link-btn::after {
  left: 24%;
}

.jump-page .link-btn {
  margin-bottom: 80px;
}

.park-access ul {
  display: block;
  margin-bottom: 20px;
}

.park-access li:nth-child(2) {
  width: auto;
  margin-left: auto;
  margin-top: 20px;
}

.qa-box{
  margin-top: 50px;
}

.s_01 .accordion_one {
  width: auto;
}

.s_01 .accordion_one .accordion_header::before {
  font-size: 1rem;
  width: 30px;
  height: 30px;
  line-height: 28px;
  left: -10px;
}

.park-qa {
  padding-bottom: 0;
}

iframe{
  width: 100%;
}

.planpage-about ul{
  width: 83vw;
  margin-top: 20px;
}

.slider-container {
  position: relative;
  overflow: hidden;
  margin-top: 50px;
}

.slider-wrapper {
  display: flex;
  transition: transform 0.4s ease-in-out;
  width: 300%;
  transform: translateX(0);
  gap: 20px;
}

.slide {
  width: 100vw;
  flex-shrink: 0;
  background: #fff;
  border-radius: 30px;
  padding: 60px 30px 30px;
  text-align: center;
  box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.3);
}

.slider-arrow {
  position: absolute;
  top: 60%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: rgba(244, 198, 92, 0.3);       /* ← ここを薄く */
  border: 2px solid rgba(244, 198, 92, 0.3); /* ← ここも薄く */
  font-size: 1.5rem;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  transition: background-color 0.3s, color 0.3s, border-color 0.3s;
  padding: 0;
  opacity: 1;
  pointer-events: auto;
  touch-action: manipulation;
  z-index: 9999 !important;
  padding-left: 5px;
}
.slider-arrow.prev {
  left: 10px;
}
.slider-arrow.next {
  right: 10px;
}

.slider-dots {
  text-align: center;
  margin-top: 15px;
}
.slider-dots .dot {
  height: 10px;
  width: 10px;
  margin: 0 5px;
  background-color: #ccc;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.3s;
}
.slider-dots .dot.active {
  background-color: #008ec2;
}

/* レスポンシブ（PC時） */
@media (min-width: 768px) {
  .slider-wrapper {
    transform: none !important;
    display: flex;
    justify-content: space-between;
    width: 100%;
  }
  .slide {
    width: 32%;
  }
  .slider-arrow,
  .slider-dots {
    display: none;
  }
}

/* タイトルとその他 */
.planpage-about li h3 {
  font-size: 1.15rem;
}
.planpage-about li h2 {
  font-size: 1.15rem;
}
.planpage-about li h2 span {
  color: #008ec2;
}
.planpage-about li img {
  width: 25%;
    height: 85px;
    margin: 0 auto;
    padding-bottom: 20px;
}
.plan-detial {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.plan-detial p {
  border: 1px solid #008ec2;
  border-radius: 5px;
  padding: 0px 10px;
  font-size: 0.8rem;
  color: #008ec2;
}

/* .plan-detial p:nth-child(2), .plan-detial p:nth-child(3) {
  margin-left: 0;
} */


.scroll .btn{
  text-align: right;
}

.scroll .c-btn:before {
  top: 0px;
  bottom: 0;
  left: -20px;
}

.overflow{
  -webkit-overflow-scrolling: touch;
  overflow-x: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.planprice-table th {
  font-size: 1rem;
}

.planprice-table th:nth-child(1) { width: 10%; } /* 体重 */
.planprice-table th:nth-child(2) { width: 25%; } /* 種類（目安） */
.planprice-table th:nth-child(3) { width: 20%; } /* 合同葬 */
.planprice-table th:nth-child(4) { width: 20%; } /* 個別葬 */
.planprice-table th:nth-child(5) { width: 20%; } /* 立会個別葬 */

.planprice-table {
  border-spacing: 5px 0;
  table-layout: fixed;
  width: 700px;
}

.planprice-table th, .planprice-table td {
  padding: 10px;
  font-size: 0.8rem;
}

#plan-price-page .fuwafuwa-wrapper {
  width: 45%;
  right: 5%;
  top: 440px;
}

.plan-chart {
  padding: 0px 0 120px;
  margin-bottom: 100px;
}

#plan-price-page .jump-page .link-btn::after {
  left: 20%;
}

#memorial-park .fuwafuwa-wrapper {
  width: 45%;
  right: 5%;
  top: 430px;
  z-index: 1;
}

.park-plan {
  padding: 80px 0 100px;
  margin-top: 50px;
}

.tabs{
  width: auto;
  margin-top: 60px;
}

.plan-about-box {
  display: block;
}

.plan-about-box li:nth-child(1) {
  width: auto;
}

.plan-about-box li:nth-child(2) {
  width: auto;
  padding-left: initial;
}

.tab_content {
  padding: 50px 20px 120px;
}

.tab_item {
  height: 45px;
  font-size: 1rem;
  padding-top: 10px;
  line-height: initial;
}

.plan-about-box h2 {
  padding: 20px 0 10px;
  font-size: 1.15rem;
}

.price-title {
  margin: 100px 0 50px;
}

.plan-about-box li:nth-child(2)::before {
  top: 435px;
  right: -50px;
  width: 200px;
  height: 100px;
}

#plan2-content .plan-about-box li:nth-child(2)::before {
  top: 520px;
  right: -50px;
}

#plan3-content .plan-about-box li:nth-child(2)::before {
  top: 550px;
  right: -50px;
}

#plan4-content .plan-about-box li:nth-child(2)::before {
  top: 550px;
  right: -50px;
}



.price-item {
  margin-right: 5px;
}

#plan1-content .price-item , #plan3-content .price-item{
  width: 45%;
}

.price-table {
  display: flex;
  margin-top: 50px;
  font-size: 0.85rem;
}

.hiyou {
  margin-right: 5px;
  font-size: 0.85rem;
}

#plan2-content.hiyou{
  width: 15%;
}

#plan2-content .price-item {
  width: 42%;
}

#plan2-content .price {
  width: 42%;
}

#plan2-content .price-item li:nth-child(1) {
  padding: 40.5px 0;
}

#plan2-content .price li:nth-child(2){
  padding: 30px 0;
}

#plan4-content .price {
  width: 50%;
}

#plan4-content  .price-item {
  width: 35%;
}

#plan4-content .price-item li:nth-child(1) {
  padding: 40px 0;
}

#plan4-content .price-item li:nth-child(1) {
  line-height: 40px;
}

#plan4-content .price li:nth-child(1) {
  padding: 12.5px;
}

.hakaishi .ponpon {
  height: 180px;
  width: 60%;
}

.hakaishi .fade-in-text:nth-child(2) {
  top: 30px;
}

.hakaishi .fade-in-text:nth-child(3) {
  top: 50px;
  width: 57%;
  left: -20px;
  z-index: 1;
}

.hakaishi-p {
  width: 35%;
  right: -20px;
  top: -85px;
  z-index: 1;
}

.hakaishi {
  padding: 150px 0 200px;
}

.hakaishi-p-2 {
  width: 80%;
  top: auto;
  left: 0;
  right: 0;
  margin: auto;
  bottom: -80px;
}

.contact-p {
  margin: 50px 0;
}

.contact-p a{
  width: 50%;
}

form{
  max-width: none;
  width: auto;
}

.overview dt{
  width: auto;
}

.contact-icon {
  width: 40%;
}

.dogrun-page {
  padding: 100px 0 50px;
  margin-top: 50px;
}

.point-box ul {
  position: relative;
  display: block;
  width: auto;
  margin-top: 50px;
  padding: 0;
}


.point-box ul:nth-of-type(2) li:nth-child(2) {
  margin-right: 0;
}

.point-box li:nth-child(1) {
  width: auto;
  padding-bottom: 20px;
  margin-bottom: -40px;
}

.point-box li:nth-child(2) {
  width: auto;
  margin-left: 0;
  padding: 0 10px;
}

.point-box li h3 span {
  position: absolute;
  top: 170px;
}

.point-box li h3 {
  padding-top: 70px;
  font-size: 1.15rem;
}


.area-box {
  background: #fffdf3;
  border-radius: 0 100px 0 0;
  padding: 80px 0 100px;
}

.area-type {
  display: block;
}

.area-bg{
  padding: 50px 0px;
}

.area-type ul {
  margin-top: 60px;
  padding: 0 15px 0;
}

.area-type li h3 {
  width: 55%;
  padding: 5px 20px;
  font-size: 1.15rem;
}

.area-type ul li h4 {
  font-size: 1.15rem;
}

.dogrun-notice {
  padding: 100px 0 80px;
}

.dogrun-notice h2{
  width: 70%;
}

.dogrun-notice ul {
  width: auto;
}

.page-title h2 span{
  font-size: 0.86rem;
}

.page-title img{
  width: 100vw;
  margin-right: calc(50% - 50vw);
}

.loop_wrap{
  width: 100vw;
  height: 100px;
  margin: 0 calc(50% - 50vw);
}

.loop_wrap div {
  font-size: 4.3rem;
}

.funeral-flow h3 {
  font-size: 1.15rem;
}

#contact .page-title h2 {
  width: 45%;
}

.page-title ul li:nth-child(1) {
    width: 100vw;
    margin-right: calc(50% - 50vw);
}

.life-jump img{
  width: 100%;
}

.life-jump{
  margin-top: 30px;
  width: 47%;
  justify-content: space-between;
  margin-bottom: 0px;
}

.life-jump h3{
  font-size: 1.1rem;
}

.page-title li{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.life-page {
    padding: 100px 0 150px;
}

.life-box ul {
    display: block;
}

.life-box ul li:nth-child(1) {
    width: auto;
}

.life-box h3{
  font-size: 1.15rem;
}

.life-point{
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.life-point p{
  width: 48%;
  margin-top: 30px;
}

.life-box ul li:nth-child(2) {
    width: 100%;
    padding-bottom: 10px;
}

#gomiyashiki, #ihinseiri, #tokusyuseisou {
    margin-top: 80px;
}

#ihinseiri::before{
  width: 110px;
  height: 90px;
  top: -15%;
  right: -30px;
  left: auto;
}

.life-ashirai li:nth-child(1) {
    width: 45%;
    left: 0;
    right: 22%;
    bottom: -40px;
}

.life-ashirai li:nth-child(2){
  width: 20%;
    right: 0;
    left: 0;
    top: 40px;
}

.life-ashirai {
    margin-bottom: 250px;
}

.top-ec ul {
    display: block;
    padding: 30px 20px 100px;
    position: relative;
    justify-content: center;
}

.top-ec ul li:nth-child(1) {
    width: 55%;
    position: absolute;
    bottom: -70px;
    left: -20px;
}

.top-ec ul li:nth-child(3) {
    width: 40%;
    position: absolute;
    right: 0;
}

.top-ec ul li:nth-child(2) {
    width: auto;
    padding-left: 0;
    text-align: center;
}

.top-ec ul li:nth-child(2) img {
    margin-left: 0;
}

#fuyohin-sp, #gomiyashiki-sp, #ihinseiri-sp, #tokusyuseisou-sp{
  scroll-margin-top: 100px; /* ← 上に100pxの余白を残して止まる */
}

.contact-fixed img {
    width: 70%;
    margin: 0 auto;
}

.life-point{
  margin-bottom: 50px;
}

.park-access li:nth-child(1) {
    width: auto;
}

.park-access .access-box:nth-of-type(2) li:nth-child(1) {
    margin-left: 0;
}

.park-access .access-box:nth-of-type(2) {
    margin-bottom: 80px;
}

.access-box h2{
  font-size: 1.15rem;
}


}/*スマホ*/


/*デスクトップ*/
@media screen and (min-width:1500px){

	
}

@media (max-width : 1163px ){
  body {
    top: 0 !important
  }
}

@media screen and (min-width: 1px) and (max-width: 1400px){
	
}
