@charset "UTF-8";
/* CSS Document */
/* 変数定義 */
:root {
  --color_bk: #000000;
  --color_wt: #fff;
  --color1: #e72260;
  --color2: #001938;
  --color3: #f9f8e1;
  --color4: #f8ecf1;
  --color5: #efefef;
  --color6: #ff7fa7;
  --color7: #f9b0c7;
}
.cl_01 {color: var(--color1);}
.bg_01 {background: var(--color1);}
.cl_02 {color: var(--color2);}
.bg_02 {background: var(--color2);}
.bg_03 {background: var(--color3);}
.bg_04 {background: var(--color4);}
.bg_05 {background: var(--color5);}
.bg_06 {background: var(--color6);}
.bg_07 {background: var(--color7);}
.cl_black {color: var(--color_bk);}
.bg_black {background: var(--color_bk);}
.cl_white {color: var(--color_wt);}
.bg_white {background: var(--color_wt);}

/*オリジナルリセットcss----------------------------------------------------------- */
p {
  margin-bottom: 0;
}

img {
  display: block;
}

li {
  list-style: none;
}
/*デバイス共通----------------------------------------------------------- */
html {
  font-size: 62.5%;
}

body {
  font-family: noto-sans-cjk-jp, sans-serif;
  font-size: 1.8rem;
  line-height: 1.65;
  color: var(--color2);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* overflow-x: hidden; */
  word-break: break-all;
}

@media screen and (max-width: 767px) {
  body {
    font-size: 1.4rem;
    line-height: 1.4;
  }
}

a, a img {transition: all .3s; color: inherit;}
a:hover, a img:hover, button:hover {opacity: 0.8;}
.dib {display: inline-block;}
.m0a {margin: 0 auto;}
.m20a {margin: 20px auto;}
.mla {margin-left: auto;}
.posr {position: relative;}
.posa {position: absolute;}
.imgr {
  display: block;
  max-width: 100%;
  height: auto;
}
@media screen and (max-width: 767px) {
  .sp_scroll {
    width: 100%;
    overflow-x: scroll;
  }
  .sp_scroll > * {
    min-width: 768px;
  }
}

/*テキスト関連----------------------------------------------------------- */
.fwb {font-weight: bold !important;}
.underline {text-decoration: underline;}
.font_xs {font-size: 2rem;}
.font_s {font-size: 2.4rem;}
.font_m {font-size: 2.8rem;}
.font_l {font-size: 3rem;}
.font_xl {font-size: 3.2rem;}
@media screen and (max-width: 767px) {
.font_xs {font-size: 1rem;}
.font_s {font-size: 1.2rem;}
.font_m {font-size: 1.5rem;}
.font_l {font-size: 1.6rem;}
.font_xl {font-size: 2.5rem;}
}
.tac {text-align: center !important;}
.tal {text-align: left !important;}
.tar {text-align: right !important;}
.shadow {
  text-shadow: 0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff;}
