@charset "UTF-8";
/*  letter-spacing: tracking(140); */
/*  @include l_h(14, 16.8);*/
:root {
  --Red: #C40C08;
  --Gold: #D5BE79;
  --fontsize_XXS: 10px;
  --fontsize_XS: 10px;
  --fontsize_S: 12px;
  --fontsize_M: 14px;
  --fontsize_L: 16px;
  --fontsize_XL: 18px;
  --fontsize_XXL: 20px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  vertical-align: baseline;
  word-break: break-word;
  overflow-wrap: break-word;
}

body {
  color: #000000;
  font-size: 16px;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "palt";
}
body.open_menu {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
}

.super_wrap {
  overflow-x: hidden;
}

.serif {
  font-family: YakuHanMP, "Noto Serif JP", serif;
}

a {
  color: #000000;
  text-decoration: none;
  opacity: 1;
  transition: opacity 0.8s ease;
}
a:hover {
  opacity: 0.6;
}

img {
  max-width: 100%;
  height: auto;
}

ul {
  list-style: none;
}

.flex {
  display: flex;
}

.flex_reverse {
  flex-direction: row-reverse;
}

.justify_center {
  justify-content: center;
}

.justify_end {
  justify-content: flex-end;
}

.space_between {
  justify-content: space-between;
}

.align_items_center {
  align-items: center;
}

.flex_wrap {
  flex-wrap: wrap;
}

.flex_center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.ta-l {
  text-align: left;
}

.ta-c {
  text-align: center;
}

.ta-r {
  text-align: right;
}

.fw_bold {
  font-weight: bold;
}

.fs10 {
  font-size: 10px;
}

.red {
  color: #e23541;
}

.txt_fade_in {
  opacity: 0;
  transition: opacity 1.4s;
}
.txt_fade_in.active {
  opacity: 1;
}

.img_fade_in {
  opacity: 0;
  transition: opacity 1.4s;
}
.img_fade_in.active {
  opacity: 1;
}

.btn_reset {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  border: none;
  background: transparent;
  outline: none;
  cursor: pointer;
}

.inner {
  max-width: 1350px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  position: relative;
}

.full_width {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.indent {
  padding-left: 1em;
  text-indent: -1em;
}

.h2_wrap::before {
  content: "";
  display: block;
  width: 80px;
  height: 32px;
  margin-bottom: 24px;
  background: center/cover no-repeat url("../images/common/h2.svg");
  margin-left: auto;
  margin-right: auto;
}
.h2_wrap h2 {
  font-size: 47px;
  letter-spacing: 0.04em;
  line-height: 1.2553191489;
  font-family: "Noto Serif JP", serif;
  font-weight: 200;
  text-align: center;
  color: #020245;
  font-weight: 500;
}

.common_contact_wrap {
  display: flex;
  gap: 10px;
  letter-spacing: 0.06em;
  font-size: 22px;
  font-weight: 600;
}
.common_contact_wrap > * {
  height: 153px;
  background-color: #fff;
  border: Solid rgba(103, 122, 235, 0.99) 1px;
  box-shadow: 2px 2px 2px 0 rgba(0, 0, 0, 0.3);
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #020245;
}
.common_contact_wrap .tel_wrap {
  width: 100%;
  gap: 27px;
}
.common_contact_wrap .tel_wrap .tel_num {
  margin-top: 4px;
  font-size: 54px;
  letter-spacing: 0;
  line-height: 1;
  color: #003399;
  font-weight: 600;
}
.common_contact_wrap .tel_wrap span + span {
  letter-spacing: 0;
  margin-left: 37px;
  font-feature-settings: "palt";
}
.common_contact_wrap .form_wrap {
  flex-shrink: 0;
  width: 276px;
  line-height: 1.3636363636;
  flex-direction: column;
  gap: 14px;
  text-align: center;
}
.common_contact_wrap .line_wrap {
  flex-shrink: 0;
  width: 276px;
  flex-direction: column;
  gap: 6px;
}

.common_end_of_contact_wrap {
  padding-left: 70px;
  padding-right: 70px;
  padding-top: 72px;
  padding-bottom: 74px;
  background-color: #020245;
}
.common_end_of_contact_wrap .first_p {
  margin-bottom: 58px;
  font-size: 32px;
  font-weight: 600;
  line-height: 1;
  text-align: center;
  color: #fff;
}
.common_end_of_contact_wrap .last_p {
  margin-top: 48px;
  font-size: 24px;
  font-weight: 600;
  line-height: 1;
  text-align: center;
  color: #fff;
}

/****************************/
/**********タブレット・スモールPC以下************/
/***************************/
/****************************/
/**********タブレット・スモールPC以上************/
/***************************/
@media screen and (min-width: 769px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
  .only_sp {
    display: none !important;
  }
}
/****************************/
/**********スマホ************/
/***************************/
@media screen and (max-width: 768px) {
  body {
    font-size: 16px;
  }
  .inner {
    padding-left: 14px;
    padding-right: 14px;
  }
  .only_pc {
    display: none !important;
  }
  .sp_none {
    display: none !important;
  }
  .sp_column {
    flex-direction: column;
  }
  .sp_column.align_items_center {
    justify-content: center;
  }
  .h2_wrap::before {
    width: 50px;
    height: 19px;
    margin-bottom: 12px;
  }
  .h2_wrap h2 {
    font-size: 26px;
    letter-spacing: 0.025em;
    line-height: 1.3461538462;
  }
  .common_contact_wrap {
    flex-wrap: wrap;
    gap: 8px;
    font-size: 16px;
  }
  .common_contact_wrap > * {
    height: 105px;
    border-radius: 3px;
  }
  .common_contact_wrap .tel_wrap {
    width: 100%;
    gap: 27px;
  }
  .common_contact_wrap .tel_wrap .tel_num {
    margin-top: 4px;
    font-size: 36px;
  }
  .common_contact_wrap .tel_wrap span + span {
    font-size: 14px;
    margin-left: 28px;
  }
  .common_contact_wrap .tel_wrap img {
    width: 53px;
  }
  .common_contact_wrap .form_wrap {
    flex-shrink: 0;
    width: calc(50% - 4px);
    line-height: 1.3636363636;
    flex-direction: column;
    gap: 12px;
  }
  .common_contact_wrap .form_wrap img {
    width: 26px;
  }
  .common_contact_wrap .line_wrap {
    flex-shrink: 0;
    width: calc(50% - 4px);
    flex-direction: column;
    gap: 6px;
  }
  .common_contact_wrap .line_wrap img {
    width: 40px;
  }
  .common_end_of_contact_wrap {
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 46px;
    padding-bottom: 46px;
  }
  .common_end_of_contact_wrap .first_p {
    margin-bottom: 30px;
    font-size: 24px;
  }
  .common_end_of_contact_wrap .last_p {
    margin-top: 30px;
    font-size: 18px;
    line-height: 1.5;
    text-align: left;
  }
}
/******************************/
/**********ヘッダー************/
/*****************************/
#header {
  position: absolute;
  width: 100%;
  background-color: #fff;
  z-index: 2;
}
#header.ready {
  position: fixed;
  top: -120px;
  left: 0;
  transition: top 0.8s ease;
}
#header.fadein {
  top: 0;
}
#header .inner {
  max-width: none;
  min-height: 125px;
  display: flex;
  align-items: center;
}
#header .header_title_wrap {
  margin-right: 20px;
}
#header .header_menu_wrap {
  margin-left: auto;
}
#header ul {
  display: flex;
}
#header ul li {
  padding-left: 20px;
  padding-right: 20px;
  text-align: center;
  border-left: rgba(2, 2, 69, 0.2) 1px solid;
}
#header ul a {
  font-size: 18px;
  color: #020245;
  line-height: 1.3333333333;
}
#header .header_right {
  margin-left: 20px;
}
#header .tel_wrap {
  margin-bottom: 12px;
}
#header .tel_wrap a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 32px;
  font-weight: 600;
  letter-spacing: -0.029em;
  line-height: 1;
  color: #003399;
}
#header .header_contact a {
  font-size: 18px;
  background-color: #020245;
  width: 270px;
  height: 50px;
  border-radius: 4px;
  font-weight: 500;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

