@charset "utf-8";
/* レイアウトのためのCSS */

body {
  font-family: "M PLUS 1", sans-serif;
  color: #333;
  font-size: 1rem;
  line-height: 1.85;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
  word-wrap: break-word;
}

/* * {
    outline: 1px solid magenta;
} */

:root {
  --main: rgb(219, 234, 254);
  ;
  --sub: #4b88eb;
  --bg-light: #f7f7f7;
  --text-dark: #333;
}

a {
  color: #333;
}

/* font-family */

.topText,
h1,
h2,
h3 span,
#g-nav,
#headerNavPC,
.openbtn,
#footer {

  letter-spacing: 0.2em;
}

/* header */

#header {
  position: fixed;
  /*header固定*/
  top: 30px;
  left: 0;
  height: 10%;
  /*Headerの高さ設定*/
  width: 80%;
  border-radius: 0 50px 50px 0;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.3);
  z-index: 9;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 50px;
  background: #fff;
}


#header h1 {
  display: flex;
  align-items: center;
  /* 画像だけ中央に寄せる */
}

#header h1 img {
  display: block;
  /* 画像下の余白を消す */
  width: 100%;
  /* 親サイズに合わせる */
  height: auto;
}



/*headerNavPC*/

#headerNavPC span.bgLRextend::before {
  background: #333;
}


@media screen and (max-width:990px) {
  #headerNavPC {
    display: none;
  }
}


.headerNavList {
  font-size: 70%;

}



#headerNavPC ul {
  list-style: none;
  display: flex;
  justify-content: center;
  text-transform: uppercase;

  /* margin: 0 0 0 5%; */
}

#headerNavPC li a {
  display: block;
  text-decoration: none;
  color: #676767;
  padding: 0 50px;
  transition: all 0.5s;
  line-height: 1.3;

}

#headerNavPC li.current a,
#headerNavPC li a:hover {
  color: #1f60e2;
  font-weight: 900;
  transform: scale(1.1);
}



/*===========================================================*/
/*ハンバーガーメニューここから*/
/*===========================================================*/
/* nav */

#g-nav {
  animation-delay: .3s;
  position: relative;
  z-index: 4;
  /*hoverした際に出るパネルをsliderよりも前面に出す*/
}

#g-nav ul li a:hover {
  color: #B25938;
}

#g-nav ul li a::after {
  content: "/";
  padding: 0 10px 0 20px;
}

#g-nav ul ul li a::after {
  content: "";
  padding: 0;
}

@media screen and (max-width:768px) {
  #g-nav ul li a::after {
    content: "";
    padding: 0;
  }

  #g-nav ul li a:hover {
    color: #fff;
  }
}

.openbtn {
  display: none;
}


#g-nav ul {
  /*2階層目の基点にするためrelativeを指定*/
  position: relative;
  display: flex;
  justify-content: center;
  margin: 0 0 50px 0;
}

/*2階層目以降は横並びにしない*/
#g-nav ul ul {
  display: block;
  margin: 0;
}

/*ナビゲーションのリンク設定*/
#g-nav ul li a {
  /*矢印の基点にするためrelativeを指定*/
  position: relative;
  display: block;
  text-decoration: none;
  color: #999;
  padding: 10px;
  transition: all .3s;
}


#g-nav ul li a:hover {
  color: #fff;
}

/*==矢印の設定*/

/*2階層目を持つliの矢印の設定*/

#g-nav ul li.has-child>a::before {
  content: '';
  position: absolute;
  left: -5px;
  top: 18px;
  width: 6px;
  height: 6px;
  border-top: 2px solid #999;
  border-right: 2px solid #999;
  transform: rotate(135deg);
}

/*==2階層目以降の画像設定*/

#g-nav ul li.has-child img {
  max-width: 100%;
  height: auto;
  transition: all .5s;
  vertical-align: bottom;
}

/*hoverしたら画像拡大*/
#g-nav ul li.has-child img:hover {
  transform: scale(1.2);
}

#g-nav ul li.has-child dt {
  overflow: hidden;
  height: 12vh;
  border-radius: 10px 10px 0 0;
}

#g-nav ul li.has-child dd {
  background: #fff;
  padding: 10px 0;
  text-align: center;
  border-radius: 0 0 10px 10px;
}

