@charset "utf-8";
/*
再利用可能な全てのオブジェクトを記述します。
All objects that are reusable will be written.

接頭辞はComponentの頭文字を取って【c_】とします。
Prefix will take the "Component" first letter and use it as "c_".

ここで指定するのは以下の様なものと予想されます。
You might use the following.
.c_btn/.c_breadclumb/.c_hero/.c_serch/.c_dropdown/
.c_card/.c_feature/.c_overlay/.c_form/.c_thumbnail/.c_box

モディファイヤを使用する場合は接頭辞【is_】をつけ、各コンポーネントの下に記述します。
When using modifier put the prefix "is_" and write it under each component.

フォントサイズはremで指定します。
"rem" will be used for font-size.

//sample
.c_btn {
	display: inline-block;
	padding: 15px 20px;
	border-radius: 5px;
	text-decoration: none;
}
.c_btn:hover { opacity: 0.8; }
.c_btn.is_btn_disable { cursor: inherit; }
.c_btn.is_btn_blue{
	color: rgb(255, 255, 255);
	background: rgb(1, 153, 224) none repeat scroll 0% 0%;
}

↓↓↓↓↓↓コメントアウト表記サンプル Comment out sample ↓↓↓↓↓↓
*/
/*----------------------------------------------
	大くくりコメントアウト large part
---------------------------------------------*/

/*  中くくりコメントアウト middle part
------------------------------------- */

/* 小くくりコメントアウト small part */
/*
↑↑↑↑↑↑コメントアウト表記サンプル Comment out sample ↑↑↑↑↑↑

*/

/*----------------------------------------------
	common
---------------------------------------------*/

/*----------------------------------------------
	txt
---------------------------------------------*/

/*----------------------------------------------
	lnk
---------------------------------------------*/

/*----------------------------------------------
	img
---------------------------------------------*/

/*----------------------------------------------
	ttl
---------------------------------------------*/
.c_ttl_type02 {
  font-size: 7rem;
  font-weight: 900;
  color: #00A0AE;
  text-align: center;
  line-height: 1;
}
.c_ttl_type02 span {
  font-size: 3rem;
  font-weight: 700;
  color: #000;
  display: inline-block;
}

.c_ttl_type03 {
  font-size: 4rem;
  text-align: center;
  margin: 0 auto;
  position: relative;
  display: table;
  font-weight: 900;
}
.c_ttl_type03::before {
  content: '';
  background: url("../images/icon_ttl03_before.png");
  display: inline-block;
  width: 53px;
  height: 18px;
  background-size: cover;
  position: absolute;
  left: -73px;
  top: 50%;
  transform: translateY(-50%);
}
.c_ttl_type03::after {
  content: '';
  background: url("../images/icon_ttl03_after.png");
  display: inline-block;
  width: 53px;
  height: 18px;
  background-size: cover;
  position: absolute;
  right: -73px;
  top: 50%;
  transform: translateY(-50%);
}

.c_ttl_type04 {
  font-size: 3rem;
  text-align: center;
}
.c_ttl_type04.is_blue {
  color: #004EA2;
}
.c_ttl_type04.is_green {
  color: #AFC500;
}
.c_ttl_type04.is_pink {
  color: #EC78AB;
}

@media screen and (max-width:900px) { 
  .c_ttl_type02 {
    font-size: 6rem;
  }
  .c_ttl_type03 {
    font-size: 2.8rem;
  }
  .c_ttl_type03::before,
  .c_ttl_type03::after {
    width: 30px;
    height: 10px;
  }
  .c_ttl_type03::before {
    left: -45px;
  }
  .c_ttl_type03::after {
    right: -45px;
  }
  .c_ttl_type04 {
    font-size: 2.5rem;
  }
}

/*----------------------------------------------
	lst
---------------------------------------------*/
.list_type01 {
  vertical-align: top;
}

.c_list_type01 li {
  list-style: none;
  position: relative;
	padding-left: .8em;
}

.c_list_type01.is_decimal li {
  padding-left: 1.8em;
}

.c_list_type01 li::before {
  color: #00A0AE;
  position: absolute;
  display: inline-block;
  width: 10px;
  vertical-align: middle;
  top: 8px;
  left: 0;
}

