@charset "UTF-8";
@media (max-width: 768px) {
  .sp_none {
    display: none;
  }
}

@media (min-width: 768px) {
  .pc_none {
    display: none;
  }
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.05em;
  font-weight: 500;
  color: #303030;
}
@media (max-width: 768px) {
  body {
    font-size: 14px;
  }
}

:target {
  scroll-margin-top: 100px;
}
@media (max-width: 768px) {
  :target {
    scroll-margin-top: 60px;
  }
}

a {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

img {
  display: block;
  width: 100%;
}

a[href*="tel:"] {
  pointer-events: none;
  cursor: default;
  text-decoration: none;
}
@media (max-width: 768px) {
  a[href*="tel:"] {
    pointer-events: auto;
    cursor: pointer;
  }
}

@media (max-width: 768px) {
  a.fax[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}

.inner {
  width: 100%;
  max-width: 1300px;
  padding: 0 25px;
  margin: auto;
}
@media (max-width: 768px) {
  .inner {
    max-width: 600px;
    padding: 0 16px;
  }
}

.btn {
  display: inline-block;
  position: relative;
  font-weight: 700;
  color: #fff;
  background-color: #F3A1A3;
  width: 100%;
  max-width: 265px;
  padding: 25px 30px;
  text-align: left;
  border-radius: 10px;
}
@media (max-width: 768px) {
  .btn {
    max-width: 220px;
    padding: 20px 25px;
  }
}

@media (min-width: 768px) {
  .btn:hover {
    background-color: #79CCDE;
  }
}

.btn span {
  display: inline-block;
  position: relative;
  width: 100%;
  padding-right: 30px;
}

.btn span::after {
  position: absolute;
  content: "";
  width: 30px;
  height: 6px;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url(../images/common/icon_arrow_right_white.png) no-repeat center center/contain;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.section_title {
  text-align: center;
}

.section_title_en {
  font-size: clamp(18px, 1.6vw, 24px);
  letter-spacing: 0.1em;
  color: #BAAB9F;
}
@media (max-width: 768px) {
  .section_title_en {
    font-size: 16px;
  }
}

.section_title_ja {
  font-size: clamp(28px, 2.6666666667vw, 40px);
  letter-spacing: 0.05em;
}
@media (max-width: 768px) {
  .section_title_ja {
    font-size: 24px;
  }
}

.body.is_open {
  overflow: hidden;
}

/* Header
------------------------------ */
.header {
  position: fixed;
  width: 100%;
  height: 221px;
  top: 0;
  left: 0;
  z-index: 100;
  background-color: #F8F6F1;
  padding-top: 25px;
}
@media (max-width: 768px) {
  .header {
    height: 60px;
    padding-top: 0;
  }
}

.header_fixed {
  -webkit-box-shadow: 0px 1px 3px rgba(48, 48, 48, 0.5);
          box-shadow: 0px 1px 3px rgba(48, 48, 48, 0.5);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.header.header_fixed {
  padding-top: 0;
  height: 100px;
}
@media (max-width: 768px) {
  .header.header_fixed {
    height: 60px;
  }
}

@media (max-width: 768px) {
  .header_inner {
    height: inherit;
  }
}

.header_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
@media (max-width: 768px) {
  .header_wrapper {
    height: inherit;
  }
}

.header_fixed .header_wrapper {
  display: none;
}
@media (max-width: 768px) {
  .header_fixed .header_wrapper {
    display: block;
  }
}

.header_logo {
  width: 100%;
  max-width: 551px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (max-width: 1300px) {
  .header_logo {
    max-width: 310px;
  }
}
@media (max-width: 768px) {
  .header_logo {
    display: grid;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: inherit;
    width: calc(100% - 70px);
    max-width: 265px;
  }
}

.header_buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  width: 100%;
  max-width: 496px;
}
@media (max-width: 1300px) {
  .header_buttons {
    max-width: 398px;
  }
}
@media (max-width: 768px) {
  .header_buttons {
    display: none;
  }
}

.header_button.header_button_line {
  width: 100%;
  max-width: 263px;
}
@media (max-width: 1300px) {
  .header_button.header_button_line {
    max-width: 200px;
  }
}

.header_button.header_button_mail {
  width: 100%;
  max-width: 213px;
}
@media (max-width: 1300px) {
  .header_button.header_button_mail {
    max-width: 170px;
  }
}

.header_button a {
  display: inline-block;
  font-weight: 700;
  width: 100%;
  text-align: center;
  color: #fff;
  background-color: #F3A1A3;
  border: 1px solid #F3A1A3;
  border-radius: 10px;
  padding: 23px 10px;
}
@media (max-width: 1300px) {
  .header_button a {
    padding: 23px 5px;
  }
}

@media (min-width: 768px) {
  .header_button a:hover {
    background-color: #79CCDE;
    border-color: #79CCDE;
  }
}

.header_button a span {
  position: relative;
  display: inline-block;
  text-align: left;
  width: 100%;
}

.header_button.header_button_line a span {
  max-width: 203px;
  padding-left: 47px;
}
@media (max-width: 1300px) {
  .header_button.header_button_line a span {
    padding-left: 30px;
  }
}

.header_button.header_button_line a span::before {
  position: absolute;
  content: "";
  width: 30px;
  height: 29px;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url(../images/common/icon_line_white.png) no-repeat center center/contain;
}
@media (max-width: 1300px) {
  .header_button.header_button_line a span::before {
    width: 22px;
  }
}

.header_button.header_button_mail a span {
  max-width: 146px;
  padding-left: 45px;
}
@media (max-width: 1300px) {
  .header_button.header_button_mail a span {
    padding-left: 35px;
  }
}

.header_button.header_button_mail a span::before {
  position: absolute;
  content: "";
  width: 34px;
  height: 24px;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url(../images/common/icon_mail_white.png) no-repeat center center/contain;
}
@media (max-width: 1300px) {
  .header_button.header_button_mail a span::before {
    width: 25px;
  }
}

.header_nav {
  margin-top: 38px;
}
@media (max-width: 768px) {
  .header_nav {
    display: none;
  }
}

.header_fixed .header_nav {
  margin-top: 11px;
}

.header_lists {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
}

.header_list {
  background-image: radial-gradient(circle, #BAAB9F 1.5px, transparent 1.5px);
  background-position: left top;
  background-repeat: repeat-y;
  background-size: 3px 7px;
}

.header_list_link {
  display: inline-block;
  position: relative;
  font-size: 15px;
  font-weight: 700;
  width: 100%;
  text-align: center;
  white-space: nowrap;
  padding: 50px 10px 5px;
}

@media (min-width: 768px) {
  .header_list_link:hover {
    color: #79CCDE;
  }
}

.header_list_link::before {
  position: absolute;
  content: "";
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.header_list.header_list_top .header_list_link::before {
  width: 35px;
  height: 34px;
  top: 9px;
  background: url(../images/common/illust_house.png) no-repeat center center/contain;
}

.header_list.header_list_about .header_list_link::before {
  width: 27px;
  height: 34px;
  top: 10px;
  background: url(../images/common/illust_lightbulb_white.png) no-repeat center center/contain;
}

.header_list.header_list_service .header_list_link::before {
  width: 23px;
  height: 33px;
  top: 9px;
  background: url(../images/common/illust_flag.png) no-repeat center center/contain;
}

.header_list.header_list_learning .header_list_link::before {
  width: 37px;
  height: 29px;
  top: 14px;
  background: url(../images/common/illust_book.png) no-repeat center center/contain;
}

.header_list.header_list_corporate .header_list_link::before {
  width: 37px;
  height: 34px;
  top: 10px;
  background: url(../images/common/illust_bill.png) no-repeat center center/contain;
}

.header_list.header_list_news .header_list_link::before {
  width: 65px;
  height: 35px;
  top: 9px;
  background: url(../images/common/illust_talk.png) no-repeat center center/contain;
}

.header_list_modal_wrap {
  position: relative;
}

@media (min-width: 768px) {
  .header_list_modal_wrap:hover > .header_list_modal {
    -webkit-transform: scaleY(1) translateX(-50%);
            transform: scaleY(1) translateX(-50%);
  }
}

.header_list_modal {
  position: absolute;
  top: 76px;
  left: 50%;
  width: 200px;
  -webkit-transform: scaleY(0) translateX(-50%);
          transform: scaleY(0) translateX(-50%);
  -webkit-transform-origin: center top;
          transform-origin: center top;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-box-shadow: 0px 1px 3px rgba(48, 48, 48, 0.5);
          box-shadow: 0px 1px 3px rgba(48, 48, 48, 0.5);
  border-radius: 12px;
}

.header_list_modal_item a {
  position: relative;
  display: inline-block;
  line-height: 120%;
  width: 100%;
  color: #fff;
  background-color: #79CCDE;
  text-align: center;
  padding: 15px 10px;
}

.header_list_modal_item:first-of-type a {
  border-radius: 12px 12px 0 0;
}

.header_list_modal_item:last-of-type a {
  border-radius: 0 0 12px 12px;
}

@media (min-width: 768px) {
  .header_list_modal_item a:hover {
    color: #79CCDE;
    background-color: #fff;
  }
}

.header_hamburger {
  display: none;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 999;
  width: 100px;
  height: 100px;
  background-color: #79CCDE;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  text-align: center;
}
@media (max-width: 768px) {
  .header_hamburger {
    display: block;
    width: 60px;
    height: 60px;
    color: #fff;
  }
}

.header_hamburger.is_open {
  background-color: transparent;
}

.header_hamburger_bar {
  position: relative;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  display: block;
  width: 50px;
  height: 3px;
  background-color: #fff;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
@media (max-width: 768px) {
  .header_hamburger_bar {
    width: 25px;
    height: 2px;
  }
}

.header_hamburger_bar:nth-of-type(1) {
  top: -24px;
}
@media (max-width: 768px) {
  .header_hamburger_bar:nth-of-type(1) {
    top: -12px;
  }
}

.header_hamburger_bar:nth-of-type(2) {
  top: -10px;
}
@media (max-width: 768px) {
  .header_hamburger_bar:nth-of-type(2) {
    top: -5px;
  }
}

.header_hamburger_bar:nth-of-type(3) {
  top: 4px;
}
@media (max-width: 768px) {
  .header_hamburger_bar:nth-of-type(3) {
    top: 3px;
  }
}

.header_hamburger.is_open .header_hamburger_bar:nth-of-type(1) {
  top: -5px;
  -webkit-transform: translateX(-50%) rotate(45deg);
          transform: translateX(-50%) rotate(45deg);
}

.header_hamburger.is_open .header_hamburger_bar:nth-of-type(2) {
  opacity: 0;
}

.header_hamburger.is_open .header_hamburger_bar:nth-of-type(3) {
  top: -9px;
  -webkit-transform: translateX(-50%) rotate(-45deg);
          transform: translateX(-50%) rotate(-45deg);
}

.header_hamburger_title {
  position: absolute;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #fff;
  width: 100%;
  left: 50%;
  bottom: 10px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media (max-width: 768px) {
  .header_hamburger_title {
    font-size: 12px;
    letter-spacing: 0;
    bottom: 2px;
  }
}

.header_drawer {
  padding: 70px 0;
  display: none;
  position: absolute;
  z-index: 900;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #79CCDE;
  overflow-y: scroll;
  scrollbar-width: none;
}

.header_drawer::-webkit-scrollbar {
  display: none;
}

.header_drawer_nav {
  padding: 0 5%;
  height: 100%;
  overflow-y: scroll;
}

.header_drawer_list {
  border-bottom: 1px solid #fff;
}

.header_drawer_list_link {
  padding: 15px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 15px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  color: #fff;
}
@media (max-width: 768px) {
  .header_drawer_list_link {
    font-size: 15px;
  }
}

.header_drawer_list_menu a {
  display: inline-block;
  font-size: 16px;
  font-weight: 700;
  width: 100%;
  padding: 8px 10px;
  color: #fff;
}
@media (max-width: 768px) {
  .header_drawer_list_menu a {
    font-size: 14px;
  }
}

.main {
  margin-top: 221px;
}
@media (max-width: 768px) {
  .main {
    margin-top: 60px;
  }
}

/* top - top_mw
------------------------------ */
.top_mw {
  background-color: #F8F6F1;
}

.top_mw .slick-list {
  padding-bottom: 5%;
}
@media (max-width: 768px) {
  .top_mw .slick-list {
    padding-bottom: 6%;
  }
}

.top_mw_slick_slide {
  position: relative;
}

.top_mw_slick_img {
  width: 70%;
  margin-left: auto;
}
@media (max-width: 768px) {
  .top_mw_slick_img {
    width: 74.1333%;
  }
}

.top_mw_slick_img img {
  border-radius: 50px 0 0 50px;
}

.top_mw_content {
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
}
@media (max-width: 768px) {
  .top_mw_content {
    position: relative;
  }
}

.top_mw_slick_slide01 .top_mw_content {
  top: 15.2727%;
}
@media (max-width: 768px) {
  .top_mw_slick_slide01 .top_mw_content {
    top: 0;
    margin-top: -17%;
  }
}

.top_mw_slick_slide02 .top_mw_content {
  top: 23.4545%;
}
@media (max-width: 768px) {
  .top_mw_slick_slide02 .top_mw_content {
    top: 0;
    margin-top: -17%;
  }
}

.top_mw_slick_slide03 .top_mw_content {
  top: 15.4545%;
}
@media (max-width: 768px) {
  .top_mw_slick_slide03 .top_mw_content {
    top: 0;
    margin-top: -17%;
  }
}

.top_mw_slick_slide01 .top_mw_title {
  position: relative;
  width: 34.6667%;
  top: 15.2727%;
}
@media (max-width: 768px) {
  .top_mw_slick_slide01 .top_mw_title {
    width: 79.7333%;
  }
}

.top_mw_slick_slide02 .top_mw_title {
  width: 59.8667%;
}
@media (max-width: 768px) {
  .top_mw_slick_slide02 .top_mw_title {
    width: 94.6667%;
  }
}

.top_mw_slick_slide03 .top_mw_title {
  width: 47.3333%;
}
@media (max-width: 768px) {
  .top_mw_slick_slide03 .top_mw_title {
    width: 88%;
  }
}

.top_mw_btn {
  position: absolute;
  width: 100%;
  max-width: 17.6667vw;
  left: 8.2667%;
}
@media (max-width: 768px) {
  .top_mw_btn {
    max-width: 51.7333vw;
  }
}

.top_mw_slick_slide01 .top_mw_btn {
  top: 57%;
}
@media (max-width: 768px) {
  .top_mw_slick_slide01 .top_mw_btn {
    top: 79%;
  }
}

.top_mw_slick_slide02 .top_mw_btn {
  top: 92%;
}
@media (max-width: 768px) {
  .top_mw_slick_slide02 .top_mw_btn {
    top: 91%;
  }
}

.top_mw_slick_slide03 .top_mw_btn {
  top: 65%;
}
@media (max-width: 768px) {
  .top_mw_slick_slide03 .top_mw_btn {
    top: 91%;
  }
}

.top_mw_btn a {
  display: inline-block;
  font-size: 1.0667vw;
  font-weight: 700;
  width: 100%;
  max-width: 17.6667vw;
  color: #fff;
  background-color: #F3A1A3;
  padding: 1.7vw 1.3333vw;
  border-radius: 10px;
  text-align: center;
}
@media (max-width: 768px) {
  .top_mw_btn a {
    font-size: 4.26667vw;
    max-width: 51.7333vw;
    padding: 4.4vw 4.6667vw;
  }
}

@media (min-width: 768px) {
  .top_mw_btn a:hover {
    background-color: #79CCDE;
  }
}

.top_mw_btn a span {
  position: relative;
  display: inline-block;
  width: 100%;
  padding-right: 2vw;
  text-align: left;
}

.top_mw_btn a span::after {
  position: absolute;
  content: "";
  width: 2vw;
  height: 0.4vw;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url(../images/common/icon_arrow_right_white.png) no-repeat center center/contain;
}
@media (max-width: 768px) {
  .top_mw_btn a span::after {
    width: 5.3333vw;
    height: 1.06667vw;
  }
}

/* top - top_head
------------------------------ */
.top_head {
  background-color: #F8F6F1;
  padding: 20px 0 100px;
}
@media (max-width: 768px) {
  .top_head {
    padding: 20px 0 50px;
  }
}

.top_head_lists {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(15px, 2.6vw, 39px);
}
@media (max-width: 768px) {
  .top_head_lists {
    grid-template-columns: 1fr;
    gap: 10px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-inline: auto;
  }
}

.top_head_list a {
  display: grid;
  -ms-flex-line-pack: center;
      align-content: center;
  font-size: clamp(16px, 1.2vw, 18px);
  font-weight: 700;
  width: 100%;
  height: 100%;
  color: #735A40;
  background-color: #FFD773;
  border-radius: 10px;
  padding: 30px clamp(15px, 2.2vw, 33px);
}
@media (max-width: 768px) {
  .top_head_list a {
    font-size: 15px;
    padding: 10px 15px;
  }
}

@media (min-width: 768px) {
  .top_head_list a:hover {
    background-color: #F3A1A3;
  }
}

.top_head_list a span {
  position: relative;
  display: inline-block;
  width: 100%;
  padding: 0 clamp(30px, 3.8vw, 57px) 0 clamp(20px, 2.5333333333vw, 38px);
}

.top_head_list a span::before {
  position: absolute;
  content: "";
  width: clamp(13px, 1.6666666667vw, 25px);
  height: 48px;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url(../images/common/icon_pencil_white.png) no-repeat center center/contain;
}

.top_head_list a span::after {
  position: absolute;
  content: "";
  width: clamp(28px, 2.3333333333vw, 35px);
  height: 7px;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url(../images/common/icon_arrow_right_brown.png) no-repeat center center/contain;
}
@media (max-width: 768px) {
  .top_head_list a span::after {
    width: 22px;
  }
}

/* top - top_news
------------------------------ */
.top_news {
  margin-top: 115px;
}
@media (max-width: 768px) {
  .top_news {
    margin-top: 50px;
  }
}

.top_news_title {
  position: relative;
  width: 100%;
  max-width: 836px;
  margin-inline: auto;
  padding: 0 120px;
}
@media (max-width: 768px) {
  .top_news_title {
    padding: 0 70px;
  }
}

.top_news_title::before {
  position: absolute;
  content: "";
  width: clamp(102px, 13.5333333333vw, 203px);
  height: 171px;
  left: 0;
  top: -49px;
  background: url(../images/top/top_news_illust01.png) no-repeat center center/contain;
}
@media (max-width: 768px) {
  .top_news_title::before {
    width: 45px;
  }
}

.top_news_title::after {
  position: absolute;
  content: "";
  width: 75px;
  height: 36px;
  right: 104px;
  top: 22px;
  background: url(../images/top/top_news_illust02.png) no-repeat center center/contain;
}
@media (max-width: 768px) {
  .top_news_title::after {
    width: 45px;
    right: 10px;
  }
}

.top_news_cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(20px, 2vw, 30px);
  margin-top: 71px;
}
@media (max-width: 768px) {
  .top_news_cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
  }
}

.top_news_card a {
  display: block;
}

@media (min-width: 768px) {
  .top_news_card a:hover {
    color: #F3A1A3;
  }
}

.top_news_card_img {
  overflow: hidden;
  border-radius: 20px;
  border: 2px solid #F8F6F1;
}

.top_news_card_img img {
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 290/200;
  border-radius: 20px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

@media (min-width: 768px) {
  .top_news_card a:hover .top_news_card_img img {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}

.top_news_card_date {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.6875;
  color: #79CCDE;
  margin-top: 14px;
}
@media (max-width: 768px) {
  .top_news_card_date {
    font-size: 13px;
    margin-top: 5px;
  }
}

@media (min-width: 768px) {
  .top_news_card a:hover .top_news_card_date {
    color: #F3A1A3;
  }
}

.top_news_card_title {
  font-weight: 700;
  letter-spacing: 0.03em;
  margin-top: 13px;
}
@media (max-width: 768px) {
  .top_news_card_title {
    margin-top: 5px;
  }
}

.top_news_btn {
  text-align: center;
  margin-top: 80px;
}
@media (max-width: 768px) {
  .top_news_btn {
    margin-top: 30px;
  }
}

/* top - top_about
------------------------------ */
.top_about {
  margin-top: 120px;
}
@media (max-width: 768px) {
  .top_about {
    margin-top: 50px;
  }
}

.top_about_head {
  position: relative;
  padding-top: 120px;
}
@media (max-width: 768px) {
  .top_about_head {
    padding-top: 20px;
  }
}

.top_about_head::after {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  bottom: 120px;
  width: calc(50% + clamp(100px, 27.6vw, 414px));
  background-color: #EEF8FB;
  border-radius: 50px 0 0 50px;
  z-index: -1;
}
@media (max-width: 768px) {
  .top_about_head::after {
    width: 80%;
  }
}

.top_about_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 768px) {
  .top_about_wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
}

.top_about_left {
  position: relative;
  width: calc(50% - clamp(100px, 15.1333333333vw, 227px));
  padding-right: clamp(25px, 5.1333333333vw, 77px);
}
@media (max-width: 768px) {
  .top_about_left {
    width: 100%;
    padding: 0 16px;
  }
}

.top_about_left::before {
  position: absolute;
  content: "";
  width: 51px;
  height: 82px;
  right: 60px;
  top: -153px;
  background: url(../images/top/top_about_illust01.png) no-repeat center center/contain;
}
@media (max-width: 768px) {
  .top_about_left::before {
    width: 34px;
    height: 55px;
    right: 20px;
    top: -59px;
  }
}

.top_about_title {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  padding-right: 23px;
  padding-left: 25px;
}
@media (max-width: 768px) {
  .top_about_title {
    margin: auto;
    padding-right: 0;
    padding-left: 0;
  }
}

.top_about_left_img {
  margin-top: 94px;
}
@media (max-width: 768px) {
  .top_about_left_img {
    max-width: 500px;
    margin: 30px auto 0;
  }
}

.top_about_left_img img {
  border-radius: 0 50px 50px 0;
}
@media (max-width: 768px) {
  .top_about_left_img img {
    border-radius: 50px;
  }
}

.top_about_right {
  width: calc(50% + clamp(100px, 15.1333333333vw, 227px));
}
@media (max-width: 768px) {
  .top_about_right {
    width: 100%;
    padding: 0 16px;
  }
}

.top_about_text {
  position: relative;
  line-height: 2.5;
  max-width: 877px;
  padding-right: 25px;
}
@media (max-width: 768px) {
  .top_about_text {
    padding-right: 0;
  }
}

.top_about_text::before {
  position: absolute;
  content: "";
  width: clamp(90px, 9.8vw, 147px);
  height: 151px;
  right: clamp(122px, 16.2666666667vw, 244px);
  top: -208px;
  background: url(../images/top/top_about_illust02.png) no-repeat center center/contain;
}
@media (max-width: 768px) {
  .top_about_text::before {
    width: 60px;
    height: 62px;
    right: 20px;
    top: -58px;
  }
}

.top_about_right_food {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
  margin-top: 76px;
}
@media (max-width: 768px) {
  .top_about_right_food {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 15px;
  }
}

.top_about_right_food::before {
  position: absolute;
  content: "";
  width: clamp(99px, 13.2vw, 198px);
  height: clamp(63px, 8.3333333333vw, 125px);
  left: -45px;
  bottom: clamp(1px, 3.0666666667vw, 46px);
  background: url(../images/top/top_about_illust03.png) no-repeat center center/contain;
}
@media (max-width: 768px) {
  .top_about_right_food::before {
    width: 80px;
    height: 51px;
    left: 20px;
    bottom: -16px;
  }
}

.top_about_right_btn {
  width: 100%;
  max-width: 265px;
}
@media (max-width: 768px) {
  .top_about_right_btn {
    max-width: 100%;
    text-align: center;
  }
}

.top_about_right_img {
  width: calc(100% - clamp(132px, 17.6666666667vw, 265px) - clamp(92px, 12.2666666667vw, 184px));
}
@media (max-width: 768px) {
  .top_about_right_img {
    width: 100%;
    max-width: 500px;
    margin-inline: auto;
  }
}

.top_about_right_img img {
  border-radius: 50px 0 0 50px;
}
@media (max-width: 768px) {
  .top_about_right_img img {
    border-radius: 50px;
  }
}

.top_about_food {
  margin-top: 27px;
}
@media (max-width: 768px) {
  .top_about_food {
    margin-top: 30px;
  }
}

.top_about_items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 37px;
}
@media (max-width: 768px) {
  .top_about_items {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.top_about_item {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 2;
  gap: 16px;
  border-radius: 30px;
}
@media (max-width: 768px) {
  .top_about_item {
    gap: 5px;
  }
}

.top_about_item_head {
  position: relative;
  font-size: clamp(18px, 1.6vw, 24px);
  color: #735A40;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  padding: 0 35px;
}
@media (max-width: 768px) {
  .top_about_item_head {
    font-size: 16px;
    padding: 0 20px;
  }
}

.top_about_item_head::before,
.top_about_item_head::after {
  position: absolute;
  content: "";
  width: 19px;
  height: 34px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media (max-width: 768px) {
  .top_about_item_head::before,
  .top_about_item_head::after {
    width: 11px;
    height: 18px;
  }
}

.top_about_item_head::before {
  left: 0;
  background: url(../images/top/top_about_item_head_before.png) no-repeat center center/contain;
}

.top_about_item_head::after {
  right: 0;
  background: url(../images/top/top_about_item_head_after.png) no-repeat center center/contain;
}

.top_about_item_wrapper {
  position: relative;
  padding: 0 clamp(15px, 2vw, 30px) clamp(30px, 3.3333333333vw, 50px);
}
@media (max-width: 768px) {
  .top_about_item_wrapper {
    padding: 0 15px 20px;
  }
}

.top_about_item_wrapper::before {
  position: absolute;
  content: "";
  top: 39px;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #EEF8FB;
  border-radius: 30px;
  z-index: -1;
}
@media (max-width: 768px) {
  .top_about_item_wrapper::before {
    top: 23px;
  }
}

.top_about_item_title {
  font-size: clamp(24px, 2vw, 30px);
  line-height: 1.6666666667;
  color: #fff;
  background-color: #79CCDE;
  width: 100%;
  max-width: 500px;
  border-radius: 50px;
  text-align: center;
  padding: 15.5px 10px;
  margin-inline: auto;
}
@media (max-width: 768px) {
  .top_about_item_title {
    font-size: 20px;
    max-width: 300px;
    padding: 6px 10px;
  }
}

.top_about_item_img {
  margin-top: 30px;
}
@media (max-width: 768px) {
  .top_about_item_img {
    margin-top: 15px;
  }
}

.top_about_item_img img {
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 546/278;
  border-radius: 30px;
}

.top_about_item_text {
  line-height: 2.1875;
  margin-top: 28px;
}
@media (max-width: 768px) {
  .top_about_item_text {
    margin-top: 10px;
  }
}

.top_about_item_btn {
  text-align: center;
  margin-top: 30px;
}
@media (max-width: 768px) {
  .top_about_item_btn {
    margin-top: 15px;
  }
}

.top_about_food_btn {
  text-align: center;
  margin-top: 80px;
}
@media (max-width: 768px) {
  .top_about_food_btn {
    margin-top: 30px;
  }
}

/* top - top_lesson
------------------------------ */
.top_lesson {
  position: relative;
  padding: 116px 0 120px;
  margin-top: 120px;
  background-color: #F8F6F1;
}
@media (max-width: 768px) {
  .top_lesson {
    padding: 50px 0;
    margin-top: 50px;
  }
}

.top_lesson::before {
  position: absolute;
  content: "";
  width: clamp(63px, 8.3333333333vw, 125px);
  height: clamp(98px, 13vw, 195px);
  top: -59px;
  left: calc(50% - clamp(100px, 24.8666666667vw, 373px));
  background: url(../images/top/top_lesson_illust01.png) no-repeat center center/contain;
}
@media (max-width: 768px) {
  .top_lesson::before {
    width: 50px;
    height: 78px;
    top: -35px;
    left: 20%;
  }
}

.top_lesson::after {
  position: absolute;
  content: "";
  width: clamp(74px, 9.8vw, 147px);
  height: clamp(113px, 15vw, 225px);
  top: -88px;
  left: calc(50% + clamp(50px, 20.2vw, 303px));
  background: url(../images/top/top_lesson_illust02.png) no-repeat center center/contain;
}
@media (max-width: 768px) {
  .top_lesson::after {
    width: 55px;
    height: 84px;
    top: -41px;
    left: 70%;
  }
}

.lesson_items {
  margin-top: 71px;
}
@media (max-width: 768px) {
  .lesson_items {
    margin-top: 30px;
  }
}

.lesson_items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2.6666666667vw, 40px);
}
@media (max-width: 768px) {
  .lesson_items {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

.lesson_item {
  position: relative;
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 3;
  gap: 0;
  border-radius: 30px;
  background-color: #fff;
  padding: 68px clamp(15px, 2vw, 30px) clamp(30px, 3.2vw, 48px);
}
@media (max-width: 768px) {
  .lesson_item {
    padding: 35px 15px 20px;
  }
}

.lesson_items_beige .lesson_item {
  background-color: #F8F6F1;
}

.lesson_item::before {
  position: absolute;
  content: "";
  width: 132px;
  height: 77px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: -23px;
  background: url(../images/common/illust_books_pencils_orange.png) no-repeat center center/contain;
}
@media (max-width: 768px) {
  .lesson_item::before {
    width: 83px;
    height: 48px;
    top: -19px;
  }
}

.lesson_item_title {
  display: grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: clamp(20px, 1.6vw, 24px);
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.6666666667;
  text-align: center;
}
@media (max-width: 768px) {
  .lesson_item_title {
    font-size: 16px;
  }
}

.lesson_item_text {
  line-height: 2.1875;
  margin-top: 23px;
  padding-top: 25px;
  background-image: radial-gradient(circle, #BAAB9F 1.5px, transparent 1.5px);
  background-position: left top;
  background-repeat: repeat-x;
  background-size: 7px 3px;
}
@media (max-width: 768px) {
  .lesson_item_text {
    line-height: 180%;
    margin-top: 10px;
    padding-top: 10px;
  }
}

.lesson_item_btn {
  text-align: center;
  margin-top: 32px;
}
@media (max-width: 768px) {
  .lesson_item_btn {
    margin-top: 15px;
  }
}

/* top - top_voice
------------------------------ */
.top_voice {
  background-color: #FFE2E3;
  padding: 120px 0 120px;
}
@media (max-width: 768px) {
  .top_voice {
    padding: 50px 0;
  }
}

.top_voice_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 768px) {
  .top_voice_wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 30px;
  }
}

.top_voice_left_wrapper {
  width: calc(50% - clamp(200px, 19vw, 285px));
  padding-right: 20px;
  padding-left: 25px;
}
@media (max-width: 768px) {
  .top_voice_left_wrapper {
    width: 100%;
    padding: 0 16px;
  }
}

.top_voice_left {
  width: 100%;
  max-width: 317px;
  margin-left: auto;
  margin-top: 9px;
}
@media (max-width: 768px) {
  .top_voice_left {
    max-width: 100%;
    margin-top: 0;
  }
}

.top_voice_img {
  width: 100%;
  max-width: 171px;
  margin: 120px auto 0;
}
@media (max-width: 768px) {
  .top_voice_img {
    display: none;
  }
}

.top_voice_right_wrapper {
  width: calc(50% + clamp(10px, 19vw, 285px));
}
@media (max-width: 768px) {
  .top_voice_right_wrapper {
    width: 100%;
  }
}

.top_voice_slick {
  padding-bottom: 88px;
}

.top_voice_slick .slick-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: clamp(20px, 2.6666666667vw, 40px);
}

.top_voice_slick .slick-slide {
  height: auto !important;
}

.top_voice_slick .slick-prev,
.top_voice_slick .slick-next {
  width: 110px;
  height: 50px;
  background-color: #F3A1A3;
  border-radius: 10px;
  z-index: 1;
  top: auto;
  bottom: 0;
  -webkit-transform: translate(0);
          transform: translate(0);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.top_voice_slick .slick-prev {
  left: 0;
}
@media (max-width: 768px) {
  .top_voice_slick .slick-prev {
    left: 5%;
  }
}

.top_voice_slick .slick-next {
  right: 125px;
}
@media (max-width: 768px) {
  .top_voice_slick .slick-next {
    right: 5%;
  }
}

.top_voice_slick .slick-prev:hover,
.top_voice_slick .slick-next:hover {
  background-color: #79CCDE;
}

.top_voice_slick .slick-prev:before,
.top_voice_slick .slick-next::before {
  position: absolute;
  content: "";
  width: 50px;
  height: 9px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.top_voice_slick .slick-prev:before {
  background: url(../images/common/icon_arrow_left_white.png) no-repeat center center/contain;
}

.top_voice_slick .slick-next::before {
  background: url(../images/common/icon_arrow_right_white.png) no-repeat center center/contain;
}

.top_voice_slick_slide {
  position: relative;
  height: 100%;
  padding: 0 28px 28px;
}
@media (max-width: 768px) {
  .top_voice_slick_slide {
    padding: 0 15px 20px;
  }
}

.top_voice_slick_slide::before {
  position: absolute;
  content: "";
  top: 80px;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #fff;
  z-index: -1;
  border-radius: 20px;
}
@media (max-width: 768px) {
  .top_voice_slick_slide::before {
    top: 60px;
  }
}

.top_voice_slick .slick-slide > div {
  height: 100%;
}

.top_voice_slick_img {
  width: 100%;
  max-width: 159px;
  margin-inline: auto;
}
@media (max-width: 768px) {
  .top_voice_slick_img {
    max-width: 120px;
  }
}

.top_voice_slick_text {
  margin-top: 11px;
}

.top_voice_slick_name {
  font-weight: 700;
  margin-top: 11px;
}

/* top - top_message
------------------------------ */
.top_message {
  margin-top: 118px;
}
@media (max-width: 768px) {
  .top_message {
    margin-top: 50px;
  }
}

.top_message_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
  margin-top: 66px;
}
@media (max-width: 768px) {
  .top_message_wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 30px;
  }
}

.top_message_content {
  width: 100%;
  max-width: 911px;
  line-height: 220%;
}
@media (max-width: 768px) {
  .top_message_content {
    line-height: 170%;
  }
}

.top_message_content p + p {
  margin-top: 25px;
}
@media (max-width: 768px) {
  .top_message_content p + p {
    margin-top: 10px;
  }
}

.top_message_representative {
  position: relative;
  width: 100%;
  max-width: 272px;
  margin-top: 4px;
}
@media (max-width: 768px) {
  .top_message_representative {
    max-width: 100%;
    margin-top: 0;
  }
}

.top_message_representative::before {
  position: absolute;
  content: "";
  width: clamp(87px, 11.6vw, 174px);
  height: clamp(85px, 11.3333333333vw, 170px);
  left: -87px;
  top: -222px;
  background: url(../images/top/top_message_illust01.png) no-repeat center center/contain;
}
@media (max-width: 768px) {
  .top_message_representative::before {
    width: 50px;
    height: 49px;
    left: 5%;
    top: 10px;
  }
}

.top_message_representative::after {
  position: absolute;
  content: "";
  width: clamp(95px, 12.6666666667vw, 190px);
  height: clamp(71px, 9.4vw, 141px);
  left: 36px;
  bottom: -119px;
  background: url(../images/top/top_message_illust02.png) no-repeat center center/contain;
}
@media (max-width: 768px) {
  .top_message_representative::after {
    width: 58px;
    height: 52px;
    left: auto;
    right: 5%;
    bottom: -27px;
  }
}

.top_message_avatar {
  width: 100%;
  max-width: 272px;
  margin-inline: auto;
}
@media (max-width: 768px) {
  .top_message_avatar {
    max-width: 150px;
  }
}

.top_message_company_name {
  line-height: 1.875;
  letter-spacing: 0.1em;
  font-weight: 700;
  text-align: center;
  margin-top: 16px;
}
@media (max-width: 768px) {
  .top_message_company_name {
    margin-top: 5px;
  }
}

.top_message_name {
  letter-spacing: 0.1em;
  font-weight: 700;
  text-align: center;
}

.top_message_name span {
  font-size: 26px;
}
@media (max-width: 768px) {
  .top_message_name span {
    font-size: 18px;
  }
}

.top_message_btn {
  text-align: center;
  margin-top: 73px;
}
@media (max-width: 768px) {
  .top_message_btn {
    margin-top: 30px;
  }
}

/* top - cta
------------------------------ */
.cta.front_cta01 {
  margin-top: 130px;
}

/* food_banner
------------------------------ */
.food_banner {
  background-color: #F8F6F1;
  padding: 119px 0 120px;
  margin-top: 121px;
}
@media (max-width: 768px) {
  .food_banner {
    padding: 50px 0;
    margin-top: 50px;
  }
}

.food_banner_lists {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: clamp(10px, 1.6666666667vw, 25px);
}
@media (max-width: 768px) {
  .food_banner_lists {
    grid-template-columns: repeat(2, 1fr);
  }
}

.food_banner_list a {
  display: block;
  overflow: hidden;
  border-radius: 10px;
}

.food_banner_list img {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  border-radius: 10px;
}

@media (min-width: 768px) {
  .food_banner_list a:hover img {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}

/* cta
------------------------------ */
.cta {
  position: relative;
  padding: 0 25px;
}
@media (max-width: 768px) {
  .cta {
    padding: 0 16px;
  }
}

.cta_inner {
  background-color: #FFD773;
  width: 100%;
  max-width: 1250px;
  margin-inline: auto;
  border-radius: 50px;
  padding: clamp(20px, 3.8vw, 57px) 20px clamp(20px, 4.5333333333vw, 68px) clamp(20px, 4vw, 60px);
}

.cta_title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
}
@media (max-width: 768px) {
  .cta_title {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 5px;
  }
}

.cta_title_en {
  font-size: 24px;
  letter-spacing: 0.1em;
  color: #fff;
  width: 100%;
  max-width: 200px;
  text-align: center;
}
@media (max-width: 768px) {
  .cta_title_en {
    max-width: 100%;
  }
}

.cta_title_ja {
  font-size: clamp(18px, 1.7333333333vw, 26px);
  letter-spacing: 0.1em;
  width: 100%;
  max-width: 950px;
}
@media (max-width: 768px) {
  .cta_title_ja {
    font-size: 16px;
  }
}

.cta_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 41px;
  margin-top: 37px;
}
@media (max-width: 768px) {
  .cta_wrapper {
    margin-top: 20px;
  }
}

.cta_img {
  width: 100%;
  max-width: 201px;
}
@media (max-width: 768px) {
  .cta_img {
    display: none;
  }
}

.cta_inquiry {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
  width: 100%;
  max-width: 884px;
}
@media (max-width: 768px) {
  .cta_inquiry {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 15px;
  }
}

.cta_tel {
  display: grid;
  -ms-flex-line-pack: center;
      align-content: center;
  width: 100%;
  max-width: 470px;
  background-color: #FFB355;
  border-radius: 10px;
  padding: 20px 34px;
}
@media (max-width: 768px) {
  .cta_tel {
    max-width: 280px;
    padding: 15px 20px;
  }
}

.cta_tel_link {
  width: 100%;
  max-width: 343px;
  margin-inline: auto;
}

.cta_tel_time {
  font-size: 15px;
  color: #fff;
  text-align: center;
  margin-top: 20px;
  padding-top: 24px;
  background-image: radial-gradient(circle, #fff 1.5px, transparent 1.5px);
  background-position: left top;
  background-repeat: repeat-x;
  background-size: 7px 3px;
}

.cta_tel_time span {
  font-weight: 700;
}

.cta_buttons {
  width: 100%;
  max-width: 394px;
}
@media (max-width: 768px) {
  .cta_buttons {
    max-width: 280px;
  }
}

.cta_button + .cta_button {
  margin-top: 20px;
}
@media (max-width: 768px) {
  .cta_button + .cta_button {
    margin-top: 15px;
  }
}

.cta_button a {
  display: inline-block;
  font-size: 20px;
  font-weight: 700;
  width: 100%;
  background-color: #fff;
  border-radius: 10px;
  padding: 24px 30px 21px;
}
@media (max-width: 768px) {
  .cta_button a {
    font-size: 16px;
    padding: 15px 15px;
  }
}

@media (min-width: 768px) {
  .cta_button a:hover {
    color: #fff;
    background-color: #F3A1A3;
  }
}

.cta_button a span {
  position: relative;
  display: inline-block;
  width: 100%;
  padding: 0 40px 0 53px;
}

.cta_button_line a span::before {
  position: absolute;
  content: "";
  width: 36px;
  height: 35px;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url(../images/common/icon_line_orange.png) no-repeat center center/contain;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

@media (min-width: 768px) {
  .cta_button_line a:hover span::before {
    background: url(../images/common/icon_line_white.png) no-repeat center center/contain;
  }
}

.cta_button_mail a span::before {
  position: absolute;
  content: "";
  width: 34px;
  height: 24px;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url(../images/common/icon_mail_orange.png) no-repeat center center/contain;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

@media (min-width: 768px) {
  .cta_button_mail a:hover span::before {
    background: url(../images/common/icon_mail_white.png) no-repeat center center/contain;
  }
}

.cta_button a span::after {
  position: absolute;
  content: "";
  width: 37px;
  height: 7px;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url(../images/common/icon_arrow_right_orange.png) no-repeat center center/contain;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (max-width: 768px) {
  .cta_button a span::after {
    width: 22px;
  }
}

@media (min-width: 768px) {
  .cta_button a:hover span::after {
    background: url(../images/common/icon_arrow_right_white.png) no-repeat center center/contain;
  }
}

/* sub
------------------------------ */
.sub_main {
  margin-top: 221px;
}
@media (max-width: 768px) {
  .sub_main {
    margin-top: 60px;
  }
}

.sub_mv_inner {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 768px) {
  .sub_mv_inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}

.sub_mv_content {
  width: calc(50% + 50px);
  padding-bottom: 73px;
}
@media (max-width: 768px) {
  .sub_mv_content {
    width: 100%;
    padding-bottom: 0;
  }
}

.sub_mv_title_wrapper {
  background: #F8F6F1;
  padding-left: 25px;
}
@media (max-width: 768px) {
  .sub_mv_title_wrapper {
    padding: 10px 16px;
  }
}

.sub_mv_title {
  display: grid;
  -ms-flex-line-pack: center;
      align-content: center;
  gap: 3px;
  width: 100%;
  max-width: 675px;
  margin-left: auto;
  min-height: 265px;
  padding: 20px 25px 20px 0;
}
@media (max-width: 768px) {
  .sub_mv_title {
    gap: 0;
    padding: 0;
    min-height: auto;
  }
}

.sub_mv_title_en {
  font-size: 24px;
  letter-spacing: 0.1em;
  font-weight: 500;
  color: #BAAB9F;
}
@media (max-width: 768px) {
  .sub_mv_title_en {
    font-size: 18px;
  }
}

.sub_mv_title_ja {
  font-size: 40px;
  letter-spacing: 0.07em;
}
@media (max-width: 768px) {
  .sub_mv_title_ja {
    font-size: 26px;
  }
}

.sub_mv_breadcrumb {
  position: relative;
  margin-top: 25px;
  padding-left: 25px;
}
@media (max-width: 768px) {
  .sub_mv_breadcrumb {
    margin-top: 10px;
    padding-left: 16px;
  }
}

.sub_mv_breadcrumb::after {
  position: absolute;
  content: "";
  width: 82px;
  height: 98px;
  right: 41px;
  bottom: 19px;
  background: url(../images/common/sub_mv_illust01.png) no-repeat center center/contain;
}
@media (max-width: 768px) {
  .sub_mv_breadcrumb::after {
    width: 45px;
    height: 54px;
    right: 16px;
    bottom: 25px;
  }
}

.breadcrumb {
  position: relative;
  font-size: 12px;
  letter-spacing: 0.05em;
  width: 100%;
  max-width: 675px;
  margin-left: auto;
  padding-right: 25px;
  z-index: 1;
}

.breadcrumb_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 13px;
}
@media (max-width: 768px) {
  .breadcrumb_inner {
    gap: 5px 10px;
  }
}

.breadcrumb_inner a {
  font-weight: 700;
}

.breadcrumb_arrow {
  display: block;
  position: relative;
  color: #79CCDE;
}

.sub_mv_img {
  width: calc(50% - 50px);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #F8F6F1), color-stop(3.1579%, transparent));
  background: linear-gradient(180deg, #F8F6F1 0 13.1579%, transparent 3.1579% 100%);
}
@media (max-width: 768px) {
  .sub_mv_img {
    width: 100%;
    padding-left: 16px;
    background-color: #F8F6F1;
  }
}

.sub_mv_img img {
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50px 0 0 50px;
  height: 100%;
}
@media (max-width: 768px) {
  .sub_mv_img img {
    min-height: 240px;
  }
}

.subsection_title {
  position: relative;
  font-size: 40px;
  letter-spacing: 0.07em;
  text-align: center;
  padding: 47px 0 18px;
  background-image: radial-gradient(circle, #BAAB9F 1.5px, transparent 1.5px);
  background-position: left bottom;
  background-repeat: repeat-x;
  background-size: 7px 3px;
}
@media (max-width: 768px) {
  .subsection_title {
    font-size: 26px;
    padding: 32px 0 10px;
  }
}

.subsection_title::before {
  position: absolute;
  content: "";
  width: 38px;
  height: 37px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: 0;
  background: url(../images/common/subsection_title_illust.png) no-repeat center center/contain;
}
@media (max-width: 768px) {
  .subsection_title::before {
    width: 30px;
    height: 29px;
  }
}

/* service - service_lecture
------------------------------ */
.service_lecture {
  margin-top: 120px;
}
@media (max-width: 768px) {
  .service_lecture {
    margin-top: 50px;
  }
}

.service_lecture_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
  margin-top: 70px;
}
@media (max-width: 768px) {
  .service_lecture_wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 30px;
  }
}

.service_lecture_content {
  line-height: 2.1875;
  width: 100%;
  max-width: 653px;
}
@media (max-width: 768px) {
  .service_lecture_content {
    line-height: 180%;
  }
}

.service_lecture_img {
  width: 100%;
  max-width: 546px;
}

.service_lecture_img img {
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 546/350;
  border-radius: 30px;
}

.service_lecture_items {
  margin-top: 123px;
}
@media (max-width: 768px) {
  .service_lecture_items {
    margin-top: 30px;
  }
}

/* service - service_support
------------------------------ */
.service_support {
  margin-top: 122px;
}
@media (max-width: 768px) {
  .service_support {
    margin-top: 50px;
  }
}

.service_support_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
  margin-top: 70px;
}
@media (max-width: 768px) {
  .service_support_wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 30px;
  }
}

.service_support_content {
  line-height: 2.1875;
  width: 100%;
  max-width: 653px;
}
@media (max-width: 768px) {
  .service_support_content {
    line-height: 180%;
  }
}

.service_support_img {
  width: 100%;
  max-width: 546px;
}

.service_support_img img {
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 546/350;
  border-radius: 30px;
}

.service_support_items {
  margin-top: 123px;
}
@media (max-width: 768px) {
  .service_support_items {
    margin-top: 30px;
  }
}

/* service - service_staff
------------------------------ */
.service_staff {
  margin-top: 122px;
}
@media (max-width: 768px) {
  .service_staff {
    margin-top: 50px;
  }
}

.service_staff_items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(30px, 4.5333333333vw, 68px) clamp(15px, 2.6vw, 39px);
  margin-top: 70px;
}
@media (max-width: 768px) {
  .service_staff_items {
    grid-template-columns: 1fr;
    margin-top: 30px;
  }
}

.service_staff_item {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 4;
  gap: 0;
  position: relative;
  padding: 0 clamp(15px, 2vw, 30px) 45px;
}
@media (max-width: 768px) {
  .service_staff_item {
    padding: 0 15px 20px;
  }
}

.service_staff_item::before {
  position: absolute;
  content: "";
  top: 51px;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #EEF8FB;
  border-radius: 30px;
  z-index: -1;
}

.service_staff_item_img {
  width: 100%;
  max-width: 200px;
  margin-inline: auto;
}
@media (max-width: 768px) {
  .service_staff_item_img {
    max-width: 160px;
  }
}

.service_staff_item_img img {
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 200/150;
  border-radius: 30px;
}

.service_staff_item_title {
  font-size: clamp(20px, 1.6vw, 24px);
  font-weight: 700;
  text-align: center;
  margin-top: 27px;
}
@media (max-width: 768px) {
  .service_staff_item_title {
    font-size: 18px;
    margin-top: 10px;
  }
}

.service_staff_item_subtitle {
  display: grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 700;
  color: #79CCDE;
  text-align: center;
  margin-top: 16px;
}
@media (max-width: 768px) {
  .service_staff_item_subtitle {
    margin-top: 5px;
  }
}

.service_staff_item_text {
  font-size: 14px;
  line-height: 2.1428571429;
  background-image: radial-gradient(circle, #BAAB9F 1.5px, transparent 1.5px);
  background-position: left top;
  background-repeat: repeat-x;
  background-size: 7px 3px;
  margin-top: 20px;
  padding-top: 23px;
}
@media (max-width: 768px) {
  .service_staff_item_text {
    font-size: 13px;
    margin-top: 10px;
    padding-top: 10px;
  }
}

/* service - service_disability
------------------------------ */
.service_disability {
  margin-top: 122px;
}
@media (max-width: 768px) {
  .service_disability {
    margin-top: 50px;
  }
}

.service_disability_main {
  width: 100%;
  max-width: 1128px;
  margin: 70px auto 0;
}
@media (max-width: 768px) {
  .service_disability_main {
    margin: 30px auto 0;
  }
}

.service_disability_wrapper {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
  background-color: #F8F6F1;
  border-radius: 30px;
  padding: 64px 57px 58px;
  margin-top: 70px;
}
@media (max-width: 768px) {
  .service_disability_wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 30px 20px;
    margin-top: 30px;
  }
}

.service_disability_wrapper::before {
  position: absolute;
  content: "";
  width: 41px;
  height: 63px;
  left: 56px;
  top: -20px;
  background: url(../images/common/illust_lightbulb.png) no-repeat center center/contain;
}
@media (max-width: 768px) {
  .service_disability_wrapper::before {
    width: 27px;
    height: 41px;
    left: 37px;
    top: -21px;
  }
}

.service_disability_content {
  line-height: 2.1875;
  width: 100%;
  max-width: 901px;
}
@media (max-width: 768px) {
  .service_disability_content {
    line-height: 180%;
  }
}

.service_disability_content p + p {
  margin-top: 34px;
}
@media (max-width: 768px) {
  .service_disability_content p + p {
    margin-top: 10px;
  }
}

.service_disability_img {
  width: 100%;
  max-width: 185px;
  margin-top: 88px;
}
@media (max-width: 768px) {
  .service_disability_img {
    max-width: 100px;
    margin: auto;
  }
}

/* service - service_thoughts
------------------------------ */
.service_thoughts {
  margin-top: 122px;
}
@media (max-width: 768px) {
  .service_thoughts {
    margin-top: 50px;
  }
}

.service_thoughts_wrapper {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
  background-color: #F8F6F1;
  border-radius: 30px;
  padding: 64px 57px 58px;
  margin-top: 70px;
}
@media (max-width: 768px) {
  .service_thoughts_wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 30px 20px;
    margin-top: 30px;
  }
}

.service_thoughts_content {
  line-height: 2.1875;
  width: 100%;
  max-width: 901px;
}
@media (max-width: 768px) {
  .service_thoughts_content {
    line-height: 180%;
  }
}

.service_thoughts_content p + p {
  margin-top: 36px;
}
@media (max-width: 768px) {
  .service_thoughts_content p + p {
    margin-top: 10px;
  }
}

.service_thoughts_img {
  width: 100%;
  max-width: 187px;
  margin-top: 95px;
}
@media (max-width: 768px) {
  .service_thoughts_img {
    max-width: 100px;
    margin: auto;
  }
}

/* service - service_profile
------------------------------ */
.service_profile {
  margin-top: 122px;
}

.service_profile_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
  background-color: #F8F6F1;
  border-radius: 30px;
  padding: 64px 49px 54px 57px;
  margin-top: 70px;
}
@media (max-width: 768px) {
  .service_profile_wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 30px 20px;
    margin-top: 30px;
  }
}

.service_profile_content {
  line-height: 2.1875;
  width: 100%;
  max-width: 901px;
}
@media (max-width: 768px) {
  .service_profile_content {
    line-height: 180%;
  }
}

.service_profile_content p + p {
  margin-top: 35px;
}
@media (max-width: 768px) {
  .service_profile_content p + p {
    margin-top: 10px;
  }
}

.service_profile_representative {
  width: 100%;
  max-width: 215px;
}
@media (max-width: 768px) {
  .service_profile_representative {
    margin-inline: auto;
  }
}

.service_profile_avatar {
  width: 100%;
  max-width: 198px;
  margin-inline: auto;
}

.service_profile_company_name {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.7857142857;
  text-align: center;
  margin-top: 21px;
}
@media (max-width: 768px) {
  .service_profile_company_name {
    margin-top: 5px;
  }
}

.service_profile_name {
  font-weight: 700;
  text-align: center;
}

.service_profile_name span {
  font-size: 26px;
}
@media (max-width: 768px) {
  .service_profile_name span {
    font-size: 22px;
  }
}

/* service - cta
------------------------------ */
.cta.service_cta01 {
  margin-top: 130px;
}
@media (max-width: 768px) {
  .cta.service_cta01 {
    margin-top: 50px;
  }
}

/* about - about_philosophy
------------------------------ */
.about_philosophy {
  margin-top: 120px;
}
@media (max-width: 768px) {
  .about_philosophy {
    margin-top: 50px;
  }
}

.about_philosophy_text {
  font-size: 26px;
  font-weight: 700;
  line-height: 2.3461538462;
  text-align: center;
  margin-top: 70px;
}
@media (max-width: 768px) {
  .about_philosophy_text {
    font-size: 18px;
    margin-top: 30px;
  }
}

/* about - about_vision
------------------------------ */
.about_vision {
  margin-top: 120px;
}
@media (max-width: 768px) {
  .about_vision {
    margin-top: 50px;
  }
}

.about_vision_text {
  font-size: 26px;
  font-weight: 700;
  line-height: 2.3461538462;
  text-align: center;
  margin-top: 70px;
}
@media (max-width: 768px) {
  .about_vision_text {
    font-size: 18px;
    margin-top: 30px;
  }
}

/* about - about_conduct
------------------------------ */
.about_conduct {
  margin-top: 120px;
}
@media (max-width: 768px) {
  .about_conduct {
    margin-top: 50px;
  }
}

.about_conduct_lists {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 70px auto 0;
  counter-reset: cnt;
}
@media (max-width: 768px) {
  .about_conduct_lists {
    margin-top: 30px;
  }
}

.about_conduct_list {
  position: relative;
  font-size: 26px;
  font-weight: 700;
  line-height: 2.3461538462;
  padding-left: 26px;
}
@media (max-width: 768px) {
  .about_conduct_list {
    font-size: 18px;
    padding-left: 18px;
  }
}

.about_conduct_list::before {
  position: absolute;
  counter-increment: cnt;
  content: counter(cnt, decimal) ". ";
  left: 0;
}
@media (max-width: 768px) {
  .about_conduct_list::before {
    top: -1px;
  }
}

/* about - about_overview
------------------------------ */
.about_overview {
  margin-top: 120px;
}
@media (max-width: 768px) {
  .about_overview {
    margin-top: 50px;
  }
}

.about_overview_figure {
  margin-top: 68px;
}
@media (max-width: 768px) {
  .about_overview_figure {
    margin-top: 30px;
  }
}

.about_overview_figure dl {
  display: grid;
  grid-template-columns: 300fr 950fr;
}
@media (max-width: 768px) {
  .about_overview_figure dl {
    grid-template-columns: 1fr;
  }
}

.about_overview_figure dt {
  background-color: #EEF8FB;
  border-top: 1px solid #79CCDE;
  padding: 25px 35px;
}
@media (max-width: 768px) {
  .about_overview_figure dt {
    padding: 10px 15px;
  }
}

.about_overview_figure dt:last-of-type {
  border-bottom: 1px solid #79CCDE;
}
@media (max-width: 768px) {
  .about_overview_figure dt:last-of-type {
    border-bottom: none;
  }
}

.about_overview_figure dd {
  border-top: 1px solid #79CCDE;
  padding: 25px 35px;
}
@media (max-width: 768px) {
  .about_overview_figure dd {
    padding: 10px 15px;
  }
}

.about_overview_figure dd:last-of-type {
  border-bottom: 1px solid #79CCDE;
}

/* about - about_history
------------------------------ */
.about_history {
  margin-top: 131px;
}
@media (max-width: 768px) {
  .about_history {
    margin-top: 50px;
  }
}

.about_history_figure {
  margin-top: 68px;
}
@media (max-width: 768px) {
  .about_history_figure {
    margin-top: 30px;
  }
}

.about_history_figure dl {
  display: grid;
  grid-template-columns: 300fr 950fr;
}
@media (max-width: 768px) {
  .about_history_figure dl {
    grid-template-columns: 1fr;
  }
}

.about_history_figure dt {
  line-height: 1.875;
  background-color: #EEF8FB;
  border-top: 1px solid #79CCDE;
  padding: 21.5px 35px;
}
@media (max-width: 768px) {
  .about_history_figure dt {
    padding: 10px 15px;
  }
}

.about_history_figure dt:last-of-type {
  border-bottom: 1px solid #79CCDE;
}
@media (max-width: 768px) {
  .about_history_figure dt:last-of-type {
    border-bottom: none;
  }
}

.about_history_figure dd {
  line-height: 1.875;
  border-top: 1px solid #79CCDE;
  padding: 21.5px 35px;
}
@media (max-width: 768px) {
  .about_history_figure dd {
    padding: 10px 15px;
  }
}

.about_history_figure dd:last-of-type {
  border-bottom: 1px solid #79CCDE;
}

.about_history_figure_bold {
  font-weight: 700;
}

.about_history_figure_points {
  position: relative;
  display: inline-block;
  padding-left: 16px;
}

.about_history_figure_points::before {
  position: absolute;
  content: "・";
  left: 0;
  top: 0;
}

.about_history_figure_note {
  position: relative;
  display: inline-block;
  padding-left: 16px;
}

.about_history_figure_note::before {
  position: absolute;
  content: "※";
  left: 0;
  top: 0;
}

/* about - about_notice
------------------------------ */
.about_notice {
  margin-top: 120px;
}
@media (max-width: 768px) {
  .about_notice {
    margin-top: 50px;
  }
}

/* about - about_contact
------------------------------ */
.about_contact {
  margin-top: 120px;
}
@media (max-width: 768px) {
  .about_contact {
    margin-top: 50px;
  }
}

.about_contact_line {
  margin-top: 70px;
}
@media (max-width: 768px) {
  .about_contact_line {
    margin-top: 30px;
  }
}

.about_contact_line_title {
  font-size: 30px;
  letter-spacing: 0.07em;
  text-align: center;
}
@media (max-width: 768px) {
  .about_contact_line_title {
    font-size: 20px;
  }
}

.about_contact_line_main {
  background-color: #F8F6F1;
  margin-top: 57px;
  padding: 73px 20px 87px;
  border-radius: 30px;
}
@media (max-width: 768px) {
  .about_contact_line_main {
    padding: 30px 20px;
    margin-top: 20px;
  }
}

.about_contact_line_text {
  text-align: center;
}
@media (max-width: 768px) {
  .about_contact_line_text {
    text-align: justify;
  }
}

.about_contact_line_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 69px;
  margin-top: 59px;
}
@media (max-width: 768px) {
  .about_contact_line_wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
    margin-top: 20px;
  }
}

.about_contact_line_info {
  width: 100%;
  max-width: 464px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
}
@media (max-width: 768px) {
  .about_contact_line_info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 10px;
  }
}