@media screen and (max-width:1200px) {
  #g-nav ul li.has-child dt {
    height: 10vh;
  }
}

/*== 2層目の設定 */

#g-nav li.has-child ul {
  /*絶対配置で位置を指定*/
  position: absolute;
  left: 5%;
  top: 58px;
  z-index: 4;
  /*子要素を横並びに*/
  display: none;
  justify-content: space-around;
  flex-wrap: wrap;
  /*形状を指定*/
  background: #6ea924;
  width: 90%;
  border-radius: 10px;
  /*はじめは非表示*/
  visibility: hidden;
  opacity: 0;
  /*アニメーション設定*/
  transition: all .3s;
  padding: 10px 0;
}

/*hoverしたら表示*/
#g-nav li.has-child:hover>ul {
  display: flex;
  visibility: visible;
  opacity: 1;
}

/*各ナビゲーション横幅*/
#g-nav li.has-child ul li {
  width: 18%;
}

/*ナビゲーションaタグの形状*/
#g-nav li.has-child ul li a {
  color: #333;
}

/*ナビ内ロゴ*/

#g-nav p {
  display: none;
}

/*==768px以下の形状*/
@media screen and (max-width:768px) {

  #g-nav p {
    display: block;
    margin: 30px auto 0 auto;
    width: 80px;
  }

  #g-nav ul {
    display: block;
    margin: 0;
  }

  #g-nav li.has-child ul {
    position: relative;
    left: 0;
    top: 0;
    width: 100%;
    visibility: visible;
    /*JSで制御するため一旦表示*/
    opacity: 1;
    /*JSで制御するため一旦表示*/
    display: none;
    /*JSのslidetoggleで表示させるため非表示に*/
    transition: none;
    /*JSで制御するためCSSのアニメーションを切る*/
    border-radius: 0;
    padding: 0;
    /* スマホ表示用。線の残像を消す*/
    transform: translate3d(0, 0, 0);
  }

  #g-nav ul li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.8);
  }

  nav li.has-child:hover>ul {
    display: none;
  }

  #g-nav li.has-child ul li {
    width: 100%;
    text-align: left;
  }

  #g-nav li.has-child ul li dl {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  #g-nav li.has-child ul li dt {
    width: 30%;
    height: auto;
    margin: 0;
    border-radius: 0;
  }

  #g-nav li.has-child ul li dd {
    width: 64%;
    border-radius: 0;
    background: transparent;
    padding: 0;
    text-align: left;
    color: #fff;
  }

  #g-nav ul li.has-child img {
    border-radius: 0;
  }

  #g-nav ul li a {
    padding: 10px 20px 10px 40px;
    color: #fff;
  }

  #g-nav ul li a:hover {
    color: #fff;
  }

  #g-nav ul li li a {
    padding: 0;
  }

  /*矢印の位置と向き*/

  #g-nav ul li.has-child>a::before {
    top: 17px;
    left: 20px;
    transform: rotate(135deg);
  }

  #g-nav ul li.has-child.active>a::before {
    transform: rotate(-45deg);
  }
}

/*==================================================
 /*機能編 5-1-22 クリックしたら円形背景が拡大（左上から）*/
/*===================================*/
@media screen and (max-width:768px) {
  #g-nav {
    display: none;
  }

  /*アクティブになったエリア*/
  #g-nav.panelactive {
    display: block;
    /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
    position: fixed;
    z-index: 99;
    top: 0;
    width: 100%;
    height: 100vh;
  }

  /*丸の拡大*/
  .circle-bg {
    position: fixed;
    z-index: 5;
    /*丸の形*/
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #4394b4;
    /*丸のスタート位置と形状*/
    transform: scale(0);
    /*scaleをはじめは0に*/
    right: 30px;
    top: 30px;
    transition: all .6s;
    /*0.6秒かけてアニメーション*/
  }

  .circle-bg.circleactive {
    transform: scale(50);
    /*クラスが付与されたらscaleを拡大*/
  }

  /*ナビゲーションの縦スクロール*/
  #g-nav-list {
    opacity: 0;
    /*はじめは表示なし*/
    /*ナビの数が増えた場合縦スクロール*/
    position: fixed;
    z-index: 5;
    width: 100%;
    height: 100vh;
    margin-top: 200px;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }

  #g-nav.panelactive #g-nav-list {
    opacity: 1;
    /*クラスが付与されたら出現*/
  }

  /*ナビゲーション*/
  #g-nav ul {
    opacity: 0;
    /*はじめは透過0*/
    width: 90%;
    margin: 0 auto 60px auto;
  }

  #g-nav ul ul {
    margin: 0;
  }


  /*背景が出現後にナビゲーションを表示*/
  #g-nav.panelactive ul {
    opacity: 1;
  }

}