.shadow2 {
  text-shadow: 0 0 5px #fff,0 0 5px #fff,0 0 5px #fff,0 0 5px #fff,0 0 5px #fff,0 0 5px #fff,0 0 5px #fff,0 0 5px #fff,0 0 5px #fff,0 0 5px #fff,0 0 5px #fff,0 0 5px #fff,0 0 5px #fff,0 0 5px #fff,0 0 5px #fff,0 0 5px #fff;}
.font_min {font-family: "Yu Mincho", YuMincho, HG明朝B, "MS Mincho", serif;}
.font_go {font-family: "メイリオ", Meiryo, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "游ゴシック体", YuGothic, "YuGothic M", sans-serif;}
.font_noto {font-family: noto-sans-cjk-jp, sans-serif;}
.indent {
  text-indent: -1em;
  padding-left: 1em;
}
.note {
  position: relative;
  font-size: 0.777em;
  padding-left: 1em;
}
.note:before {
  position: absolute;
  content: "※";
  top: 0;
  left: 0;
  font-size: 1em;
  line-height: 1.554em;
}
@media (min-width: 768px) and (max-width: 1229px) {
  .tab_shadow {text-shadow: 0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff;}
}

@media screen and (max-width: 767px) {
  .sp_tal {text-align: left !important;}
  .sp_shadow {text-shadow: 0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff;}
}


/*余白&幅調整----------------------------------------------------------- */
.mt0 {margin-top: 0;}.mt5 {margin-top: 5px;}.mt10 {margin-top: 10px;}.mt15 {margin-top: 15px;}.mt20 {margin-top: 20px;}.mt30 {margin-top: 30px;}.mt45 {margin-top: 45px;}.mt60 {margin-top: 60px;}.mt75 {margin-top: 75px;}.mt90 {margin-top: 90px;}.mt120 {margin-top: 120px;}
.mb0 {margin-bottom: 0;}.mb5 {margin-bottom: 5px;}.mb10 {margin-bottom: 10px;}.mb15 {margin-bottom: 15px;}.mb20 {margin-bottom: 20px;}.mb30 {margin-bottom: 30px;}.mb45 {margin-bottom: 45px;}.mb60 {margin-bottom: 60px;}.mb75 {margin-bottom: 75px;}.mb90 {margin-bottom: 90px;}.mb120 {margin-bottom: 120px;}
.pt0 {padding-top: 0;}.pt5 {padding-top: 5px;}.pt10 {padding-top: 10px;}.pt15 {padding-top: 15px;}.pt20 {padding-top: 20px;}.pt30 {padding-top: 30px;}.pt45 {padding-top: 45px;}.pt60 {padding-top: 60px;}.pt75 {padding-top: 75px;}.pt90 {padding-top: 90px;}.pt120 {padding-top: 120px;}
.pb0 {padding-bottom: 0;}.pb5 {padding-bottom: 5px;}.pb10 {padding-bottom: 10px;}.pb15 {padding-bottom: 15px;}.pb20 {padding-bottom: 20px;}.pb30 {padding-bottom: 30px;}.pb45 {padding-bottom: 45px;}.pb60 {padding-bottom: 60px;}.pb75 {padding-bottom: 75px;}.pb90 {padding-bottom: 90px;}.pb120 {padding-bottom: 120px;}
.pl0 {padding-left: 0;}
.pr0 {padding-right: 0;}
.ph0 {padding-left: 0; padding-right: 0;}
.ph15 {padding-left: 15px; padding-right: 15px;}
@media screen and (max-width: 767px) {
  .spmt0 {margin-top: 0;}.spmt5 {margin-top: 5px;}.spmt10 {margin-top: 10px;}.spmt15 {margin-top: 15px;}.spmt20 {margin-top: 20px;}.spmt30 {margin-top: 30px;}.spmt45 {margin-top: 45px;}.spmt60 {margin-top: 60px;}
  .spmb0 {margin-bottom: 0;}.spmb5 {margin-bottom: 5px;}.spmb10 {margin-bottom: 10px;}.spmb15 {margin-bottom: 15px;}.spmb20 {margin-bottom: 20px;}.spmb30 {margin-bottom: 30px;}.spmb45 {margin-bottom: 45px;}.spmb60 {margin-bottom: 60px;}
  .sppt0 {padding-top: 0;}.sppt5 {padding-top: 5px;}.sppt10 {padding-top: 10px;}.sppt15 {padding-top: 15px;}.sppt20 {padding-top: 20px;}.sppt30 {padding-top: 30px;}.sppt45 {padding-top: 45px;}.sppt60 {padding-top: 60px;}
  .sppb0 {padding-bottom: 0;}.sppb5 {padding-bottom: 5px;}.sppb10 {padding-bottom: 10px;}.sppb15 {padding-bottom: 15px;}.sppb20 {padding-bottom: 20px;}.sppb30 {padding-bottom: 30px;}.sppb45 {padding-bottom: 45px;}.sppb60 {padding-bottom: 60px;}
  .sppl0 {padding-left: 0;}
  .sppr0 {padding-right: 0;}
  .spph0 {padding-left: 0; padding-right: 0;}
}
@media screen and (max-width: 767px) {
  .spwd50 {width: 50% !important;}
  .spwd60 {width: 60% !important;}
  .spwd70 {width: 70% !important;}
  .spwd80 {width: 80% !important;}
  .spwd90 {width: 90% !important;}
}

/*見出し----------------------------------------------------------- */
h1, h2, h3 {
  letter-spacing: -0.05em;
  line-height: 1.4;
}

h2 {
  margin: 0;
  padding: 0 0 60px;
  text-align: center;
  margin-inline: auto;
}

h3 {
  margin: 0;
  padding: 0;
  margin-inline: auto;
}

@media (min-width: 768px) and (max-width: 1229px) {
  h2 {
    padding: 0 0 45px;
  }
}

@media screen and (max-width: 767px) {
  h2 {
    padding: 0 0 30px;
    width: 95%;
  }
}

/*ボタン----------------------------------------------------------- */
.btn {
  position: relative;
  background-color: #22aee8;
  border-radius: 15px;
  border: none;
  border-bottom: 10px solid #238ab5;
  color: var(--color2);
  width: 570px;
  padding-block: 15px;
  transition: all .3s ease 0s;
  cursor: pointer;
}
.btn button::after {
  content: '\f054';
  position: absolute;
  font-family: "Font Awesome 5 Free";
  top: 50%;
  right: 30px;
  transform: translateY(-50%);
}
.btn2 button {
  position: relative;
  background-color: var(--color5);
  border-radius: 15px;
  border: none;
  border-bottom: 10px solid #c1c1c1;
  color: var(--color2);
  width: 570px;
  padding-block: 15px;
  transition: all .3s ease 0s;
  cursor: not-allowed;
}
.btn2 button:hover {
  opacity: 1;
}
.btn2 button.is-click {
  border-bottom: 10px solid #238ab5;
  cursor: pointer;
  border-bottom: 10px solid ;
}
.btn2 button.is-click:hover {
  opacity: .8;
}
.btn2 button::after {
  content: '\f054';
  position: absolute;
  font-family: "Font Awesome 5 Free";
  top: 50%;
  right: 30px;
  transform: translateY(-50%);
}

.btn a {
  color: #FFF;
}

.btn:focus {
  color: #FFF;
  text-decoration: none;
}

/*Page Top----------------------------------------------------------- */
/*TOPへ戻る*/
.pagetop {
  display: none;
  position: fixed;
  bottom: 15px;
  right: 15px;
  z-index: 9999;
}

.pagetop a {
  position: relative;
  display: block;
  width: 50px;
  height: 50px;
  background-color: #153aa1;
  border-radius: 50%;
  filter: alpha(opacity=100);
  -moz-opacity: 1;
  opacity: 1;
}

.pagetop a:before {
  position: absolute;
  content: "";
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 12px solid #fff;
  top: 50%;
  right: 50%;
  transform: translateX(50%) translateY(-60%);
}

.pagetop a:hover {
  display: block;
  text-align: center;
  color: #fff;
  font-size: 12px;
  text-decoration: none;
  filter: alpha(opacity=70);
  -moz-opacity: 0.7;
  opacity: 0.7;
}

.pagetop a:link,
.pagetop a:visited {
  color: #fff;
}

@media screen and (max-width: 767px) {
  .pagetop {
    bottom: 20px;
    right: 5px;
  }
}

/*white-box----------------------------------------------------------- */
.white_box {
  padding: 45px;
  background-color: #fff;
  margin-bottom: 30px;
}
.white_box_l {
  padding: 60px;
  background-color: #fff;
  margin-bottom: 30px;
}
.white_box_s {
  padding: 30px;
  background-color: #fff;
  margin-bottom: 30px;
}
.white_box_xs {
  padding: 15px;
  background-color: #fff;
  margin-bottom: 30px;
}
.white_box:last-of-type,
.white_box_l:last-of-type,
.white_box_s:last-of-type,
.white_box_xs:last-of-type {
  margin-bottom: 0;
}

@media (min-width: 768px) and (max-width: 1229px) {
  .white_box {
    padding: 30px;
    margin-bottom: 15px;
  }
  .white_box_l {
    padding: 45q;
    margin-bottom: 30px;
  }
  .white_box_s,
  .white_box_xs {
    padding: 15px;
    margin-bottom: 15px;
  }
}

@media screen and (max-width: 767px) {
  .white_box,
  .white_box_s,
  .white_box_xs {
    padding: 15px;
    margin-bottom: 15px;
  }
  .white_box_l {
    padding: 30px;
    margin-bottom: 15px;
  }
}

/*背景左右はみだし----------------------------------------------------------- */
.white_box.bg_over_l,
.white_box.bg_over_l > *,
.white_box.bg_over_r,
.white_box.bg_over_r > * {
  position: relative;
  z-index: 1;
}
.white_box.bg_over_l:before {
  position: absolute;
  display: block;
  content: "";
  height: 100%;
  width: 50vw;
  top: 0;
  left: 50%;
  transform: translateX(-50vw);
  background-color: #eeeef5;
  z-index: 0;
}
.white_box.bg_over_r:before {
  position: absolute;
  display: block;
  content: "";
  height: 100%;
  width: 50vw;
  top: 0;
  right: 0;
  transform: translateX(50vw);
  background-color: #eeeef5;
  z-index: 0;
}

/*check_list----------------------------------------------------------- */
.check_list li {
  position: relative;
  padding-left: 1.5em;
  margin-bottom: 3px;
}

.check_list li:last-child {
  margin-bottom: 0;
}

.check_list li:before {
  position: absolute;
  content: "\f058";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  top: 0;
  left: 0;
  color: orange;
}

.list_border {
  border-bottom: 2px dashed #000;
}

.list_border_stop {
  border-bottom: 2px dashed #000;
  display: inline-block;
}

/*タブ切り替え----------------------------------------------------------- */
.tabs {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  margin: 0 auto;
}
.tab_item {
  width: 50%;
  height: 50px;
  border-bottom: 3px solid #5ab4bd;
  background-color: #d9d9d9;
  line-height: 50px;
  font-size: 16px;
  text-align: center;
  color: #565656;
  display: block;
  float: left;
  text-align: center;
  font-weight: bold;
  transition: all 0.2s ease;
}
.tab_item:hover {
  opacity: 0.75;
}
input[name="tab_item"] {
  display: none;
}
.tab_content {
  display: none;
  padding: 45px;
  clear: both;
  overflow: hidden;
}
#tab1:checked ~ #tab1_content,
#tab2:checked ~ #tab2_content,
#design:checked ~ #design_content {
  display: block;
}
.tabs input:checked + .tab_item {
  background-color: #5ab4bd;
  color: #fff;
}