/****************************/
/**********タブレット・スモールPC以下************/
/***************************/
/****************************/
/**********タブレット・スモールPC以上************/
/***************************/
@media screen and (min-width: 769px) and (max-width: 1380px) {
  #header .header_title_wrap img {
    max-width: 250px;
  }
  #header ul a {
    font-size: 16px;
  }
  #header .header_contact a {
    font-size: 16px;
    max-width: 270px;
    width: 100%;
  }
  #header .tel_wrap a {
    font-size: 24px;
  }
}
@media screen and (min-width: 769px) and (max-width: 1190px) {
  #header .header_title_wrap img {
    max-width: 180px;
  }
  #header ul a {
    font-size: 13px;
  }
  #header .header_contact a {
    font-size: 12px;
    height: 40px;
  }
  #header .tel_wrap a {
    font-size: 20px;
  }
}
@media screen and (min-width: 769px) and (max-width: 1010px) {
  #header .header_title_wrap img {
    max-width: 140px;
  }
  #header ul a {
    font-size: 11px;
  }
  #header .header_contact a {
    font-size: 12px;
    height: 40px;
  }
  #header .tel_wrap a {
    font-size: 16px;
  }
}
@media screen and (min-width: 769px) and (max-width: 890px) {
  #header {
    white-space: nowrap;
  }
  #header .header_title_wrap img {
    max-width: 120px;
  }
  #header ul a {
    font-size: 10px;
  }
  #header ul li {
    padding-left: 10px;
    padding-right: 10px;
  }
  #header .header_contact a {
    font-size: 10px;
    height: 30px;
  }
  #header .tel_wrap a {
    font-size: 14px;
  }
  #header .tel_wrap a img {
    width: 24px;
  }
}
/****************************/
/**********スマホ************/
/***************************/
@media screen and (max-width: 768px) {
  #header.ready {
    top: -75px;
  }
  #header.fadein {
    top: 0;
  }
  #header .header_menu_wrap,
  #header .header_right {
    display: none;
  }
  #header .inner {
    min-height: 75px;
  }
  #header .header_title_wrap img {
    max-width: 190px;
  }
  #header .hamburger_btn_wrap {
    margin-left: auto;
  }
  #header .hamburger_btn {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    width: 60px;
  }
  #header .hamburger_btn span,
  #header .hamburger_btn span:before,
  #header .hamburger_btn span:after {
    content: "";
    display: block;
    height: 2px;
    width: 25px;
    border-radius: 3px;
    background-color: #000;
    position: absolute;
    transition: all 0.4s ease;
  }
  #header .hamburger_btn span:before {
    bottom: 8px;
  }
  #header .hamburger_btn span:after {
    top: 8px;
  }
  #header .sp_menu_title_wrap {
    text-align: center;
    margin-bottom: 1em;
  }
  #header .header_menu_wrap_sp {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 60px 20px;
    background-color: rgb(255, 255, 255);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 1s;
    height: 100vh;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    width: 100vw;
    z-index: 100;
  }
  #header .header_menu_wrap_sp ul {
    display: block;
  }
  #header .header_menu_wrap_sp ul li {
    border: none;
    border-bottom: rgba(2, 2, 69, 0.2) 1px solid;
    padding-top: 8px;
    padding-bottom: 8px;
  }
  #header .header_menu_list_sp {
    list-style: none;
  }
  .open_menu #header .hamburger_btn span {
    background-color: rgba(255, 255, 255, 0);
    transition: all 0.1s ease;
  }
  .open_menu #header .hamburger_btn span:before {
    bottom: 0;
    transform: rotate(45deg);
  }
  .open_menu #header .hamburger_btn span:after {
    top: 0;
    transform: rotate(-45deg);
  }
  .open_menu #header .hamburger_btn_wrap {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 100000;
  }
  .open_menu #header .header_menu_wrap_sp {
    display: block;
    opacity: 1;
    visibility: visible;
    position: fixed;
    transition: opacity 0.5s ease;
  }
}
.mv_section {
  margin-top: 120px;
}
.mv_section .inner {
  max-width: 1600px;
  display: flex;
  align-items: center;
  padding: 0;
}
.mv_section .txt_wrap {
  width: 610px;
  height: 328px;
  padding-top: 13px;
  padding-left: 53px;
  padding-right: 66px;
  background: rgba(2, 2, 69, 0.95);
  border-radius: 5px;
  top: 106px;
  left: 67px;
  position: absolute;
}
.mv_section .txt_wrap p {
  font-size: 38px;
  line-height: 2.6315789474;
  letter-spacing: 0.1em;
  font-weight: 200;
  color: #fff;
  border-bottom: 1px solid #fff;
  white-space: nowrap;
}
.mv_section .txt_wrap p:last-child {
  border: none;
}
.mv_section .img_wrap {
  margin-left: auto;
}