/*==================================================
　機能編 5-2-4	MENUがCLOSEに
===================================*/

.openbtn {
  display: none;
}

@media screen and (max-width:768px) {

  /*ボタン外側*/
  .openbtn {
    display: block;
    position: fixed;
    top: 30px;
    right: 30px;
    z-index: 999;
    /*ボタンを最前面に*/
    cursor: pointer;
    width: 70px;
    height: 70px;
    background: #4394b4;
    border-radius: 50%;
  }

  /*ボタン内側*/
  /* .openbtn span {
    display: inline-block;
    transition: all .5s;

    position: absolute;
    left: 16px;
    height: 2px;
    border-radius: 5px;
    background: #fff;
    width: 45%;
  } */


  /* .openbtn span:nth-of-type(1) {
    top: 13px;
  }

  .openbtn span:nth-of-type(2) {
    top: 19px;
  }

  .openbtn span:nth-of-type(3) {
    top: 25px;
  } */

  .openbtn span:nth-of-type(3)::after {
    content: "Menu";
    /*3つ目の要素のafterにMenu表示を指定*/
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 1.2em;
    text-transform: uppercase;
  }

  /*activeクラスが付与されると線が回転して×になり、Menu⇒Closeに変更*/
/* 
  .openbtn.active span:nth-of-type(1) {
    top: 14px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
  }

  .openbtn.active span:nth-of-type(2) {
    opacity: 0;
  }

  .openbtn.active span:nth-of-type(3) {
    top: 26px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
  } */

  .openbtn.active span:nth-of-type(3)::after {
    content: "Close";
    /*3つ目の要素のafterにClose表示を指定*/
    /* transform: translateY(0) rotate(-45deg); */
    /* top: 5px;
    left: 4px; */
  }

}

/*==================================================
/* 機能編 7-1-14	押し込まれる（円が縮小）　*/
/*===================================*/

.pushcircle {
  /*周囲の線の起点とするためrelativeを指定*/
  position: relative;
  /*円の形状*/
  outline: none;
  /*天地中央にテキストを配置*/
  display: flex;
  align-items: center;
  justify-content: center;
}

/*内側の線*/
.pushcircle:after {
  content: "";
  /*絶対配置で線の位置を決める*/
  position: absolute;
  top: 50%;
  left: 50%;
  /*線の形状*/
  width: 90%;
  height: 90%;
  border-radius: 10px;
  transform: translate(-50%, -50%) scale(1.1);
  /*アニメーションの指定*/
  transition: .3s ease;
}

.sub-btn-list li:first-child a {
  background: #6ea924;
}

.sub-btn-list li:last-child a {
  background: #457703;
}

.sub-btn-list li:first-child a.pushcircle:after {
  border: 1px solid #6ea924;
}

.sub-btn-list li:last-child a.pushcircle:after {
  border: 1px solid #457703;
}

/*hoverをしたら枠線が小さくなる*/
.sub-btn-list li:first-child a.pushcircle:hover:after,
.sub-btn-list li:last-child a.pushcircle:hover:after {
  transform: translate(-50%, -50%) scale(1);
  border-color: rgba(255, 255, 255, 0.8);
}

/*===========================================================*/
/*ハンバーガーメニュー予定ここまで*/
/*===========================================================*/



/* lets enjoy sports のところ*/