.about_contact_line_qr {
  width: 100%;
  max-width: 130px;
}

.about_contact_line_qr img {
  border-radius: 10px;
}

.about_contact_line_unit {
  width: 100%;
  max-width: 265px;
  margin-top: 4px;
}
@media (max-width: 768px) {
  .about_contact_line_unit {
    margin-top: 0;
  }
}

.about_contact_line_id {
  font-weight: 700;
}
@media (max-width: 768px) {
  .about_contact_line_id {
    text-align: center;
  }
}

.about_contact_line_btn {
  margin-top: 26px;
}
@media (max-width: 768px) {
  .about_contact_line_btn {
    margin-top: 10px;
    text-align: center;
  }
}

.about_contact_line_img {
  width: 100%;
  max-width: 158px;
}
@media (max-width: 768px) {
  .about_contact_line_img {
    max-width: 130px;
  }
}

.about_contact_mail {
  margin-top: 177px;
}
@media (max-width: 768px) {
  .about_contact_mail {
    margin-top: 30px;
  }
}

.about_contact_mail_title {
  font-size: 30px;
  letter-spacing: 0.07em;
  text-align: center;
}
@media (max-width: 768px) {
  .about_contact_mail_title {
    font-size: 20px;
  }
}

.about_contact_mail_wrapper {
  margin-top: 67px;
}
@media (max-width: 768px) {
  .about_contact_mail_wrapper {
    margin-top: 20px;
  }
}

