@charset "UTF-8";

:root {
 --orange: #f4a460;
 --orange2: #f39800;
 --yellow: #faeec6;
 --green: #abdad1;
 --brown: #573d3d;
 --brown2: #a88787;
 --brown3: #a58685;
 --brown4: #563c3c;
}

body {
  /* font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
   */
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-weight: 500;
  color: var(--brown);
  line-height: 1.6875;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: #fff;
  overflow-x: hidden;
  overflow-wrap: break-word;
  padding-top: 67px;
  overscroll-behavior: none;
  font-feature-settings: "palt";
  letter-spacing: .03em;
  box-sizing: border-box;
}

@media screen and (min-width: 768px) {
  body {
    padding-top: 0;
  }
}

/* レイアウト
------------------------------------------------------ */
/* @media screen and (min-width: 1001px) {
  .contents {
    margin-left: 282px;
  }
} */

/* .section {
  border-top: 2px solid #1a1a1a;
} */

.section__ttl {
  width: fit-content;
  margin-inline: auto;
  margin-bottom: 20px;
}

@media screen and (min-width: 768px) {
  .section__ttl {
    margin-bottom: 40px;
  }
}

.section__sub__head{
background-image: url(../images/common/sub_main_title_bg2.jpg);
background-position: center;
background-repeat: no-repeat;
background-size: cover;
width: 100%;
height: 139px;
margin-bottom: 60px;
display: inline-flex;
align-items: center;
justify-content: center;
/*border-bottom: 2px solid #1a1a1a;*/
}

@media screen and (min-width: 768px) {
  .section__sub__head{
    margin-bottom: 100px;
  }
}

.section__sub__ttl{
  width: fit-content;
  margin-left: 25px;
}

@media screen and (max-width: 375px) {
  .section__sub__ttl{
    margin-left: 5px;
  }
}

@media screen and (min-width: 768px) {
  .section__sub__ttl{
    margin-left: 50px;
  }
}

.inner {
  padding-left: 20px;
  padding-right: 20px;
  margin: 0 auto;
  height: inherit;
}

@media screen and (min-width: 768px) {
  .inner {
    padding-left: 20px;
    padding-right: 20px;
    max-width: 1240px;
  }
}

/* リンク
------------------------------------------------------ */
.util-link {  
  background: var(--orange);
  color: #fff;
  font-size: 1.125rem;
  display: inline-block;
  letter-spacing: 0.1em;
  padding: 6px 10px;
  transition: background-color 0.4s, color 0.4s;
  text-transform: uppercase;
  border-radius: 50px;
  min-width: 235px;
  text-align: center;
  font-weight: 500;
  line-height: 1;
  pointer-events: auto;
}

.util-link2 {  
  background: #fff;
  color: var(--brown);
  font-size: 1.125rem;
  display: inline-block;
  letter-spacing: 0.1em;
  padding: 6px 10px;
  transition: background-color 0.4s, color 0.4s;
  text-transform: uppercase;
  border-radius: 50px;
  min-width: 235px;
  text-align: center;
  font-weight: 700;
  border: 1px solid var(--brown);
  pointer-events: auto;
}

@media screen and (min-width: 768px) {
  .util-link {
    min-width: 255px;
    padding: 13px;
  }
}

.util-link.is-active {
  background: #f8b62d;
  color: #fff;
}

.more {
  position: relative;
  min-width: 290px;
  padding: 15px 22px;
  pointer-events: auto;
}

.more:hover {
  background: var(--green);
  color: var(--brown);
}

.more span > svg {
  width: 18px;
  height: 16px;
  fill: #fff;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s ease 0s;
}
.more:hover span > svg{
  fill: var(--brown);
}

@media screen and (max-width: 375px) {
  .more {
    min-width: 200px;
  }
}

/* 別タブで開くアイコン */
.blank {
  position: relative;
  min-width: 290px;
  padding: 10px;
}

.blank:hover {
  background: #f8b62d;
}