/*Container / Break----------------------------------------------------------- */
@media (min-width: 1230px) {
  .container {
    width: 1230px;
    margin: 0 auto;
    position: relative;
    padding-left: 15px;
    padding-right: 15px;
    box-sizing: border-box;
  }
  .container_s {
    width: 960px;
    margin: 0 auto;
    position: relative;
    padding-left: 15px;
    padding-right: 15px;
    box-sizing: border-box;
  }
  .p_none {
    display: none;
  }
  .pt_none {
    display: none;
  }
  .ps_none {
    display: none;
  }
  .t_none {
    display: block;
  }
  .ts_none {
    display: block;
  }
  .s_none {
    display: block;
  }
}

@media (min-width: 768px) and (max-width: 1229px) {
  body {
    overflow-x: hidden;
  }
  .container {
    width: 768px;
    margin: 0 auto;
    position: relative;
    margin-right: auto;
    margin-left: auto;
    padding-left: 15px;
    padding-right: 15px;
    box-sizing: border-box;
  }
  .container_s {
    width: 768px;
    margin: 0 auto;
    position: relative;
    margin-right: auto;
    margin-left: auto;
    padding-left: 15px;
    padding-right: 15px;
    box-sizing: border-box;
  }
  .p_none {
    display: block;
  }
  .pt_none {
    display: none;
  }
  .ps_none {
    display: block;
  }
  .t_none {
    display: none;
  }
  .ts_none {
    display: none;
  }
  .s_none {
    display: block;
  }
}

@media screen and (max-width: 767px) {
  body {
    overflow-x: hidden;
    display: block;
    max-width: 767px;
  }
  .container {
    margin-right: auto;
    margin-left: auto;
    padding-left: 15px;
    padding-right: 15px;
    box-sizing: border-box;
  }
  .container_s {
    margin-right: auto;
    margin-left: auto;
    padding-left: 15px;
    padding-right: 15px;
    box-sizing: border-box;
  }
  .p_none {
    display: block;
  }
  .pt_none {
    display: block;
  }
  .ps_none {
    display: none;
  }
  .t_none {
    display: block;
  }
  .ts_none {
    display: none;
  }
  .s_none {
    display: none;
  }
}
