@charset "UTF-8";
/* CSS Document */

/*セクション間余白----------------------------------------------------------- */
section {
  padding: 75px 0;
}

footer {
  padding: 60px 0;
}

/*色関連----------------------------------------------------------- */
.bg_cl1 {
  background-color: #eeeef5;
}

.bg_cl2 {
  background-color: #f3f2f2;
}

.cl_base {
  color: #ff00cc;
}

.cl_main {
  color: #ef3300;
}

.cl_accent {
  color: #4265a1;
}

.cl_other1 {
  color: #4265a1;
}

.cl_other2 {
  color: #4265a1;
}

/*テキスト関連----------------------------------------------------------- */
.highlight {
  background: -webkit-linear-gradient(transparent 60%, #ffe45b 50%);
  background: -o-linear-gradient(transparent 60%, #ffe45b 50%);
  background: linear-gradient(transparent 60%, #ffe45b 50%);
  font-weight: bold;
}

/*リンク色----------------------------------------------------------- */

/*はみ出し画像中央----------------------------------------------------------- */
.wic_wrap {
  overflow-x: hidden;
}
.wic img {
  width: auto;
  max-width: unset;
}

.wic1 {
  margin-left: calc(50% - 1000px);
}
.wic1 img {
  width: 2000px;
  max-width: 2000px;
}

.wic2 {
  margin-left: calc(50% - 600px);
}
.wic2 img {
  width: 1200px;
  max-width: 1200px;
}

.wic3 {
  margin-left: calc(50% - 800px);
}
.wic3 img {
  width: 1600px;
  max-width: 1600px;
}

/*Page Top----------------------------------------------------------- */
.pagetop a {
  background-color: #153aa1;
  filter: drop-shadow(3px 3px 4px rgba(0, 0, 0, 0.3));
}

/*Header----------------------------------------------------------- */
header {
  height: 73px;
  width: 100%;
  background-color: var(--color_wt);
  position: sticky;
  top: 0;
  left: 0;
  z-index: 999;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.4);
}
header .container {
  height: 100%;
}
.header_wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: inherit;
}
header .logo {
  height: 51px;
}
.header_logo {
  width: auto;
}
.header_logo img {
  height: 100%;
}
.header_menus,
.header_nav,
.header_btns {
  display: flex;
  align-items: center;
}
.header_menus {
  gap: 45px;
}
.header_nav {
  gap: 15px;

}
.header_list {
  font-size: 14px;
}
.header_btns {
  gap: 30px;
}
.header_drawers {
  position: relative;
  width: 50px;
  height: 47px;
  cursor: pointer;
  display: none;
  z-index: 999;
}
.header_drawers::after {
  content: 'MENU';
  position: absolute;
  bottom: 0;
  width: 100%;
  text-align: center;
  font-size: 12px;
}
.header_drawers span {
  position: absolute;
  background-color: var(--color1);
  width: 30px;
  height: 3px;
  left: 50%;
  transform: translateX(-50%);
  transition: all .4s ease 0s;
}
.header_drawers span:nth-child(1) {
  top: 0;
}
.header_drawers span:nth-child(2) {
  top: 10px;
}
.header_drawers span:nth-child(3) {
  top: 21px;
}
.header_drawers p::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  text-align: center;
  font-size: 12px;
}
@media screen and (max-width: 1229px) {
  .header_menus {
    display: flex;
    justify-content: end;
    align-items: center;
    gap: 10px;
    height: 100%;
  }
  .header_nav {
    display: none;
    position: absolute;
    width: 100%;
    /* height: inherit; */
    top: 70px;
    left: 0;
    background-color: var(--color2);
    z-index: 999;
    padding: 30px;
    text-align: center;
  }
  .header_nav li::before {
    content: none;
  }
  .header_list {
    display: block;
    padding: 20px;
  }
  .header_drawers {
    display: block;
  }
  .header_drawers.is-open::after {
    content: 'CLOSE';
  }
  .header_drawers span.is-open {
    width: 40px;
    left: 43%;
  }
  .header_drawers span:nth-child(1).is-open {
    transform: rotate(-45deg) translateX(-50%);
  }
  .header_drawers span:nth-child(2).is-open {
    display: none;
  }
  .header_drawers span:nth-child(3).is-open {
    top: 29px;
    transform: rotate(45deg) translateX(-50%);
  }
}

