@charset "UTF-8";

/* CSS Document */
/*-------------------------------------------------------------------------------------
PC用レイアウト（768px以上スクリーン）
----------------------------------------------------------------------------------------*/
/*--------------------------------------------------
共通設定(PC)
-----------------------------------------------------*/
/*body全体の初期スタイル調整*/
body {
  font-size: 62.5%;
  /*emの計算をしやすくするための定番設定*/
  font-family: "游ゴシック体", "游ゴシック", "Yu Gothic", "sans-serif";
  font-weight: normal;
  color: #000;
}

/*リンク文字の設定*/
a {
  text-decoration: none;
}

a:link, a:visited {
  color: #fff;
}

a:hover, a:active {
  color: #fff;
}

/*ブラウザのCSSをリセット*/
p {
  margin: 0 !important;
  padding: 0 !important;
}

/*セクションエリアの共通設定*/
section {
  clear: both;
  overflow: auto
}

/*--------------------------------------------------
見出しタグ設定（PC）
-----------------------------------------------------*/
h2 {
  margin: 0.5em 0em;
  font-size: 2em;
  font-weight: bold;
  text-align: center;
}

h3 {
  margin: 0.5em 0em;
  padding: 0.3em 0.6em;
  font-size: 1.6em;
  font-weight: bold;
  border-left: 8px solid #00abbb;
  border-bottom: 1px dotted #00abbb;
}

h4 {
  font-size: 1.8em;
  font-weight: bold;
}

h5 {
  margin: 0.5em 0em;
  padding: 0.1em;
  font-size: 1.2em;
  font-weight: bold;
  border-bottom: 1px dotted #ccc;
}

p {
  text-align: justify;
}

/*--------------------------------------------------
全体レイアウト／背景設定（PC）
-----------------------------------------------------*/
/*全体エリア（全体背景を設定するにはここ）*/
.main {
  background-image: url(../images/bg-stone-tate.jpg);
  background-size: contain;
}

/*記事(ボディ)エリア*/
.article {
  background-color: #fff;
  border-left: 1px solid #ccc;
  border-right: 1px solid #ccc;
  font-size: 2.3em;
}

/*記事(ボディ)エリアの行間*/
.article p {
  line-height: 1.6;
}

/*カラム全体の幅を変更する*/
.article, .top_image_in {
  width: 750px;
  margin: 0 auto;
  /*真ん中に要素を置きたいときに使う*/
}

.font_01 {
  font-size: 1.9em;
}

.underline {
  background: linear-gradient(transparent 30%, #fbf654 10%);
}

.bold {
  font-weight: 600;
}


/*--------------------------------------------------
ヘッダー設定
-----------------------------------------------------*/

header {
  position: fixed;
  width: 100%;
  padding: 1.1rem;
  background-color: #1a1a1a;
  box-shadow: 0 2px 2px rgb(0 0 0 / 10%);
  z-index: 80;
}

/* スマホ用のCSS */
@media screen and (max-width: 768px) {

header{
  padding: 0.3rem;
}

}


.header_nav {
  display: flex;
  justify-content: space-between;
  height: 100%;
  margin: 0 auto;
  width: 1100px;
}

.header_cta {
  display: flex;
}

.header_cta a {
  width: 125px;
  font-size: 14px;
  padding: 15px 8px;
  margin-left: 10px;
}

.btn_contact {
  background: #fff;
  border: 2px solid #e44d5c;
  color: #e44d5c;
  text-decoration: none;
}

.btn_dl {
  color: #fff;
  border: 2px solid #a58142;
  background-color: #a58142;
}

.header_cta a:hover {
  opacity: 0.5;
  color: #fff;
}

.topbg {
  background-color: #e44d5c;
}

.top {
  display: block;
  padding: 10px 0;
  font-size: 18px;
  font-weight: bold;
  color: #fff;
}

.hamburger-menu {
  display: none;
}

.main-nav {
  display: flex;
}

.main-nav li {
  color: #ffffff;
  margin-left: 18px;
}

.main-nav a {
  width: auto;
  font-size: 15px;
}

.main-nav a:hover {
  border-bottom: 2px solid #fff;
  padding-bottom: .5rem;
  background: none;
}

.main-nav a::before {
  content: '';
}


.top {
  font-size: 13px;
}

.logo {
  width: 18rem;
}

/* スマホ用のCSS */
@media screen and (max-width: 768px) {

.main-nav{
  display: none;
}

.hamburger-menu {
  display: block;
}

/* ハンバーガーメニュー */
.menu-btn {
  position: fixed;
  top: 10px;
  right: 10px;
  display: flex;
  height: 40px;
  width: 40px;
  justify-content: center;
  align-items: center;
  z-index: 90;
  background-color: #9d7f4a;
}

.menu-btn span,
.menu-btn span:before,
.menu-btn span:after {
  content: '';
  display: block;
  height: 3px;
  width: 25px;
  border-radius: 3px;
  background-color: #fff;
  position: absolute;
}

.menu-btn span:before {
  bottom: 8px;
}

.menu-btn span:after {
  top: 8px;
}

/* ボタンタップ時はｘにする */
#menu-btn-check:checked~.menu-btn span {
  background-color: rgba(255, 255, 255, 0);
  /*メニューオープン時は真ん中の線を透明にする*/
}

#menu-btn-check:checked~.menu-btn span::before {
  bottom: 0;
  transform: rotate(45deg);
}