/****************************/
/**********タブレット・スモールPC以下************/
/***************************/
/****************************/
/**********タブレット・スモールPC以上************/
/***************************/
@media screen and (min-width: 769px) and (max-width: 1010px) {
  .mv_section .txt_wrap {
    width: 610px;
    height: 328px;
    padding-top: 13px;
    padding-left: 53px;
    padding-right: 66px;
    left: 0px;
    top: 30px;
  }
}
/****************************/
/**********スマホ************/
/***************************/
@media screen and (max-width: 768px) {
  .mv_section {
    margin-top: 75px;
  }
  .mv_section .inner {
    padding: 0;
    display: block;
  }
  .mv_section .txt_wrap {
    width: 310px;
    height: 180px;
    left: 0;
    top: 125px;
    padding-top: 14px;
    padding-left: 20px;
    padding-right: 20px;
    border-radius: 0;
  }
  .mv_section .txt_wrap p {
    font-size: 21px;
    line-height: 2.380952381;
  }
  .mv_section .img_wrap {
    padding-left: 38px;
  }
  .mv_section .img_wrap img {
    -o-object-fit: cover;
       object-fit: cover;
    max-width: none;
    width: 100%;
    aspect-ratio: 360/480;
  }
}
.balloon_section {
  margin-top: -62px;
  background-color: #f1f0e3;
}
.balloon_section .balloon_wrap {
  padding-top: 120px;
  padding-bottom: 76px;
  gap: 38px 25px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.balloon_section .balloon {
  background-color: #fff;
  border: 1px solid #000;
  border-radius: 28px;
  position: relative;
  display: inline-flex;
  align-items: center;
  padding-left: 35px;
  padding-right: 40px;
  min-height: 55px;
  line-height: 1;
  font-size: 25.6px;
  letter-spacing: 0.02em;
  font-weight: 200;
  font-family: YakuHanMP, "Noto Serif JP", serif;
  transform: translate3d(0, 100px, 0);
  opacity: 0;
  transition-property: opacity, transform;
  transition-duration: 0.4s;
  transition-timing-function: ease;
}
.balloon_section .balloon.active {
  opacity: 1;
  transform: translateZ(0);
}
.balloon_section .balloon:before {
  content: "";
  display: block;
  width: 24px;
  height: 1px;
  background-color: #fff;
  position: absolute;
  bottom: -1px;
}
.balloon_section .balloon::after {
  content: "";
  display: block;
  width: 24px;
  height: 1px;
  background-color: #000;
  position: absolute;
  bottom: -8px;
}
.balloon_section .balloon.left::after {
  transform: rotateZ(-45deg);
}
.balloon_section .balloon.right::after {
  transform: rotateZ(45deg);
}
.balloon_section .balloon:nth-child(1)::before {
  right: 40px;
}
.balloon_section .balloon:nth-child(1)::after {
  right: 33px;
}
.balloon_section .balloon:nth-child(2)::before {
  right: 135px;
}
.balloon_section .balloon:nth-child(2)::after {
  right: 142px;
}
.balloon_section .balloon:nth-child(3)::before {
  right: 60px;
}
.balloon_section .balloon:nth-child(3)::after {
  right: 67px;
}
.balloon_section .balloon:nth-child(4)::before {
  right: 174px;
}
.balloon_section .balloon:nth-child(4)::after {
  right: 167px;
}
.balloon_section .balloon:nth-child(5)::before {
  right: 46px;
}
.balloon_section .balloon:nth-child(5)::after {
  right: 53px;
}
.balloon_section .balloon:nth-child(6)::before {
  right: 100px;
}
.balloon_section .balloon:nth-child(6)::after {
  right: 107px;
}
.balloon_section .balloon:nth-child(7)::before {
  right: 174px;
}
.balloon_section .balloon:nth-child(7)::after {
  right: 167px;
}
.balloon_section .balloon:nth-child(8)::before {
  left: 36px;
}
.balloon_section .balloon:nth-child(8)::after {
  left: 29px;
}
.balloon_section .p1_wrap {
  position: relative;
}
.balloon_section .p1_wrap:after {
  content: "";
  display: block;
  width: 225px;
  height: 225px;
  background: center/contain no-repeat url("../images/balloon/ma.svg");
  position: absolute;
  top: 0px;
  left: 50%;
  transform: translateX(calc(-50% - 471px));
}
.balloon_section .p1 {
  width: 820px;
  height: 84px;
  background-color: rgba(2, 2, 69, 0.95);
  border-radius: 5px;
  font-size: 38px;
  letter-spacing: 0.04em;
  line-height: 1;
  font-weight: 200;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}
.balloon_section .p1::before {
  content: "";
  display: block;
  width: 30px;
  height: 4px;
  background-color: #020245;
  position: absolute;
  bottom: -10px;
  left: 152px;
  transform: rotateZ(45deg);
}
.balloon_section .p2 {
  margin-top: 40px;
  margin-bottom: 42px;
  font-size: 38px;
  letter-spacing: 0.06em;
  line-height: 1.6842105263;
  font-weight: 200;
  text-align: center;
  color: #020245;
  position: relative;
}
.balloon_section .img_wrap img {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/****************************/
/**********タブレット・スモールPC以下************/
/***************************/
/****************************/
/**********タブレット・スモールPC以上************/
/***************************/
@media screen and (min-width: 769px) and (max-width: 1070px) {
  .balloon_section .p1_wrap:after {
    width: 180px;
    height: 180px;
    top: 66px;
    transform: translateX(calc(-50% - 340px));
  }
  .balloon_section .p1 {
    width: 100%;
    max-width: 840px;
    font-size: 28px;
    height: 65px;
  }
  .balloon_section .p2 {
    font-size: 26px;
  }
}
/****************************/
/**********スマホ************/
/***************************/
@media screen and (max-width: 768px) {
  .balloon_section {
    margin-top: -58px;
  }
  .balloon_section .balloon_wrap {
    padding-top: 80px;
    padding-bottom: 30px;
    gap: 23px 18px;
  }
  .balloon_section .balloon {
    border-radius: 17px;
    line-height: 1.75;
    padding-left: 19px;
    padding-right: 19px;
    min-height: 34px;
    font-size: 16px;
  }
  .balloon_section .balloon:after {
    width: 16px;
    bottom: -7px;
  }
  .balloon_section .balloon:nth-child(4) {
    margin-right: auto;
  }
  .balloon_section .balloon:nth-child(5) {
    margin-left: auto;
  }
  .balloon_section .balloon:nth-child(7) {
    padding-left: 4px;
    padding-right: 4px;
  }
  .balloon_section .p1_wrap:after {
    width: 88px;
    height: 88px;
    top: 121px;
    left: 45px;
    transform: translateX(-50%);
  }
  .balloon_section .p1 {
    font-size: 20px;
    max-width: 360px;
    width: 100%;
    height: 90px;
    line-height: 1.8;
    text-align: center;
    font-weight: 500;
  }
  .balloon_section .p1:before {
    width: 24px;
    height: 2px;
    bottom: -8px;
    left: 48px;
  }
  .balloon_section .p2 {
    margin-top: 30px;
    margin-bottom: 12px;
    padding: 0 35px;
    font-size: 19px;
    text-align: left;
    line-height: 2;
    font-feature-settings: "palt";
  }
  .balloon_section .img_wrap {
    margin-left: -calc(9px);
    margin-right: -calc(9px);
  }
}
.about_section {
  padding-top: 106px;
  padding-bottom: 96px;
  background: center/cover no-repeat url("../images/about/bg.png");
}
.about_section .faq_wrap {
  max-width: 880px;
  max-width: 930px;
  margin-left: auto;
  margin-right: auto;
}
.about_section .faq_wrap + .faq_wrap {
  margin-top: 128px;
}
.about_section .q_wrap {
  font-size: 45px;
  line-height: 59px;
  letter-spacing: 0.025em;
  font-weight: 500;
  color: #ffffff;
  text-align: center;
  font-feature-settings: "palt";
}
.about_section .q_wrap:before {
  content: "";
  display: block;
  width: 71px;
  height: 71px;
  background: center/cover no-repeat url("../images/about/ma.svg");
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 25px;
}
.about_section .a_wrap {
  padding-top: 30px;
  margin-top: 34px;
  font-size: 28px;
  line-height: 1.7857142857;
  letter-spacing: 0.04em;
  color: #ffffff;
  border-top: 1px solid #fff;
  font-feature-settings: "palt";
}

/****************************/
/**********タブレット・スモールPC以下************/
/***************************/
/****************************/
/**********タブレット・スモールPC以上************/
/***************************/
/****************************/
/**********スマホ************/
/***************************/
@media screen and (max-width: 768px) {
  .about_section {
    padding-top: 35px;
    padding-bottom: 48px;
  }
  .about_section .faq_wrap + .faq_wrap {
    margin-top: 54px;
  }
  .about_section .q_wrap {
    font-size: 24px;
    line-height: 1.4583333333;
  }
  .about_section .q_wrap::before {
    width: 40px;
    height: 40px;
    margin-bottom: 20px;
  }
  .about_section .a_wrap {
    padding-top: 16px;
    margin-top: 16px;
    font-size: 16px;
    line-height: 1.75;
  }
}
.strong_section {
  padding-top: 121px;
  padding-bottom: 130px;
  background-color: #ebebf0;
}
.strong_section .strong_wraps {
  margin-top: 70px;
  gap: 18px 22px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.strong_section .strong_wrap {
  padding-top: 53px;
  padding-bottom: 40px;
  padding-left: 42px;
  padding-right: 42px;
  max-width: 625px;
  border-radius: 5px;
  width: 100%;
  background-color: #fff;
  position: relative;
}
.strong_section .strong_wrap .num_wrap {
  font-size: 36px;
  line-height: 1;
  letter-spacing: 0.04em;
  color: #677aeb;
  font-family: "Noto Serif JP", serif;
  font-weight: 200;
  top: 23px;
  right: 28px;
  position: absolute;
}
.strong_section .strong_wrap .img_wrap {
  text-align: center;
}
.strong_section .strong_wrap .title_wrap {
  margin-top: 42px;
  margin-bottom: 38px;
  text-align: center;
}
.strong_section .strong_wrap .title_wrap p {
  font-size: 36px;
  line-height: 1.6388888889;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding-left: 38px;
  padding-right: 38px;
  padding-bottom: 13px;
  color: #677aeb;
  display: inline-block;
  border-bottom: 2px solid #677aeb;
}
.strong_section .strong_wrap .sub_title_wrap {
  margin-bottom: 28px;
  font-weight: 600;
  font-size: 28px;
  line-height: 1.3571428571;
  letter-spacing: 0.04em;
  font-feature-settings: "palt";
}
.strong_section .strong_wrap .txt_wrap {
  font-size: 20px;
  line-height: 1.6;
  letter-spacing: 0.04em;
}

/****************************/
/**********タブレット・スモールPC以下************/
/***************************/
/****************************/
/**********タブレット・スモールPC以上************/
/***************************/
/****************************/
/**********スマホ************/
/***************************/
@media screen and (max-width: 768px) {
  .strong_section {
    padding-top: 39px;
    padding-bottom: 56px;
  }
  .strong_section .strong_wraps {
    margin-top: 30px;
  }
  .strong_section .strong_wrap {
    padding-top: 30px;
    padding-bottom: 28px;
    padding-left: 25px;
    padding-right: 25px;
    max-width: 625px;
    border-radius: 5px;
    padding-top: 10px;
  }
  .strong_section .strong_wrap .num_wrap {
    font-size: 21px;
    top: 12px;
    right: 18px;
    top: auto;
    right: auto;
    position: relative;
    text-align: right;
    margin-right: -6px;
    margin-bottom: -20px;
  }
  .strong_section .strong_wrap .title_wrap {
    margin-top: 18px;
    margin-bottom: 34px;
    margin-top: -3px;
  }
  .strong_section .strong_wrap .title_wrap p {
    font-size: 24px;
    line-height: 1.6388888889;
    padding-left: 2px;
    padding-right: 2px;
    padding-bottom: 3px;
  }
  .strong_section .strong_wrap .sub_title_wrap {
    margin-bottom: 12px;
    color: #020245;
    font-size: 18px;
    line-height: 1.3333333333;
  }
  .strong_section .strong_wrap .img_wrap {
    transform: scale(0.55);
  }
  .strong_section .strong_wrap .txt_wrap {
    font-size: 16px;
    line-height: 1.5;
    color: #020245;
  }
}
.genre_section {
  padding-top: 115px;
  padding-bottom: 145px;
}
.genre_section .genre_wraps {
  margin-top: 92px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 53px 62px;
}
.genre_section .title_wrap {
  margin-top: 14px;
  margin-bottom: 10px;
  font-size: 28px;
  line-height: 2;
  letter-spacing: 0.04em;
  color: #003399;
  font-weight: 700;
}
.genre_section li {
  font-size: 20px;
  line-height: 2.5;
  letter-spacing: 0.04em;
  text-decoration: underline;
  text-decoration-color: #999999;
  text-decoration-thickness: 1px;
  text-underline-offset: 12px;
}

/****************************/
/**********タブレット・スモールPC以下************/
/***************************/
/****************************/
/**********タブレット・スモールPC以上************/
/***************************/
/****************************/
/**********スマホ************/
/***************************/
@media screen and (max-width: 768px) {
  .genre_section {
    padding-top: 42px;
    padding-bottom: 45px;
  }
  .genre_section .genre_wraps {
    margin-top: 28px;
    gap: 46px 20px;
  }
  .genre_section .title_wrap {
    margin-top: 6px;
    margin-bottom: 1px;
    font-size: 22px;
    line-height: 2.6818181818;
  }
  .genre_section li {
    font-size: 16px;
    color: #020245;
    line-height: 1.9;
    text-underline-offset: 7px;
  }
}
.flow_section {
  padding-top: 97px;
  padding-bottom: 122px;
  background-color: #f1f0e3;
}
.flow_section .intro_wrap {
  margin-top: 82px;
  margin-bottom: 70px;
  text-align: center;
}
.flow_section .intro_wrap p {
  text-align: left;
  font-size: 24px;
  letter-spacing: 0.04em;
  line-height: 2.1666666667;
  display: inline-block;
}
.flow_section .flow_wrap {
  border-radius: 5px;
  overflow: hidden;
  letter-spacing: 0.04em;
}
.flow_section .flow_wrap + .flow_wrap {
  margin-top: 20px;
}
.flow_section .switch_content {
  padding-left: 40px;
  padding-right: 110px;
  min-height: 140px;
  background-color: #e6da59;
  display: flex;
  align-items: center;
  position: relative;
  cursor: pointer;
}
.flow_section .switch_content .left_wrap {
  min-width: 440px;
  display: flex;
  align-items: center;
  gap: 36px;
}
.flow_section .switch_content .left_wrap p {
  font-size: 36px;
  font-weight: 600;
}
.flow_section .switch_content .left_wrap p span {
  font-size: 28px;
}
.flow_section .switch_content .right_wrap {
  align-items: center;
  display: flex;
  gap: 36px;
}
.flow_section .switch_content .right_wrap div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.flow_section .switch_content .right_wrap div span {
  white-space: nowrap;
  font-size: 21px;
  height: 40px;
  font-weight: 600;
  padding-left: 20px;
  padding-right: 20px;
  line-height: 1;
  background: #ffffff;
  display: inline-flex;
  border-radius: 5px;
  align-items: center;
  justify-content: center;
}
.flow_section .switch_content .right_wrap p {
  font-size: 21px;
  font-weight: 500;
  line-height: 1.619047619;
}
.flow_section .switch_content .arrow_wrap {
  right: 76px;
  width: 21px;
  height: 11px;
  background: center/cover no-repeat url("../images/flow/arrow.svg");
  position: absolute;
  transition: 0.3s;
}
.flow_section .switch_content.active .arrow_wrap {
  transform: rotate(180deg);
}
.flow_section .open_content {
  display: none;
  padding-top: 42px;
  background-color: #ffffff;
}
.flow_section .open_content .step_inner {
  padding: 0 45px 0 80px;
}
.flow_section .open_content .step_wrap + .step_wrap {
  margin-top: 76px;
}
.flow_section .open_content .step_flex {
  gap: 30px;
  display: flex;
}
.flow_section .open_content p.first {
  margin-bottom: 71px;
  font-size: 22px;
  line-height: 1.9090909091;
  text-align: center;
}
.flow_section .open_content .title_wrap {
  font-size: 32px;
  line-height: 1.46875;
  font-weight: 600;
  color: #003399;
}
.flow_section .open_content .sub_title_wrap {
  margin-top: 20px;
  margin-bottom: 18px;
  font-size: 24px;
  line-height: 1.3333333333;
  font-weight: 600;
  color: #333;
}
.flow_section .open_content .txt_wrap {
  font-size: 20px;
  line-height: 1.6;
}
.flow_section .open_content .img_wrap {
  width: 480px;
  flex-shrink: 0;
  position: relative;
}
.flow_section .open_content .step_num {
  top: -24px;
  left: -34px;
  padding-top: 20px;
  width: 110px;
  height: 110px;
  font-size: 68px;
  border-radius: 5px;
  background-color: #020245;
  line-height: 1;
  font-weight: 200;
  font-family: "Noto Serif JP", serif;
  color: #ffffff;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
}
.flow_section .open_content .step_num:before {
  content: "";
  display: block;
  position: absolute;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: 58px;
  height: 21px;
  background: center/cover no-repeat url("../images/flow/step.svg");
}
.flow_section .open_content span.yellow {
  background-color: #ebe27c;
}
.flow_section .open_content .sub_step_wrap {
  margin-top: 38px;
  margin-bottom: 72px;
}
.flow_section .open_content .sub_step_wrap p {
  font-size: 20px;
  line-height: 1.6;
}
.flow_section .etc01 {
  height: 22px;
}
.flow_section .etc02 {
  height: 22px;
}
.flow_section .etc03 {
  height: 1.5em;
}
.flow_section .etc05 {
  margin-top: 1.5em;
}
.flow_section .etc05 span {
  font-weight: 600;
}
.flow_section .etc06 {
  margin-top: 60px;
}
.flow_section .annotation {
  font-size: 20px;
  line-height: 1.6;
  margin-top: 1em;
  padding-left: 1em;
  text-indent: -1em;
}
.flow_section .red {
  color: #d40000;
}
.flow_section .trip_area_wrap {
  margin-top: 74px;
  margin-bottom: 43px;
  padding-top: 42px;
  padding-bottom: 42px;
  padding-left: 52px;
  padding-right: 63px;
  border: 6px solid #e6da59;
  border-radius: 5px;
  display: flex;
  gap: 35px;
}
.flow_section .trip_area_wrap .left_wrap > div {
  display: flex;
  gap: 26px;
  align-items: center;
}
.flow_section .trip_area_wrap .left_wrap > div span {
  font-size: 32px;
  font-weight: 600;
  line-height: 1;
}
.flow_section .trip_area_wrap .left_wrap > p {
  margin-top: 33px;
  font-size: 22px;
  line-height: 1.6363636364;
  font-weight: 500;
  font-feature-settings: "palt";
}
.flow_section .trip_area_wrap .right_wrap {
  flex-shrink: 0;
}

/****************************/
/**********タブレット・スモールPC以下************/
/***************************/
/****************************/
/**********タブレット・スモールPC以上************/
/***************************/
@media screen and (min-width: 769px) and (max-width: 1315px) {
  .flow_section .switch_content {
    padding-left: 30px;
    padding-right: 50px;
    min-height: auto;
    flex-wrap: wrap;
    padding-top: 20px;
    padding-bottom: 20px;
    gap: 20px;
  }
  .flow_section .switch_content .arrow_wrap {
    right: 20px;
  }
  .flow_section .switch_content .right_wrap {
    flex-wrap: wrap;
  }
  .flow_section .switch_content .right_wrap p {
    font-size: 18px;
  }
  .flow_section .open_content .common_contact_wrap {
    flex-wrap: wrap;
  }
  .flow_section .open_content .common_contact_wrap .form_wrap {
    width: calc(50% - 5px);
  }
  .flow_section .open_content .common_contact_wrap .line_wrap {
    width: calc(50% - 5px);
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .flow_section .open_content .step_flex {
    gap: 30px;
    flex-wrap: wrap;
  }
}
@media screen and (min-width: 769px) and (max-width: 1000px) {
  .flow_section .trip_area_wrap {
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
  }
}
/****************************/
/**********スマホ************/
/***************************/
@media screen and (max-width: 768px) {
  .flow_section {
    padding-top: 57px;
    padding-bottom: 49px;
  }
  .flow_section .intro_wrap {
    margin-top: 38px;
    margin-bottom: 38px;
  }
  .flow_section .intro_wrap p {
    padding-left: 15px;
    padding-right: 15px;
    font-size: 16px;
    line-height: 1.5;
  }
  .flow_section .flow_wrap {
    box-shadow: 2px 2px 1px 0 rgba(0, 0, 0, 0.4);
  }
  .flow_section .flow_wrap1 .switch_content img {
    width: 73px;
  }
  .flow_section .flow_wrap2 .switch_content img {
    width: 65px;
  }
  .flow_section .flow_wrap3 .switch_content img {
    width: 67px;
  }
  .flow_section .switch_content {
    padding-top: 18px;
    padding-bottom: 14px;
    padding-left: 22px;
    padding-right: 22px;
    flex-direction: column;
    align-items: flex-start;
  }
  .flow_section .switch_content .left_wrap {
    gap: 20px;
  }
  .flow_section .switch_content .left_wrap p {
    font-size: 26px;
    color: #020245;
  }
  .flow_section .switch_content .left_wrap p span {
    font-size: 20px;
  }
  .flow_section .switch_content .right_wrap {
    gap: 10px;
    margin-top: 12px;
    flex-direction: column;
    width: 100%;
  }
  .flow_section .switch_content .right_wrap p {
    font-size: 16px;
    line-height: 1.5;
  }
  .flow_section .switch_content .right_wrap div {
    margin-left: auto;
    margin-right: auto;
  }
  .flow_section .switch_content .right_wrap div span {
    height: 29px;
    font-size: 16px;
    color: #020245;
  }
  .flow_section .switch_content .arrow_wrap {
    right: 28px;
    top: 46px;
    width: 13px;
    height: 6px;
  }
  .flow_section .open_content {
    padding-top: 25px;
  }
  .flow_section .open_content .step_inner {
    padding: 0 12px 0 12px;
  }
  .flow_section .open_content p.first {
    margin-bottom: 40px;
    font-size: 16px;
    line-height: 1.5;
    text-align: left;
    padding-left: 5px;
    padding-right: 5px;
  }
  .flow_section .open_content .step_wrap + .step_wrap {
    margin-top: 56px;
  }
  .flow_section .open_content .img_wrap {
    width: 100%;
  }
  .flow_section .open_content .img_wrap img {
    width: 100%;
  }
  .flow_section .open_content .step_num {
    top: -17px;
    left: -6px;
    padding-top: 11px;
    width: 60px;
    height: 60px;
    font-size: 37px;
    border-radius: 3px;
  }
  .flow_section .open_content .step_num:before {
    top: 10px;
    width: 31px;
    height: 11px;
  }
  .flow_section .open_content .step_flex {
    flex-direction: column;
    gap: 11px;
  }
  .flow_section .open_content .title_wrap {
    font-size: 22px;
    line-height: 1.4545454545;
  }
  .flow_section .open_content .sub_title_wrap {
    margin-top: 7px;
    margin-bottom: 16px;
    font-size: 18px;
  }
  .flow_section .open_content .txt_wrap {
    font-size: 16px;
    line-height: 1.5;
  }
  .flow_section .open_content .sub_step_wrap {
    margin-top: 35px;
    margin-bottom: 62px;
  }
  .flow_section .open_content .sub_step_wrap p {
    font-size: 16px;
    line-height: 1.5;
  }
  .flow_section .trip_area_wrap {
    margin-top: 44px;
    margin-bottom: 26px;
    padding-top: 24px;
    padding-bottom: 46px;
    padding-left: 12px;
    padding-right: 12px;
    border: 4px solid #e6da59;
    border-radius: 2px;
    flex-direction: column;
    gap: 36px;
  }
  .flow_section .trip_area_wrap .left_wrap > div {
    gap: 23px;
    justify-content: center;
  }
  .flow_section .trip_area_wrap .left_wrap > div img {
    width: 63px;
  }
  .flow_section .trip_area_wrap .left_wrap > div span {
    font-size: 24px;
  }
  .flow_section .trip_area_wrap .left_wrap > p {
    margin-top: 33px;
    font-size: 18px;
    line-height: 1.7777777778;
  }
  .flow_section .trip_area_wrap .right_wrap {
    text-align: center;
  }
  .flow_section .trip_area_wrap .right_wrap img {
    width: 260px;
  }
  .flow_section .annotation {
    font-size: 16px;
  }
}
.shop_section {
  padding-top: 135px;
  padding-bottom: 132px;
}
.shop_section .inner {
  max-width: 1326px;
}
.shop_section .shop_list_wrap {
  margin-top: 166px;
  display: flex;
  justify-content: center;
  gap: 120px;
}
.shop_section .shop_list_wrap:before {
  content: "";
  display: block;
  width: 156px;
  height: 275px;
  background: center/cover no-repeat url("../images/shop/ma9.svg");
  position: absolute;
  left: 50%;
  top: 153px;
  transform: translateX(-50%);
}
.shop_section .shop_list_wrap ul {
  position: relative;
  z-index: 1;
}
.shop_section .shop_list_wrap li {
  min-width: 192px;
  font-size: 22px;
  line-height: 2.5627802691;
  color: #020245;
}
.shop_section .shop_list_wrap li:nth-child(2) {
  border-top: 1px solid rgba(2, 2, 69, 0.5);
  border-bottom: 1px solid rgba(2, 2, 69, 0.5);
}
.shop_section p.note {
  margin-top: 33px;
  margin-bottom: 27px;
  font-size: 18px;
  line-height: 1;
  color: #020245;
  text-align: right;
}
.shop_section .shop_wraps {
  gap: 20px 22px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.shop_section .shop_wrap {
  width: 100%;
  max-width: 630px;
  padding-top: 54px;
  padding-bottom: 25px;
  padding-left: 30px;
  padding-right: 30px;
  border-radius: 5px;
  overflow: hidden;
  background-color: #ebebf0;
  position: relative;
  letter-spacing: 0.04em;
}
.shop_section .shop_wrap::before {
  content: "";
  display: inline-block;
  width: 36px;
  height: 36px;
  background: center/cover no-repeat url("../images/shop/tri.svg");
  position: absolute;
  left: 0;
  top: 0;
}
.shop_section .shop_wrap.dummy {
  height: 0px;
  padding: 0;
  background: transparent;
}
.shop_section .shop_wrap.dummy::before {
  content: none;
}
.shop_section .img_wrap {
  right: 0;
  top: 0;
  position: absolute;
}
.shop_section .shop_name {
  font-size: 40px;
  font-weight: 200;
  font-family: "Noto Serif JP", serif;
  color: #020245;
  line-height: 1;
}
.shop_section .owner_name {
  margin-top: 17px;
  margin-bottom: 56px;
  font-size: 22px;
  line-height: 1;
}
.shop_section .cat {
  font-size: 20px;
  font-weight: 600;
  line-height: 1;
  display: flex;
  align-items: center;
  gap: 13px;
}
.shop_section .cat span {
  border-radius: 5px;
  width: 120px;
  height: 30px;
  align-items: center;
  justify-content: center;
  display: inline-flex;
  color: #fff;
  background-color: #020245;
  flex-shrink: 0;
}
.shop_section .txt {
  margin-top: 26px;
  margin-bottom: 15px;
  font-size: 20px;
  line-height: 1.6;
}
.shop_section .belong {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 17px;
  font-size: 20px;
  font-weight: 600;
}
.shop_section .belong::before {
  content: "";
  display: inline-block;
  width: 43px;
  height: 17px;
  background: center/cover no-repeat url("../images/shop/book.svg");
}
.shop_section .address {
  margin-top: 22px;
  padding-top: 16px;
  font-size: 18px;
  line-height: 1.7777777778;
  border-top: 1px solid #79799c;
}
.shop_section .tel {
  margin-top: 4px;
  margin-bottom: 10px;
  font-size: 27px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 12px;
}
.shop_section .tel:before {
  width: 60px;
  height: 30px;
  content: "TEL";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  border: solid 1px #020245;
  line-height: 1;
  font-size: 20px;
}
.shop_section .time {
  font-size: 18px;
  font-feature-settings: "palt";
}
.shop_section .map {
  position: absolute;
  right: 30px;
  bottom: 25px;
}
.shop_section .map a {
  gap: 6px;
  font-size: 17px;
  line-height: 1;
  color: #020245;
  width: 130px;
  height: 65px;
  border-radius: 6px;
  background-color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.shop_section .map a::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 23px;
  background: center/cover no-repeat url("../images/shop/pin.svg");
}

/****************************/
/**********タブレット・スモールPC以下************/
/***************************/
/****************************/
/**********タブレット・スモールPC以上************/
/***************************/
@media screen and (min-width: 769px) and (max-width: 940px) {
  .shop_section .shop_list_wrap {
    gap: 60px;
  }
}
/****************************/
/**********スマホ************/
/***************************/
@media screen and (max-width: 768px) {
  .shop_section {
    padding-top: 35px;
    padding-bottom: 32px;
  }
  .shop_section .shop_list_wrap {
    margin-top: 114px;
    gap: 30px;
  }
  .shop_section .shop_list_wrap:before {
    width: 75px;
    height: 132px;
    top: 90px;
  }
  .shop_section .shop_list_wrap ul {
    width: calc(50% - 15px);
    max-width: 140px;
  }
  .shop_section .shop_list_wrap li {
    min-width: auto;
    font-size: 16px;
    line-height: 2.5625;
    border-bottom: 1px solid #020245;
  }
  .shop_section .shop_list_wrap li:nth-child(2) {
    border-top: none;
    border-bottom-color: #020245;
  }
  .shop_section p.note {
    margin-top: 33px;
    margin-bottom: 27px;
    font-size: 12px;
  }
  .shop_section .shop_wrap {
    width: 100%;
    max-width: 630px;
    padding-top: 32px;
    padding-bottom: 16px;
    padding-left: 14px;
    padding-right: 14px;
    border-radius: 5px;
  }
  .shop_section .shop_wrap::before {
    width: 27px;
    height: 27px;
  }
  .shop_section .img_wrap {
    width: 110px;
    height: 110px;
  }
  .shop_section .shop_name {
    font-size: 25px;
  }
  .shop_section .owner_name {
    margin-top: 17px;
    margin-bottom: 33px;
    font-size: 16px;
  }
  .shop_section .cat {
    align-items: flex-start;
    font-size: 17px;
    gap: 12px;
    line-height: 1.4705882353;
  }
  .shop_section .cat span {
    width: 94px;
    height: 24px;
    font-size: 16px;
    line-height: 1;
  }
  .shop_section .txt {
    margin-top: 18px;
    margin-bottom: 15px;
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 0;
  }
  .shop_section .belong {
    gap: 10px;
    font-size: 16px;
  }
  .shop_section .belong::before {
    margin-top: 4px;
    width: 34px;
    height: 13px;
  }
  .shop_section .address {
    margin-top: 14px;
    padding-top: 16px;
    font-size: 16px;
    line-height: 1.5;
  }
  .shop_section .tel {
    margin-top: 4px;
    margin-bottom: 6px;
    font-size: 24px;
    gap: 12px;
  }
  .shop_section .tel:before {
    width: 56px;
    height: 28px;
    border-radius: 4px;
    font-size: 16px;
  }
  .shop_section .time {
    font-size: 16px;
  }
  .shop_section .map {
    margin-top: 19px;
    position: relative;
    right: auto;
    bottom: auto;
    text-align: center;
  }
  .shop_section .map a {
    gap: 6px;
    font-size: 14px;
    width: 102px;
    height: 51px;
    border-radius: 4px;
  }
}
@media screen and (max-width: 374px) {
  .shop_section .shop_name {
    font-size: 19px;
  }
  .shop_section .img_wrap {
    width: 90px;
    height: 90px;
  }
}
.contact_section {
  padding-bottom: 110px;
  padding-top: 96px;
  background-color: #020245;
}
.contact_section .h2_wrap:before {
  filter: brightness(0) invert(1);
}
.contact_section .h2_wrap h2 {
  color: #fff;
}
.contact_section .inner {
  max-width: 1200px;
}
.contact_section .p1 {
  margin-top: 62px;
  font-size: 31px;
  letter-spacing: 0.06em;
  color: #ffffff;
  text-align: center;
  font-weight: 600;
  margin-bottom: 40px;
}
.contact_section .p2 {
  margin-top: 26px;
  font-size: 20px;
  letter-spacing: 0.06em;
  color: #ffffff;
  font-weight: 600;
}
.contact_section .common_contact_wrap {
  gap: 10px;
}
.contact_section .common_contact_wrap > * {
  width: calc(50% - 10px);
  height: 250px;
  box-shadow: none;
  border: none;
}
.contact_section .common_contact_wrap > div {
  background-color: transparent;
  gap: 10px;
  flex-direction: column;
}
.contact_section .common_contact_wrap > div a {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  width: 100%;
  height: 120px;
  background-color: #fff;
  border-radius: 5px;
  font-size: 26px;
}
.contact_section .common_contact_wrap .line_wrap {
  gap: 23px;
}
.contact_section .common_contact_wrap .tel_wrap .tel_num {
  margin-top: 15px;
  margin-bottom: 17px;
  font-size: 59px;
}
.contact_section .common_contact_wrap .from {
  padding-left: 4em;
  font-size: 26px;
}
.contact_section .common_contact_wrap .time {
  font-size: 26px;
}

/****************************/
/**********タブレット・スモールPC以下************/
/***************************/
/****************************/
/**********タブレット・スモールPC以上************/
/***************************/
@media screen and (min-width: 769px) and (max-width: 1130px) {
  .contact_section .common_contact_wrap {
    flex-wrap: wrap;
  }
  .contact_section .common_contact_wrap > * {
    width: 100%;
  }
  .contact_section .common_contact_wrap > a {
    height: 200px;
  }
  .contact_section .common_contact_wrap > div {
    flex-direction: row;
    height: auto;
  }
  .contact_section .common_contact_wrap > div > a {
    width: calc(50% - 10px);
  }
}
@media screen and (min-width: 769px) and (max-width: 940px) {
  .contact_section .common_contact_wrap > div > a {
    font-size: 20px;
  }
}
/****************************/
/**********スマホ************/
/***************************/
@media screen and (max-width: 768px) {
  .contact_section {
    padding-top: 45px;
    padding-bottom: 30px;
  }
  .contact_section .p1,
  .contact_section .p2 {
    display: none;
  }
  .contact_section .common_contact_wrap {
    margin-top: 35px;
    flex-direction: column;
    gap: 8px;
  }
  .contact_section .common_contact_wrap > * {
    height: 112px;
  }
  .contact_section .common_contact_wrap > a {
    width: 100%;
    gap: 20px;
  }
  .contact_section .common_contact_wrap > div {
    width: 100%;
    gap: 10px;
    flex-direction: row;
  }
  .contact_section .common_contact_wrap > div a {
    flex-direction: column;
    width: calc(50% - 5px);
    height: 112px;
    background-color: #fff;
    border-radius: 5px;
    font-size: 16px;
  }
  .contact_section .common_contact_wrap .line_wrap {
    gap: 11px;
  }
  .contact_section .common_contact_wrap .form_wrap {
    gap: 12px;
  }
  .contact_section .common_contact_wrap .tel_wrap .tel_num {
    margin-top: 1px;
    margin-bottom: 0px;
    font-size: 38px;
  }
  .contact_section .common_contact_wrap .tel_wrap img {
    width: 57px;
  }
  .contact_section .common_contact_wrap .from {
    padding-left: 0;
    font-size: 16px;
  }
  .contact_section .common_contact_wrap .time {
    font-size: 14px;
  }
}
.form_section {
  padding-top: 90px;
  padding-bottom: 82px;
  background-color: #f1f0e3;
  letter-spacing: 0.04em;
}
.form_section .inner {
  max-width: 1080px;
}
.form_section .intro_wrap {
  margin-top: 81px;
  margin-bottom: 62px;
  padding: 31px 30px 33px;
  border-top: 1px solid #79799c;
  border-bottom: 1px solid #79799c;
  text-align: center;
}
.form_section .intro {
  font-feature-settings: "palt";
  text-align: left;
  display: block;
  font-size: 20px;
  line-height: 2.35;
}
.form_section .c_flex {
  display: flex;
}
.form_section .c_flex + .c_flex {
  margin-top: 30px;
}
.form_section .head {
  padding-top: 20px;
  min-width: 270px;
  font-size: 20px;
  font-weight: 600;
  color: #020245;
}
.form_section .head .req {
  color: #d40000;
}
.form_section .txt input[type=text],
.form_section .txt input[type=email],
.form_section .txt input[type=tel],
.form_section .txt textarea {
  padding-left: 25px;
  padding-right: 25px;
  padding-top: 22px;
  padding-bottom: 22px;
  font-size: 20px;
  border-radius: 5px;
  background-color: #fff;
  border: 1px solid #e6e6e6;
  width: 100%;
}
.form_section .txt input[type=text],
.form_section .txt input[type=email],
.form_section .txt input[type=tel] {
  height: 65px;
}
.form_section .txt textarea {
  max-width: 700px;
  height: 300px;
  line-height: 1.9;
}
.form_section .txt .zip {
  font-size: 22px;
  margin-right: 15px;
}
.form_section .c_flex1 input,
.form_section .c_flex2 input {
  max-width: 450px;
}
.form_section .c_flex3 input {
  max-width: 200px;
}
.form_section .c_flex4 input {
  max-width: 700px;
}
.form_section .c_flex5 input {
  max-width: 300px;
}
.form_section .c_flex6 input,
.form_section .c_flex7 input {
  max-width: 600px;
}
.form_section .c_flex8 .txt {
  padding: 26px 0 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px 20px;
}
.form_section .c_flex10 .txt {
  padding-top: 25px;
}
.form_section .c_flex10 .txt input {
  margin-top: 10px;
}
.form_section .space01 {
  height: 7px;
}
.form_section .radioItem {
  display: inline-flex;
  align-items: center;
  -moz-column-gap: 6px;
       column-gap: 6px;
  line-height: 1;
  cursor: pointer;
}
.form_section .radioItem:not(:last-of-type) {
  margin-right: 22px;
}
.form_section .radioButton {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  position: relative;
  width: 22px;
  height: 22px;
  border: 1px solid #e6e6e6;
  background-color: #fff;
  border-radius: 9999px;
  cursor: pointer;
  margin-bottom: -3px;
}
.form_section .radioButton:checked::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 12px;
  height: 12px;
  margin: auto;
  border-radius: 9999px;
  background-color: #003399;
}
.form_section .btn_wrap {
  width: 100%;
}
.form_section .btn_wrap input {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  max-width: 500px;
  width: 100%;
  height: 80px;
  border-radius: 5px;
  font-size: 24px;
  font-weight: 600;
  border: none;
  background-color: #020245;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity 0.8s ease;
  cursor: pointer;
}
.form_section .btn_wrap input:hover {
  opacity: 0.6;
}
.form_section .mwform-radio-field {
  font-size: 20px;
  line-height: 1;
}
.form_section .mw_wp_form .horizontal-item + .horizontal-item {
  margin-left: 0px;
}
.form_section .p-country-name {
  display: none;
}
.form_section .red {
  margin-left: 0.5em;
}

/****************************/
/**********タブレット・スモールPC以下************/
/***************************/
/****************************/
/**********タブレット・スモールPC以上************/
/***************************/
/****************************/
/**********スマホ************/
/***************************/
@media screen and (max-width: 768px) {
  .form_section {
    padding-top: 41px;
    padding-bottom: 56px;
  }
  .form_section .intro_wrap {
    margin-top: 35px;
    margin-bottom: 30px;
    padding: 15px 0px 15px;
  }
  .form_section .intro {
    font-size: 16px;
    line-height: 1.5;
  }
  .form_section .c_flex {
    flex-direction: column;
  }
  .form_section .c_flex + .c_flex {
    margin-top: 10px;
  }
  .form_section .head {
    padding-top: 0px;
    margin-bottom: 5px;
    min-width: auto;
    font-size: 16px;
  }
  .form_section .c_flex1 input,
  .form_section .c_flex2 input,
  .form_section .c_flex4 input,
  .form_section .c_flex5 input,
  .form_section .c_flex6 input,
  .form_section .c_flex7 input {
    width: 100%;
  }
  .form_section .c_flex3 input {
    width: 150px;
  }
  .form_section .c_flex8 .txt {
    padding: 10px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 20px 20px;
  }
  .form_section .c_flex8 .horizontal-item + .horizontal-item {
    margin-left: 0px;
  }
  .form_section .c_flex10 .txt {
    padding-top: 0;
  }
  .form_section .txt input[type=text],
  .form_section .txt input[type=email],
  .form_section .txt input[type=tel],
  .form_section .txt textarea {
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 18px;
    padding-bottom: 18px;
    font-size: 16px;
  }
  .form_section .txt input[type=text],
  .form_section .txt input[type=email],
  .form_section .txt input[type=tel] {
    height: 50px;
  }
  .form_section .txt textarea {
    width: 100%;
    height: 235px;
  }
  .form_section .mwform-radio-field {
    font-size: 16px;
  }
  .form_section .radioButton {
    width: 18px;
    height: 18px;
    margin-bottom: -2px;
    margin-right: 0;
  }
  .form_section .radioButton:checked::after {
    width: 8px;
    height: 8px;
  }
  .form_section .btn_wrap input {
    width: 100%;
    max-width: 500px;
    height: 60px;
    border-radius: 4px;
    font-size: 18px;
  }
}
.confirm_section {
  margin-top: 120px;
}
.confirm_section .head {
  padding-top: 0;
}
.confirm_section .txt {
  font-size: 18px;
}
.confirm_section .h2_wrap {
  margin-bottom: 70px;
}

.complete_section {
  margin-top: 120px;
}
.complete_section .h2_wrap {
  margin-bottom: 70px;
}
.complete_section .mw_wp_form_complete {
  font-size: 18px;
  line-height: 1.6;
}

/****************************/
/**********タブレット・スモールPC以下************/
/***************************/
/****************************/
/**********タブレット・スモールPC以上************/
/***************************/
/****************************/
/**********スマホ************/
/***************************/
@media screen and (max-width: 768px) {
  .confirm_section {
    margin-top: 75px;
  }
  .confirm_section .txt {
    font-size: 16px;
  }
  .confirm_section .h2_wrap {
    margin-bottom: 40px;
  }
  .complete_section {
    margin-top: 75px;
  }
  .complete_section .h2_wrap {
    margin-bottom: 40px;
  }
  .complete_section .mw_wp_form_complete {
    font-size: 14px;
    line-height: 1.5;
  }
}
#page_404 {
  height: 100vh;
  background-color: #ebebf0;
}
#page_404 .inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
#page_404 .wrap404 {
  font-size: 70px;
  line-height: 1;
  font-weight: 800;
  margin-top: 30px;
}
#page_404 .wrap404_note {
  margin-top: 1em;
  line-height: 1.75;
  text-align: center;
  font-size: 18px;
  font-weight: 500;
}

/****************************/
/**********タブレット・スモールPC以下************/
/***************************/
/****************************/
/**********タブレット・スモールPC以上************/
/***************************/
/****************************/
/**********スマホ************/
/***************************/
/******************************/
/**********フッター************/
/*****************************/
#footer {
  padding-top: 82px;
  padding-bottom: 30px;
  background-color: #020245;
}
#footer .inner {
  max-width: none;
}
#footer .footer_flex {
  gap: 112px;
  display: flex;
  justify-content: center;
}
#footer .footer_title_wrap {
  margin-bottom: 48px;
  display: flex;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 20px 38px;
}
#footer .footer_title_wrap .sns_wrap {
  display: flex;
  align-items: flex-end;
}
#footer .footer_title_wrap .x {
  margin-right: 22px;
}
#footer li {
  line-height: 2;
}
#footer li a {
  font-size: 18px;
  color: #fff;
  white-space: nowrap;
}
#footer .coming_soon {
  min-height: 46px;
  padding: 8px 20px 8px;
  font-size: 18px;
  color: #fff;
  line-height: 1.5;
  border: 1px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