/*FV----------------------------------------------------------- */
.fv {
  background: url(../img/pc_fv_bg.png) no-repeat center center / cover;
}
.fv_wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.fv_btns {
  display: flex;
  align-items: center;
}
.fv_bottom-box {
  background: url(../img/pc_fv_03_bg.png) no-repeat center center / cover;
}
@media screen and (max-width: 1229px) {
  .fv_contents {
    width: 100%;
  }

}
/*sec01----------------------------------------------------------- */
.sec01 {
  position: relative;
}
.sec01 h2 {
  padding-bottom: 120px;
}
.sec01_box {
  position: relative;
  border-radius: 10px;
  height: fit-content;
  box-shadow: 4px 0 10px rgba(147,147,147,0.4);
}
.sec01_box::before {
  content: '';
  position: absolute;
  background-color: var(--color1);
  height: 10px;
  width: 100%;
  top: 0;
  left: 0;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
.sec01_img {
  position: relative;
  z-index: 2;
  margin-top: -150px;
}
.sec01_list {
  display: flex;
  align-items: center;
  gap: 10px;
}
.sec01_list:not(:last-child) {
  border-bottom: 2px dotted #939393;
  letter-spacing: -1px;
}
.sec01_bg {
  position: absolute;
  width: 100%;
  bottom: 0;
  z-index: -1;
}
.sec01_bg img {
  width: 100%;
}
@media screen and (max-width: 1229px) {
  .sec01 h2 {
    padding-bottom: 75px;
  }
  .sec01_img {
    margin-top: -90px;
  }
  .sec01_list p {
    font-size: 20px;
  }
}
/*sec02----------------------------------------------------------- */
.sec02 {
  padding-bottom: 105px;
}
.sec02_item:nth-child(n+4) {
  margin-top: 75px;
}
.sec02_box {
  border-radius: 10px;
  box-shadow: 4px 0 10px rgba(147,147,147,0.4);
}
.sec02_img {
  margin-top: -90px;
}
.sec02_contents {
  letter-spacing: -1px;
}
.sec02 [class*="fx-col"] {
    padding-right: 0;
}
@media screen and (max-width: 1229px) {
  .sec02_img {
    margin-top: -90px;
  }
  .sec02_box h3 {
    font-size: 20px;
  }
  .sec02_item:nth-child(n+4) {
    margin-top: 0;
  }
  .sec02_item:nth-child(n+3) {
    margin-top: 90px;
  }
  .sec02 [class*="fx-col"] {
    padding-right: 15px;
  }
}
/*sec03----------------------------------------------------------- */
.sec03 {
  padding-bottom: 105px;
}
.tab-wrap {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}
.tab-wrap_s {
  display: none;
}
.sec03 .tab {
  width: 20%;
  padding: 15px 0;
  background-color: var(--color3);
  transition: all .3s;
}
.sec03 .tab {
  position: relative;
  cursor: pointer;
}
.sec03 .tab1.active,
.sec03 .tab2.active,
.sec03 .tab3.active,
.sec03 .tab4.active,
.sec03 .tab5.active {
  background-color: var(--color1);
}
.content1,
.content2,
.content3,
.content4,
.content5 {
  transition: all .3s;
  display: none;
}
.content1.show,
.content2.show,
.content3.show,
.content4.show,
.content5.show {
  display: block;
}
.sec03_box {
  background-color: var(--color2);
}
.sec03_box table {
  width: 100%;
}
.sec03_box th,
.sec03_box td {
  padding: 30px;
}
.sec03_box th {
  width: 40%;
}
.sec03_box td {
  width: 60%;
}
.sec03_box td p {
  width: 70%;
  margin-inline: auto;
}
.sec03_font {
  font-size: 28px;
}
@media screen and (max-width: 1229px) {
  .sec03_box td p {
    width: 90%;
  }
}
/*sec04----------------------------------------------------------- */
.sec04 {
  padding-top: 105px;
  background: url(../img/pc_sec04_bg.png) no-repeat center center / cover;
  overflow: hidden;
}
.sec04_item {
  position: relative;
  z-index: 1;
}
.sec04_item:not(:nth-child(3))::after {
  content: '';
  position: absolute;
  background: url(../img/pc_sec04_item_bg.png) no-repeat center center / contain;
  bottom: 0;
  left: 50%;
  width: 1000px;
  height: 279px;
  z-index: -1;
}
.sec04_item:nth-child(3)::after {
  content: '';
  position: absolute;
  background: url(../img/pc_sec04_item_bg.png) no-repeat center center / contain;
  bottom: 0;
  right: 50%;
  width: 1000px;
  height: 279px;
  z-index: -1;
}
.sec04_box {
  position: relative;
  box-shadow: 4px 0 10px rgba(147,147,147,0.4);
  border-radius: 10px;
}
.sec04_num {
  position: absolute;
  font-size: 103px;
  top: -90px;
  left: 60px;
}
.sec04_contents {
  
}
.sec04_contents h3 {
  position: relative;
}
.sec04_contents h3::after {
  content: '';
  position: absolute;
  background-color: var(--color1);
  height: 4px;
  width: 80px;
  left: 0;
  bottom: 0;
}
@media screen and (max-width: 1229px) {
  .sec04_contents h3 {
    font-size: 32px;
  }
  .sec04_num {
    font-size: 90px;
    top: -75px;
    left: 45px;
  }
}
/*sec05----------------------------------------------------------- */
.sec05 {
  background: url(../img/pc_sec05_bg.png) no-repeat center center / cover;
  padding-bottom: 105px;
}
.sec05_items {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
.sec05_item {
  position: relative;
  display: flex;
  border-radius: 10px;
  overflow: hidden;
  z-index: 1;
  width: calc(50% - 15px);
  height: 100%;
  background-color: var(--color_wt);
  box-shadow: 4px 0 10px rgba(147,147,147,0.4);
}
.sec05_item-img {
  width: 40%;
  display: flex;
  justify-content: center;
  overflow: hidden;
}
.sec05_item-img img {
  width: 100%;
  min-width: 240px;
}
.sec05_item-contents {
  position: relative;
  padding: 40px;
  width: 60%;
}
.sec05_item .sec05_item-contents::after {
  position: absolute;
  font-family: din-2014, sans-serif;
  color: var(--color2);
  font-size: 170px;
  bottom: -28px;
  right: 30px;
  opacity: .7;
  font-weight: 600;
  line-height: 1;
  z-index: -1;
}
.sec05_item:nth-child(1) .sec05_item-contents::after {
  content: '01';
  letter-spacing: -10px;
}
.sec05_item:nth-child(2) .sec05_item-contents::after {
  content: '02';
}
.sec05_item:nth-child(3) .sec05_item-contents::after {
  content: '03';
}
.sec05_item:nth-child(4) .sec05_item-contents::after {
  content: '04';
}
@media screen and (max-width: 1229px) {
  .sec05_item {
    flex-direction: column;
  }
  .sec05_item-img {
    width: 100%;
    height: 50%;
  }
  .sec05_item-img img {
    height: 100%;
  }
  .sec05_item-contents {
    padding: 20px;
    width: 100%;
}
}
/*sec06----------------------------------------------------------- */
.sec06 {
  padding-bottom: 105px;
}
.sec06_items {

}
.sec06_item {
  box-shadow: 4px 0 10px rgba(147,147,147,0.4);
  border-radius: 10px;
  overflow: hidden;
}
.sec06_item-img img {
  width: 100%;
}
.sec06_item-contents {
  background-color: var(--color_wt);
  padding: 30px 20px 20px;
}
.sec06_item-tags {
  display: flex;
  justify-content: center;
  gap: 10px;
}
.sec06_item-tag {
  font-size: 14px;
  padding: 5px 20px;
  border: 1px solid var(--color1);
  border-radius: 20px;
}
.sec06_item-contents p {

}
.sec06 [class*="fx-col"] {
    padding-right: 0px;
}
@media screen and (max-width: 1229px) {
  .sec06 [class*="fx-col"] {
    padding-right: 15px;
  }
}
/*CTA, THANKS----------------------------------------------------------- */
.cta,
.thanks {
  background: url(../img/pc_cta_bg.png) no-repeat center center / cover;
}
.cta_btns {
  display: flex;
  justify-content: center;
  gap: 30px;
}
/*sec07----------------------------------------------------------- */
.sec07 {

}
.sec07_items {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
.sec07_box {
  box-shadow: 4px 0 10px rgba(147,147,147,0.4);
  border-radius: 10px;
  width: 24%;
  padding: 20px;
  height: max-content;
  margin-bottom: 0;
}
.sec07_item-head {
  margin-top: -60px;
}
.sec07_item-tag {
  border: 1px solid var(--color1);
  border-radius: 20px;
  padding: 5px 0;
  width: 100%;
}
@media screen and (max-width: 1229px) {
  .sec07_items {
    gap: 10px;
    row-gap: 0;
  }
  .sec07_box {
    width: calc(50% - 5px);
  }
  .sec07_box:nth-child(n+3) {
    margin-top: 60px;
  }
}
/*sec08----------------------------------------------------------- */
.sec08 {
  padding-bottom: 105px;
}
.sec08_item {
  border-radius: 10px;
}
.sec08_q,
.sec08_q-txt {
  display: flex;
}
.sec08_q-txt,
.sec08_a-txt {
  gap: 10px;
}
.sec08_q {
  align-items: center;
  justify-content: space-between;
  padding: 45px;
  border-radius: 20px;
  transition: all .5s;
  gap: 10px;
}
.sec08_q.is-open {
  border-radius: 10px 10px 0 0;
}
.sec08_q-txt {
  align-items: center;
  width: calc(100% - 34px);
}
.sec08_q-txt p:first-child,
.sec08_a-txt p:first-child {
  width: 28px;
}
.sec08_q-txt p:last-child,
.sec08_a-txt p:last-child {
  width: calc(100% - 28px);
}
.sec08_q-txt p:last-child {
  font-size: 24px;
}
.sec08_arw {
  position: relative;
  width: 24px;
  height: 24px;
}
.sec08_arw::before,
.sec08_arw::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 3px;
  background-color: var(--color_bk);
}
.sec08_arw::before {
  top: 50%;
  left: 0;
  transform: translateY(-50%) rotate(90deg);
  transition: transform .4s ease 0s;
}
.sec08_arw::after {
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.sec08_q.is-open .sec08_arw::before {
  transform: translateY(-50%) rotate(0);
}
.sec08_a {
  display: none;
  padding: 0 45px 45px;
  border-radius: 0 0 10px 10px;
}
.sec08_a-txt {
  border-top: 1px solid var(--color_bk);
  display: flex;
}
@media screen and (max-width: 1229px) {
  .sec08_q {
    padding: 30px;
  }
  .sec08_q-txt p:last-child {
    font-size: 20px;
  }

}
/*sec09----------------------------------------------------------- */
.sec09 {
  background: url(../img/pc_sec09_bg.png) no-repeat center center / cover;
}
.form_head {
  display: flex;
  justify-content: flex-end;
  gap: 20px;
}

.form_head span {
  display: inline-block;
  font-weight: bold;
}

.haveto {
  background-color: var(--color1);
  color: #fff;
  padding: 3px 8px;
  font-weight: bold;
  font-size: 16px;
}

.any {
  background-color: #0000ff;
  color: #fff;
  padding: 3px 8px;
  font-weight: bold;
  font-size: 0.8em;
}

.input_adjust {
  padding: 12px 16px;
  border-radius: 3px;
  border: 1px solid #ccc;
}

.input_2col {
  display: flex;
  justify-content: space-between;
  padding-right: 30px;
  width: 100%;
}

.input_2col input {
  width: calc(50% - 15px);
}
.input_1col input {
  width: 100%;
}

.input_zip_2col input {
  width: 30%;
}

.input_pref {
  width: 50%;
}

.input_select select {
  width: 100%;
  padding-right: 1em;
  cursor: pointer;
  text-overflow: ellipsis;
  border: none;
  outline: none;
  background: transparent;
  background-image: none;
  box-shadow: none;
  -webkit-appearance: none;
  appearance: none;
  padding: 12px 16px;
}

.input_select select::-ms-expand {
  display: none;
}

.input_select {
  position: relative;
  border-radius: 2px;
  border: 1px solid #ccc;
  border-radius: 10px;
  background: #ffffff;
}

.input_select::before {
  position: absolute;
  top: calc(50% - 3px);
  right: 1em;
  width: 0;
  height: 0;
  padding: 0;
  content: '';
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #000;
  pointer-events: none;
}

.check_3col {
  display: flex;
  flex-wrap: wrap;
  row-gap: 15px;
  column-gap: 30px;
}
@media screen and (min-width: 768px) {
  .fx-col-16-s {
    -ms-flex-preferred-size: 16%;
    flex-basis: 16%;
    max-width: 16%;
    padding-top: 12px;
  }
  .fx-col-54-s {
    -ms-flex-preferred-size: 54%;
    flex-basis: 54%;
    max-width: 54%;
  }
}
.textarea textarea {
  width: 100%;
}

.check_agree input {
  height: 20px;
  width: 20px;
}

.check_agree span {
  padding-top: 5px;
}

.sbm_wrap {
  padding: 30px 15px 0;
}

.sbm {
  position: relative;
  width: 50%;
  margin: 0 auto;
  border-radius: 40px;
  font-size: 1.5em;
  font-weight: bold;
  text-align: center;
  cursor: pointer;
  padding: 15px;
  background: var(--color1);
  color: #fff;
  line-height: 1em;
  transition: .3s;
  border: 2px solid var(--color1);
}

.sbm:before {
  position: absolute;
  content: "\f054";
  font-family: "Font Awesome 5 Free";
  font-weight: bold;
  font-size: 20px;
  top: 50%;
  right: 15px;
  color: #fff;
  transform: translateY(-50%);
}

.sbm_btn {
  border: 0;
  background-color: transparent;
}

.sbm_btn:focus {
  outline: none;
}

.sbm:hover {
  color: var(--color1);
  background: #fff;
}

.sbm:hover:before {
  color: var(--color1);
}

@media screen and (max-width: 1229px) {
  .form_wrap {
    gap: 10px;
  }
  .form_head {
    justify-content: start;
  }
}
/*sec20----------------------------------------------------------- */


/*Footer----------------------------------------------------------- */
footer {
  padding: 45px 0;
}
.footer_links {
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer_link a {
  padding: 10px;
  display: block;
}

footer .copy {
  font-size: 90%;
}