.topText {
  position: fixed;
  z-index: 2;
  top: 40%;
  left: 40%;
  transform: translate(-40%, -40%);
  text-align: center;
  font-size: 5em;
  line-height: 1.4;
  text-transform: uppercase;
  font-family: "BBH Sans Bogle", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.topText span.bgLRextend::before {
  background: #333;
}

@media screen and (max-width:550px) {
  .topText {
    font-size: 2.2rem;
  }
}

@media screen and (max-width:380px) {
  .topText {
    font-size: 1.8rem;
  }
}


/* main-area */

#main-area h2 {
  padding-top: 70px;
  padding-bottom: 70px;
  text-align: center;
  text-transform: uppercase;
  font-size: 3rem;
  font-family: "Bruno Ace SC", sans-serif;
  font-weight: 400;
  font-style: normal;
}

@media screen and (max-width:768px) {

  #main-area h2 {
    font-size: 2rem;
  }
}

/* basicinfo */
#basicinfo {
  background: #fff;
  padding-bottom: 90px;
  width: 70%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  transform: translate3d(0, 0, 0);
}

#basicinfo .tab li {
  flex-basis: 48%;
}



/*ニュース1行の周りの余白*/

#NewsContainer {
  width: 75vw;
  margin: 0 auto;
  padding: 80px;
}

.news li {
  display: block;
  background: #fff;
  padding: 30px;
  border-left: 30px solid #bdd4e8;
}

/*日付*/
.news span {
  display: inline-block;
  font-size: 0.8rem;
  margin-right: 10px;
  color: #777;
}

/*768px以下の見た目 ※1行のままにしたい場合は不要　*/


#using .usingInfo {
  background: #fff;
  margin-top: 100px;
  width: 80%;
  margin: 0 auto;
  display: flex;
  justify-content: space-evenly;
  transform: translate3d(0, 0, 0);
}

#using .usingInfo li {
  flex-basis: 20%;

}

#using .usingInfo li img {
  width: 100%;
  border-radius: 50%;
  transition-duration: 0.3s;
  transform: scale(1);
  transition: .3s ease-in-out;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.3);
}

#using .usingInfo li img:hover {
  border-radius: 10%;
  transition-duration: 0.3s;


}

/* 料金表 */
.taxTable {
  border-collapse: collapse;
  width: 90%;
  margin: 40px auto;
  text-align: center;
}

.taxTableTh {
  color: #fff;
  background-color: rgba(70, 128, 235);
  margin-bottom: 1vh;
  font-size: 1.2em;
}


.taxTableTh tr th {
  padding: 20px;
  border: 2px solid rgb(255, 255, 255);
}

.taxTableTb tr td {
  border: 2px solid rgb(255, 255, 255);
  padding: 20px 5px 20px 5px;
  line-height: 1.2;
}

.taxTableTbTr {
  background-color: rgba(170, 167, 167, 0.1);
}

.taxTableTbTr2 {
  background-color: rgba(170, 167, 167, 0.2);
}

.subText {
  font-size: 14px;
  display: inline-block;
  padding: 3px 20px;
  margin-left: 30px;
  background-color: #fff;
  border-radius: 20px;
  color: #1f60e2;
}

/* popup施設料金表のところ */

.taxTableInfo {
  border-collapse: collapse;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

.mtgroom1 {
  background-color: #fff;
}

.mtgroom2 {
  background-color: #1f60e2;
  color: #fff;
  font-weight: bold;
  display: inline-block;
  padding: 10px 30px;
  border-radius: 20px;
  margin-bottom: 10px;
}

/*タイムライン全体の設定*/
.maininfoArea {
  flex-basis: 45%;

  margin: 50px auto;
  padding: 0 30px;
}

.maininfoArea li {
  /*線の起点とするためrelativeを設定*/
  position: relative;
  list-style: none;
  padding: 0 0 20px 0;
}

.maininfoArea dl {
  margin: 0 0 20px 3em;
}

.maininfoArea dt {
  font-size: 55px;
  vertical-align: top;
}

.maininfoArea dd {
  font-size: 24px;
}


/*絶対配置で線を設定*/
.borderLine {
  /*線の位置*/
  position: absolute;
  left: 0.5em;
  top: 40px;
  width: 4px;
  /*線の太さ*/
  height: 0;
  /*はじめは高さを0に*/
  background: #666;
}

/*タイムラインの見出し横の丸の位置と形状*/
.maininfoArea li::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 0;
  width: 20px;
  height: 20px;
  background: #666;
  border-radius: 50%;
}