/* about - cta
------------------------------ */
.cta.about_cta01 {
  margin-top: 120px;
}
@media (max-width: 768px) {
  .cta.about_cta01 {
    margin-top: 50px;
  }
}

.cta.about_cta02 {
  margin-top: 130px;
}
@media (max-width: 768px) {
  .cta.about_cta02 {
    margin-top: 50px;
  }
}

/* news - news_archive_main
------------------------------ */
.news_archive_main {
  margin-top: 113px;
}
@media (max-width: 768px) {
  .news_archive_main {
    margin-top: 50px;
  }
}

.news_archive_main_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
}
@media (max-width: 768px) {
  .news_archive_main_wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 50px;
  }
}

.news_archive_main_group {
  width: 100%;
  max-width: 880px;
  -webkit-box-flex: 2;
      -ms-flex: 2;
          flex: 2;
  margin-top: 7px;
}
@media (max-width: 768px) {
  .news_archive_main_group {
    margin-top: 0;
  }
}

.news_archive_main_item + .news_archive_main_item {
  margin-top: 41px;
}

.news_archive_main_item_link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 30px;
  padding: clamp(20px, 2.6666666667vw, 40px) clamp(20px, 2.6666666667vw, 40px) clamp(20px, 2.6666666667vw, 40px);
  background-color: #F8F6F1;
  border-radius: 30px;
}
@media (max-width: 768px) {
  .news_archive_main_item_link {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 15px;
    padding: 20px 15px;
  }
}