#menu-btn-check:checked~.menu-btn span::after {
  top: 0;
  transform: rotate(-45deg);
}

#menu-btn-check {
  display: none;
}

/* spメニュー装飾 */
.menu-content {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 80;
  background-color: #2aab9f;
}

.menu-content ul {
  padding: 50px 10px;
}

.menu-content ul li {
  border-bottom: solid 1px #ffffff;
  list-style: none;
}

.menu-content ul li a {
  display: block;
  width: 100%;
  font-size: 15px;
  box-sizing: border-box;
  color: #f2fbfb;
  text-decoration: none;
  padding: 9px 15px 10px 0;
  position: relative;
}

.menu-content ul li a::before {
  content: "";
  width: 7px;
  height: 7px;
  border-top: solid 2px #ffffff;
  border-right: solid 2px #ffffff;
  transform: rotate(45deg);
  position: absolute;
  right: 11px;
  top: 16px;
}

.menu-content li a:hover {
  color: #fff;
  text-decoration: underline;
}

/* ボタン押していないときは非表示*/
.menu-content {
  width: 100%;
  height: 80%;
  position: fixed;
  top: 0;
  left: 100%;
  /*leftの値を変更してメニューを画面外へ*/
  z-index: 80;
  background-color: #9d7f4a;
  transition: all 0.5s;
  opacity: 0.9;
  /*アニメーション設定*/
}

/* ボタンタップで表示 */
#menu-btn-check:checked~.menu-content {
  left: 0;
  /*メニューを画面内へ*/
}
}

.main-nav {
  margin: 0px;
  padding: 0px;
  list-style: none;
}

.drop-down{
   position: relative;
}

.drop-down a {
    display: block;
    text-align: center;
    margin: auto;
}

.child {
    visibility: hidden;
    width: 250%;
    position: absolute;
    left: 0px;
}

.child li{
  line-height: 5em;
}

.drop-down:hover .child {
    visibility: visible;
    background: #515151;
}

/*--------------------------------------------------
ファーストビュー設定
-----------------------------------------------------*/
.top_image {
  background-repeat: no-repeat;
  background-position: top center;
  height: auto;
}

.top_image_in img {
  width: 100%;
}

.top_sp_image_in {
  display: none;
}

/*--------------------------------------------------
sectionの設定
-----------------------------------------------------*/
.txt_box {
  padding: 0em 3em;
}

.txt_box_tb_3em {
  margin: 3em 0;
  padding: 0em 1.5em;
}

.txt_box_tb_3em_bottom {
  margin: 3em 0 0 0;
  padding: 0em 1.5em;
}

.txt_box_tb_31em {
  margin: 3em 0 1em 0;
  padding: 0em 1.5em;
}

/* 下だけ0.5 */
.txt_box_tb_b05 {
  margin: 3em 0 0.5em 0;
  padding: 0em 1.5em;
}

.txt_right {
  float: right;
  width: 45%;
  margin-left: 1em;
}

.txt_left {
  float: left;
  width: 45%;
  margin-right: 1em;
}

.accordion {
  max-width: 100%;
  padding: 1em 3em 2em 3em;
}

.taisaku {
  background-color: #214b7d;
}

/*--------------------------------------------------

ボタンの設定

-----------------------------------------------------*/
.relative {
  position: relative;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0 auto;
}