#footer .coming_soon span {
  display: inline-block;
}
#footer .copyright {
  margin-top: 10px;
  font-size: 14px;
  text-align: right;
  color: #fff;
}
#footer .common_contact_wrap {
  margin-top: -11px;
  gap: 10px;
  flex-direction: column;
}
#footer .common_contact_wrap > * {
  border: none;
}
#footer .common_contact_wrap > div {
  gap: 10px;
  display: flex;
  align-items: flex-start;
  background-color: transparent;
  box-shadow: none;
}
#footer .common_contact_wrap > div a {
  width: 238px;
  height: 132px;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #fff;
}

#to_top {
  position: relative;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
#to_top > div {
  margin-left: auto;
  width: 64px;
}
#to_top > div > div {
  background-color: #020245;
  border-radius: 50%;
  width: 64px;
  height: 64px;
  bottom: 10px;
  right: 10px;
  position: fixed;
  cursor: pointer;
  opacity: 0;
  transition: all 0.8s ease 0s;
  display: flex;
  align-items: center;
  justify-content: center;
}
#to_top > div > div img {
  filter: brightness(0) invert(1);
}
#to_top.fadein > div > div {
  opacity: 1;
  transition: all 0.8s ease 0s;
}
#to_top.absolute > div > div {
  position: absolute;
}