@media (min-width: 768px) {
  .news_archive_main_item a:hover {
    background-color: #EEF8FB;
  }
}

.news_archive_main_item_img {
  width: 100%;
  max-width: clamp(140px, 14.6vw, 219px);
}
@media (max-width: 768px) {
  .news_archive_main_item_img {
    max-width: 100%;
  }
}

.news_archive_main_item_img {
  overflow: hidden;
  border-radius: 20px;
}

.news_archive_main_item_img img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 238/157;
  border-radius: 20px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

@media (min-width: 768px) {
  .news_archive_main_item a:hover .news_archive_main_item_img img {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}

.news_archive_main_item_content {
  width: 100%;
  max-width: 578px;
}
@media (max-width: 768px) {
  .news_archive_main_item_content {
    max-width: 100%;
  }
}

.news_archive_main_item_unit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 25px;
}
@media (max-width: 768px) {
  .news_archive_main_item_unit {
    gap: 15px;
  }
}

.news_archive_main_item_date {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #79CCDE;
}

.news_archive_main_item_cat {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  background-color: #79CCDE;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 4px 20px;
  border-radius: 50px;
}
@media (max-width: 768px) {
  .news_archive_main_item_cat {
    padding: 2px 15px;
  }
}

.news_archive_main_item_title {
  font-size: clamp(20px, 1.6vw, 24px);
  font-weight: 700;
  line-height: 1.4583333333;
  letter-spacing: 0.03em;
  margin-top: 11px;
}
@media (max-width: 768px) {
  .news_archive_main_item_title {
    font-size: 16px;
    margin-top: 5px;
  }
}