.maininfoArea li::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: 0;
  width: 20px;
  height: 20px;
  background: #666;
  border-radius: 50%;
}

/* =========================
   タブ本体
   ========================= */

.tabArea {
  flex-basis: 55%;
  margin: 50px auto;
  padding: 0 30px;
}

/* タブ見出し（料金表 / 今月の予約表） */
.tab {
  display: flex;
  justify-content: space-between;
  list-style: none;
  margin: 0;
  padding: 0;
}

/* タブ内のアイコン画像 */
.tab li a img {
  width: 20%;
  margin-right: 5px;
  vertical-align: middle;
}

/* liに.activeが付いたとき（JSで制御） */
.tab li.active a {
  transition: all 0.8s ease-out 0ms;
}


/*== 下線が伸びて背景に変わる　*/

.tabBtn {
  /*線の基点とするためrelativeを指定*/
  position: relative;
  /*ボタンの形状*/
  color: #5c5c5c;
  padding: 10px 30px;
  display: inline-block;
  text-decoration: none;
  outline: none;
  font-size: 24px;
}

/*テキストの設定*/
.tabBtn span {
  /*テキストを前面に出すためz-indexの値を高く設定*/
  position: relative;
  z-index: 2;
}

.tabBtn:hover span {
  color: #121212;
}

/*線の設定*/
.tabBtn::after {
  content: '';
  /*絶対配置で線の位置を決める*/
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 0;
  /*線の形状*/
  background: var(--main);
  width: 100%;
  height: 3px;
  /*アニメーションの指定*/
  transition: all 0.3s ease-in-out;
}

/*線が伸びて背景に*/
.tabBtn:hover::after {
  height: 100%;
  border-radius: 20px 20px 0 0;
}

/* aタグ共通ボタンスタイル */



/* =========================
   「線 → 塗り」アニメーション
   ========================= */

.borderbottom::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
  width: 100%;
  height: 0;
  background-color: var(--main);
  transition: all 0.3s;
}

/* hoverすると下から上に背景が伸びる */
.borderbottom:hover::before {
  height: 100%;
}

#tax,
#Schedule {
  border-bottom: 3px solid var(--main);
}

/* =========================
   カレンダー画像エリア
   ========================= */

.calendar {
  width: 90%;
  height: 600px;
  margin: 0 auto;
  overflow: hidden scroll;
}

/* =========================
   タブ切り替え対象エリア
   ========================= */

.area {
  display: none;
  /* 最初は非表示 */
  opacity: 0;
  /* アニメーション用に透明から開始 */
  padding: 50px 20px;

}

/* JSで .is-active を付けて表示 */
.area.is-active {
  display: block;
  animation-name: displayAnime;
  animation-duration: 0.8s;
  animation-fill-mode: forwards;

}

/* ふわっと表示するアニメーション */
@keyframes displayAnime {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* =========================
   料金表アコーディオン全体
   ========================= */

.accordionTax {
  list-style: none;
  width: 100%;
  margin: 0 auto;
  padding: 0;
}

.accordionTax>li {
  margin-bottom: 10px;
}

/* 開いているときは「＋」を「−」にする用 */
.accordionTax>li.is-open .accordionTax-q-icon::after {
  transform: rotate(0deg);
}

/* =========================
     見出し部分（ボタン）
     ========================= */

.accordionTax-q button {
  display: block;
  position: relative;
  width: 100%;
  border: none;
  background: none;
  color: inherit;
  font: inherit;
  text-align: left;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  transition: opacity 400ms;
  background-color: rgb(219, 234, 254);
  border-radius: 10px;
}

@media print,
(min-width: 768px) {
  .accordionTax-q button {
    padding: 25px 50px;
  }

  .accordionTax-q button:hover,
  .accordionTax-q button:active {
    opacity: 0.7;
  }
}

@media screen and (max-width: 767px) {
  .accordionTax-q button {
    padding: 20px 36px 20px 50px;
  }
}

/* タイトルテキスト（「プール利用について」など） */
.accordionTax-q-content {
  display: block;
  font-weight: 400;
  line-height: 1.6;
}

.accordionTax-q-content img {
  width: 10%;
  margin-right: 10px;
  vertical-align: middle;
}

@media print,
(min-width: 768px) {
  .accordionTax-q-content {
    font-size: 20px;
  }
}

@media screen and (max-width: 767px) {
  .accordionTax-q-content {
    font-size: 16px;
  }
}

/* =========================
     ＋ アイコン
     ========================= */

.accordionTax-q-icon {
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);

}

