﻿@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: underline;
}
a:link, a:visited {
  color: #39f;
}
a:hover, a:active {
  color: #f60;
}
/*ブラウザの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/mainbg.jpg);
  background-size: contain;
}
/*記事(ボディ)エリア*/
.article {
  background-color: #fff;
  border-left: 1px solid #ccc;
  border-right: 1px solid #ccc;
  font-size: 2.5em;
}
/*記事(ボディ)エリアの行間*/
.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: sticky;
  position: -webkit-sticky;
  top: 0;
  z-index: 5000;
  background-color: #fff;
  border-bottom: 1px solid #ccc;
  overflow: auto;
}
/*ヘッダー内部をカラム幅にする*/
.header_inr {
  max-width: 750px;
  margin: 0 auto;
  overflow: hidden;
}
/*ヘッダーのロゴ*/
.header_logo {
  width: 9%;
  float: left;
  margin: 0em;
}
/*ヘッダーの問い合わせボタン*/
.header_mail {
  width: 40%;
  float: right;
  margin: 0.4em;
}
/*ヘッダー内の画像が常に幅100%になるように*/
.header_logo img, .header_mail img, .header_tel img {
  width: 100%;
  margin: 0.5em;
}
/*--------------------------------------------------
ファーストビュー設定
-----------------------------------------------------*/
.top_image {
  background-repeat: no-repeat;
  background-position: top center;
  height: auto;
}
.top_image_in p{
  position: absolute;/*重ねたい子要素にabsolute*/
  top:588%;
  left:26.3%;
 -ms-transform: translate(-80%,-80%);/*ベンダープレフィックス*/
  -webkit-transform: translate(-50%,-50%);/*ベンダープレフィックス*/
  transform: translate(-8.5%,-60%);/*センター寄せの修正*/
  color: #fff;
  font-size: 1.8rem;
  margin: 0!important;/*文字がずれている場合や*/
  padding: 0!important;/*文字が折り返される場合*/
}
.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;}

@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;
}
/*--------------------------------------------------
フッター部分
-----------------------------------------------------*/
.footer {
  background-color: #e12a2d;
  line-height:8em;
  text-align:center;
  font-size: 1.4em;
  color: #fff;
  margin-bottom:-5em;
}
.footer a {
  color: #fff;
}

.footer p{
	text-align: center !important;
	line-height:1em;
	}

/*--------------------------------------------------
アコーディオン
-----------------------------------------------------*/

/*ボックス全体*/
.accbox {
    margin: 1em 0;
    padding: 0;
    max-width: 100%;/*最大幅*/
}

/*ラベル*/
.accbox label {
    display: block;
    margin: 3px 0;
    padding : 25px;
    color :#2f8fcf;
    font-weight: bold;
    background :#a4cbf3;
    cursor :pointer;
    transition: all 0.5s;
}

/*ラベルホバー時*/
.accbox label:hover {
    background :#85baef;
}

/*チェックは隠す*/
.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: #efefef;
    opacity: 1;
    font-size: 90%;
}