.news_archive_main_item_btn {
  width: 100%;
  max-width: 229px;
  font-weight: 700;
  text-align: center;
  color: #fff;
  background-color: #F3A1A3;
  border-radius: 10px;
  margin-left: auto;
  margin-top: 19px;
  padding: 20px 15px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (max-width: 768px) {
  .news_archive_main_item_btn {
    max-width: 200px;
    padding: 15px 15px;
    margin: 15px auto 0;
  }
}

@media (min-width: 768px) {
  .news_archive_main_item a:hover .news_archive_main_item_btn {
    background-color: #79CCDE;
  }
}

.news_archive_main_item_btn span {
  display: inline-block;
  position: relative;
  width: 100%;
  max-width: 180px;
  text-align: left;
  padding-right: 35px;
}

.news_archive_main_item_btn span::after {
  position: absolute;
  content: "";
  width: 30px;
  height: 5px;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url(../images/common/icon_arrow_right_white.png) no-repeat center center/contain;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.news_archive_main_page_navigation {
  margin-top: 70px;
}
@media (max-width: 768px) {
  .news_archive_main_page_navigation {
    margin-top: 20px;
  }
}

.page_navigation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 11px;
}

.page-numbers {
  display: grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  font-weight: 700;
  color: #F3A1A3;
  background-color: #FFE2E3;
  width: 42px;
  height: 42px;
  border-radius: 50%;
}

@media (min-width: 768px) {
  .page-numbers:hover {
    color: #fff;
    background-color: #F3A1A3;
  }
}

.page-numbers.dots {
  pointer-events: none;
}

.page-numbers.current {
  color: #fff;
  background-color: #F3A1A3;
}

.news_archive_main_side {
  width: 100%;
  max-width: 310px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media (max-width: 768px) {
  .news_archive_main_side {
    max-width: 100%;
  }
}

.news_archive_main_side_title {
  font-size: 26px;
  letter-spacing: 0.07em;
  padding-bottom: 15px;
  background-image: radial-gradient(circle, #BAAB9F 1.5px, transparent 1.5px);
  background-position: left bottom;
  background-repeat: repeat-x;
  background-size: 7px 3px;
}
@media (max-width: 768px) {
  .news_archive_main_side_title {
    font-size: clamp(18px, 5.3333333333vw, 20px);
    padding-bottom: 10px;
  }
}

.news_archive_main_side_lists {
  margin-top: 40px;
}
@media (max-width: 768px) {
  .news_archive_main_side_lists {
    margin-top: 10px;
  }
}

.news_archive_main_side_list + .news_archive_main_side_list {
  margin-top: 20px;
}
@media (max-width: 768px) {
  .news_archive_main_side_list + .news_archive_main_side_list {
    margin-top: 10px;
  }
}

.news_archive_main_side_list_link {
  position: relative;
  display: inline-block;
  font-weight: 700;
  background-color: #EEF8FB;
  width: 100%;
  text-align: center;
  padding: 25.5px 10px;
  border-radius: 10px;
}
@media (max-width: 768px) {
  .news_archive_main_side_list_link {
    padding: 15px;
    text-align: left;
  }
}

@media (min-width: 768px) {
  .news_archive_main_side_list_link:hover {
    color: #fff;
    background-color: #F3A1A3;
  }
}

.news_archive_main_side_list_link span {
  position: relative;
  display: inline-block;
  width: 100%;
  max-width: 251px;
  text-align: left;
}
@media (max-width: 768px) {
  .news_archive_main_side_list_link span {
    max-width: 100%;
  }
}

.news_archive_main_side_list_link span::after {
  position: absolute;
  content: "";
  width: 30px;
  height: 5px;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url(../images/common/icon_arrow_right_blue.png) no-repeat center center/contain;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

@media (min-width: 768px) {
  .news_archive_main_side_list_link:hover span::after {
    background: url(../images/common/icon_arrow_right_white.png) no-repeat center center/contain;
  }
}

/* news - cta
------------------------------ */
.cta.news_cta01 {
  margin-top: 130px;
}
@media (max-width: 768px) {
  .cta.news_cta01 {
    margin-top: 50px;
  }
}

/* news - news_single_main
------------------------------ */
.news_single_main {
  margin-top: 113px;
}
@media (max-width: 768px) {
  .news_single_main {
    margin-top: 50px;
  }
}

.news_single_main_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
}
@media (max-width: 768px) {
  .news_single_main_wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 50px;
  }
}

.news_single_main_article {
  width: 100%;
  max-width: 880px;
  -webkit-box-flex: 2;
      -ms-flex: 2;
          flex: 2;
  margin-top: 8px;
}
@media (max-width: 768px) {
  .news_single_main_article {
    margin-top: 0;
  }
}

.news_article {
  background-color: #F8F6F1;
  border-radius: 30px;
  padding: 39px 39px 58px;
}
@media (max-width: 768px) {
  .news_article {
    padding: 25px 20px;
  }
}

.news_article_unit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
}
@media (max-width: 768px) {
  .news_article_unit {
    gap: 15px;
  }
}

.news_article_date {
  font-size: 14px;
  font-weight: 700;
  color: #79CCDE;
}

.news_article_cat {
  font-size: 14px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #fff;
  background-color: #79CCDE;
  padding: 5px 20px;
  border-radius: 50px;
}
@media (max-width: 768px) {
  .news_article_cat {
    padding: 2px 15px;
  }
}

.news_article_title {
  position: relative;
  font-size: clamp(18px, 1.6vw, 24px);
  letter-spacing: 0.03em;
  font-weight: 700;
  margin-top: 19px;
  padding-bottom: 21px;
  background-image: radial-gradient(circle, #BAAB9F 1.5px, transparent 1.5px);
  background-position: left bottom;
  background-repeat: repeat-x;
  background-size: 7px 3px;
}
@media (max-width: 768px) {
  .news_article_title {
    font-size: 18px;
    margin-top: 10px;
    padding-bottom: 10px;
  }
}

.news_article_content {
  line-height: 2.1875;
  letter-spacing: 0.05em;
  margin-top: 56px;
}
@media (max-width: 768px) {
  .news_article_content {
    line-height: 180%;
    margin-top: 10px;
  }
}

.news_article_content p + p {
  margin-top: 35px;
}
@media (max-width: 768px) {
  .news_article_content p + p {
    margin-top: 10px;
  }
}

.news_article_images {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 32px;
}
@media (max-width: 768px) {
  .news_article_images {
    gap: 15px;
    margin-top: 20px;
  }
}

.news_article_image img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 453/302;
}

.news_article_image.news_article_vertical_image img {
  aspect-ratio: 453/500;
}

.news_article_buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 16px;
  margin: 70px auto 0;
}
@media (max-width: 768px) {
  .news_article_buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 15px;
    margin-top: 20px;
  }
}