.c_list_type01.is_square li::before {
  content: "";
	width: 8px;
	height: 8px;
	background: #00A0AE;
}

.c_list_type01.is_disc li::before {
  content: "";
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #00A0AE;
	top: 8px;
}

.c_list_type01.is_triangle li::before {
  content: "";
	width: 0;
  height: 0;
  border: solid 5px transparent;
  border-left: solid 7px #00A0AE;
	top: 6px;
}

.c_list_type01.is_diamond li::before {
	content: "";
  width: 6px;
  height: 6px;
  background: #00A0AE;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
	top: 8px;
}

.c_list_type01.is_decimal,
.c_list_type01.is_decimal li > ul.is_decimal{
  counter-reset: is_decimal_counter;
}
.c_list_type01.is_decimal li::before {
  counter-increment: is_decimal_counter;
  content: counter(is_decimal_counter) ".";
  font-weight: bold;
  text-align: right;
  width: 25px;
  margin-right: 5px;
  color: #00A0AE;
  vertical-align: unset;
  top: 0;
}

/*----------------------------------------------
	box
---------------------------------------------*/

/*----------------------------------------------
	btn
---------------------------------------------*/
.c_btn_type01 a,
.c_btn_type01 span {
  display: inline-block;
  width: 560px;
  border-radius: 53px;
  background: #eb6100;
  box-shadow: 0px 3px 0px #bf4500;
  padding: 30px 0;
  color: #fff;
  font-size: 3rem;
  text-decoration: none;
  text-align: center;
  position: relative;
  transition: .2s;
  font-weight: 700;
}
.c_btn_type01 span {
  background: #ccc;
  box-shadow: 0px 3px 0px #aaa;
}
.c_btn_type01 a::after {
  content: '';
  background: url("../images/icon_btn.png");
  display: inline-block;
  width: 66px;
  height: 66px;
  background-size: cover;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 30px;
}
.c_btn_type01 a:hover {
  box-shadow: none;
  margin-top: 3px;
  margin-bottom: -3px;
}
.c_btn_type02 a,
.c_btn_type02 span {
  display: inline-block;
  width: 100%;
  border-radius: 53px;
  background: #00A0AE;
  box-shadow: 0px 3px 0px #007983;
  padding: 20px 0;
  color: #fff;
  font-size: 1.8rem;
  text-decoration: none;
  text-align: center;
  position: relative;
  transition: .2s;
  font-weight: 700;
}
.c_btn_type02 span {
  background: #ccc;
  box-shadow: 0px 3px 0px #aaa;
}
.c_btn_type02.is_w350 a,
.c_btn_type02.is_w350 span {
  width: 350px;
}
.c_btn_type02.is_w400 a,
.c_btn_type02.is_w400 span {
  width: 400px;
}
.c_btn_type02 a::after {
  content: '';
  background: url("../images/icon_btn.png");
  display: inline-block;
  width: 40px;
  height: 40px;
  background-size: cover;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
}
.c_btn_type02 a:hover {
  box-shadow: none!important;
  margin-top: 3px;
  margin-bottom: -3px;
}
.c_btn_type02.is_blue a {
  background: #004EA2;
  box-shadow: 0px 3px 0px #002852;
}
.c_btn_type02.is_green a {
  background: #AFC500;
  box-shadow: 0px 3px 0px #718000;
}
.c_btn_type02.is_pink a {
  background: #EC78AB;
  box-shadow: 0px 3px 0px #D5327A;
}