.blank::after {
  content: "";
  width: 19px;
  height: 18px;
  position: absolute;
  background-image: url(../images/common/icon_blank.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
}

@media screen and (max-width: 375px) {
  .blank {
    min-width: 200px;
  }
}

/* hoverで画像を切り替える */
.link-button {
  position: relative;
  display: inline-block;
}

.link-button img {
  display: block;
  height: auto;
  transition: opacity 0.5s ease-in-out;
}

.link-button .hover-img {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

.link-button:hover .default-img {
  opacity: 0;
}

.link-button:hover .hover-img {
  opacity: 1;
}

/* hover透過 */
.link-opacity{
  transition: all 0.3s ease 0s;
}

.link-opacity:hover{
  opacity: 0.5;
}

.section__footer__link {
  width: fit-content;
  margin-inline: auto;
}

/* 共通デザイン
------------------------------------------------------ */
/* 見出し */
.title-circle {
  position: relative;
  font-size: 1.25rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  padding-left: 33px;
  margin-bottom: 20px;
}

.title-circle::before {
  content: "";
  background-color: #f8b62d;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  position: absolute;
  left: 0;
}

.title-circle2 {
  position: relative;
  font-size: 1.25rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  padding-left: 33px;
  margin-bottom: 20px;
}

.title-circle2::before {
  content: "";
  background-color: var(--orange);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  position: absolute;
  left: 0;
}

@media screen and (min-width: 768px) {
  .title-circle {
    font-size: 1.75rem;
  }

  .title-circle::before {
    width: 24px;
    height: 24px;
  }
	  .title-circle2 {
    font-size: 1.75rem;
  }

  .title-circle2::before {
    width: 24px;
    height: 24px;
  }
}


/* box */
.box {
  background-color: #ffffff;
  border: 2px solid #1a1a1a;
  padding: 40px 20px;
}

@media screen and (min-width: 768px) {
  .box {
    padding: 80px 20px;
  }
}

.box-bdrs {
  background-color: #ffffff;
  border: 2px solid #1a1a1a;
  border-radius: 20px;
  padding: 40px 20px;
}

.box-bdrs2 {
  background-color: #ffffff;
  border: 2px solid var(--brown);
  border-radius: 20px;
  padding: 40px 20px;
}

@media screen and (min-width: 768px) {
  .box-bdrs {
    padding: 50px 20px;
  }
}

/*================================================================
# 共通ヘッダー
================================================================ */
.layout-header {
  position: fixed;
  z-index: 40;
  max-width: 100vw;
  top: 0;
  right: 0;
  left: 0;
}

.header {
  background-color: #ffffff;
}

@media screen and (min-width: 1001px) {
  .header {
    width: 100%;
    height: auto;
    /* overflow-y: scroll;
    scrollbar-width: none; */
  }
}

@media screen and (min-width: 1001px) {
  .header::-webkit-scrollbar {
    display: none;
  }
}

.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
}
.header__inner:has(.openbtn.active){
  padding: 30px;
}
.header__inner:has(.openbtn.active) > .header__logo{
  z-index: 30;
}

@media screen and (min-width: 1001px) {
  .header__inner {
    padding-block: 20px;
    height: inherit;
    min-height: inherit;
    padding: 30px;
  }
}

.header__logo {
  position: relative;
  z-index: 999;
  max-width: 183px;
  width: 100%;
  height: inherit;
}

@media screen and (min-width: 1001px) {
  .header__logo {
    margin-left: 30px;
    max-width: 233px;
    height: initial;
  }
}

.header__logo a {
  height: inherit;
  display: flex;
  align-items: center;
}

@media screen and (min-width: 1001px) {
  .header__logo a {
    height: initial;
  }
}

.header__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

 /*========= ナビゲーションのためのCSS ===============*/
#g-nav{
  position: fixed;
  display: flex;
  justify-content: end;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  background: var(--green);
  top: 0;
  right: -120%;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}
#g-nav.panelactive{
  opacity: 1;
  z-index: 39;
  right: 0;
}
#g-nav-list{
  opacity: 0;
}
#g-nav #g-nav-list{
  opacity: 0;
}
#g-nav.panelactive #g-nav-list {
  position: fixed;
  width: calc(100% - 30px);
  height: calc(100% - 30px);
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  background: #fff;
  border-radius: 15px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 15px;
  opacity: 1;
}
#g-nav.panelactive #g-nav-list .g-nav-logo{
  position: relative;
  width: 100%;
  max-width: 183px;
  height: inherit;
}
#g-nav.panelactive #g-nav-list .g-nav-logo a{
  display: flex;
  height: inherit;
  align-items: center;
}
#g-nav.panelactive #g-nav-list .g-nav-logo img{
  width: 100%;
  max-width: 183px;
  height: auto;
  object-fit: contain;
}
#g-nav.panelactive ul {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-top: 60px;
}

#g-nav #g-nav-list ul > div{
  display: contents;
}

#g-nav #g-nav-list .header_tel{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: fit-content;
  margin: 40px auto 0;
}

#g-nav #g-nav-list .header_tel > span:nth-of-type(1){
  width: fit-content;
}

#g-nav-list a:hover{
  opacity: .5;
  transition: all 0.4s ease-in-out;
}
#g-nav #g-nav-list ul.header_sns-list{
  flex-direction: row;
  justify-content: center;
  margin-top: 30px;
}


@media screen and (min-width: 768px) {
#g-nav{
    /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
    position:fixed;
    display: flex;
    justify-content: end;
    z-index: 39;
    /*ナビのスタート位置と形状*/
    top:0;
    right: -120%;
    width:100%;
    height: 100vh;/*ナビの高さ*/
    background:rgba(147, 147, 147, 0.5);
    transition: all 1s;
}

/*アクティブクラスがついたら位置を0に*/
#g-nav.panelactive{
    right: 0;
}
#g-nav #g-nav-list{  
    /*ナビの数が増えた場合縦スクロール*/
    position: fixed;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    transform: translate(.5%, -50%);
    animation-delay: 1.5s;
}
/*ナビゲーションの縦スクロール*/
#g-nav.panelactive #g-nav-list{
    width: 50%;
    min-width: 550px;
    height: 100vh;/*表示する高さ*/
    background: url(../images/common/nav_yamaguchi.png) no-repeat right 30px bottom 30px ,#fff;
    border-radius: 50px 0 0 50px;
    transform: translate(0, -50%);
    left: auto;
    right: 0;
}
#g-nav.panelactive #g-nav-list .g-nav-logo{
  display: none;
}
#g-nav-list a:hover{
  opacity: .5;
  transition: all 0.4s ease-in-out;
}

/*ナビゲーション*/
#g-nav #g-nav-list ul {
    display: flex;
    justify-content: center;
    flex-direction: row;
    width: 100%;
    z-index: 39;
    gap: 40px;
    margin-top: 80px;
}

#g-nav #g-nav-list ul > div{
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/*リストのレイアウト設定*/

#g-nav li{
	list-style: none;
}

#g-nav li a{
	text-decoration: none;
	padding:10px;
	display: block;
	text-transform: uppercase;
	font-weight: bold;
}