.news_article_button {
  width: 100%;
  max-width: 265px;
}
@media (max-width: 768px) {
  .news_article_button {
    max-width: 220px;
  }
}

.news_article_button_previous {
  text-align: right;
}

.news_article_button_all {
  text-align: center;
}

.news_article_button a {
  display: inline-block;
  position: relative;
  letter-spacing: 0.08em;
  font-weight: 700;
  width: 100%;
  color: #fff;
  background-color: #F3A1A3;
  padding: 25.5px clamp(15px, 1.8666666667vw, 28px);
  border-radius: 10px;
}
@media (max-width: 768px) {
  .news_article_button a {
    padding: 15px;
  }
}

@media (min-width: 768px) {
  .news_article_button a:hover {
    background-color: #79CCDE;
  }
}

.news_article_button a span {
  position: relative;
  display: inline-block;
  width: 100%;
}

.news_article_button_previous a span {
  padding-left: clamp(25px, 3.3333333333vw, 50px);
}

.news_article_button_previous a span::before {
  position: absolute;
  content: "";
  width: clamp(20px, 2.7333333333vw, 41px);
  height: 9px;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url(../images/common/icon_arrow_left_white.png) no-repeat center center/contain;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.news_article_button_next a span {
  padding-right: clamp(25px, 3.3333333333vw, 50px);
}

.news_article_button_next a span::after {
  position: absolute;
  content: "";
  width: clamp(20px, 2.7333333333vw, 41px);
  height: 9px;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url(../images/common/icon_arrow_right_white.png) no-repeat center center/contain;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (max-width: 768px) {
  .news_article_button_next a span::after {
    height: 10px;
  }
}

/* contact - contact_tel
------------------------------ */
.contact_tel {
  margin-top: 102px;
}
@media (max-width: 768px) {
  .contact_tel {
    margin-top: 32px;
  }
}

.contact_tel_link {
  width: 100%;
  max-width: 402px;
  margin-inline: auto;
}
@media (max-width: 768px) {
  .contact_tel_link {
    max-width: 270px;
  }
}

.contact_tel_time {
  letter-spacing: 0;
  margin-top: 10px;
  text-align: center;
}

/* contact - contact_mail
------------------------------ */
.contact_mail {
  margin-top: 120px;
}
@media (max-width: 768px) {
  .contact_mail {
    margin-top: 50px;
  }
}

.contact_mail_text {
  letter-spacing: 0;
  margin-top: 42px;
}
@media (max-width: 768px) {
  .contact_mail_text {
    margin-top: 20px;
  }
}

.contact_mail_form {
  margin-top: 34px;
}
@media (max-width: 768px) {
  .contact_mail_form {
    margin-top: 20px;
  }
}

.footer.contact_footer {
  margin-top: 152px;
  padding: 88px 0 80px;
}
@media (max-width: 768px) {
  .footer.contact_footer {
    margin-top: 50px;
    padding: 50px 0 90px;
  }
}

@media (max-width: 768px) {
  .page_top.contact_page_top {
    bottom: 20px;
  }
}

/* form
------------------------------ */
.form_wrapper {
  background-color: #F8F6F1;
  border-radius: 30px;
  padding: 75px 50px 70px;
}
@media (max-width: 768px) {
  .form_wrapper {
    padding: 30px 20px;
  }
}

.form_text {
  text-align: center;
}
@media (max-width: 768px) {
  .form_text {
    text-align: left;
  }
}

.form_row {
  display: grid;
  grid-template-columns: 300px 1fr;
  margin-top: 56px;
}
@media (max-width: 768px) {
  .form_row {
    grid-template-columns: 1fr;
    margin-top: 20px;
  }
}

.form_title {
  position: relative;
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 12px;
  color: #fff;
  background-color: #79CCDE;
  padding: 23px 20px 24px 36px;
  border-radius: 12px 0 0 12px;
}
@media (max-width: 768px) {
  .form_title {
    padding: 10px 15px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    border-radius: 12px 12px 0 0;
  }
}

.form_title:nth-of-type(n + 2) {
  margin-top: 4px;
}
@media (max-width: 768px) {
  .form_title:nth-of-type(n + 2) {
    margin-top: 10px;
  }
}

.form_title.form_title_start {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.form_title_must,
.form_title_any {
  font-size: 14px;
  line-height: 100%;
  color: #303030;
  background-color: #FCE283;
  width: 100%;
  max-width: 51px;
  text-align: center;
  padding: 7px 5px;
  border-radius: 50px;
}
@media (max-width: 768px) {
  .form_title_must,
  .form_title_any {
    font-size: 13px;
    padding: 2px 5px;
  }
}

.form_input {
  letter-spacing: 0;
  display: grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #fff;
  padding: 15px 30px;
  border-radius: 0 12px 12px 0;
}
@media (max-width: 768px) {
  .form_input {
    padding: 10px 15px;
    border-radius: 0 0 12px 12px;
  }
}

.form_input:nth-of-type(n + 2) {
  margin-top: 4px;
}

.form_input_example {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #999999;
  margin-top: 1px;
}

.form_input_request {
  padding: 25px 24px;
}

.form_input_about {
  padding: 19px 24px 23px;
}

.form_input_years {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 9px;
}

.form_input input[type=text],
.form_input input[type=tel],
.form_input input[type=email] {
  width: 100%;
  max-width: 580px;
  background-color: #EEF8FB;
  padding: 10.5px 15px;
}
@media (max-width: 768px) {
  .form_input input[type=text],
  .form_input input[type=tel],
  .form_input input[type=email] {
    padding: 6px 10px;
  }
}

.form_input_years input[type=text] {
  max-width: 55px;
}

.form_input_name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px 56px;
}

.form_input_name_unit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 23px;
  width: 100%;
}

.form_address_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 15px 30px;
}