.c_btn_type03 a,
.c_btn_type03 span {
  color: #00A0AE;
  text-decoration: none;
  position: relative;
  padding-right: 40px;
  transition: .2s;
}
.c_btn_type03 span {
  color: #CCCCCC;
}
.c_btn_type03 a::after {
  content: '';
  background: url("../images/icon_btn02.png");
  display: inline-block;
  width: 30px;
  height: 30px;
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.c_btn_type03 span::after{
  content: '';
  background: url("../images/icon_btn02_span.png");
  display: inline-block;
  width: 30px;
  height: 30px;
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.c_btn_type03 a:hover {
  opacity: .7;
}
@media screen and (max-width:900px) { 
  .c_btn_type01 a,
  .c_btn_type01 span,
  .c_btn_type02 a,
  .c_btn_type02 span,
  .c_btn_type02.is_w350 a,
  .c_btn_type02.is_w400 a,
  .c_btn_type03 a,
  .c_btn_type03 span {
    width: 100%!important;
  }
  .c_btn_type01 a {
    font-size: 2rem;
    padding: 20px;
  }
  .c_btn_type01 a::after {
    width: 40px;
    height: 40px;
  }
}

/*----------------------------------------------
	tbl
---------------------------------------------*/
.c_tbl_type01 {
  width: 1000px;
  font-size: 1.8rem;
  margin: 0 auto;
}
.c_tbl_type01 th {
  color: #333;
  white-space: pre-wrap;
  font-weight: bold;
  color: #eb6100;
  text-align: left;
}

.c_tbl_type01 th,
.c_tbl_type01 td {
  padding: 10px;
	border-bottom: 2px dotted #CCCCCC;
}

/*----------------------------------------------
	アコーディオン
---------------------------------------------*/
.accordion_container {
}
.accordion_title {
  background-color: #00A0AE;
  color: #fff;
  font-size: 2rem;
  font-weight: bold;
  padding: 10px 30px;
  border-radius: 50px;
  text-align: center;
  position: relative;
  z-index: +1;
  cursor: pointer;
  transition-duration: 0.2s;
  box-shadow: 0px 3px 0px #007983;
}
.accordion_title:hover {
  opacity: 0.8;
}
.icon_wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 50%;
  right: 30px;
  width: 40px;
  height: 40px;
  margin-top: -20px;
  box-sizing: border-box;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transform-origin: center center;
  transition-duration: 0.2s;
}
.icon {
  display: block;
  width: 18px;
  height: 18px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transform-origin: center center;
  transition-duration: 0.2s;
  position: relative;
}
.accordion_title.open 
.icon_wrap {
  -webkit-transform: rotate(-360deg);
  transform: rotate(-360deg);
}
.icon:before, .icon:after {
  display: flex;
  content: '';
  background-color: #fff;
  border-radius: 10px;
  width: 18px;
  height: 4px;
  position: absolute;
  top: 7px;
  left: 0;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  transform-origin: center center;
}
.icon:before {
  width: 4px;
  height: 18px;
  top: 0;
  left: 7px;
}
.accordion_title.open 
.icon_wrap .icon:before {
  content: none;
}
.accordion_title.open 
.icon_wrap .icon:after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.accordion_inner {
  display: none;
  padding: 30px;
  border: 1px solid #00A0AE;
  box-sizing: border-box;
  border-radius: 20px;
  margin-top: 20px;
}
.ac_inner_wraper {
  /*height: 100px;*/
}
p.txt_a_ac {
  margin: 0;
}
@media screen and (max-width: 1024px) {
  .accordion_title {
    font-size: 18px;
  }
  .icon_wrap {
    width: 30px;
    height: 30px;
    margin-top: -15px;
  }
}
@media screen and (max-width: 767px) {
  .accordion_title {
    font-size: 16px;
    text-align: left;
    padding: 15px 60px 15px 15px;
  }
}

.swiper.is_blue {
  margin-bottom: 7px;
}
.swiper-pagination {
  position: relative!important;
  margin-top: 20px
}
.swiper-pagination-bullet {
  width: 15px!important;
  height: 15px!important;
  margin: 0 5px !important;
}
.is_blue .swiper-pagination-bullet {
  border: 1px solid #004EA2!important;
  background: #fff!important;
  opacity: 1!important;
}
.is_blue .swiper-pagination-bullet-active {
  background: #004EA2!important;
}
.is_green .swiper-pagination-bullet {
  border: 1px solid #AFC500!important;
  background: #fff!important;
  opacity: 1!important;
}
.is_green .swiper-pagination-bullet-active {
  background: #AFC500!important;
}
.is_pink .swiper-pagination-bullet {
  border: 1px solid #EC78AB!important;
  background: #fff!important;
  opacity: 1!important;
}
.is_pink .swiper-pagination-bullet-active {
  background: #EC78AB!important;
}
.swiper-slide {
  height: auto!important;
}