@media print,
(min-width: 768px) {
  .accordionTax-q-icon {
    right: 20px;
    width: 20px;
    height: 20px;
  }
}

@media screen and (max-width: 767px) {
  .accordionTax-q-icon {
    right: 10px;
    width: 16px;
    height: 16px;
  }
}

/* 横線＋縦線で「＋」を作る */
/* .accordionTax-q-icon::before,
  .accordionTax-q-icon::after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: #000;
  }
  
  @media print, (min-width: 768px) {
    .accordionTax-q-icon::before,
    .accordionTax-q-icon::after {
      top: 9px;
    }
  }
  
  @media screen and (max-width: 767px) {
    .accordionTax-q-icon::before,
    .accordionTax-q-icon::after {
      top: 7px;
    }
  }
  
  .accordionTax-q-icon::after {
    transform: rotate(90deg);          
    transition: transform 400ms;
  } */

/* =========================
     開閉エリア
     ========================= */

.accordionTax-a {
  display: none;
  /* JSでblockに切り替え */
  overflow: hidden;
}

@media print,
(min-width: 768px) {
  .accordionTax-a-inner {
    padding: 5px 0 30px;
  }
}

@media screen and (max-width: 767px) {
  .accordionTax-a-inner {
    padding: 5px 0 25px;
  }
}

.accordionTax-a-body {
  position: relative;
}

/* 今回のHTMLでは .accordionTax-a-content の中身は table だけなので
     p用のスタイルは削除 */

/* =========================
     「閉じる」ボタン
     ========================= */

.accordionTax-a-close {
  line-height: 1.5;
}

@media print,
(min-width: 768px) {
  .accordionTax-a-close {
    width: 160px;
    margin: 25px auto 0;
    font-size: 16px;
  }
}

@media screen and (max-width: 767px) {
  .accordionTax-a-close {
    width: 140px;
    margin: 20px auto 0;
    font-size: 15px;
  }
}

.accordionTax-a-close button {
  display: block;
  position: relative;
  width: 100%;
  border: none;
  background: #000;
  color: #fff;
  font: inherit;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  transition: opacity 400ms;
  border-radius: 7px;
}

@media print,
(min-width: 768px) {
  .accordionTax-a-close button {
    height: 45px;
    text-align: center;
  }

  .accordionTax-a-close button:hover,
  .accordionTax-a-close button:active {
    opacity: 0.5;
  }
}

@media screen and (max-width: 767px) {
  .accordionTax-a-close button {
    height: 40px;
    text-align: center;
  }
}

.accordionTax-a-close button>span {
  display: inline-block;
  position: relative;
  padding-left: 17px;
  vertical-align: top;
}

/* 左側の「×」アイコン部分 */
.accordionTax-a-close button>span>span {
  display: block;
  position: absolute;
  left: -5px;
  top: 50%;
  width: 13px;
  height: 13px;
  margin-top: -6.5px;
  transform: rotate(45deg);
}

.accordionTax-a-close button>span>span::before,
.accordionTax-a-close button>span>span::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 6px;
  width: 100%;
  height: 1px;
  background: #fff;
}

.accordionTax-a-close button>span>span::after {
  transform: rotate(90deg);
}


/*# sourceMappingURL=accordionTax.css.map */


.pdfDown {
  margin: 30px auto;
  text-align: center;
}

.btnchangeline {
  /*線の基点とするためrelativeを指定*/
  position: relative;
  /*ボタンの形状*/
  color: #333;
  padding: 10px 30px;
  display: inline-block;
  text-decoration: none;
  outline: none;
  /*アニメーションの指定*/
  transition: all 0.3s ease-in-out;
}

/*線の設定*/
.btnchangeline::before {
  content: '';
  /*絶対配置で線の位置を決める*/
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  /*線の形状*/
  width: 100%;
  height: 100%;
  border-top: 1px solid #666;
  border-bottom: 1px solid #666;
  /*はじめは透過0に*/
  opacity: 0;
  transform: scale(0, 1);
  /*アニメーションの指定*/
  transition: all 0.3s;
}