.form_input_post {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px 12px;
}

.form_input_post_mark {
  font-weight: 700;
  color: #303030;
}

.form_input .form_input_post input[type=text] {
  width: 100%;
  max-width: 280px;
}

.form_input_prefectures_wrapper {
  position: relative;
  color: #303030;
  background-color: #EEF8FB;
  width: 237px;
  max-width: 100%;
}

.form_input_prefectures_wrapper::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 8px;
  right: 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.form_input_prefectures {
  width: 100%;
  height: 100%;
  padding: 7.5px 15px;
}

.form_input_address {
  margin-top: 11px;
}

.form_input_textarea textarea {
  width: 100% !important;
  max-width: 882px;
  height: 268px !important;
  padding: 10px 15px;
  background-color: #EEF8FB;
}
@media (max-width: 768px) {
  .form_input_textarea textarea {
    height: 150px !important;
  }
}

.form_input_text {
  position: relative;
  display: inline-block;
  font-size: 15px;
  padding-left: 15px;
}

.form_input_text::before {
  position: absolute;
  content: "※";
  left: 0;
  top: 0;
}

.form_radio {
  padding: 11px 30px;
}
@media (max-width: 768px) {
  .form_radio {
    padding: 10px 15px;
  }
}

.form_radio_buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  gap: 10px 37px;
}
@media (max-width: 768px) {
  .form_radio_buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.form_radio_button {
  letter-spacing: 0.05em;
}

.form_radio_button input[type=radio] {
  position: relative;
  display: inline-block;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 34px;
  height: 34px;
  max-width: 100%;
  -webkit-transition: all 0.15s ease-out 0s;
  transition: all 0.15s ease-out 0s;
  cursor: pointer;
  outline: none;
  background-color: #EEF8FB;
  border-radius: 50%;
}

.form_radio_button input[type=radio]:before {
  position: absolute;
  content: "";
  width: 17px;
  height: 17px;
  left: 50%;
  top: 50%;
  border-radius: 50%;
  -webkit-transform: scale(0) translate(-50%, -50%);
          transform: scale(0) translate(-50%, -50%);
  -webkit-transition: all ease-out 250ms;
  transition: all ease-out 250ms;
}

.form_radio_button input[type=radio]:checked:before {
  -webkit-transform: scale(1) translate(-50%, -50%);
          transform: scale(1) translate(-50%, -50%);
  background-color: #79CCDE;
}

.form_radio_button label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 14px;
}

.form .mfp_err {
  display: none;
}

.form_file .mfp_element_file {
  font-size: 14px;
  max-width: 100%;
  padding: 7px 8px;
}

.form_privacy {
  height: 225px;
  overflow: scroll;
  background-color: #fff;
  border-radius: 10px;
  padding: 35px 38px;
  margin-top: 30px;
}
@media (max-width: 768px) {
  .form_privacy {
    height: 150px;
    padding: 15px 20px;
    margin-top: 15px;
  }
}

.form_privacy_title {
  font-size: 24px;
  font-weight: 700;
  color: #79CCDE;
}
@media (max-width: 768px) {
  .form_privacy_title {
    font-size: 16px;
  }
}

.form_privacy_text {
  font-size: 14px;
  line-height: 2.1428571429;
  margin-top: 15px;
}
@media (max-width: 768px) {
  .form_privacy_text {
    margin-top: 10px;
  }
}

.form_privacy_text p + p {
  margin-top: 20px;
}
@media (max-width: 768px) {
  .form_privacy_text p + p {
    margin-top: 10px;
  }
}

.form_checkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  height: 100%;
}

.form_checkbox_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px 32px;
}