#g-nav #g-nav-list .header_tel{
  display: none;
}

#g-nav ul.header_sns-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

#g-nav ul.header_sns-list a {
  display: block;
  width: 100%;
  padding: 0;
}

#g-nav ul.header_sns-list a img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
}
/*========= ボタンのためのCSS ===============*/
.openbtn{
	position:relative;
  z-index: 40;/*ボタンを最前面に*/
	top: 0;
	right: 0;
	cursor: pointer;
  width: 48px;
  height: 43px;
}
/* .openbtn{
	position:relative;
  z-index: 40;
	top: 15px;
	right: 15px;
	cursor: pointer;
  width: 48px;
  height: 43px;
} */
	
/*×に変化*/	
.openbtn span{
  display: inline-block;
  transition: all .4s;
  position: absolute;
  left: 0;
  width: 45px;
  height: 2px;
  border-radius: 2px;
}

.openbtn span:nth-of-type(1) {
	background-color: var(--orange);
	top: 0;	
}

.openbtn span:nth-of-type(2) {
	background-color: var(--orange);
	top: 14px;
}

.openbtn span:nth-of-type(3) {
  bottom: 3px;
  left: -1px;
  line-height: 1;
  width: 50px;
  height: 1lh;
  color: var(--orange);
  font-weight: 600;
  font-size: 80%;
  text-align: center;
}
.openbtn.active{
  top: 5px;
  right: 5px;
  width: 55px;
}
.openbtn.active span:nth-of-type(1) {
  top: 17px;
  transform:  rotate(-25deg);
}

.openbtn.active span:nth-of-type(2) {
  top: 17px;
  transform:  rotate(25deg);
}
.openbtn.active span:nth-of-type(3) {
  bottom: -4px;
}

.header__right {
  position: absolute;
  z-index: 41;
  height: 67px;
  display: flex;
  top: 15px;
  right: 15px;
  gap: 50px;
}

.header__right  .header_tel{
  display: none
}

.header_tel > span:nth-of-type(1){
  display: flex;
  line-height: 1;
  padding: 5px 14px;
  margin-bottom: 8px;
  border-radius: 20px;
  letter-spacing: .001em;
  justify-content: center;
}
.header_tel > span:nth-of-type(2){
  display: flex;
  align-items: center;
  line-height: 1;
  letter-spacing: .07em;
  gap: 11px;
}
.header_tel svg{
  width: auto;
  height: .9lh;
}

.header__link__area {
  margin-top: 30px;
}

@media screen and (min-width: 1001px) {
  .header__right .header_tel{
    display: block;
    z-index: 41;
  }
}

@media screen and (min-width:768px) and (max-width:1000px) {
  .header__right{
    top: 13px;
    height: 50px;
    gap: 25px;
  }
  .header__right .header_tel{
    display: block;
    z-index: 41;
    display: block;
  }
  .header_tel > span:nth-of-type(1){
    font-size: .7rem;
    margin-bottom: 5px;
    padding: 3px 7px;
  }
  .header_tel > span:nth-of-type(2){
    font-size: 125%;
  }
}

@media screen and (min-width: 1001px) {
  .header__right{
    top: 26px;
    right: 47px;
  }
  .openbtn{
    position:relative;
    z-index: 40;/*ボタンを最前面に*/
    top: 8px;
    right: 0;
    cursor: pointer;
    width: 46px;
    height: 46px;
  }
  .openbtn span{
    width: 46px;
  }

  .openbtn span:nth-of-type(3){
    font-size: 80%;
  }

  .header__link__area {
    margin-top: 25px;
  }
}

.header__link__area__button {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.header__link__area__button .btn_net-marche {
  width: 222px;
  height: 52px;
}

.header__contact__area {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 23px;
}

.header__contact__area .fa-solid.fa-phone {
  font-size: 1.25rem;
  margin-right: 5px;
}

.link-tel {
  font-size: 1.875rem;
  font-weight: 700;
  -webkit-text-stroke: 1px #1a1a1a;
  text-stroke: 4px #1a1a1a;
  line-height: 1;
  font-family: "Noto Sans JP", sans-serif;
}

@media screen and (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}

/* ハンバーガーメニュー */
.header__hamburger {
  /* margin: 0 47px 0 60px; */
  margin-left: 60px;
  padding: 0;
  outline: none;
  border: none;
  width: 46px;
  height: inherit;
  background-color: transparent;
  cursor: pointer;
  transition: 0.3s;
}

.header__hamburger.is-open {
  background-color: transparent;
}

.header__hamburger span {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  width: 45px;
  height: 2px;
  background-color: var(--orange);
  transition: 0.5s;
}

.header__hamburger span:nth-of-type(1) {
  top: -26px;
}

.header__hamburger span:nth-of-type(2) {
  top: -13px;
}

.header__hamburger span:nth-of-type(3) {
  top: -1px;
}

.header__hamburger.is-open span:nth-of-type(1) {
  top: -8px;
  transform: translateX(-50%) rotate(30deg);
}

/* .header__hamburger.is-open span:nth-of-type(2) {
  opacity: 0;
} */

.header__hamburger.is-open span:nth-of-type(2) {
  top: -10px;
  transform: translateX(-50%) rotate(-30deg);
}

.header__hamburger span.button-text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.9375rem;
  color: var(--orange);
  background: none;
}

/* ドロワーメニュー */
.header__drawer {
  margin-top: 67px;
  padding: 0 0 160px;
  display: none;
  position: absolute;
  z-index: 40;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(255, 255, 255, .5);
  overflow-y: scroll;
  scrollbar-width: none;
}