.footer_menu_list {
  list-style: none;
}
/****************************/
/**********タブレット・スモールPC以下************/
/***************************/
/****************************/
/**********タブレット・スモールPC以上************/
/***************************/
@media screen and (min-width: 1600px) {
  #footer .copyright {
    text-align: center;
  }
}
@media screen and (min-width: 769px) and (max-width: 1250px) {
  #footer .footer_flex {
    gap: 50px;
  }
}
@media screen and (min-width: 769px) and (max-width: 1120px) {
  #footer .footer_flex {
    gap: 30px;
  }
  #footer .coming_soon {
    font-size: 14px;
  }
  #footer .footer_title_wrap > a img {
    max-width: 320px;
  }
  #footer li a {
    font-size: 14px;
  }
}
@media screen and (min-width: 769px) and (max-width: 980px) {
  #footer .footer_flex {
    gap: 30px;
    flex-wrap: wrap;
  }
  #footer .coming_soon {
    font-size: 14px;
  }
  #footer li a {
    font-size: 14px;
  }
}
/****************************/
/**********スマホ************/
/***************************/
@media screen and (max-width: 768px) {
  #to_top {
    display: none;
  }
  #footer {
    padding-top: 30px;
    padding-bottom: 70px;
  }
  #footer .footer_flex {
    flex-direction: column;
    gap: 0;
  }
  #footer .footer_title_wrap {
    margin-bottom: 22px;
    flex-direction: column;
    align-items: center;
  }
  #footer .footer_title_wrap > a img {
    width: 240px;
  }
  #footer .sns_wrap {
    margin-top: 20px;
  }
  #footer .sns_wrap img {
    width: 17px;
  }
  #footer .coming_soon {
    padding: 8px 4px 8px;
    font-size: 16px;
    line-height: 1.4375;
    text-align: center;
    max-width: 278px;
    margin-left: auto;
    margin-right: auto;
  }
  #footer .footer_sp_menu_wrap {
    display: flex;
    justify-content: center;
    gap: 26px;
    margin-top: 20px;
  }
  #footer .footer_sp_menu_wrap ul {
    width: calc(50% - 13px);
    max-width: 167px;
  }
  #footer .footer_sp_menu_wrap li {
    padding-top: 15px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.7);
  }
  #footer .footer_sp_menu_wrap li:nth-child(3) {
    border-bottom: none;
  }
  #footer .common_contact_wrap {
    margin-top: 13px;
  }
  #footer .common_contact_wrap > div a {
    width: calc(50% - 4px);
    height: 97px;
    border-radius: 5px;
  }
  #footer .copyright {
    text-align: center;
    font-size: 12px;
    padding-bottom: 10px;
  }
  #footer .footer_sticky_wrap {
    box-shadow: 0px -4px 8px 0px rgba(0, 0, 0, 0.4);
    position: fixed;
    bottom: 0;
    z-index: 2;
    left: 0;
    width: 100%;
  }
  #footer .footer_sticky_wrap ul {
    display: flex;
  }
  #footer .footer_sticky_wrap li {
    width: 25%;
    border-right: 1px solid #fff;
  }
  #footer .footer_sticky_wrap li:nth-child(1) a {
    background-color: #e6da59;
    border-top-left-radius: 5px;
  }
  #footer .footer_sticky_wrap li:nth-child(1) div {
    margin-bottom: 7px;
  }
  #footer .footer_sticky_wrap li:nth-child(3) div {
    padding-bottom: 1px;
  }
  #footer .footer_sticky_wrap li:nth-child(4) {
    border-right: none;
  }
  #footer .footer_sticky_wrap li:nth-child(4) a {
    border-top-right-radius: 5px;
  }
  #footer .footer_sticky_wrap li:nth-child(4) div {
    padding-bottom: 4px;
  }
  #footer .footer_sticky_wrap a {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background: rgb(255, 255, 255);
    width: 100%;
    height: 70px;
    line-height: 1;
    font-weight: 600;
  }
  #footer .footer_sticky_wrap a div {
    height: 26px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    margin-bottom: 8px;
  }
  #footer .footer_sticky_wrap a span {
    font-size: 10px;
    font-size: 12px;
    line-height: 1.2;
    color: #020245;
    text-align: center;
  }
}
.fade_in_up {
  opacity: 0;
  transform: translateY(100px);
  animation-duration: 0.6s;
  animation-fill-mode: forwards;
}
.fade_in_up.active {
  animation-name: fadeInUp;
}