.absolute {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.yureru-j {
  animation: yureru-j 2s infinite;
}

@keyframes yureru-j {
  0% {
    transform: translate(0px, 2px);
  }

  5% {
    transform: translate(0px, -2px);
  }

  10% {
    transform: translate(0px, 2px);
  }

  15% {
    transform: translate(0px, -2px);
  }

  20% {
    transform: translate(0px, 2px);
  }

  25% {
    transform: translate(0px, -2px);
  }

  30% {
    transform: translate(0px, 0px);
  }
}

/*------------------------------

ここからGIF画像のCSS

------------------------------*/
.gif {
  margin: 1em 0 4em 0;
  padding: 0em 1.5em;
  text-align: center;
}

/*------------------------------

ここからyoutube画像のCSS

------------------------------*/
.youtube {
  margin: 1em 0 2em 0;
  padding: 0em 1.5em;
  position: relative;
  width: 100%;
  /*横幅いっぱいにwidthを指定*/
  height: 0px;
  /*高さはpaddingで指定するため0*/
  padding-top: 56.25%;
  /*高さを指定（padding-bottomでも同様)*/
}

.youtube iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/*------------------------------

ここからアコーディオンのCSS

------------------------------*/
/* チェックボックスは非表示 */
.accordion-hidden {
  display: none;
}

/* Question部分 */
.accordion-open {
  display: block;
  padding: 10px 10px 10px 70px;
  background: #00abbc;
  cursor: pointer;
  margin: 5px 0;
  font-weight: 700;
  position: relative;
  /* 変更部分 */
  color: white;
  border-radius: 15px;
}

/* 開閉状態を示すアイコン+の作成 */
.accordion-open::before, .accordion-open::after {
  content: '';
  width: 20px;
  height: 3px;
  background: #fff;
  position: absolute;
  top: 50%;
  right: 5%;
  transform: translateY(-50%);
}

/* 一本は縦にして+を作る */
.accordion-open::after {
  transform: translateY(-50%) rotate(90deg);
  transition: .5s;
}

/* QとAのデザイン */
.accordion-open span {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 100%;
  background: #00abbc;
  position: absolute;
  text-align: center;
  left: 0;
  top: 0;
  color: white;
  border-radius: 15px;
}

.accordion-close span {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 100%;
  background: #00abbc;
  position: absolute;
  text-align: center;
  left: 0;
  top: 0;
  color: white;
  border-radius: 0 0 0 15px;
}

/* アコーディオンが開いたら縦棒を横棒にして-にする */
.accordion-hidden:checked+.accordion-open:after {
  transform: translateY(-50%) rotate(0);
}

/* Answer部分 */
.accordion-close {
  display: block;
  height: 0;
  /* 要素の高さは0 */
  overflow: hidden;
  /* 非表示 */
  padding: 0 0 0 60px;
  opacity: 0;
  transition: 0.5s;
  /* 表示速度の設定 */
  position: relative;
  border-radius: 0 0 15px 15px;
}

/* チェックボックスにチェックが入ったらAnswer部分を表示する */
.accordion-hidden:checked+.accordion-open+.accordion-close {
  height: auto;
  opacity: 1;
  padding: 10px 10px 10px 70px;
  background: #fff;
  font-weight: 100;
  border-right: solid 1px #00abbc;
  border-bottom: solid 1px #00abbc;
  border-left: solid 1px #00abbc;
}

.pay_box {
  padding: 2em;
}

.pay_h1 {
  background-color: #114a65;
  color: white;
  font-size: 2.2em;
  padding: 0.2em;
  text-align: center;
  margin-bottom: 0.8em;
}

.pay_h2 {
  border-left: 8px solid #114a65;
  border-bottom: 1px dotted #114a65;
  color: #114a65;
  padding: 0.2em 0.3em 0.2em 0.5em;
  margin-top: 0.5em;
  margin-bottom: 0.5em;
  font-weight: bold;
  font-size: 1.3em;
}

.pay_h3 {
  font-size: 0.8em;
}

.card_img {
  width: 45%;
}

/*--------------------------------------------------
テーブル設定
-----------------------------------------------------*/
table {
  width: 100%;
  border-top: 1px solid #ccc;
  border-left: 1px solid #ccc;
  margin: 1em 0em;
}

th, td {
  padding: 0.5em;
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}

th {
  background-color: #f0f0f0;
  font-weight: bold;
  text-align: center;
}

td {
  background-color: #fff;
  text-align: left;
}

/*スマホでは行が列になるテーブルタグ*/
.table_style_01 {
  text-align: left;
  vertical-align: middle;
}

/*--------------------------------------------------
カルーセル
-----------------------------------------------------*/
/*スライダー001*/
.slider-001 {
  width: 100%;
  position: relative;
  margin: 6% auto 0 auto;
  overflow: hidden;
  display: flex;
}

.slide-001 {
  width: 100%;
  flex-shrink: 0;
  position: relative;
  top: 0;
  left: 0;
  transition: all 0.6s ease-in-out;
}

.slide-content-001 {
  width: 100%;
  background-color: #c8e4ff;
}

.slide-content-001 img {
  width: 100%;
  object-fit: cover;
  height: 100%;
}

.prev-001,
.next-001 {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -28px;
  color: white;
  background-color: #de1013;
  font-weight: bold;
  font-size: 18px;
  transition: all 0.2s ease;
  border-radius: 0 4px 4px 0;
  user-select: none;
}

.next-001 {
  right: 0;
  border-radius: 4px 0 0 4px;
}

.prev-001:hover,
.next-001:hover {
  background-color: #de1013;
}

.dots {
  height: 3px;
  padding: 0;
  position: absolute;
  bottom: 22px;
  width: 100%;
  text-align: center;
}

.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 10px 4px;
  background-color: #de1013;
  border-radius: 50%;
  display: inline-block;
  transition: all 0.2s ease;
}