@media screen and (min-width: 1001px) {
  .header__drawer {
    margin-top: 25px;
    padding-top: 0;
    position: static;
    border-radius: 50px 0 0 50px;
    /* display: block; */
  }
}

.header__drawer::-webkit-scrollbar {
  display: none;
}

.header__drawer-nav {
  padding-left: 40px;
  max-width: 250px;
  width: 100%;
}

@media screen and (min-width: 1001px) {
  .header__drawer-nav {
    padding-left: 0;
  }
}

.header__drawer-item>a,
.header__drawer-accordion-title {
  display: block;
  font-size: inherit;
  line-height: inherit;
  letter-spacing: inherit;
  color: inherit;
}

.header__drawer-accordion-title {
  position: relative;
  cursor: pointer;
}

/* 現在のページ */
.current-page {
  background-color: #ffec6b;
}

/*================================================================
# (ページ下部の)SNSエリア
================================================================ */
.sns__area {
  padding-block: 80px;
  margin-top: 40px;
  position: relative;
  z-index: 1;
  border-top: 2px solid #1a1a1a;
  overflow: hidden;
}

@media screen and (max-width: 1459px) {
  .sns__area {
    padding-block: 40px;
  }
}

@media screen and (min-width: 768px) {
  .sns__area {
    margin-top: 80px;
  }
}

.sns__area::before {
  content: "";
  width: 100%;
  max-width: 453px;
  height: 235px;
  position: absolute;
  background-image: url(../images/common/bg_dotted2_l.png);
  background-repeat: no-repeat;
  background-size: contain;
  top: 0;
  left: 0;
}

@media screen and (max-width: 1120px) {
  .sns__area::before {
    background-size: 90%;
  }
}

@media screen and (max-width: 960px) {
  .sns__area::before {
    background-size: 90%;
    top: -45px;
    left: -119px;
  }
}

.sns__area::after {
  content: "";
  width: 100%;
  max-width: 464px;
  height: 222px;
  position: absolute;
  background-image: url(../images/common/bg_dotted2_r.png);
  background-repeat: no-repeat;
  background-size: contain;
  bottom: 0;
  right: 0;
}

@media screen and (max-width: 1120px) {
  .sns__area::after {
    background-size: 90%;
    bottom: -40px;
    right: -60px;
  }
}

@media screen and (max-width: 460px) {
  .sns__area::after {
    bottom: -90px;
  }
}

.sns__area__inner {
  position: relative;
  z-index: 2;
}


/* sns__area__listがgridの時
------------------------------------------------------ */
.sns__area__wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.sns__area__title__area {
  width: fit-content;
  margin: 0 auto;
  text-align: center;
}

@media screen and (min-width: 1460px) {
  .sns__area__wrap {
    justify-content: space-between;
    flex-direction: row;
    gap: 60px;
  }
  .sns__area__title__area{
    width: 200px;
    margin: 0;
    text-align: left;
  }
}

.sns__area__title-main img {
  width: 100px;
  height: auto;
}

@media screen and (min-width: 768px) {
  .sns__area__title-main img {
    width: 130px;
  }
}

.sns__area__title-sub {
  margin-top: 10px;
  font-weight: 700;
}

@media screen and (min-width: 400px) and (max-width: 1459px) {
  .sns__area__title-sub>br {
    display: none;
  }
}

.sns__area__list.flex {
  width: 100%;
  max-width: 985px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

@media screen and (min-width: 600px) {
  .sns__area__list.flex {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px 0;
  }
}

.sns__area__list.grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  justify-items: center;
  gap: 20px 0;
}

