@charset "utf-8";

/*====================================
	
----------------------------------
  Color
----------------------------------
メイン    : #000
アクセント : 

----------------------------------
  Structure
----------------------------------
0. レイアウト系
1. リスト・テーブル
2. 中央揃え
3. 改行
4. テキスト装飾
5. 追加汎用css

====================================*/

/* 表示・非表示
-------------------------------- */
@media screen and (min-width: 769px) {
  .pc-none_bp768 {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .sp-none_bp768 {
    display: none;
  }
}
@media screen and (min-width: 481px) {
  .pc-none_bp480 {
    display: none;
  }
}
@media screen and (max-width: 480px) {
  .sp-none_bp480 {
    display: none;
  }
}
/*----------------------------------
	0. レイアウト系
------------------------------------*/
/*
ブレイクポイントの設定用クラス .bp768 .bp480 .bp420 
を切り替えて使ってください。
.column-box 又は .float-box に設定して下さい
*/

/* ------ カラム（flex） ------- */
.column-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
/*--左寄せ--*/
.column-box04 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: start;
  -ms-flex-pack: justify;
  justify-content: start;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.column-box04 > .column-box__3col {
  margin: 1%!important;
}

.column-box > div {
  float: none!important;
  margin-bottom: 30px;
}
.column-box.mb-none > div {
  margin-bottom: 0;
}
.column-box hr {
  display: none;
}
.column-box.reverse {
  -webkit-flex-direction: row-reverse;
   flex-direction: row-reverse;
}
@media screen and (max-width: 768px) {
.bp768.column-reverse {
    flex-direction: column-reverse;
}
}
/* カラム幅指定(均等幅隙間あり) */
.column-box__2col {
  width: 48% !important;
  max-width: 570px;
}
.column-box__3col {
  width: 31% !important;
  max-width: 370px;
}
.column-box__4col {
  width: 23% !important;
  max-width: 270px;
}
.column-box__5col {
  width: 18% !important;
  max-width: 210px;
}
.column-box__6col {
  width: 15% !important;
  max-width: 180px;
}
.column-box__7col {
  width: 13% !important;
  max-width: 130px;
}
/* カラム幅指定(均等幅隙間なし) */
.column-box__2p {
  width: 50% !important;
}
.column-box__3p {
  width: 33% !important;
}
.column-box__3p:nth-child(2) {
  width: 34% !important;
}
.column-box__4p {
  width: 25% !important;
}
/* カラム幅指定(カスタム用) */
.column-box__80 {
  width: 80%!important;
}
.column-box__70 {
  width: 70%!important;
}
.column-box__65 {
  width: 65%!important;
}
.column-box__60 {
  width: 60%!important;
}
.column-box__58 {
  width: 58%!important;
}
.column-box__55 {
  width: 55%!important;
}
.column-box__52 {
  width: 52%!important;
}
.column-box__50 {
  width: 50%!important;
}
.column-box__45 {
  width: 45%!important;
}
.column-box__42 {
  width: 42%!important;
}
.column-box__40 {
  width: 40%!important;
}
.column-box__35 {
  width: 35%!important;
}
.column-box__30 {
  width: 30%!important;
}
.column-box__25 {
  width: 25%!important;
}
.column-box__20 {
  width: 20%!important;
}
/* 
最終行レイアウト維持のためのclass
コンテンツの数が変動する場合設定してください。
.column-box に設定してください。
*/
/* -------------------------------------- */
/* ３カラム用 */
.column-box--3return::after {
  content:"";
  display: block;
  width: 31%;
}
/* ４カラム用 */
.column-box--4return::before {
  content:"";
  display: block;
  width:23%;
  order:1;
}
.column-box--4return::after {
  content:"";
  display: block;
  width :23%;
}
/* -------------------------------------- */
/* ブレイクポイント-汎用 */
@media screen and (max-width: 1200px) {
  .column-box.bp1200 > [class*="column-box__"] {
    width: 100%!important;
    margin: 0 auto 3%!important;
  }
}
@media screen and (max-width: 768px) {
  .bp768 > [class*="column-box__"] {
    width: 100% !important;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 480px) {
  .bp480 > [class*="column-box__"] {
    width: 100% !important;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 320px) {
  .bp320 > [class*="column-box__"] {
    width: 100% !important;
    margin-bottom: 20px;
  }
}
/* ブレイクポイント-中央揃え */
@media screen and (max-width: 800px) {
  .column-box.bp800-c {
    -webkit-justify-content: space-around; 
    justify-content: space-around;
  }
  .column-box.bp800-c > [class*="column-box__"] {
    width: 100% !important;
  }
}
@media screen and (max-width: 768px) {
  .column-box.bp768-c {
    -webkit-justify-content: space-around; 
    justify-content: space-around;
  }
  .column-box.bp768-c > [class*="column-box__"] {
    width: 100% !important;
  }
}
@media screen and (max-width: 480px) {
  .column-box.bp480-c {
    -webkit-justify-content: space-around; 
    justify-content: space-around;
  }
  .column-box.bp480-c > [class*="column-box__"] {
    width: 100% !important;
  }
}
@media screen and (max-width: 320px) {
  .column-box.bp320-c {
    -webkit-justify-content: space-around; 
    justify-content: space-around;
  }
  .column-box.bp320-c > [class*="column-box__"] {
    width: 100% !important;
  }
}
/* android4対策 */
@media screen and (max-width: 980px) {
  body.and4 .column-box {
    display: block;
    text-align: center;
  }
  body.and4 .column-box > div {
    display: inline-block;
  }
}

/* ------ カラム（float） ------- */

.float-box {
  overflow: hidden;
}
.float-box__left {
  float: left !important;
}
.float-box__right {
  float: right !important;
}
@media screen and (max-width: 768px) {
  .bp768 .float-box__left,
  .bp768 .float-box__right {
    float: none !important;
    width: 100% !important;
  }
}
@media screen and (max-width: 480px) {
  .bp480 .float-box__left,
  .bp480 .float-box__right {
    float: none !important;
    width: 100% !important;
  }
}
@media screen and (max-width: 320px) {
  .bp320 .float-box__left,
  .bp320 .float-box__right {
    float: none !important;
    width: 100% !important;
  }
}



/*----------------------------------
	1. リスト・テーブル
------------------------------------*/

/* ------ リスト（ul,ol） ------- */
/* リストスタイルクリア */
.list_style_clear {
  list-style: none;
  margin: 0;
}
.list_style_clear li {
  margin: 0 0 1.2em;
}
/* 黒ぶち */
.list_style01 {
  list-style-type: disc;
  margin: 0 0 0 25px;
}
.list_style01 li {
  margin: 0 0 20px;
}
/* 丸 */
.list_style02 {
  list-style-type: circle;
  margin: 0 0 0 25px;
}
.list_style02 li {
  margin: 0 0 20px;
}
/* 四角 */
.list_style03 {
  list-style-type: square;
  margin: 0 0 0 25px;
}
.list_style03 li {
  margin: 0 0 20px;
}
/* 三角 */
.list_style04 {
  list-style-type: disc;
}
.list_style04 li {
    margin-left: 1.8em;
    list-style-type: none;
}
.list_style04 li:before{
    content: ' ';
    border: transparent solid 0.3em;
    border-left-color: #000000;
    position: absolute;
    height: 0;
    width: 0;
    left: 1em;
    margin: 0px;
    margin-top: 0.4em;
    padding: 0px;
}
/* 番号 */
.list_number {
  list-style-type: decimal;
  margin: 0 0 0 25px;
}
.list_number li {
  margin-bottom: 20px;
}


/* ------ テーブル ------- */
.table-style01 {
  width: 100%;
}
.table-style01 th,
.table-style01 td {
  border: solid 1px #999;
  padding: 10px;
}
.table-style01 th {
  background-color: #ccc;
  text-align: left;
}
.table-style02 {
  border: none;
  font-size: 1.6rem;
}
.table-style02 td,
.table-style02 th {
  border: solid 2px #fff;
  padding: 2%;
}
.table-style02 th {
  background-color: #e6e6e6;
  text-align: center;
  width: 140px;
  padding: 2% 0;
}
.table-style02 td {
  background-color: #efefef;
}
@media screen and (max-width: 480px) {
  .table-style02 td,
  .table-style02 th {
    display: block;
    width: auto;
  }
}
.table-style03 tr th,
.table-style03 tr td {
  border: none;
  border-bottom: solid 1px #ccc;
  padding: 3% 2%;
  font-size: 1.4rem;
  line-height: 1.5em;
  font-weight: 500;
}
.table-style03 tr th {
  max-width: 50px;
}
.table-style03 tr.odd {
  background-color: transparent;
}



/*----------------------------------
	2. 中央揃え
------------------------------------*/

/* ------ 中央揃え ------- */
/* position(高さ指定必要) */
.center-box01 {
  position: relative;
}
.center-box01__cell {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
}
/* position(高さ指定不要) */
.center-box02 {
  position: relative;
}
.center-box02__cell {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateY(-50%) translateX(-50%);
  transform: translateY(-50%) translateX(-50%);
}
/* flex(幅・高さ指定不要) */
.center-box03 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-align-items : center;
  align-items : center;
}



/*----------------------------------
	3. 改行
------------------------------------*/
/* 
スマホ用の改行の表示・非表示切り替えです。
ブレイクポイントの数値の後に -on(表示) -off(非表示) で切り替わります。
*/
/* ------ 改行 ------- */
@media screen and (max-width: 768px) {
  br.bp768-off {
    display: none;
  }
}
@media screen and (min-width: 769px) {
  br.bp768-on {
    display: none;
  }
}
@media screen and (max-width: 480px) {
  br.bp480-off {
    display: none;
  }
}
@media screen and (min-width: 481px) {
  br.bp480-on {
    display: none;
  }
}
@media screen and (max-width: 420px) {
  br.bp420-off {
    display: none;
  }
}
@media screen and (min-width: 421px) {
  br.bp420-on {
    display: none;
  }
}
@media screen and (max-width: 320px) {
  br.bp320-off {
    display: none;
  }
}


/* ------ イメージ ------- */
@media screen and (max-width: 800px) {
  img.bp800-off {
    display: none;
  }
}
@media screen and (min-width: 801px) {
  img.bp800-on {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  img.bp768-off {
    display: none;
  }
}
@media screen and (min-width: 769px) {
  img.bp768-on {
    display: none;
  }
}
@media screen and (max-width: 480px) {
  img.bp480-off {
    display: none;
  }
}
@media screen and (min-width: 481px) {
  img.bp480-on {
    display: none;
  }
}
@media screen and (max-width: 420px) {
  img.bp420-off {
    display: none;
  }
}
@media screen and (min-width: 421px) {
  img.bp420-on {
    display: none;
  }
}
@media screen and (max-width: 320px) {
  img.bp320-off {
    display: none;
  }
}



/*----------------------------------
	4. テキスト装飾
------------------------------------*/

/* ----------- フォントサイズ ------------ */
.font-size--24 {
  font-size: 2.4rem;
  margin: 0 0 0.8em;
}
.font-size--24 {
  font-size: 2.4rem;
  margin: 0 0 0.8em;
}
.font-size--22 {
  font-size: 2.2rem;
  margin: 0 0 0.8em;
}
.font-size--20 {
  font-size: 2.0rem;
  margin: 0 0 0.8em;
}
.font-size--18 {
  font-size: 1.8rem;
  margin: 0 0 0.8em;
}
.font-size--16 {
  font-size: 1.6rem;
  margin: 0 0 0.8em;
}
.font-size--14 {
  font-size: 1.4rem;
  margin: 0 0 0.8em;
}
@media screen and (max-width: 768px) {
  .font-size--24 {
    font-size: 2.2rem;
  }
  .font-size--22 {
    font-size: 2.0rem;
  }
  .font-size--20 {
    font-size: 1.8rem;
  }
}
/* ------ テキスト揃え ------ */
.l-txt {
  text-align: left;
}
.r-txt {
  text-align: right;
}
.c-txt {
  text-align: center;
}
/* ------ 三角アイコン ------- */
.icon-triangle {
  position: relative;
  padding-left: 30px;
}
.icon-triangle::before {
  content: "";
  position: absolute;
  top: 50%; left:10px;
  display: block;
  width: 0px;
  height: 0px;
  margin-top: -8px;
  border-style: solid;
  border-width: 8px 0 8px 10px;
  border-color: transparent;
}
/* 色指定 */
.icon-triangle--color::before{
  border-left-color: #fff;
}


/*----------------------------------
	5. マージン
------------------------------------*/
.mb-20 {
  margin-bottom: 20px;
}
.mb-30 {
  margin-bottom: 30px;
}
.mb-40 {
  margin-bottom: 40px;
}
.mb-50 {
  margin-bottom: 50px;
}
.mb-60 {
  margin-bottom: 60px;
}
.mb-70 {
  margin-bottom: 70px;
}
.mb-80 {
  margin-bottom: 80px;
}
.mb-90 {
  margin-bottom: 90px;
}




/*----------------------------------
	6. 追加汎用CSS
------------------------------------*/

/* ------ 親要素を超えて幅いっぱい ------ */
.full-width {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

/* ------ ボックス装飾 ------ */
.bg-none {
  background-color : transparent;
}
/* ナミナミデザイン上下版 */
.bg-wave_double {
  background: url(../../images/bg-gray_img.png) no-repeat center bottom,url(../../images/bg-gray_img02.png) no-repeat center top;
  padding: 200px 0;
}
/* テキスト用フレーム */
.box-style01 {
  padding: 5% 6%;
  border: solid 1px #ccc;
  box-shadow: 5px 5px #ddd;
}
.box-style01--white {
  padding: 5% 6%;
  border: solid 1px #fff;
  box-shadow: 5px 5px #fff;
}
/* イメージ用角丸フレーム */
.img-style01 {
  overflow: hidden;
  border-radius: 10px;
}
.img-style01 img {
  vertical-align: bottom;
}
@media screen and (max-width: 768px) {
  .img-style01 img {
    width: 100%;
  }
}
.img-style02 {
  overflow: hidden;
  border-radius: 10px;
  letter-spacing: -1em;
}
.img-style02 .inner {
  display: inline-block;
  width: 50%;
  letter-spacing: 0em;
}
.img-style02 img {
  vertical-align: bottom;
  width: 100%;
  height: auto;
}
@media screen and (max-width: 420px) {
  .img-style02 .inner {
    width: 100%;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 20px;
  }
}




/* ------ テキスト装飾 ------ */
.mincho {
  font-family: 'Noto Serif JP',"游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}

/* ------ ボタンデザイン ------ */


.bg-wave_double {
  background: url(../../images/bg-gray_img.png) no-repeat center bottom,url(../../images/bg-gray_img02.png) no-repeat center top;
  padding: 200px 0;
}
.box-style01 {
  padding: 5% 6%;
  border: solid 1px #ccc;
  box-shadow: 5px 5px #ddd;
}
.box-style01--white {
  padding: 5% 6%;
  border: solid 1px #fff;
  box-shadow: 5px 5px #fff;
}

/*--worldcotton---*/
@media screen and (max-width: 420px) {
    .content-3{
        width:100%!important;
    }
}