.dot:hover {
  background-color: rgba(107, 182, 255, 0.8);
}

.numbertext {
  display: none;
}

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

  /* スマホ用のCSS */
  .prev-001,
  .next-001 {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 2%;
    margin-top: -28px;
    color: white;
    background-color: #de1013;
    font-weight: bold;
    font-size: 18px;
    transition: all 0.2s ease;
    user-select: none;
  }
}

/*--------------------------------------------------
スマホ下部 表示ボタン
-----------------------------------------------------*/
#page-top {
  position: fixed;
  bottom: 1px;
  font-size: 100%;
  z-index: 100;
  left: 10vw;
}

#page-top ul {
  list-style: none;
}

#page-top img {
  width: 100%;
}

#page-top a {
  text-decoration: none;
  color: #fff;
  padding: 0;
  text-align: center;
  display: block;
  border-radius: 5px;
}

#page-top a:hover {
  text-decoration: none;
  opacity: 0.8;
}

.sp-none {
  display: block;
}

.pc-none {
  display: none;
}

/*--------------------------------------------------
バナーエリアの設定
-----------------------------------------------------*/

.banner{
  background-size: contain;
  text-align: center;
  padding: 4% 0;
}

.banner a:hover {
  text-decoration: none;
  opacity: 0.8;
}

.banner img {
  width: 80%;
}

/* スマホ用のCSS */
@media screen and (max-width: 768px) {

  .banner img {
    width: 90%;
  }

}


/*--------------------------------------------------
POINTの設定
-----------------------------------------------------*/

.point{
  background-color: #f5f5f5;
  text-align: center;
}

.recommend{
  padding-top: 30px;
  margin-top: -30px;
}

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

.price{
  padding-top: 30px;
}


/*--------------------------------------------------
価格の設定
-----------------------------------------------------*/

.waku{
  border: double 3px #9d7f4a;
  padding: 4%;
}

.waku-set{
  text-align: center;
  border: solid 10px #9a011c;
  margin: 1.5em;
  padding-bottom: 1.5em;
}

.waku-1set{
  text-align: center;
  border: solid 10px #9d7f4a;
  margin: 1.5em;
  padding-bottom: 1.5em;
}

.waku-set a:hover {
  text-decoration: none;
  opacity: 0.8;
}

  .waku-1set a:hover {
  text-decoration: none;
  opacity: 0.8;
}

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

  /* スマホ用のCSS */
  *, *:before, *:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
  }

  .sp-none {
    display: none;
  }

  .pc-none {
    display: block;
  }

  .left {
    text-align: left;
  }

  .right {
    text-align: right;
  }

  #page-top {
    left: 0;
  }

  #page-top ul.pc-none {
    display: flex;
    flex-direction: row;
    padding: 0;
    margin-bottom: -2px;
  }
}

/*--
	#page-top ul.pc-none li.right{
		margin-left: -11vw;
	}
--*/
/*--------------------------------------------------
プライバシーポリシー
-----------------------------------------------------*/
.privacy {
  padding: 1em 2em;
}