.fade_in_left {
  opacity: 0;
  transform: translateX(-100px);
  animation-duration: 0.6s;
  animation-fill-mode: forwards;
}
.fade_in_left.active {
  animation-name: fadeInLeft;
}

.fade_in_right {
  opacity: 0;
  transform: translateX(100px);
  animation-duration: 0.6s;
  animation-fill-mode: forwards;
}
.fade_in_right.active {
  animation-name: fadeInRight;
}

/***********************************/
/**********アニメーション************/
/**********************************/
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(100px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(-100px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(100px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes slideInDown {
  0% {
    visibility: visible;
    transform: translate3d(0, -100%, 0);
  }
  to {
    transform: translateZ(0);
  }
}
@keyframes slideInUp {
  0% {
    visibility: visible;
    transform: translateZ(0);
  }
  to {
    transform: translate3d(0, -100%, 0);
  }
}
@keyframes to_transparent {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes to_appear {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}
@keyframes roll {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
.cf7_wrap {
  margin: 0 auto;
  /* 各項目共通 */
}
.cf7_wrap input[type=text],
.cf7_wrap input[type=email],
.cf7_wrap input[type=tel],
.cf7_wrap select,
.cf7_wrap textarea {
  width: 100%;
  height: 45px;
  padding: 9px 20.5px 12px;
  background-color: #f5f5f5;
  border: none;
  font-family: "Noto Sans JP", serif;
}
.cf7_wrap input[type=text]:focus,
.cf7_wrap input[type=email]:focus,
.cf7_wrap input[type=tel]:focus,
.cf7_wrap select:focus,
.cf7_wrap textarea:focus {
  outline: 0;
}
.cf7_wrap input[type=checkbox],
.cf7_wrap input[type=radio] {
  -webkit-appearance: auto;
     -moz-appearance: auto;
          appearance: auto;
}
.cf7_wrap .wpcf7-list-item {
  display: block;
}
.cf7_wrap textarea {
  height: 250px;
}

.cf7_item {
  border-bottom: 1px solid #c1c1c1;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  position: relative;
}
.cf7_item::before, .cf7_item:after {
  position: absolute;
  bottom: -1px;
  left: 0;
  content: "";
  width: 220px;
  height: 1px;
  background-color: #004ea8;
}
.cf7_item:first-child {
  border-top: 1px solid #c1c1c1;
}
.cf7_item:first-child:after {
  bottom: auto;
  top: -1px;
}
.cf7_item:last-of-type {
  margin-bottom: 0;
}

.cf7_head {
  min-width: 220px;
  padding: 31.5px 19.5px 34.5px;
  line-height: 1.75;
  color: #003a7b;
}

.cf7_content {
  width: 100%;
  padding: 22.5px 28px 22.5px;
}

.cf7_contentccept_check {
  margin-top: 60px;
  margin-bottom: 61.5px;
}
.cf7_contentccept_check .wpcf7-list-item {
  margin: 0;
}
.cf7_contentccept_check label {
  display: flex;
  justify-content: center;
}
.cf7_contentccept_check a {
  color: #004ea8;
  text-decoration: underline;
}
.cf7_contentccept_check input {
  display: none;
}
.cf7_contentccept_check input + span {
  padding-left: 30px;
  display: inline-block;
  position: relative;
  cursor: pointer;
}
.cf7_contentccept_check input + span::after, .cf7_contentccept_check input + span::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
}
.cf7_contentccept_check input + span::before {
  width: 22px;
  height: 22px;
  border: solid 1px #004ea8;
  background-color: transparent;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.cf7_contentccept_check input + span::after {
  border: none;
  width: 16px;
  height: 6px;
  border-left: 2px solid #004ea8;
  border-bottom: 2px solid #004ea8;
  transform: rotate(-45deg);
  top: 7px;
  left: 3px;
  display: none;
}
.cf7_contentccept_check input:checked + span::after {
  display: block;
}

.cf7_submit {
  width: 220px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  background-color: #004ea8;
}
.cf7_submit:before {
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  display: inline-block;
  height: 100%;
  width: 100%;
  max-width: 0;
  background-color: #0088ff;
  transition: all 0.3s ease-in-out;
}
.cf7_submit:hover:before {
  max-width: 220px;
}
.cf7_submit input[type=submit] {
  width: 220px;
  height: 60px;
  font-family: "Noto Sans JP", serif;
  font-size: 16px;
  color: #fff;
  border: none;
  background-color: transparent;
}
.cf7_spinner_wrap {
  position: relative;
}
.cf7_spinner_wrap .wpcf7-spinner {
  position: absolute;
  bottom: -32px;
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
}

/*必須ラベル*/
.cf7_req {
  font-size: 0.8em;
  padding: 4px 6px;
  background: #eb2a2a;
  color: #ffffff;
  margin-left: 10px;
  display: inline-block;
}

/****************************/
/**********タブレット・スモールPC以下************/
/***************************/
/****************************/
/**********タブレット・スモールPC以上************/
/***************************/
/****************************/
/**********スマホ************/
/***************************/
@media screen and (max-width: 768px) {
  .cf7_item {
    display: block;
  }
  .cf7_wrap label {
    display: block;
    margin-bottom: 10px;
  }
  .cf7_head {
    width: 100%;
    margin: 0;
  }
  .cf7_content {
    width: 100%;
  }
  .cf7_wrap input[type=text],
  .cf7_wrap input[type=email],
  .cf7_wrap input[type=tel],
  .cf7_wrap select,
  .cf7_wrap textarea {
    margin-left: 0;
  }
  .cf7_submit {
    width: 90%;
  }
}/*# sourceMappingURL=style.css.map */