/*背景の設定*/
.btnchangeline::after {
  content: '';
  /*絶対配置で背景の位置を決める*/
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  /*背景の形状*/
  width: 100%;
  height: 100%;
  background-color: #333;
  /*アニメーションの指定*/
  transition: all 0.3s;
}

/*hoverした際の背景と線の形状*/
.btnchangeline:hover::before {
  opacity: 1;
  /*不透明に*/
  transform: scale(1, 1);
  /*X方向に線を伸ばす*/
}

.btnchangeline:hover::after {
  opacity: 0;
  /*透過0に*/
  transform: scale(0, 1);
  /*X方向に背景を縮小*/
}

/*テキストの設定*/
.btnchangeline span {
  /*テキストを前面に出すためz-indexの値を高く設定*/
  position: relative;
  z-index: 2;
  /*テキストの形状*/
  color: #fff;
  /*アニメーションの指定*/
  transition: all 0.3s;
}

/*hoverした際のテキストの形状*/
.btnchangeline:hover span {
  letter-spacing: 2px;
  color: #333;
}







/* faq */

#faq {
  margin: 0 0 200px 0;
}

#faq h2 {
  text-align: center;
  margin: 0 0 100px 0;
}


#faq h2 span.bgLRextend::before {
  background: #333;
}

.faq-bg {
  position: relative;
  height: 55vh;
  background: url("../img/pict_05.jpg") no-repeat center;
  background-size: cover;
  margin: 0 0 200px 25%;
}

.faq-bg::after {
  content: '';
  position: absolute;
  top: 20%;
  left: -32%;
  width: 100%;
  height: 55vh;
  background: #f3f3f3;
  z-index: -1;
}


/* contact */
/* 
#contact {
  padding: 0 0 200px 0;
}

#contact h2 {
  text-align: center;
  margin: 0 0 100px 0;

}


#contact .form-list {
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
}

#contact input,
#contact button,
#contact textarea,
#contact select {
  margin: 0;
  padding: 0;
  border: none;
  outline: none;
  background: none;
  font-size: 16px;
}

#contact .form-list input[type='text'],
#contact .form-list input[type='email'],
#contact .form-list textarea {
  width: 100%;
  border: 1px solid #666;
  background: #fff;
  padding: 10px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

#contact .form-list input[type='text'],
#contact .form-list input[type='email'] {
  height: 50px;
}

#contact .submit-btn {
  width: 152px;
  margin: 0 auto;
}

#contact input[type='submit'] {
  border: 2px solid #333;
  color: #333;
  text-align: center;
  padding: 5px 20px;
  width: 152px;
  margin: 0 auto;
  transition: all .3s;
}

#contact input[type='submit']:hover {
  background: #333;
  color: #fff;
}

#contact .form-list dl {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 0 0 20px 0;
}

#contact .form-list dt {
  width: 30%;
}

#contact .form-list dd {
  width: 66%;
}

#contact .form-list textarea {
  height: 200px;
} */



/* noteとfacebookのアイコン設置 */


.sns-fixed {
  position: fixed;
  bottom: 60px;
  /* 画面下から20px */
  right: 40px;
  /* 画面右から20px */
  display: flex;
  flex-direction: column;
  gap: 25px;
  /* アイコン間のすき間 */
  z-index: 9999;
  /* 最前面に表示 */
}

.sns-fixed a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #fff;
  color: #333;
  font-size: 22px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
  transition: all 0.3s;
}

.sns-fixed a:hover {
  transform: scale(1.2);
}

/* footer */

#footer {
  /* padding: 100px 0; */
  border-top: 1px solid #333;
  text-align: center;
  background: #fff;
  position: relative;
  text-transform: uppercase;
}

.copyright {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);

}

#footer small {
  color: #fff;
  font-size: 15px;
  letter-spacing: -0.05em;
  font-weight: bold;

}

#wrapper {
  height: 25vh;

}

.footerAd address p {
  line-height: 1.8;
}

.footerLogo img {
  max-width: 30%;
  margin-top: 80px;
  margin-bottom: 50px;
}