/*--------------------------------------------------
お問い合わせ
-----------------------------------------------------*/
.contact_mian {
  padding: 1em 2em;
}

/*テーブルタグ*/
.main-contents table {
  margin-bottom: 1.5em;
  margin: 0 auto;
  border-collapse: separate;
  border-spacing: 0px 5px;
}

.main-contents th, .main-contents td {
  background-color: #f6f6f6;
  padding: 10px;
  text-align: left;
  border-left: 1px solid #fff;
}

.main-contents th {
  background: #121779;
  vertical-align: middle;
  text-align: center;
  overflow: visible;
  position: relative;
  color: #fff;
  font-weight: normal;
}



/*--------------------------------------------------
フッター上会社情報
-----------------------------------------------------*/

.bg-gray{
  background-image: url(../images/bg-black.jpg);
  margin: 0;
  padding:2em;
  color: #fff;
}


@media screen and (max-width: 768px) {
/* スマホ用のCSS */
.bg-gray{
  font-size: 0.8em;
}

}

/*--------------------------------------------------
フッター部分
-----------------------------------------------------*/
.footer {
  background-color: #1a1a1a;
  padding: 2em 0em;
  line-height: 4em;
  text-align: center;
  font-size: 1.4em;
  color: #fff;
  margin-bottom: -5em;
}

.footer a {
  color: #fff;
}

.footer p {
  text-align: center !important;
}


/*--------------------------------------------------
スマホ画面下ボタン設定
-----------------------------------------------------*/

/*メニューをページ下部に固定*/
#sp-fixed-menu {
  position: fixed;
  width: 100%;
  bottom: 0px;
  font-size: 0;
  opacity: 0.9;
  z-index: 99;
}

/*メニューを横並びにする*/
#sp-fixed-menu ul {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
}

#sp-fixed-menu li {
  justify-content: center;
  align-items: center;
  width: 34%;
  padding: 0;
  margin: 0;
  font-size: 13px;
  border-right: 1px solid #fff;
}

/*左側メニュー*/
#sp-fixed-menu li:first-child {
  background: #9d7f4a;
}

/*真ん中メニュー*/
#sp-fixed-menu li:nth-child(2) {
  background: #9a011c;
}

/*右側メニュー*/
#sp-fixed-menu li:last-child {
  background: #3ba34f;
}

/*ボタンを調整*/
#sp-fixed-menu li a {
  color: #fff;
  text-align: center;
  display: block;
  width: 100%;
  padding: 12px 3px;
}

#sp-fixed-menu li a:hover {
  text-decoration: underline;
}

.btn i {
  padding-right: 5px;
}



/*--------------------------------------------------
アコーディオン
-----------------------------------------------------*/
/*ボックス全体*/
.accbox {
  padding: 0;
  max-width: 100%;
  /*最大幅*/
}

/*ラベル*/
.accbox label {
  display: block;
  margin: 1px 0;
  padding: 13px;
  color: #9d7f4a;
  font-weight: bold;
  background: #e0deca;
  cursor: pointer;
  transition: all 0.5s;
}

/*ラベルホバー時*/
.accbox label:hover {
  background: #9d7f4a;
  color: #fff;

}

/*チェックは隠す*/
.accbox input {
  display: none;
}

/*中身を非表示にしておく*/
.accbox .accshow {
  height: 0;
  padding: 0;
  overflow: hidden;
  opacity: 0;
  transition: 0.8s;
}

/*クリックで中身表示*/
.cssacc:checked+.accshow {
  height: auto;
  padding: 30px;
  background: #f5f5f5;
  opacity: 1;
  font-size: 90%;
}

/*--------------------------------------------------
戻るボタンでポップアップ表示
-----------------------------------------------------*/

.popup-area {
    display:none;
    width:80vw;
    background:#fff;
    padding:20px;
    position: fixed;
    z-index: 9999;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    text-align: center;
    border-radius:8px;
    box-shadow: 0 0 4px 4px rgba(0,0,0,0.4);
}
@media screen and (min-width: 980px) {
        .popup-area {
        width:auto;
        max-width: 460px;
    }
}
.popup-area button {
    margin:30px auto 0;
}
.popup-area .icon{
    font-size:3em;
    color:red;
}
/* 背景色 */
.cover-eml {
    background:rgba(0,0,0,0.3);
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 999;
    top:0;
    right:0;
    bottom:0;
    left:0;
}