.form_checkbox_confirmation {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  letter-spacing: 0.05em;
  margin-top: 65px;
}
@media (max-width: 768px) {
  .form_checkbox_confirmation {
    margin-top: 20px;
  }
}

.form_checkbox_label.form_checkbox_label_none {
  display: none;
}

.form_checkbox_parts {
  position: relative;
  display: inline-block;
  font-size: 14px;
  letter-spacing: 0.05em;
  padding-left: 42px;
}

.form_checkbox_parts::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  width: 36px;
  height: 36px;
  border: none;
  background-color: #EEF8FB;
}

.form_checkbox_input {
  display: none;
}

.form_checkbox_input:checked + .form_checkbox_parts::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 14px;
  width: 11px;
  height: 22px;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  border-bottom: 3px solid #79CCDE;
  border-right: 3px solid #79CCDE;
}

.checkbox_err .mfp_err {
  width: 228px;
  max-width: 100%;
  margin: auto;
  padding: 5px 0;
}

.form_btn {
  position: relative;
  width: 100%;
  max-width: 272px;
  margin: 61px auto 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (max-width: 768px) {
  .form_btn {
    max-width: 263px;
    margin: 20px auto 0;
  }
}

.form_btn::before {
  position: absolute;
  content: "";
  width: 39px;
  height: 8px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 28px;
  background: url(../images/common/icon_arrow_right_white.png) no-repeat center center/contain;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.form_btn button {
  display: inline-block;
  font-weight: 700;
  line-height: 140%;
  letter-spacing: 0.08em;
  width: 100%;
  max-width: 265px;
  color: #fff;
  background-color: #F3A1A3;
  border-radius: 10px;
  z-index: 1;
  text-align: left;
  padding: 27px 40px 26px 23px;
}
@media (max-width: 768px) {
  .form_btn button {
    max-width: 263px;
    padding: 19px 40px 20px 23px;
  }
}

@media (min-width: 768px) {
  .form_btn:hover button {
    background-color: #79CCDE;
  }
}

.mfp_element_button {
  background-color: #79CCDE;
}

.form_main_title {
  font-size: clamp(20px, 1.6vw, 24px);
  font-weight: 700;
  letter-spacing: 0.08em;
}
@media (max-width: 768px) {
  .form_main_title {
    font-size: clamp(18px, 1.3333333333vw, 20px);
  }
}

.form_guest {
  margin-top: 34px;
}

.form_wish_lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 16px 24px;
}
@media (max-width: 768px) {
  .form_wish_lists {
    gap: 10px;
  }
}

.form_wish_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
  line-height: 120%;
  letter-spacing: 0.05em;
}
@media (max-width: 768px) {
  .form_wish_list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 5px;
  }
}

.form_wish_list_title {
  white-space: nowrap;
}

.form_wish_list_input {
  position: relative;
  width: 100%;
  max-width: 272px;
}

.form_wish_list_input select {
  font-size: 14px;
  letter-spacing: 0.05em;
  width: 100%;
  border: 1px solid #CDCDCD;
  padding: 8px 40px 5px 9px;
}

.form_tel_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px 24px;
  margin-top: 8px;
}

.form_tel_unit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 17px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 768px) {
  .form_tel_unit {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 5px;
  }
}

.form_tel_text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  white-space: nowrap;
}

.form_tel_text span {
  display: inline-block;
  color: #fff;
  background-color: #79CCDE;
  font-size: 12px;
  line-height: 110%;
  width: 100%;
  max-width: 45px;
  min-width: 45px;
  text-align: center;
  border-radius: 50px;
  padding: 3px;
}
@media (max-width: 768px) {
  .form_tel_text span {
    font-size: 12px;
    max-width: 40px;
    padding: 3px 5px;
    margin-top: 2px;
  }
}

.form_tel_unit input[type=tel] {
  max-width: 200px;
  padding: 1px 15px;
}

.form_mail_unit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  margin-top: 16px;
}
@media (max-width: 768px) {
  .form_mail_unit {
    gap: 5px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 10px;
  }
}

.form_mail_text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  width: 100%;
  max-width: 172px;
  white-space: nowrap;
}

.form_mail_text span {
  display: inline-block;
  color: #fff;
  background-color: #79CCDE;
  font-size: 15px;
  line-height: 100%;
  width: 100%;
  max-width: 50px;
  text-align: center;
  border-radius: 50px;
  padding: 4px;
}
@media (max-width: 768px) {
  .form_mail_text span {
    font-size: 12px;
    max-width: 40px;
    padding: 3px 5px;
    margin-top: 2px;
  }
}

.form_guest_lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 17px 24px;
  line-height: 120%;
}

.form_guest_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  letter-spacing: 0.05em;
  gap: 5px 10px;
}

.form_guest_list_land_area {
  max-width: 300px;
}

.form_guest_list_building_area {
  max-width: 300px;
}

.form_guest_list_building_type {
  max-width: 372px;
}

.form_guest_list_building_structure {
  max-width: 372px;
}

.form_guest_list_when_built {
  max-width: 455px;
}

.form_guest_list input[type=text] {
  max-width: 200px;
  padding: 6px 15px;
}

.form_guest_list_select {
  position: relative;
  width: 100%;
  max-width: 272px;
}

.form_guest_list select {
  position: relative;
  font-size: 14px;
  letter-spacing: 0.05em;
  width: 100%;
  border: 1px solid #CDCDCD;
  padding: 9px 21px 4px 9px;
}

/* contact_thanks_main
------------------------------ */
.contact_thanks_main {
  margin-top: 100px;
}
@media (max-width: 768px) {
  .contact_thanks_main {
    margin-top: 50px;
  }
}

.contact_thanks_main_text {
  text-align: center;
  margin-top: 50px;
}
@media (max-width: 768px) {
  .contact_thanks_main_text {
    margin-top: 20px;
  }
}

.contact_thanks_main_btn {
  text-align: center;
  margin-top: 50px;
}
@media (max-width: 768px) {
  .contact_thanks_main_btn {
    margin-top: 20px;
  }
}

.cta.contact-thanks_cta01 {
  margin-top: 120px;
}
@media (max-width: 768px) {
  .cta.contact-thanks_cta01 {
    margin-top: 50px;
  }
}

/* 404
------------------------------ */
.not_found {
  margin-top: 100px;
}
@media (max-width: 768px) {
  .not_found {
    margin-top: 50px;
  }
}

.not_found_text {
  text-align: center;
}

.not_found_btn {
  text-align: center;
  margin-top: 50px;
}
@media (max-width: 768px) {
  .not_found_btn {
    margin-top: 30px;
  }
}

.other-page_cta01 {
  margin-top: 100px;
}
@media (max-width: 768px) {
  .other-page_cta01 {
    margin-top: 50px;
  }
}

/* footer
------------------------------ */
.footer {
  margin-top: 114px;
}
@media (max-width: 768px) {
  .footer {
    margin-top: 50px;
  }
}

.footer_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
}
@media (max-width: 768px) {
  .footer_wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.footer_info {
  width: 100%;
  max-width: 551px;
  margin-top: 9px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media (max-width: 768px) {
  .footer_info {
    margin-top: 0;
  }
}

.footer_logo {
  width: 100%;
  max-width: 570px;
}

.footer_address {
  font-size: 14px;
  letter-spacing: 0.1em;
  margin-top: 20px;
  padding-top: 25px;
  background-image: radial-gradient(circle, #BAAB9F 1.5px, transparent 1.5px);
  background-position: left top;
  background-repeat: repeat-x;
  background-size: 7px 3px;
}
@media (max-width: 768px) {
  .footer_address {
    margin-top: 10px;
    padding-top: 10px;
  }
}

.footer_menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
  width: 100%;
  max-width: 543px;
  -webkit-box-flex: 2;
      -ms-flex: 2;
          flex: 2;
  margin-top: 5px;
}
@media (max-width: 768px) {
  .footer_menu {
    display: none;
  }
}

.footer_img {
  width: 100%;
  max-width: clamp(100px, 10.3333333333vw, 155px);
  margin-top: 37px;
}

.footer_nav {
  width: 100%;
  max-width: 284px;
}

.footer_lists {
  display: grid;
  grid-template-columns: repeat(2, auto);
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 17px 15px;
}
@media (max-width: 768px) {
  .footer_lists {
    display: none;
  }
}

.footer_list a {
  display: inline-block;
  position: relative;
  font-size: 15px;
  font-weight: 700;
}

@media (min-width: 768px) {
  .footer_list a:hover {
    color: #79CCDE;
  }
}

.footer_list a::after {
  position: absolute;
  content: "";
  width: 0;
  height: 1px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: 0;
  background-color: #79CCDE;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

@media (min-width: 768px) {
  .footer_list a:hover::after {
    width: 100%;
  }
}

.footer_copyright {
  color: #fff;
  background-color: #F3A1A3;
  text-align: center;
  margin-top: 104px;
  padding: 26px 10px 30px;
}
@media (max-width: 768px) {
  .footer_copyright {
    margin-top: 30px;
    padding: 20px 16px 180px;
  }
}

.footer_copyright small {
  font-size: 12px;
}

/* page_top
------------------------------ */
.page_top {
  position: fixed;
  right: 30px;
  bottom: 30px;
  width: 50px;
  height: 50px;
  color: #fff;
  background-color: #FFB355;
  border: 1px solid #fff;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  z-index: 10;
  border-radius: 50%;
}
@media (max-width: 768px) {
  .page_top {
    right: 16px;
    bottom: 115px;
  }
}

@media (min-width: 768px) {
  .page_top:hover {
    color: #FFB355;
    background-color: #fff;
    border-color: #FFB355;
  }
}

.page_top::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 16px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  -webkit-transform: translate(-50%) rotate(-45deg);
          transform: translate(-50%) rotate(-45deg);
}

@media (min-width: 768px) {
  .page_top:hover::before {
    border-color: #FFB355;
  }
}

/* foot_menu
------------------------------ */
.foot_menu {
  display: none;
  position: fixed;
  width: 100%;
  max-width: 343px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: 0;
  z-index: 10;
  padding: 12px 12px;
  -webkit-box-shadow: 0px -3px 5px rgba(255, 255, 255, 0.5);
          box-shadow: 0px -3px 5px rgba(255, 255, 255, 0.5);
  background-color: #fff;
  border-radius: 16px 16px 0 0;
}
@media (max-width: 768px) {
  .foot_menu {
    display: block;
  }
}

.foot_menu_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 4px;
}

.foot_menu_line {
  width: 50%;
}

.foot_menu_line a {
  position: relative;
  display: inline-block;
  font-size: 13px;
  letter-spacing: 0.03em;
  font-weight: 700;
  width: 100%;
  height: 100%;
  color: #fff;
  background-color: #79CCDE;
  border-radius: 5px;
  text-align: center;
  padding: 45px 5px 10px;
}

.foot_menu_line a::before {
  position: absolute;
  content: "";
  width: 25px;
  height: 24px;
  top: 15px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: url(../images/common/icon_line_white.png) no-repeat center center/contain;
}

.foot_menu_mail {
  width: 50%;
}

.foot_menu_mail a {
  position: relative;
  display: inline-block;
  font-size: 13px;
  letter-spacing: 0.03em;
  font-weight: 700;
  width: 100%;
  height: 100%;
  color: #fff;
  background-color: #F3A1A3;
  border-radius: 5px;
  text-align: center;
  padding: 45px 5px 10px;
}

.foot_menu_mail a::before {
  position: absolute;
  content: "";
  width: 29px;
  height: 19px;
  top: 18px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: url(../images/common/icon_mail_white.png) no-repeat center center/contain;
}