@media screen and (min-width: 600px) {
  .sns__area__list.grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (min-width: 768px) {
  .sns__area__list.grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media screen and (min-width: 900px) {
  .sns__area__list.grid {
    padding-inline: 60px;
  }
}

@media screen and (min-width: 1001px) {
  .sns__area__list.grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (min-width: 1041px) {
  .sns__area__list.grid {
    grid-template-columns: repeat(3, 1fr);
    padding-inline: 0;
  }
}

@media screen and (min-width: 1200px) {
  .sns__area__list.grid {
    padding-inline: 60px;
  }
}

@media screen and (min-width: 1460px) {
  .sns__area__list.grid{
    padding-inline: 0;
    width: calc(100% - (200px + 60px));
  }
}

.sns__area__item {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background-image: url(../images/common/bg_sns_sp.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 100%;
  max-width: 334px;
  height: 65px;
  padding-bottom: 7px;
  transition: all 0.4s ease-in-out;
}

.sns__area__item:hover {
  opacity: 0.5;
}

@media screen and (min-width: 768px) {
  .sns__area__item {
    background-image: url(../images/common/bg_sns_pc.png);
    width: 238px;
    height: 67px;
    padding-bottom: 4px;
  }
}

.sns__area__item a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.sns__area__item img {
  width: 40%;
}

.sns__area__item span {
  font-weight: 700;
  font-size: 1.25rem;
}

/*================================================================
# 共通フッター
================================================================ */
.footer {
  margin-bottom: 66px;
}

@media screen and (min-width: 768px) {
  .footer {
    padding: 0;
  }
}

@media screen and (min-width: 1001px) {
  .footer {
    margin-bottom: 0;
  }
}

.footer__inner {
  margin: auto;
  /* max-width: 630px; */
  width: 100%;
}

@media screen and (min-width: 768px) {
  .footer__inner {
    padding: 0;
    max-width: 100vw;
  }
}

/* スマホ時 */
.footer__sns-list__area {
  display: block;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 30;
  width: 100%;
  padding: 16px 32px;
}

@media screen and (min-width: 1001px) {
  .footer__sns-list__area {
    display: none;
  }
}

.footer__sns-list {
  width: 90%;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  height: 34px;
}

.footer__sns-item + .footer__sns-item {
  margin-left: 10px;
}

.footer__sns-item a {
  display: block;
  width: 100%;
  transition: all 0.4s ease-in-out;
}

.footer__sns-item a:hover {
  opacity: 0.5;
}

.footer__sns-item a img {
  width: 100%;
  max-width: 32px;
  height: auto;
  -o-object-fit: contain;
  object-fit: contain;
}

/* コピーライト */
.footer__copyright {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  text-align: center;
  padding-block: 20px 25px;
}

.footer__copyright span {
  text-transform: uppercase;
}

.footer__copyright br {
  display: none;
}

@media screen and (min-width: 768px) and (max-width: 880px) {
  .footer__copyright br {
    display: block;
  }
}

@media screen and (max-width: 560px) {
  .footer__copyright br {
    display: block;
  }
}

/*================================================================
# ページトップへ戻る
================================================================ */
.page-top {
  display: none;
  position: fixed;
  bottom: 140px;
  right: 15px;
  z-index: 30;
}

@media screen and (min-width: 490px) {
  .page-top{
    bottom: 133px;
  }
}

/* @media screen and (min-width: 561px) and (max-width: 680px) {
  .page-top{
    bottom: 125px;
  }
} */

@media screen and (min-width: 1001px) {
  .page-top{
    bottom: 30px;
  }
}

.page-top a {
  display: block;
  width: 68px;
  height: 82px;
  transition: opacity 0.4s ease-in-out;
}

.page-top a:hover {
  display: block;
  opacity: 0.5;
}

.footer_pre{
  position: fixed;
  z-index: 30;
  bottom: 66px;
  right: 0;
  width: 100%;
}

.footer_pre.active {
  visibility: visible;
  opacity: 1;
}

.footer_pre a {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: var(--brown);
  padding: 10px 13px;
  border-bottom: solid 1px #fff;
}

.footer_pre a:hover {
  opacity: 0.5;
}

.footer_pre a span{
  color: #fff;
  font-weight: bold;
  line-height: 1;
  margin-left: 9px;
}

@media screen and (min-width: 1001px) {
  .footer_pre{
    bottom: 132px;
    right: 15px;
    visibility: hidden;
    opacity: 0;
    transition: .5s;
    width: fit-content;
  }
  .footer_pre a {
    flex-direction: column;
    align-items: center;
    transition: opacity 0.4s ease-in-out;
    border-radius: 4px;
    padding: 10px 13px;
    border-bottom: none;
  }
  .footer_pre a span{
    text-align: left;
    writing-mode: vertical-rl;
    font-feature-settings: initial;
    margin-top: 9px;
    margin-left: 0;
  }
}

.footer_menu{
  width: 100%;
  padding: 50px 15px;
  flex-direction: column;
}

.footer_menu ul {
  width: 100%;
  flex-wrap: wrap;
  gap: 0 30px;
  flex-direction: row;
  justify-content: left;
  margin: 30px auto 0;
}

 .footer_menu ul > div{
  display: contents;
 }

.footer_menu ul li{
  position: relative;
  width: 100%;
  padding-block: 20px;
  border-bottom: solid 1px var(--brown2);
}
.footer_menu ul li::before {
  content: "";
  position: absolute;
  display: block;
  top: 50%;
  right: 2px;
  width: 10px;
  height: 10px;
  border-top: 2px solid var(--brown);
  border-right: 2px solid var(--brown);
  -webkit-transform: rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
}

.footer_menu a,
.footer_menu .footer_logo + ul li,
.footer_sns_wrap a{
  transition: all 0.3s ease 0s;
}

.footer_menu a:hover,
.footer_menu .footer_logo + ul li:hover,
.footer_sns_wrap a:hover{
  opacity: .5;
}

.footer_tel{
  background: var(--orange);
  color: #fff;
  padding: 10px 27px;
  width: 280px;
  height: 80px;
  border-radius: 40px;
  margin: 30px auto 0;
  transition: all 0.3s ease 0s;
}
.footer_tel a {
    text-align: center;
    display: flex;
    flex-direction: column;
    letter-spacing: .07em;
    align-items: center;
}
.footer_tel:hover{
  background: var(--green);
  color: var(--brown);
  fill: var(--brown);
}
.footer_tel svg{
  width: .9em;
  height: auto;
  fill: #fff;
  transition: all 0.3s ease 0s;
}
.footer_tel:hover svg{
  fill: var(--brown);
}

@media screen and (min-width: 768px) {
  .footer_menu ul li{
    width: calc((100% - 30px) / 2);
  }
}

@media screen and (min-width: 980px) {
 .footer_menu ul{
  margin: 0;
 }
 .footer_menu ul > div{
  display: block;
  width: calc((100% - 60px) / 3);
 }
 .footer_menu ul li{
    width: 100%;
  }
}

@media screen and (min-width: 1300px) {  
.footer_menu{
  width: 100%;
  padding: 50px 15px 0;
  flex-direction: row;
}
 .footer_menu ul{
  width: 780px;
  gap: 0 20px;
 }

.footer_menu ul > div,
.footer_menu ul li{
  width: 240px;
}
 .footer_tel{
  margin: 0;
 }
}
@media screen and (min-width: 1575px) {  
.footer_menu{
  padding: 100px 120px 0;
}
 .footer_menu ul{
  width: 840px;
  gap: 0 60px;
 }
}



/*================================================================
# 補完クラス
================================================================ */
.no-wrap {
  white-space: nowrap;
}

@media screen and (min-width: 768px) {
  .hidden-pc {
    display: none !important;
  }
}

@media screen and (max-width: 767px) {
  .hidden-sp {
    display: none !important;
  }
}

.sp-none {
  display: none;
}

@media screen and (min-width: 768px) {
  .sp-none {
    display: block;
  }
}

.clearfix {
	overflow: hidden;
}

.fLeft {
	float: left;
}

.fRight {
	float: right;
}

.tLeft {
	text-align: left;
}

.tRight {
	text-align: right;
}

.tCenter {
	text-align: center;
}

.wbr{
  word-break: keep-all;
}

.vTop {
	vertical-align: top;
}

.vMiddle {
	vertical-align: middle;
}

.vBottom {
	vertical-align: bottom;
}

.mb1em {
	margin-bottom: 1em;
}

.mb2em {
	margin-bottom: 2em;
}

.mb3em {
	margin-bottom: 3em;
}

.mb50 {
	margin-bottom: 50px;
}

.mb60 {
	margin-bottom: 60px;
}

.mb75 {
	margin-bottom: 75px;
}

.mb100 {
	margin-bottom: 100px;
}

.mt1em {
	margin-top: 1em;
}

.mt2em {
	margin-top: 2em;
}

.mt3em {
	margin-top: 3em;
}

.mt4 {
	margin-top: 4px;
}

.mt5 {
	margin-top: 5px;
}

.mt10 {
	margin-top: 10px;
}

.mt20 {
	margin-top: 20px;
}

.mt25 {
	margin-top: 25px;
}

.mt30 {
	margin-top: 30px;
}

.mt40 {
	margin-top: 40px;
}

.mt50 {
	margin-top: 50px;
}

.mt75 {
	margin-top: 75px;
}

.mt100 {
	margin-top: 100px;
}

.mr1em {
	margin-right: 1em;
}

.mr2em {
	margin-right: 2em;
}

.mr3em {
	margin-right: 3em;
}

.mr10 {
	margin-right: 10px;
}

.mr20 {
	margin-right: 20px;
}

.mr30 {
	margin-right: 30px;
}

.ml1em {
	margin-left: 1em;
}

.ml2em {
	margin-left: 2em;
}

.ml3em {
	margin-left: 3em;
}

.ml10 {
	margin-left: 10px;
}

.ml20 {
	margin-left: 20px;
}

.ml30 {
	margin-left: 30px;
}

.p5 {
	padding: 5px;
}

.p10 {
	padding: 10px;
}

.p20 {
	padding: 20px;
}

.p30 {
	padding: 30px;
}

.p40 {
	padding: 40px;
}

.p50 {
	padding: 50px;
}

.pb1em {
	padding-bottom: 1em;
}

.pb2em {
	padding-bottom: 2em;
}

.pb3em {
	padding-bottom: 3em;
}

.pb50 {
	padding-bottom: 50px;
}

.pb75 {
	padding-bottom: 75px;
}

.pb100 {
	padding-bottom: 100px;
}

.pt1em {
	padding-top: 1em;
}

.pt2em {
	padding-top: 2em;
}

.pt3em {
	padding-top: 3em;
}

.pt10 {
	padding-top: 10px;
}

.pt20 {
	padding-top: 20px;
}

.pt30 {
	padding-top: 30px;
}

.pt40 {
	padding-top: 40px;
}

.pt50 {
	padding-top: 50px;
}

.pt75 {
	padding-top: 75px;
}

.pt100 {
	padding-top: 100px;
}

.pblock10 {
  padding-top: 10px;
  padding-bottom: 10px;
}

.pblock30 {
  padding-top: 30px;
  padding-bottom: 30px;
}

.pblock60 {
  padding-top: 60px;
  padding-bottom: 60px;
}

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

.pr1em {
	padding-right: 1em;
}

.pr2em {
	padding-right: 2em;
}

.pr3em {
	padding-right: 3em;
}

.pr5 {
	padding-right: 5px;
}

.pl1em {
	padding-left: 1em;
}

.pl2em {
	padding-left: 2em;
}

.pl3em {
	padding-left: 3em;
}

.pinline10 {
	padding-inline: 10px;
}

.pinline20 {
	padding-inline: 20px;
}

.font-s {
	font-size: 80%;
}

.font-ss {
	font-size: 60%;
}

.font-ms {
	font-size: 90%;
}

.font-mml {
	font-size: 112.5%;
}

.font-ml {
	font-size: 125%;
}

.font-l {
	font-size: 150%;
}

.font-l2 {
	font-size: 175%;
}

.font-ll {
	font-size: 200%;
}

.font-lll {
	font-size: 300%;
}

.flex {
	display: flex;
	justify-content: center;
}

.flex.fs {
	justify-content: flex-start;
}

.flex.sa {
	justify-content: space-around;
}

.flex.sb {
	justify-content: space-between;
}

.flex.wrap {
	flex-wrap: wrap;
}

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

.flex .asCenter {
	align-self: center;
}

.flex.gap20{
  gap: 20px;
}

.flex.gap30{
  gap: 30px;
}

.flex.gap40{
  gap: 40px;
}

.flex.gap60{
  gap: 60px;
}

.w10 {
	width: 10% !important;
}

.w20 {
	width: 20% !important;
}

.w25 {
	width: 25% !important;
}

.w30 {
	width: 30% !important;
}

.w33 {
	width: 33% !important;
}

.w40 {
	width: 40% !important;
}

.w45 {
	width: 45% !important;
}

.w50 {
	width: 50% !important;
}

.w60 {
	width: 60% !important;
}

.w70 {
	width: 70% !important;
}

.w80 {
	width: 80% !important;
}

.w90 {
	width: 90% !important;
}

.w100 {
	width: 100% !important;
}

.wAuto {
	width: auto;
}

.lh1em {
	line-height: 1em;
}

.lh1_2em {
	line-height: 1.2em;
}

.lh1_5em {
	line-height: 1.5em;
}

.lh2em {
	line-height: 2em;
}

.menuArea {
	display: none;
}

.b {
	font-weight: 700;
}

.dNone {
	display: none;
}

.dIb {
	display: inline-block;
}

.dBlock {
	display: block;
}

.underline {
	text-decoration: underline;
}


/* 文字色 */
.color-white{
  color: #fff;
}
.color-orange {
  color: var(--orange);
}

.color-green {
  color: var(--green);
}

.color-yellow {
  color: var(--yellow);
}

/* 背景 */
.bg-white {
  background-color: #fff;
}

.bg-orange {
  background-color: var(--orange);
}

.bg-orange2 {
  background-color: var(--orange2);
}

.bg-green {
  background-color: var(--green);
}

.bg-brown {
  background-color: var(--brown);
}

.bg-yellow {
  background-color: var(--yellow);
}

.bg-dotted {
  background-image: url(../images/top/spin-off_bg.png);
  background-position: top left;
  background-repeat: repeat;
}

.boxShadow1{
  box-shadow: 2px 2px 3px rgba(147, 147, 147, 0.7);
}

.dropShadow{
  filter: drop-shadow(2px 2px 3px rgba(147, 147, 147, 0.7))
}

/* タブレット解像度
------------------------------------------------------ */
@media screen and (max-width: 1000px) {

	.tb-visible {
		visibility: visible;
		width: auto;
		height: auto;
	}

	.tb-hidden {
		visibility: hidden;
		width: 0px;
		height: 0px;
	}

	.tb-dBlock {
		display: block;
	}

	.tb-dIb {
		display: inline-block;
	}

	.tb-dNone {
		display: none;
	}

	.tb-fLeft {
		float: left;
	}

	.tb-fRight {
		float: right;
	}

	.tb-tLeft {
		text-align: left;
	}

	.tb-tRight {
		text-align: right;
	}

	.tb-tCenter {
		text-align: center;
	}

	.tb-vTop {
		vertical-align: top;
	}

	.tb-vMiddle {
		vertical-align: middle;
	}

	.tb-vBottom {
		vertical-align: bottom;
	}

	.tb-mb0 {
		margin-bottom: 0px;
	}

	.tb-mb1em {
		margin-bottom: 1em;
	}

	.tb-mb2em {
		margin-bottom: 2em;
	}

	.tb-mb3em {
		margin-bottom: 3em;
	}

	.tb-mb10 {
		margin-bottom: 10px;
	}

	.tb-mb25 {
		margin-bottom: 25px;
	}

	.tb-mb50 {
		margin-bottom: 50px;
	}

	.tb-mt0 {
		margin-top: 0px;
	}

	.tb-mt1em {
		margin-top: 1em;
	}

	.tb-mt2em {
		margin-top: 2em;
	}

	.tb-mt3em {
		margin-top: 3em;
	}

	.tb-mt10 {
		margin-top: 10px;
	}

	.tb-mt25 {
		margin-top: 25px;
	}

	.tb-mt50 {
		margin-top: 50px;
	}

	.tb-mr0 {
		margin-right: 0px;
	}

	.tb-mr10 {
		margin-right: 10px;
	}

	.tb-ml0 {
		margin-left: 0px;
	}

	.tb-ml10 {
		margin-left: 10px;
	}

	.tb-pb0 {
		padding-bottom: 0px;
	}

	.tb-pb1em {
		padding-bottom: 1em;
	}

	.tb-pb2em {
		padding-bottom: 2em;
	}

	.tb-pb3em {
		padding-bottom: 3em;
	}

	.tb-pb25 {
		padding-bottom: 25px;
	}

	.tb-pb50 {
		padding-bottom: 50px;
	}

	.tb-pt0 {
		padding-top: 0px;
	}

	.tb-pt1em {
		padding-top: 1em;
	}

	.tb-pt2em {
		padding-top: 2em;
	}

	.tb-pt3em {
		padding-top: 3em;
	}

	.tb-pt10 {
		padding-top: 10px;
	}

	.tb-pt25 {
		padding-top: 25px;
	}

	.tb-pt50 {
		padding-top: 50px;
	}

	.tb-pr0 {
		padding-right: 0px;
	}

	.tb-pl0 {
		padding-left: 0px;
	}

	.tb-w10 {
		width: 10% !important;
	}

	.tb-w20 {
		width: 20% !important;
	}

	.tb-w30 {
		width: 30% !important;
	}

	.tb-w40 {
		width: 40% !important;
	}

	.tb-w50 {
		width: 50% !important;
	}

	.tb-w60 {
		width: 60% !important;
	}

	.tb-w70 {
		width: 70% !important;
	}

	.tb-w80 {
		width: 80% !important;
	}

	.tb-w90 {
		width: 90% !important;
	}

	.tb-w100 {
		width: 100% !important;
	}

	.tb-p0 {
		padding: 0px;
	}

	.tb-p10 {
		padding: 10px;
	}

	.tb-p20 {
		padding: 20px;
	}

	.tb-wAuto {
		width: auto;
	}
}

/* スマホ解像度
------------------------------------------------------ */
@media screen and (max-width: 640px) {
	.font-l {
		font-size: 125%;
	}

	.font-l2 {
		font-size: 140%;
	}

	.font-ll {
		font-size: 150%;
	}

	.font-lll {
		font-size: 180%;
	}

	.sp-visible {
		visibility: visible;
		width: auto;
		height: auto;
	}

	.sp-hidden {
		visibility: hidden;
		width: 0px;
		height: 0px;
	}

	.sp-dBlock {
		display: block;
	}

	.sp-dIb {
		display: inline-block;
	}

	.sp-dNone {
		display: none;
	}

	.sp-font-l {
		font-size: 140%;
	}

	.sp-font-m {
		font-size: 100%;
	}

	.sp-font-s {
		font-size: 60%;
	}

	.sp-fLeft {
		float: left;
	}

	.sp-fRight {
		float: right;
	}

	.sp-tLeft {
		text-align: left;
	}

	.sp-tRight {
		text-align: right;
	}

	.sp-tCenter {
		text-align: center;
	}

	.sp-vTop {
		vertical-align: top;
	}

	.sp-vMiddle {
		vertical-align: middle;
	}

	.sp-vBottom {
		vertical-align: bottom;
	}

	.sp-mb0 {
		margin-bottom: 0px;
	}

	.sp-mb1em {
		margin-bottom: 1em;
	}

	.sp-mb2em {
		margin-bottom: 2em;
	}

	.sp-mb3em {
		margin-bottom: 3em;
	}

	.sp-mb10 {
		margin-bottom: 10px;
	}
  
	.sp-mb20 {
		margin-bottom: 20px;
	}

	.sp-mb25 {
		margin-bottom: 25px;
	}

	.sp-mb50 {
		margin-bottom: 50px;
	}

	.sp-mt0 {
		margin-top: 0px;
	}

	.sp-mt1em {
		margin-top: 1em;
	}

	.sp-mt2em {
		margin-top: 2em;
	}

	.sp-mt3em {
		margin-top: 3em;
	}

	.sp-mt10 {
		margin-top: 10px;
	}
  
	.sp-mt20 {
		margin-top: 20px;
	}

	.sp-mt25 {
		margin-top: 25px;
	}

	.sp-mt50 {
		margin-top: 50px;
	}

	.sp-mr0 {
		margin-right: 0px;
	}

	.sp-mr5 {
		margin-right: 5px;
	}

	.sp-mr10 {
		margin-right: 10px;
	}

	.sp-ml0 {
		margin-left: 0px;
	}

	.sp-ml10 {
		margin-left: 10px;
	}

	.sp-pb0 {
		padding-bottom: 0px;
	}

	.sp-pb1em {
		padding-bottom: 1em;
	}

	.sp-pb2em {
		padding-bottom: 2em;
	}

	.sp-pb3em {
		padding-bottom: 3em;
	}

	.sp-pb25 {
		padding-bottom: 25px;
	}

	.sp-pb50 {
		padding-bottom: 50px;
	}

	.sp-pt0 {
		padding-top: 0px;
	}

	.sp-pt1em {
		padding-top: 1em;
	}

	.sp-pt2em {
		padding-top: 2em;
	}

	.sp-pt3em {
		padding-top: 3em;
	}

	.sp-pt10 {
		padding-top: 10px;
	}

	.sp-pt25 {
		padding-top: 25px;
	}

	.sp-pt50 {
		padding-top: 50px;
	}

  .sp-pblock5 {
    padding-top: 5px;
    padding-bottom: 5px;
  }

  .sp-pblock15 {
    padding-top: 15px;
    padding-bottom: 15px;
  }

  .sp-pblock30 {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  
  .sp-pblock40 {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .sp-pblock50 {
    padding-top: 50px;
    padding-bottom: 50px;
  }

	.sp-pr0 {
		padding-right: 0px;
	}

	.sp-pr1em {
		padding-right: 1em;
	}
  
	.sp-pr1_5em {
		padding-right: 1.5em;
	}

	.sp-pl0 {
		padding-left: 0px;
	}

	.sp-pl1em {
		padding-left: 1em;
	}

	.sp-pl1_5em {
		padding-left: 1.5em;
	}

	.sp-w10 {
		width: 10% !important;
	}

	.sp-w20 {
		width: 20% !important;
	}

	.sp-w30 {
		width: 30% !important;
	}

	.sp-w40 {
		width: 40% !important;
	}

	.sp-w50 {
		width: 50% !important;
	}

	.sp-w60 {
		width: 60% !important;
	}

	.sp-w70 {
		width: 70% !important;
	}

	.sp-w80 {
		width: 80% !important;
	}

	.sp-w90 {
		width: 90% !important;
	}

	.sp-w100 {
		width: 100% !important;
	}

	.sp-p0 {
		padding: 0px;
	}

	.sp-p10 {
		padding: 10px;
	}

	.sp-p20 {
		padding: 20px;
	}

	.sp-wAuto {
		width: auto;
	}
  .flex.sp-gap10{
    gap: 10px;
  }
  .flex.sp-gap15{
    gap: 15px;
  }
  .flex.sp-gap30{
    gap: 30px;
  }
}