@charset "UTF-8";
/* =================================
 common
================================= */
/* title
---------------------------------------------------------- */
.c-ttl_main {
  text-align: center;
  margin-bottom: 50px; }
  @media screen and (max-width: 767px) {
    .c-ttl_main {
      margin-bottom: 30px; } }
  .c-ttl_main_jp {
    font-size: 60px;
    font-size: 6rem;
    line-height: 1.4; }
    @media screen and (max-width: 767px) {
      .c-ttl_main_jp {
        font-size: 32px;
        font-size: 3.2rem; } }
  .c-ttl_main_eng {
    color: #2981c7;
    font-family: "Fjalla One", sans-serif;
    font-weight: 400;
    font-size: 24px;
    font-size: 2.4rem;
    letter-spacing: .1em; }
    @media screen and (max-width: 767px) {
      .c-ttl_main_eng {
        font-size: 16px;
        font-size: 1.6rem; } }
.c-ttl_line {
  font-size: 28px;
  font-size: 2.8rem;
  line-height: 1;
  color: #838041;
  text-align: center;
  display: flex;
  height: 82px;
  justify-content: center;
  align-items: center;
  border-top: solid 1px;
  border-bottom: solid 1px;
  margin-bottom: 40px; }
  @media screen and (max-width: 767px) {
    .c-ttl_line {
      font-size: 20px;
      font-size: 2.0rem; } }

/* text
---------------------------------------------------------- */
.c-txt_note {
  font-size: 14px;
  font-size: 1.4rem;
  color: #6d6d6d;
  line-height: 1.7;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400; }
  @media screen and (max-width: 767px) {
    .c-txt_note {
      font-size: 13px;
      font-size: 1.3rem; } }
.c-txt_under {
  font-size: 25px;
  font-size: 2.5rem;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 8px;
  text-decoration-thickness: 1px; }
  @media screen and (max-width: 767px) {
    .c-txt_under {
      font-size: 17px;
      font-size: 1.7rem; } }
.c-txt_list {
  font-weight: 500;
  font-size: 20px;
  font-size: 2.0rem;
  padding: 30px;
  border-radius: 10px; }
  @media screen and (max-width: 767px) {
    .c-txt_list {
      font-size: 16px;
      font-size: 1.6rem;
      padding: 20px; } }
  .c-txt_list.-fill {
    background-color: #f2f2f2; }
  .c-txt_list > li {
    position: relative;
    text-indent: -1em;
    margin-left: 1em; }
    .c-txt_list > li::before {
      content: "・"; }
.c-txt_mid {
  font-size: 22px;
  font-size: 2.2rem; }
  @media screen and (max-width: 767px) {
    .c-txt_mid {
      font-size: 17px;
      font-size: 1.7rem; } }
.c-txt_gry {
  color: #959ca5; }
.c-txt_lead {
  font-size: 20px;
  font-size: 2.0rem;
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  text-align: center; }
.c-txt_indent {
  text-indent: -1em;
  margin: 1em; }
  .c-txt_indent::before {
    content: "・"; }

/* list
---------------------------------------------------------- */
.c-list_asteNum li {
  position: relative;
  z-index: 0;
  counter-increment: number;
  padding-left: 2em; }
  .c-list_asteNum li::before {
    position: absolute;
    z-index: 0;
    top: 0;
    left: 0;
    width: 2em;
    height: 1em;
    content: "※" counter(number); }
.c-list_midpoint li {
  position: relative;
  z-index: 0;
  padding-left: 1em; }
  .c-list_midpoint li::before {
    position: absolute;
    z-index: 0;
    top: 0;
    left: 0;
    width: 1em;
    height: 1em;
    content: "\30fb"; }

.c-scroll {
  overflow-x: scroll; }

/* accordion
---------------------------------------------------------- */
.c-accordion {
  font-size: 22px;
  font-size: 2.2rem; }
  @media screen and (max-width: 767px) {
    .c-accordion {
      font-size: 16px;
      font-size: 1.6rem; } }
  .c-accordion_header {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    border: none;
    cursor: pointer;
    font-size: 30px;
    font-size: 3rem;
    border-radius: 6px;
    padding: 0; }
    @media screen and (max-width: 767px) {
      .c-accordion_header {
        font-size: 18px;
        font-size: 1.8rem;
        text-align: left; } }
    .c-accordion_header.-ylw {
      background-color: #ead41b;
      box-shadow: 0px 6px 0px 0px #ab9b00;
      color: #333; }
      .c-accordion_header.-ylw::before, .c-accordion_header.-ylw::after {
        background-color: #333; }
    .c-accordion_header.-bk {
      background-color: #424242;
      color: #fff;
      box-shadow: 0px 6px 0px 0px black; }
    .c-accordion_header.-ble {
      background-color: #1d5292;
      color: #fff;
      box-shadow: 0px 6px 0px 0px #153f71; }
    .c-accordion_header.-ore {
      background-color: #ff903f;
      color: #fff;
      box-shadow: 0px 6px 0px 0px #db6f23; }
    .c-accordion_header:active {
      transform: translateY(6px);
      transition: .3s;
      box-shadow: none !important; }
    .c-accordion_header::before, .c-accordion_header::after {
      content: "";
      position: absolute;
      top: 50%;
      right: 60px;
      width: 35px;
      height: 2px;
      background: #fff;
      transition: transform 0.3s ease;
      margin-top: -10px; }
      @media screen and (max-width: 767px) {
        .c-accordion_header::before, .c-accordion_header::after {
          width: 16px;
          right: 20px;
          margin-top: -6px; } }
    .c-accordion_header::before {
      transform: translateY(-50%); }
    .c-accordion_header::after {
      transform: translateY(-50%) rotate(90deg); }
    .c-accordion_header_inner {
      position: relative;
      display: block;
      width: 100%;
      height: 100%;
      padding: 26px 0; }
      @media screen and (max-width: 767px) {
        .c-accordion_header_inner {
          padding: 20px 56px 20px 20px; } }
      .c-accordion_header_inner::after {
        content: "クリック";
        display: block;
        position: absolute;
        right: 0;
        top: 50%;
        margin-top: 8px;
        width: 155px;
        text-align: center;
        font-size: 18px;
        font-size: 1.8rem;
        font-weight: 600; }
        @media screen and (max-width: 767px) {
          .c-accordion_header_inner::after {
            content: "タップ";
            width: 56px;
            font-size: 12px;
            font-size: 1.2rem;
            margin-top: 4px; } }
  .c-accordion.is-open .c-accordion_header::after {
    transform: translateY(-50%) rotate(0deg); }
  .c-accordion.is-open .c-accordion_content {
    padding: 40px 50px; }
    @media screen and (max-width: 767px) {
      .c-accordion.is-open .c-accordion_content {
        padding: 20px; } }
  .c-accordion_content {
    height: 0;
    overflow: hidden;
    transition: height .3s;
    transition: height 0.3s ease;
    padding: 0 50px;
    background: #fff; }
    @media screen and (max-width: 767px) {
      .c-accordion_content {
        padding: 0 20px; } }

/* =================================
 index
================================= */
.p-index {
  /*first----------------------------*/
  /*case----------------------------*/
  /*quality----------------------------*/
  /*flow----------------------------*/
  /*line----------------------------*/
  /*trust----------------------------*/
  /*scared----------------------------*/
  /*area----------------------------*/
  /*greeting----------------------------*/
  /*price----------------------------*/
  /*photo----------------------------*/
  /*access----------------------------*/ }
  .p-index_mv {
    width: 100%;
    height: calc(100vh + 75px);
    position: relative;
    overflow: hidden; }
    .p-index_mv::before {
      content: "";
      display: block;
      background-image: url(../img/mv_bg.webp);
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      filter: blur(4px);
      width: 100%;
      height: 100%;
      position: absolute;
      transform: scale(1.1); }
    @media screen and (max-width: 1440px) and (min-width: 768px) {
      .p-index_mv {
        height: 880px; } }
    @media screen and (max-width: 767px) {
      .p-index_mv {
        height: auto;
        aspect-ratio: 1 / 1.8; } }
    .p-index_mv_cont {
      width: calc(100% - 100px);
      height: calc(100% - 175px);
      background-color: rgba(0, 0, 0, 0.6);
      position: absolute;
      left: 50px;
      top: 50px;
      overflow: hidden; }
      @media screen and (max-width: 767px) {
        .p-index_mv_cont {
          width: calc(100% - 40px);
          height: calc(100% - 115px);
          left: 20px;
          top: 20px; } }
      .p-index_mv_cont::before {
        content: "";
        display: block;
        background-image: url(../img/mv_img01.webp);
        height: 97%;
        position: absolute;
        bottom: 0;
        right: 0;
        background-size: cover;
        aspect-ratio: 593 / 680;
        max-width: 48%;
        z-index: 1; }
        @media screen and (max-width: 767px) {
          .p-index_mv_cont::before {
            width: 90%;
            height: auto;
            max-width: none;
            right: -4%;
            z-index: 0; } }
      .p-index_mv_cont::after {
        content: "";
        display: block;
        width: 100%;
        height: 32%;
        background-image: url(../img/mv_lead_bg.webp);
        background-size: cover;
        mix-blend-mode: lighten;
        position: absolute;
        top: 0;
        clip-path: polygon(0 0, 100% 0, 100% calc(100% - 6vw), 0 100%); }
        @media screen and (max-width: 767px) {
          .p-index_mv_cont::after {
            height: 23%; } }
      .p-index_mv_cont_lead {
        height: 27%;
        display: flex;
        align-items: center; }
        .p-index_mv_cont_lead img {
          position: absolute;
          right: 40%;
          width: 52%;
          aspect-ratio: 720 / 172; }
          @media screen and (max-width: 767px) {
            .p-index_mv_cont_lead img {
              width: 80%;
              right: 10%;
              top: 9%; } }
      .p-index_mv_cont_copy img {
        position: absolute;
        right: 44%;
        top: 40%;
        width: 48%;
        aspect-ratio: 646 / 240; }
        @media screen and (max-width: 767px) {
          .p-index_mv_cont_copy img {
            width: 80%;
            right: 15%;
            top: 25%; } }
      .p-index_mv_cont_txt {
        position: absolute;
        color: #aa8e87;
        right: 50px;
        bottom: 50px;
        line-height: 1;
        font-size: 22px;
        font-size: 2.2rem;
        z-index: 2;
        font-family: "Shippori Mincho", serif;
        font-weight: 600; }
        @media screen and (max-width: 767px) {
          .p-index_mv_cont_txt {
            font-size: 20px;
            font-size: 2rem;
            width: 100%;
            right: 0;
            left: 0;
            margin: auto;
            text-align: center;
            bottom: 20px;
            text-shadow: 0px 0px 12px #000,0px 0px 12px #000,0px 0px 12px #000,0px 0px 12px #000,0px 0px 6px #000,0px 0px 6px #000; } }
    .p-index_mv_caution {
      background-color: #ead41b;
      width: 100%;
      display: flex;
      text-align: center;
      color: #333;
      font-size: 24px;
      font-size: 2.4rem;
      font-family: "Shippori Mincho", serif;
      font-weight: 400;
      justify-content: center;
      align-items: center;
      position: absolute;
      bottom: 0;
      height: 75px; }
      @media screen and (max-width: 767px) {
        .p-index_mv_caution {
          font-size: 14px;
          font-size: 1.4rem;
          line-height: 1.6; } }
  .p-index_first {
    background-image: linear-gradient(0deg, transparent calc(100% - 1px), #ececec calc(100% - 1px)), linear-gradient(90deg, transparent calc(100% - 1px), #ececec calc(100% - 1px));
    background-size: 16px 16px;
    background-repeat: repeat;
    background-position: center center;
    background-color: #f6f6f6;
    padding: 120px 0 0px; }
    @media screen and (max-width: 767px) {
      .p-index_first {
        padding: 60px 0 0px; } }
    .p-index_first_ttl {
      width: 540px;
      margin: 0 auto 68px; }
      @media screen and (max-width: 767px) {
        .p-index_first_ttl {
          width: 90%;
          margin-bottom: 40px; } }
    .p-index_first_txt {
      width: 540px;
      margin: auto;
      margin-bottom: 68px; }
      @media screen and (max-width: 767px) {
        .p-index_first_txt {
          width: 90%;
          margin-bottom: 40px; } }
    .p-index_first_subttl img {
      width: 40%;
      margin: 0 auto 30px; }
      @media screen and (max-width: 767px) {
        .p-index_first_subttl img {
          width: 70%;
          margin-bottom: 20px; } }
    .p-index_first .c-accordion {
      margin-bottom: 120px; }
      @media screen and (max-width: 767px) {
        .p-index_first .c-accordion {
          margin-bottom: 60px; } }
      .p-index_first .c-accordion_header {
        background-color: #ca4040;
        color: #fff;
        box-shadow: 0px 6px 0px 0px #872a2a; }
        .p-index_first .c-accordion_header h3 {
          width: 540px;
          margin: auto; }
          @media screen and (max-width: 767px) {
            .p-index_first .c-accordion_header h3 {
              width: 100%;
              margin-right: auto; } }
        .p-index_first .c-accordion_header .slider img {
          width: 100%; }
      .p-index_first .c-accordion .slick-dots {
        bottom: 20px; }
        @media screen and (max-width: 767px) {
          .p-index_first .c-accordion .slick-dots {
            bottom: 2px; } }
        .p-index_first .c-accordion .slick-dots li {
          width: 7px;
          height: 7px; }
          .p-index_first .c-accordion .slick-dots li.slick-active button::before {
            background-color: #fff; }
          .p-index_first .c-accordion .slick-dots li button {
            width: 7px;
            height: 7px; }
            .p-index_first .c-accordion .slick-dots li button::before {
              content: "";
              display: block;
              border: solid 1px #fff;
              border-radius: 100px;
              opacity: 1;
              width: 7px;
              height: 7px; }
    .p-index_first .c-txt_note {
      text-align: right;
      margin: -10px 0 20px; }
    .p-index_first_point {
      background-image: url(../img/first-point_bg.webp);
      background-size: cover;
      background-position: center;
      font-family: "Shippori Mincho",serif;
      font-weight: 500;
      padding: 110px 0; }
      @media screen and (max-width: 767px) {
        .p-index_first_point {
          padding: 55px 0; } }
      .p-index_first_point_copy {
        color: #fff;
        line-height: 1.5;
        text-shadow: 0px 0px 15px #162840,0px 0px 15px #142842;
        /*main*/
        /*main end*/
        /*sub*/
        /*sub end*/
        /*note*/
        /*note end*/ }
        .p-index_first_point_copy_bg {
          color: #3c74b7;
          font-size: 32px;
          font-size: 3.2rem;
          letter-spacing: -.07em;
          position: relative;
          z-index: 2;
          display: inline-block;
          padding: 0 30px;
          text-shadow: none; }
          @media screen and (max-width: 767px) {
            .p-index_first_point_copy_bg {
              font-size: 16px;
              font-size: 1.6rem;
              padding: 0 10px; } }
          @media screen and (max-width: 750px) {
            .p-index_first_point_copy_bg {
              font-size: 15px;
              font-size: 1.5rem; } }
          .p-index_first_point_copy_bg::before {
            content: "";
            display: block;
            width: 100%;
            height: 68px;
            background-color: #fff;
            position: absolute;
            top: 0;
            bottom: 0;
            left: 0;
            right: 0;
            z-index: -1;
            margin: auto;
            transform: skewX(-15deg); }
            @media screen and (max-width: 767px) {
              .p-index_first_point_copy_bg::before {
                height: 46px; } }
        .p-index_first_point_copy_main {
          font-size: 56px;
          font-size: 5.6rem; }
          @media screen and (max-width: 767px) {
            .p-index_first_point_copy_main {
              font-size: 30px;
              font-size: 3rem; } }
          .p-index_first_point_copy_main .-num {
            font-size: 100px;
            font-size: 10.0rem;
            position: relative; }
            @media screen and (max-width: 767px) {
              .p-index_first_point_copy_main .-num {
                font-size: 64px;
                font-size: 6.4rem; } }
            .p-index_first_point_copy_main .-num::after {
              content: "%";
              font-size: 77%; }
          .p-index_first_point_copy_main .-large {
            font-size: 132%; }
          .p-index_first_point_copy_main .-sub {
            font-size: 28px;
            vertical-align: middle;
            display: inline-block;
            height: 70px; }
            @media screen and (max-width: 767px) {
              .p-index_first_point_copy_main .-sub {
                font-size: 20px;
                font-size: 2rem; } }
        .p-index_first_point_copy_sub {
          font-size: 32px;
          font-size: 3.2rem;
          margin: -5px 0 20px; }
          @media screen and (max-width: 767px) {
            .p-index_first_point_copy_sub {
              font-size: 18px;
              font-size: 1.8rem;
              margin: -16px 0 10px; } }
          .p-index_first_point_copy_sub .-large {
            font-size: 118%; }
        .p-index_first_point_copy_note {
          font-size: 18px;
          font-size: 1.8rem; }
          @media screen and (max-width: 767px) {
            .p-index_first_point_copy_note {
              font-size: 15px;
              font-size: 1.5rem; } }
      .p-index_first_point_support {
        display: flex;
        width: 100%;
        height: 100px;
        position: relative;
        color: #fff;
        display: flex;
        align-items: center;
        margin-top: 40px; }
        @media screen and (max-width: 767px) {
          .p-index_first_point_support {
            flex-direction: column;
            margin-top: 20px; } }
        @media screen and (max-width: 750px) {
          .p-index_first_point_support {
            height: 84px; } }
        .p-index_first_point_support > * {
          z-index: 2; }
        .p-index_first_point_support::before {
          content: "";
          display: block;
          background-color: #616161;
          position: absolute;
          width: 100%;
          height: 100%;
          top: 0;
          mix-blend-mode: multiply; }
          @media screen and (max-width: 767px) {
            .p-index_first_point_support::before {
              top: -10px; } }
        .p-index_first_point_support_logo {
          width: 210px;
          margin: 0 30px;
          position: relative; }
          @media screen and (max-width: 767px) {
            .p-index_first_point_support_logo {
              width: 40%;
              margin: 0; } }
          .p-index_first_point_support_logo::after {
            content: "";
            display: block;
            width: 1px;
            height: 120%;
            background-color: #6c6c6c;
            position: absolute;
            top: 0;
            bottom: 0;
            right: -30px;
            margin: auto; }
            @media screen and (max-width: 767px) {
              .p-index_first_point_support_logo::after {
                display: none; } }
        .p-index_first_point_support_txt {
          font-size: 36px;
          font-size: 3.6rem;
          margin: 0 30px; }
          @media screen and (max-width: 1200px) {
            .p-index_first_point_support_txt {
              font-size: 24px;
              font-size: 2.4rem; } }
          @media screen and (max-width: 767px) {
            .p-index_first_point_support_txt {
              font-size: 16px;
              font-size: 1.6rem;
              margin-top: 10px;
              margin: 0 16px; } }
          @media screen and (max-width: 750px) {
            .p-index_first_point_support_txt {
              font-size: 15px;
              font-size: 1.5rem; } }
      .p-index_first_point_list {
        display: flex;
        justify-content: space-between;
        margin-top: 40px; }
        @media screen and (max-width: 767px) {
          .p-index_first_point_list {
            flex-direction: column;
            margin-top: 20px; } }
        .p-index_first_point_list > li {
          background-color: #f2f2f2;
          padding: 20px;
          text-align: center;
          font-size: 18px;
          font-size: 1.8rem;
          line-height: 1.6;
          width: calc((100% - 50px) / 3); }
          @media screen and (max-width: 767px) {
            .p-index_first_point_list > li {
              width: 100%; }
              .p-index_first_point_list > li:not(:last-child) {
                margin-bottom: 14px; } }
        .p-index_first_point_list_ttl {
          font-size: 20px;
          font-size: 2rem;
          text-align: center;
          background-color: #19476a;
          color: #fff;
          height: 45px;
          display: flex;
          align-items: center;
          justify-content: center;
          margin-bottom: 20px; }
          .p-index_first_point_list_ttl .-large {
            font-size: 130%;
            margin-bottom: 5px; }
        .p-index_first_point_list_main {
          font-size: 32px;
          font-size: 3.2rem;
          position: relative;
          line-height: 1;
          z-index: 2;
          margin-bottom: 20px;
          display: inline-block;
          font-weight: 900;
          -webkit-text-stroke: 0.5px #000; }
          @media screen and (max-width: 767px) {
            .p-index_first_point_list_main {
              font-size: 24px;
              font-size: 2.4rem;
              margin-bottom: 14px; } }
          .p-index_first_point_list_main::before {
            content: "";
            display: block;
            width: 100%;
            height: 5px;
            background-color: #fcffc4;
            position: absolute;
            bottom: -4px;
            z-index: -1; }
        .p-index_first_point_list_sub {
          font-size: 22px;
          font-size: 2.2rem; }
          @media screen and (max-width: 767px) {
            .p-index_first_point_list_sub {
              font-size: 18px;
              font-size: 1.8rem; } }
        .p-index_first_point_list .c-txt_note {
          margin-top: 14px;
          text-align: center; }
        .p-index_first_point_list .-under {
          text-decoration: underline; }
      .p-index_first_point_more {
        text-align: center;
        color: #fff;
        font-size: 48px;
        font-size: 4.8rem;
        margin: 20px 0 30px; }
        @media screen and (max-width: 767px) {
          .p-index_first_point_more {
            font-size: 32px;
            font-size: 3.2rem;
            margin-bottom: 20px; } }
        .p-index_first_point_more span {
          position: relative; }
          .p-index_first_point_more span::before {
            content: "";
            display: block;
            position: absolute;
            left: 0;
            right: 0;
            top: 0;
            margin: auto;
            width: 7px;
            height: 7px;
            border-radius: 4px;
            background-color: #fff; }
            @media screen and (max-width: 767px) {
              .p-index_first_point_more span::before {
                width: 5px;
                height: 5px; } }
      .p-index_first_point_bnr > li:not(:last-child) {
        margin-bottom: 40px;
        background-color: rgba(255, 255, 255, 0.88); }
        @media screen and (max-width: 767px) {
          .p-index_first_point_bnr > li:not(:last-child) {
            margin-bottom: 16px; } }
  .p-index_case {
    padding: 100px 0; }
    @media screen and (max-width: 767px) {
      .p-index_case {
        padding: 50px 0; } }
  .p-index_quality {
    background-image: url(../img/quality_bg.webp);
    background-size: cover;
    background-position: center;
    padding-top: 44px; }
    @media screen and (max-width: 767px) {
      .p-index_quality .l-cont_ll {
        width: 99vw; } }
    .p-index_quality_ttl {
      font-size: 80px;
      font-size: 8rem;
      text-align: center;
      letter-spacing: -.05em;
      color: #fff;
      line-height: 1.4;
      position: relative;
      padding-left: 280px; }
      .p-index_quality_ttl::before {
        content: "";
        display: block;
        aspect-ratio: 1 / 1;
        width: 260px;
        height: auto;
        background-image: url(../img/quality_badge.webp);
        background-size: cover;
        position: absolute;
        top: -34px;
        left: 0; }
        @media screen and (max-width: 1390px) {
          .p-index_quality_ttl::before {
            width: 220px; } }
        @media screen and (max-width: 1200px) {
          .p-index_quality_ttl::before {
            width: 200px; } }
        @media screen and (max-width: 767px) {
          .p-index_quality_ttl::before {
            width: 140px;
            top: -20px; } }
      @media screen and (max-width: 1390px) {
        .p-index_quality_ttl {
          font-size: 6.8rem;
          padding-left: 240px; } }
      @media screen and (max-width: 1200px) {
        .p-index_quality_ttl {
          padding-left: 220px; } }
      @media screen and (max-width: 1200px) {
        .p-index_quality_ttl {
          font-size: 60px;
          font-size: 6.0rem; } }
  @media screen and (max-width: 1200px) and (max-width: 767px) {
    .p-index_quality_ttl {
      font-size: 30px;
      font-size: 3.0rem;
      padding-left: 140px;
      margin: 0 10px; } }

    .p-index_quality_staff {
      display: flex;
      justify-content: space-between;
      max-width: 100vw; }
      @media screen and (max-width: 767px) {
        .p-index_quality_staff {
          flex-wrap: wrap; } }
      .p-index_quality_staff > li {
        position: relative; }
        .p-index_quality_staff > li img {
          height: 18vw;
          max-height: 370px;
          width: auto;
          min-width: 100%; }
          @media screen and (max-width: 1100px) {
            .p-index_quality_staff > li img {
              height: 208px; } }
          @media screen and (max-width: 767px) {
            .p-index_quality_staff > li img {
              max-width: 50vw;
              width: auto;
              height: 48vw; } }
        @media screen and (max-width: 767px) {
          .p-index_quality_staff > li:nth-child(-n+2) {
            width: 48%; }
          .p-index_quality_staff > li:nth-child(n+3) {
            width: 32%; }
            .p-index_quality_staff > li:nth-child(n+3) img {
              height: 40vw;
              width: auto; } }
      .p-index_quality_staff_job {
        position: absolute;
        bottom: 0vw;
        left: 0vw;
        font-weight: 500;
        letter-spacing: -.04em;
        writing-mode: vertical-rl; }
        @media screen and (max-width: 767px) {
          .p-index_quality_staff_job {
            left: 4px; } }
        .p-index_quality_staff_job p {
          min-height: 4em;
          display: flex;
          align-items: center;
          justify-content: center; }
          .p-index_quality_staff_job p:nth-child(1) {
            color: #333;
            font-size: 26px;
            font-size: 2.6rem;
            letter-spacing: .06em;
            line-height: 1.6;
            font-weight: 600; }
            @media screen and (max-width: 1890px) {
              .p-index_quality_staff_job p:nth-child(1) {
                font-size: 22px;
                font-size: 2.2rem; } }
            @media screen and (max-width: 1375px) {
              .p-index_quality_staff_job p:nth-child(1) {
                font-size: 18px;
                font-size: 1.8rem; } }
            @media screen and (max-width: 1100px) {
              .p-index_quality_staff_job p:nth-child(1) {
                font-size: 15px;
                font-size: 1.5rem; } }
            @media screen and (max-width: 767px) {
              .p-index_quality_staff_job p:nth-child(1) {
                font-size: 14px;
                font-size: 1.4rem; } }
          @media screen and (max-width: 1100px) {
            .p-index_quality_staff_job p:nth-child(2) {
              font-size: 14px;
              font-size: 1.4rem; } }
          .p-index_quality_staff_job p span {
            padding: 10px 5px;
            background-image: linear-gradient(90deg, #3c3c3c, #9b9b9b 30%, #dddddd 48%, #d9d9d9 60%, #e6e6e6);
            display: flex;
            align-items: center;
            justify-content: center;
            height: 100%; }
            @media screen and (max-width: 767px) {
              .p-index_quality_staff_job p span {
                padding: 4px 2px; } }
  .p-index_flow {
    padding: 120px 0;
    background-color: #ebf6fb; }
    @media screen and (max-width: 767px) {
      .p-index_flow {
        padding: 60px 0; } }
    .p-index_flow_lead {
      background-image: linear-gradient(90deg, transparent 0%, transparent 50%, #ebf6fb 50%, #ebf6fb 100%), linear-gradient(180deg, #b2b2b2 1px, transparent 1px);
      /* 点線2の色と太さ */
      background-size: 3px 100%, 100% 3em;
      /* 点線2のサイズ */
      line-height: 3em;
      padding: -0px 20px 1px;
      max-width: 910px;
      margin: auto;
      font-size: 22px;
      font-size: 2.2rem;
      font-family: "Shippori Mincho", serif;
      font-weight: 400;
      margin-bottom: 100px; }
      @media screen and (max-width: 767px) {
        .p-index_flow_lead {
          font-size: 16px;
          font-size: 1.6rem;
          margin-bottom: 40px;
          padding: 0 16px 1px; } }
  @media screen and (max-width: 767px) and (max-width: 750px) {
    .p-index_flow_lead {
      font-size: 15px;
      font-size: 1.5rem; } }

      .p-index_flow_lead .-strong {
        font-weight: 500;
        font-size: 114%;
        z-index: 2;
        text-decoration: underline;
        text-decoration-color: #faffa4;
        text-underline-offset: 2px;
        text-decoration-thickness: 5px; }
    .p-index_flow_list {
      margin-left: 220px; }
      @media screen and (max-width: 767px) {
        .p-index_flow_list {
          margin-left: 90px; } }
      .p-index_flow_list > li {
        display: flex;
        justify-content: space-between;
        width: 100%;
        position: relative; }
        @media screen and (max-width: 767px) {
          .p-index_flow_list > li {
            flex-direction: column-reverse; } }
        .p-index_flow_list > li:not(:last-child) {
          margin-bottom: 50px; }
          @media screen and (max-width: 767px) {
            .p-index_flow_list > li:not(:last-child) {
              margin-bottom: 30px; } }
          .p-index_flow_list > li:not(:last-child)::before {
            content: "";
            display: block;
            width: 1px;
            height: 100%;
            background-color: #2981c7;
            position: absolute;
            left: -138px;
            top: 82px; }
            @media screen and (max-width: 767px) {
              .p-index_flow_list > li:not(:last-child)::before {
                left: -62px;
                top: 31px; } }
      .p-index_flow_list_txt {
        width: 52%;
        padding-top: 30px; }
        @media screen and (max-width: 767px) {
          .p-index_flow_list_txt {
            width: 100%;
            padding-top: 14px; } }
        .p-index_flow_list_txt_num {
          font-size: 44px;
          font-size: 4.4rem;
          color: #c4c17c;
          font-family: "Shippori Mincho", serif;
          font-weight: 400;
          position: relative;
          text-align: center;
          width: 164.0472px;
          height: 164.0472px;
          display: flex;
          justify-content: center;
          align-items: center;
          z-index: 1;
          padding-top: 20px;
          position: absolute;
          left: -220px;
          top: 0; }
          @media screen and (max-width: 767px) {
            .p-index_flow_list_txt_num {
              width: 56px;
              height: 56px;
              left: -90px;
              font-size: 26px;
              font-size: 2.6rem;
              margin-top: 10px; } }
          .p-index_flow_list_txt_num::before {
            content: "STEP";
            font-size: 15px;
            font-size: 1.5rem;
            z-index: 1;
            position: absolute;
            left: 0;
            right: 0;
            top: 30%;
            margin: auto;
            letter-spacing: .025em; }
            @media screen and (max-width: 767px) {
              .p-index_flow_list_txt_num::before {
                font-size: 12px;
                font-size: 1.2rem;
                top: 12%; } }
          .p-index_flow_list_txt_num::after {
            content: "";
            display: block;
            width: 116px;
            height: 116px;
            background-color: #19476a;
            position: absolute;
            top: 0;
            bottom: 0;
            left: 0;
            right: 0;
            margin: auto;
            transform: rotate(45deg);
            z-index: -1; }
            @media screen and (max-width: 767px) {
              .p-index_flow_list_txt_num::after {
                width: 56px;
                height: 56px; } }
        .p-index_flow_list_txt_ttl {
          font-size: 30px;
          font-size: 3rem;
          margin-bottom: 10px; }
          @media screen and (max-width: 767px) {
            .p-index_flow_list_txt_ttl {
              font-size: 22px;
              font-size: 2.2rem;
              margin-bottom: 7px; } }
        .p-index_flow_list_txt_dl {
          background-color: #fff;
          border-radius: 8px;
          padding: 24px 20px;
          margin-top: 20px;
          font-size: 16px;
          font-size: 1.6rem;
          border: solid 1px #c44242; }
          .p-index_flow_list_txt_dl dt {
            font-size: 1.1em;
            font-weight: 600;
            color: #c44242;
            margin-bottom: 10px;
            line-height: 1.4;
            border-bottom: solid 1px;
            padding-bottom: 10px; }
          .p-index_flow_list_txt_dl dd {
            line-height: 1.6; }
            .p-index_flow_list_txt_dl dd b {
              font-weight: 500; }
      .p-index_flow_list_img {
        width: 41.4893617%;
        height: auto;
        aspect-ratio: 39 / 28; }
        @media screen and (max-width: 767px) {
          .p-index_flow_list_img {
            width: 100%; } }
        .p-index_flow_list_img iframe {
          width: 100%;
          height: 100%; }
  .p-index_line {
    position: relative;
    background-color: #decfc2;
    z-index: 1; }
    .p-index_line::after {
      content: "";
      display: block;
      background-color: #f4f1f1;
      position: absolute;
      inset: 0;
      mix-blend-mode: multiply;
      clip-path: polygon(100% 0, 100% 100%, 0 100%);
      z-index: 0; }
    .p-index_line .l-cont_l::before {
      content: "";
      display: block;
      background-image: url(../img/line_bg.webp);
      width: 51%;
      height: 100%;
      position: absolute;
      left: 0;
      background-position: center;
      z-index: -1; }
      @media screen and (max-width: 767px) {
        .p-index_line .l-cont_l::before {
          width: 100vw;
          margin-left: -5vw;
          height: 200px;
          position: static;
          background-size: 160%; } }
    .p-index_line .l-cont_l::after {
      content: "";
      display: block;
      background-image: linear-gradient(-90deg, #decfc2, rgba(222, 207, 194, 0));
      height: 100%;
      width: 300px;
      position: absolute;
      right: 49%;
      top: 0; }
      @media screen and (max-width: 767px) {
        .p-index_line .l-cont_l::after {
          width: 100vw;
          height: 100px;
          right: 0;
          top: 100px;
          background-image: linear-gradient(0deg, #decfc2, rgba(222, 207, 194, 0)); } }
    .p-index_line_txt {
      padding: 90px 0;
      width: 47%;
      margin-left: auto;
      z-index: 1;
      position: relative;
      height: 100%;
      z-index: 2; }
      @media screen and (max-width: 767px) {
        .p-index_line_txt {
          width: 100%;
          padding: 20px 0; } }
      .p-index_line_txt_ttl {
        font-size: 34px;
        font-size: 3.4rem;
        letter-spacing: -.04em;
        margin-bottom: 1em; }
        @media screen and (max-width: 1440px) {
          .p-index_line_txt_ttl {
            font-size: 28px;
            font-size: 2.8rem; } }
        @media screen and (max-width: 1140px) {
          .p-index_line_txt_ttl {
            font-size: 22px;
            font-size: 2.2rem; } }
        @media screen and (max-width: 767px) {
          .p-index_line_txt_ttl {
            font-size: 20px;
            font-size: 2.0rem; } }
      .p-index_line_txt_list {
        background-color: rgba(255, 255, 255, 0.11);
        border: dotted 2px #a49191;
        padding: 34px; }
        @media screen and (max-width: 767px) {
          .p-index_line_txt_list {
            padding: 20px; } }
        .p-index_line_txt_list > li {
          position: relative;
          display: flex;
          align-items: center;
          font-size: 20px;
          font-size: 2rem;
          font-family: "Shippori Mincho", serif;
          font-weight: 400;
          line-height: 1; }
          @media screen and (max-width: 767px) {
            .p-index_line_txt_list > li {
              font-size: 16px;
              font-size: 1.6rem; } }
          .p-index_line_txt_list > li::before {
            content: "";
            display: block;
            width: 20px;
            height: 20px;
            background-image: url(../img/ico_check.webp);
            background-size: cover;
            margin-right: 10px; }
          .p-index_line_txt_list > li:not(:last-child) {
            margin-bottom: 1.4em; }
      .p-index_line_txt_line {
        margin-top: 34px;
        display: flex;
        align-items: center;
        justify-content: space-between; }
        @media screen and (max-width: 1420px) {
          .p-index_line_txt_line {
            flex-direction: column;
            align-items: flex-start; } }
        .p-index_line_txt_line_btn {
          background-color: #fff;
          width: 290px;
          min-height: 98px;
          display: flex;
          align-items: center;
          justify-content: center;
          border-radius: 8px; }
          @media screen and (max-width: 1420px) {
            .p-index_line_txt_line_btn {
              margin-bottom: 20px; } }
          @media screen and (max-width: 767px) {
            .p-index_line_txt_line_btn {
              width: 100%;
              min-height: 70px; } }
          .p-index_line_txt_line_btn p {
            font-size: 30px;
            font-size: 3.0rem;
            color: #06c755;
            font-family: "Shippori Mincho", serif;
            font-weight: 400;
            display: flex;
            align-items: center;
            margin-right: 24px; }
            @media screen and (max-width: 767px) {
              .p-index_line_txt_line_btn p {
                font-size: 24px;
                font-size: 2.4rem; } }
            .p-index_line_txt_line_btn p::before {
              content: "";
              display: block;
              width: 48px;
              height: 48px;
              background-image: url(../img/ico_line.webp);
              background-size: cover;
              margin: 24px; }
              @media screen and (max-width: 767px) {
                .p-index_line_txt_line_btn p::before {
                  height: 34px;
                  width: 34px;
                  margin-right: 17px; } }
        .p-index_line_txt_line_txt {
          font-size: 18px;
          font-size: 1.8rem; }
          @media screen and (max-width: 767px) {
            .p-index_line_txt_line_txt {
              font-size: 16px;
              font-size: 1.6rem;
              text-align: center;
              margin: auto; } }
  .p-index_trust {
    background-color: #f4fbfe;
    padding: 130px 0; }
    @media screen and (max-width: 767px) {
      .p-index_trust {
        padding: 60px 0; } }
    .p-index_trust_ttl {
      text-align: center;
      position: relative;
      z-index: 1;
      line-height: 1.4;
      margin-bottom: 100px; }
      @media screen and (max-width: 767px) {
        .p-index_trust_ttl {
          margin-bottom: 40px; } }
      .p-index_trust_ttl_sub {
        font-family: "Shippori Mincho", serif;
        font-weight: 400;
        font-size: 24px;
        font-size: 2.4rem;
        margin-bottom: -10px; }
        @media screen and (max-width: 767px) {
          .p-index_trust_ttl_sub {
            font-size: 18px;
            font-size: 1.8rem; } }
      .p-index_trust_ttl_main {
        font-size: 60px;
        font-size: 6rem;
        display: inline-block;
        position: relative; }
        @media screen and (max-width: 767px) {
          .p-index_trust_ttl_main {
            font-size: 36px;
            font-size: 3.6rem; } }
        .p-index_trust_ttl_main::first-letter {
          font-size: 130%; }
        .p-index_trust_ttl_main::before {
          content: "";
          display: block;
          width: 155px;
          aspect-ratio: 155 / 123;
          background-image: url(../img/trust_badge.webp);
          background-size: cover;
          position: absolute;
          left: -120px;
          top: -100px;
          margin-right: 50px; }
          @media screen and (max-width: 767px) {
            .p-index_trust_ttl_main::before {
              width: 90px;
              left: -40px;
              top: -70px; } }
      .p-index_trust_ttl_eng {
        font-family: "Fjalla One", sans-serif;
        font-weight: 400;
        list-style: 1em;
        color: #daf0fa;
        font-size: 236px;
        font-size: 23.6rem;
        position: absolute;
        top: -40px;
        left: 0;
        right: 0;
        margin: auto;
        line-height: 1;
        z-index: -1;
        letter-spacing: .1em; }
        @media screen and (max-width: 1230px) {
          .p-index_trust_ttl_eng {
            font-size: 210px;
            font-size: 21.0rem; } }
        @media screen and (max-width: 767px) {
          .p-index_trust_ttl_eng {
            font-size: 19vw;
            top: 0; } }
    .p-index_trust_list {
      /*共通*/ }
      .p-index_trust_list_main {
        position: relative;
        background-color: #ebf6fb;
        padding: 40px 0;
        /*pic左*/
        /*pic右*/
        /*個別*/ }
        @media screen and (max-width: 767px) {
          .p-index_trust_list_main {
            padding: 0 0; } }
        .p-index_trust_list_main::before {
          content: "";
          display: block;
          position: absolute;
          top: 0;
          width: calc(50% + 160px);
          height: 100%;
          background-size: cover;
          position: absolute;
          opacity: .9; }
          @media screen and (max-width: 767px) {
            .p-index_trust_list_main::before {
              position: relative;
              width: 100%;
              height: 50vw; } }
        .p-index_trust_list_main::after {
          content: "";
          display: block;
          width: 160px;
          height: 100%;
          position: absolute;
          top: 0;
          left: auto;
          z-index: 1; }
          @media screen and (max-width: 767px) {
            .p-index_trust_list_main::after {
              width: 100% !important;
              left: 0 !important;
              background-image: linear-gradient(0deg, #ebf6fb, rgba(235, 246, 251, 0)) !important;
              top: 25vw !important;
              height: 25vw; } }
        .p-index_trust_list_main_txt {
          width: 50%;
          min-height: 480px;
          background-color: rgba(255, 255, 255, 0.85);
          position: relative;
          z-index: 2;
          overflow: hidden;
          padding: 40px 50px; }
          @media screen and (max-width: 767px) {
            .p-index_trust_list_main_txt {
              width: 100%;
              position: relative;
              transform: translateY(-30px);
              z-index: 2;
              padding: 30px;
              min-height: unset; } }
          .p-index_trust_list_main_txt_num {
            font-size: 14px;
            font-size: 1.4rem;
            font-family: "Fjalla One", sans-serif;
            font-weight: 400;
            color: #fff;
            letter-spacing: .1em;
            display: block;
            position: relative;
            margin-bottom: 20px; }
            .p-index_trust_list_main_txt_num::before {
              content: "";
              display: block;
              height: 100%;
              position: absolute;
              background-color: red;
              width: calc(95% + 100px);
              transform: skewX(-15deg);
              z-index: -1;
              left: -70px; }
            .p-index_trust_list_main_txt_num .-large {
              font-size: 128%;
              margin: 0 5px;
              transform: translateY(1px);
              display: inline-block; }
          .p-index_trust_list_main_txt_ttl {
            font-family: "Shippori Mincho", serif;
            font-weight: 500; }
            .p-index_trust_list_main_txt_ttl_sub {
              font-size: 24px;
              font-size: 2.4rem;
              line-height: 1.4; }
              @media screen and (max-width: 767px) {
                .p-index_trust_list_main_txt_ttl_sub {
                  font-size: 18px;
                  font-size: 1.8rem; } }
            .p-index_trust_list_main_txt_ttl_main {
              font-size: 34px;
              font-size: 3.4rem;
              line-height: 1.4;
              margin: 5px 0 10px; }
              @media screen and (max-width: 767px) {
                .p-index_trust_list_main_txt_ttl_main {
                  font-size: 22px;
                  font-size: 2.2rem; } }
          .p-index_trust_list_main_txt P + p {
            margin-top: 30px; }
            @media screen and (max-width: 767px) {
              .p-index_trust_list_main_txt P + p {
                margin-top: 15px; } }
        .p-index_trust_list_main.-picleft::after {
          background-image: linear-gradient(-90deg, #ebf6fb, rgba(235, 246, 251, 0));
          left: 50%; }
        .p-index_trust_list_main.-picleft .p-index_trust_list_main_txt {
          margin-left: auto; }
          .p-index_trust_list_main.-picleft .p-index_trust_list_main_txt_num::before {
            background-color: #2981c7; }
        .p-index_trust_list_main.-picright::after {
          background-image: linear-gradient(90deg, #ebf6fb, rgba(235, 246, 251, 0));
          right: 50%; }
        .p-index_trust_list_main.-picright::before {
          right: 0; }
        .p-index_trust_list_main.-picright .p-index_trust_list_main_txt_num::before {
          background-color: #639cc9; }
        .p-index_trust_list_main.-list01::before {
          background-image: url(../img/trust_img01.webp); }
        .p-index_trust_list_main.-list01 .p-index_trust_list_main_txt .u-col_ble {
          display: inline-block; }
          .p-index_trust_list_main.-list01 .p-index_trust_list_main_txt .u-col_ble::first-letter {
            font-size: 135%;
            line-height: 1;
            margin: 0 4px; }
        .p-index_trust_list_main.-list02 {
          margin-top: 40px; }
          .p-index_trust_list_main.-list02::before {
            background-image: url(../img/trust_img02.webp); }
        .p-index_trust_list_main.-list03::before {
          background-image: url(../img/trust_img03.webp); }
        .p-index_trust_list_main.-list04::before {
          background-image: url(../img/trust_img04.webp); }
        .p-index_trust_list_main.-list05::before {
          background-image: url(../img/trust_img05.webp); }
      .p-index_trust_list_sub {
        background-color: #6398c2;
        margin-top: -20px;
        position: relative;
        z-index: 2;
        padding: 40px;
        display: flex;
        justify-content: space-between;
        color: #fff; }
        @media screen and (max-width: 767px) {
          .p-index_trust_list_sub {
            flex-direction: column;
            padding: 30px; } }
        .p-index_trust_list_sub_img {
          width: 40.7407407%; }
          @media screen and (max-width: 767px) {
            .p-index_trust_list_sub_img {
              width: 100%;
              margin-bottom: 20px; } }
        .p-index_trust_list_sub_txt {
          width: 54.8148148%; }
          @media screen and (max-width: 767px) {
            .p-index_trust_list_sub_txt {
              width: 100%; } }
          .p-index_trust_list_sub_txt_ttl {
            font-family: "Shippori Mincho", serif;
            font-weight: 400;
            position: relative;
            margin: -10px 0 25px;
            padding-bottom: 25px; }
            @media screen and (max-width: 767px) {
              .p-index_trust_list_sub_txt_ttl {
                padding-bottom: 16px;
                margin-bottom: 16px; } }
            .p-index_trust_list_sub_txt_ttl::after {
              content: "";
              display: block;
              width: 100%;
              height: 1px;
              background-color: #fff;
              position: absolute;
              bottom: 0; }
            .p-index_trust_list_sub_txt_ttl_main {
              font-size: 30px;
              font-size: 3rem;
              letter-spacing: -.03em;
              line-height: 1.6; }
              @media screen and (max-width: 767px) {
                .p-index_trust_list_sub_txt_ttl_main {
                  font-size: 20px;
                  font-size: 2.0rem; } }
            .p-index_trust_list_sub_txt_ttl_sub {
              font-size: 22px;
              font-size: 2.2rem; }
  .p-index_scared {
    padding: 100px 0 120px;
    background-image: linear-gradient(0deg, transparent calc(100% - 1px), #ececec calc(100% - 1px)), linear-gradient(90deg, transparent calc(100% - 1px), #ececec calc(100% - 1px));
    background-size: 16px 16px;
    background-repeat: repeat;
    background-position: center center;
    background-color: #f6f6f6; }
    @media screen and (max-width: 767px) {
      .p-index_scared {
        padding: 50px 0 60px; } }
    .p-index_scared_ttl {
      font-size: 38px;
      font-size: 3.8rem;
      text-align: center;
      text-shadow: 3px 3px 14px #fff,-3px -3px 14px #fff,0px 0px 14px #fff;
      line-height: 1.5;
      margin-bottom: 40px; }
      @media screen and (max-width: 767px) {
        .p-index_scared_ttl {
          font-size: 28px;
          font-size: 2.8rem;
          margin-bottom: 20px; } }
    .p-index_scared .c-accordion + .c-accordion {
      margin: 50px 0 30px; }
      @media screen and (max-width: 767px) {
        .p-index_scared .c-accordion + .c-accordion {
          margin: 20px 0 16px; } }
    .p-index_scared .c-accordion_content_flex {
      display: flex;
      justify-content: space-between; }
      @media screen and (max-width: 767px) {
        .p-index_scared .c-accordion_content_flex {
          flex-direction: column-reverse; } }
      .p-index_scared .c-accordion_content_flex_img {
        width: 30.9278351%; }
        @media screen and (max-width: 767px) {
          .p-index_scared .c-accordion_content_flex_img {
            width: 100%;
            margin-top: 16px; } }
      .p-index_scared .c-accordion_content_flex_txt {
        width: 64.1237113%; }
        @media screen and (max-width: 767px) {
          .p-index_scared .c-accordion_content_flex_txt {
            width: 100%; } }
    .p-index_scared .c-accordion_content .c-txt_list {
      margin: 26px 0; }
      @media screen and (min-width: 768px) {
        .p-index_scared .c-accordion_content .c-txt_list {
          max-width: 480px; } }
    @media screen and (max-width: 767px) {
      .p-index_scared .c-txt_mid {
        text-align: left; } }
    .p-index_scared_copy {
      font-family: "Shippori Mincho", serif;
      font-weight: 500;
      text-align: center;
      font-size: 38px;
      font-size: 3.8rem;
      line-height: 1.5;
      text-shadow: 0px 0px 15px #fff,0px 0px 15px #fff,0px 0px 15px #fff,0px 0px 15px #fff,0px 0px 15px #fff;
      margin-top: 44px; }
      @media screen and (max-width: 767px) {
        .p-index_scared_copy {
          font-size: 24px;
          font-size: 2.4rem; } }
      .p-index_scared_copy:not(:last-child) {
        margin-bottom: 25px; }
      .p-index_scared_copy .-small {
        font-size: 32px;
        font-size: 3.2rem; }
        @media screen and (max-width: 767px) {
          .p-index_scared_copy .-small {
            font-size: 20px;
            font-size: 2.0rem; } }
      .p-index_scared_copy .u-col_red {
        font-size: 52px;
        font-size: 5.2rem; }
        @media screen and (max-width: 767px) {
          .p-index_scared_copy .u-col_red {
            font-size: 34px;
            font-size: 3.4rem; } }
      .p-index_scared_copy.-last {
        font-size: 34px;
        font-size: 3.4rem;
        text-shadow: none; }
        @media screen and (max-width: 767px) {
          .p-index_scared_copy.-last {
            font-size: 26px;
            font-size: 2.6rem; } }
        .p-index_scared_copy.-last .u-col_red {
          font-size: 40px;
          font-size: 4rem;
          position: relative;
          display: inline-block; }
          @media screen and (max-width: 767px) {
            .p-index_scared_copy.-last .u-col_red {
              font-size: 28px;
              font-size: 2.8rem; } }
          .p-index_scared_copy.-last .u-col_red::after {
            content: "";
            display: block;
            width: 100%;
            height: 10px;
            background-image: url(../img/deco_line.webp);
            background-size: 100% 100%;
            position: absolute;
            left: 0;
            bottom: -8px; }
  .p-index_area {
    position: relative;
    padding-bottom: 120px; }
    @media screen and (max-width: 767px) {
      .p-index_area {
        padding-bottom: 60px; } }
    .p-index_area::before {
      content: "";
      display: block;
      width: 100%;
      min-height: 500px;
      background-image: url(../img/area_bg.webp);
      background-size: cover;
      background-position: center; }
      @media screen and (max-width: 767px) {
        .p-index_area::before {
          height: 250px;
          min-height: unset; } }
    .p-index_area::after {
      content: "";
      display: block;
      background-image: linear-gradient(0deg, #fff, rgba(255, 255, 255, 0));
      height: 290px;
      width: 100%;
      position: absolute;
      top: 210px; }
      @media screen and (max-width: 767px) {
        .p-index_area::after {
          height: 120px;
          top: 130px; } }
    .p-index_area_flex {
      display: flex;
      justify-content: space-between; }
      @media screen and (max-width: 767px) {
        .p-index_area_flex {
          flex-direction: column-reverse; } }
      .p-index_area_flex_txt {
        width: 52.3148148%; }
        @media screen and (max-width: 767px) {
          .p-index_area_flex_txt {
            width: 100%; } }
        .p-index_area_flex_txt_ttl {
          font-size: 34px;
          font-size: 3.4rem;
          line-height: 1.6;
          position: relative;
          padding-bottom: 26px;
          margin-bottom: 26px; }
          @media screen and (max-width: 767px) {
            .p-index_area_flex_txt_ttl {
              font-size: 24px;
              font-size: 2.4rem;
              margin-bottom: 18px;
              padding-bottom: 18px; } }
          .p-index_area_flex_txt_ttl::after {
            content: "";
            display: block;
            width: 100%;
            height: 1px;
            background-color: #2981c7;
            position: absolute;
            bottom: 0; }
        .p-index_area_flex_txt_clinic {
          font-size: 22px;
          font-size: 2.2rem;
          font-family: "Shippori Mincho", serif;
          font-weight: 500;
          margin: 26px 0 16px; }
          @media screen and (max-width: 767px) {
            .p-index_area_flex_txt_clinic {
              font-size: 18px;
              font-size: 1.8rem; } }
        .p-index_area_flex_txt_detail .-tel {
          font-family: "Shippori Mincho", serif;
          font-weight: 500;
          font-size: 24px;
          font-size: 2.4rem;
          position: relative;
          line-height: 1;
          display: flex;
          align-items: center;
          justify-content: center;
          background-color: #174e90;
          color: #fff;
          height: 60px;
          padding: 0 25px;
          border-radius: 50px;
          margin-top: 15px;
          width: fit-content; }
          @media screen and (max-width: 767px) {
            .p-index_area_flex_txt_detail .-tel {
              margin: 20px auto 30px;
              width: 80%;
              height: 55px; } }
          .p-index_area_flex_txt_detail .-tel::before {
            content: "";
            display: block;
            width: 30px;
            height: 30px;
            background-image: url(../img/ico_tel.webp);
            background-size: cover;
            margin-right: 4px; }
      .p-index_area_flex_img {
        width: 43.5185185%;
        border: solid 1px #ddd; }
        @media screen and (max-width: 767px) {
          .p-index_area_flex_img {
            width: 55%;
            margin: 10px 0 20px auto; } }
    .p-index_area .l-cont_s {
      margin-top: -100px;
      z-index: 1;
      position: relative; }
    .p-index_area_access {
      display: flex;
      background-color: #eaf5fa;
      padding: 50px 44px;
      margin-top: 60px; }
      @media screen and (max-width: 767px) {
        .p-index_area_access {
          flex-direction: column;
          padding: 24px;
          margin-top: 10px; } }
      .p-index_area_access_ttl {
        width: 22%;
        position: relative; }
        @media screen and (max-width: 767px) {
          .p-index_area_access_ttl {
            width: 100%;
            text-align: center;
            margin-bottom: 20px; } }
        .p-index_area_access_ttl::after {
          content: "";
          display: block;
          width: 1px;
          height: 100%;
          background-color: #ced9dd;
          position: absolute;
          right: 0;
          top: 0; }
          @media screen and (max-width: 767px) {
            .p-index_area_access_ttl::after {
              display: none; } }
        .p-index_area_access_ttl_jp {
          font-size: 32px;
          font-size: 3.2rem;
          font-weight: 500;
          line-height: 1.6; }
          @media screen and (max-width: 767px) {
            .p-index_area_access_ttl_jp {
              font-size: 24px;
              font-size: 2.4rem; } }
        .p-index_area_access_ttl_eng {
          font-family: "Fjalla One", sans-serif;
          color: #2981c7;
          font-size: 18px;
          font-size: 1.8rem;
          letter-spacing: .1em; }
          @media screen and (max-width: 767px) {
            .p-index_area_access_ttl_eng {
              font-size: 15px;
              font-size: 1.5rem; } }
      .p-index_area_access p:not(hgroup p) {
        width: 78%;
        display: flex;
        align-items: center;
        justify-content: center; }
        @media screen and (max-width: 767px) {
          .p-index_area_access p:not(hgroup p) {
            flex-direction: column;
            width: 100%; } }
        .p-index_area_access p:not(hgroup p)::before {
          content: "";
          display: block;
          width: 70px;
          aspect-ratio: 1 / 1;
          background-image: url(../img/ico_access.webp);
          background-size: cover;
          margin-right: 20px; }
          @media screen and (max-width: 767px) {
            .p-index_area_access p:not(hgroup p)::before {
              width: 50px;
              margin: 0 0 10px; } }
  .p-index_greeting {
    background-image: url(../img/greeting_bg.webp);
    background-size: cover;
    background-position: center;
    padding: 50px 0 120px; }
    @media screen and (max-width: 767px) {
      .p-index_greeting {
        padding: 30px 0 60px; } }
    .p-index_greeting_ttl_eng {
      font-size: 230px;
      font-size: 23rem;
      letter-spacing: .05em;
      font-family: "Shippori Mincho", serif;
      font-weight: 400;
      color: #e1e0d5;
      line-height: 1; }
      @media screen and (max-width: 1236px) {
        .p-index_greeting_ttl_eng {
          font-size: 200px;
          font-size: 20rem; } }
      @media screen and (max-width: 767px) {
        .p-index_greeting_ttl_eng {
          font-size: 18vw; } }
    .p-index_greeting_ttl_jp {
      font-size: 30px;
      font-size: 3rem;
      color: #9c995b; }
      @media screen and (max-width: 767px) {
        .p-index_greeting_ttl_jp {
          font-size: 24px;
          font-size: 2.4rem; } }
    .p-index_greeting_main {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-top: -80px; }
      @media screen and (max-width: 767px) {
        .p-index_greeting_main {
          margin-top: 20px;
          flex-direction: column-reverse; } }
      .p-index_greeting_main_txt {
        width: 59%; }
        @media screen and (max-width: 767px) {
          .p-index_greeting_main_txt {
            width: 90%;
            margin: 0 auto; } }
        .p-index_greeting_main_txt_name {
          text-align: right;
          font-family: "Shippori Mincho", serif;
          font-weight: 500;
          line-height: 1.6;
          margin-top: 30px; }
          .p-index_greeting_main_txt_name .-main {
            font-size: 32px;
            font-size: 3.2rem; }
            @media screen and (max-width: 767px) {
              .p-index_greeting_main_txt_name .-main {
                font-size: 24px;
                font-size: 2.4rem; } }
      .p-index_greeting_main_img {
        width: 37.037037%; }
        @media screen and (max-width: 767px) {
          .p-index_greeting_main_img {
            width: 80%;
            margin: 0 auto 20px; } }
    .p-index_greeting_detail {
      background-color: #fff;
      padding: 60px 80px;
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap; }
      @media screen and (max-width: 767px) {
        .p-index_greeting_detail {
          margin-top: 20px;
          padding: 24px;
          flex-direction: column; } }
      .p-index_greeting_detail_cont {
        width: 100%; }
        .p-index_greeting_detail_cont:not(:last-child) {
          margin-bottom: 40px; }
          @media screen and (max-width: 767px) {
            .p-index_greeting_detail_cont:not(:last-child) {
              margin-bottom: 16px; } }
        .p-index_greeting_detail_cont.-half {
          width: 47%; }
          @media screen and (max-width: 767px) {
            .p-index_greeting_detail_cont.-half {
              width: 100%; } }
        .p-index_greeting_detail_cont_ttl {
          color: #9c995b;
          font-size: 24px;
          font-size: 2.4rem;
          position: relative;
          margin-bottom: 16px;
          padding-bottom: 12px; }
          @media screen and (max-width: 767px) {
            .p-index_greeting_detail_cont_ttl {
              font-size: 18px;
              font-size: 1.8rem;
              padding-bottom: 8px;
              margin-bottom: 12px; } }
          .p-index_greeting_detail_cont_ttl::after {
            content: "";
            display: block;
            width: 100%;
            height: 1px;
            background-color: #9c995b;
            position: absolute;
            bottom: 0; }
        .p-index_greeting_detail_cont_list > li {
          line-height: 1.6; }
          @media screen and (max-width: 767px) {
            .p-index_greeting_detail_cont_list > li {
              font-size: 14px;
              font-size: 1.4rem; } }
          .p-index_greeting_detail_cont_list > li:not(:last-child) {
            margin-bottom: .6em; }
            @media screen and (max-width: 767px) {
              .p-index_greeting_detail_cont_list > li:not(:last-child) {
                margin-bottom: .4em; } }
        .p-index_greeting_detail_cont_inner {
          display: flex;
          flex-wrap: wrap;
          justify-content: space-between; }
          @media screen and (max-width: 767px) {
            .p-index_greeting_detail_cont_inner {
              flex-direction: column; } }
          .p-index_greeting_detail_cont_inner .p-index_greeting_detail_cont_list {
            width: 47%; }
            @media screen and (max-width: 767px) {
              .p-index_greeting_detail_cont_inner .p-index_greeting_detail_cont_list {
                width: 100%; } }
  .p-index_price {
    padding: 120px 0; }
    @media screen and (max-width: 767px) {
      .p-index_price {
        padding: 30px 0; } }
    .p-index_price_tbl {
      width: 100%;
      border: solid 1px #dddddd; }
      .p-index_price_tbl th, .p-index_price_tbl td {
        border: solid 1px #dddddd; }
      .p-index_price_tbl.-comp {
        margin: 50px 0 100px; }
        @media screen and (max-width: 767px) {
          .p-index_price_tbl.-comp {
            min-width: 600px;
            margin: 20px 0 40px; } }
        .p-index_price_tbl.-comp tr th,
        .p-index_price_tbl.-comp tr td {
          width: calc(100% / 3);
          text-align: center;
          font-family: "Shippori Mincho", serif;
          line-height: 1.6;
          min-height: 74px; }
          @media screen and (max-width: 767px) {
            .p-index_price_tbl.-comp tr th,
            .p-index_price_tbl.-comp tr td {
              min-height: 60px; } }
          .p-index_price_tbl.-comp tr th .cell_inner,
          .p-index_price_tbl.-comp tr td .cell_inner {
            min-height: 74px;
            display: flex;
            flex-direction: column;
            justify-content: center; }
        .p-index_price_tbl.-comp tr th {
          font-size: 20px;
          font-size: 2rem; }
          @media screen and (max-width: 767px) {
            .p-index_price_tbl.-comp tr th {
              font-size: 16px;
              font-size: 1.6rem; } }
          .p-index_price_tbl.-comp tr th:nth-child(2) {
            background-color: #f1f1f1; }
          .p-index_price_tbl.-comp tr th:nth-child(3) {
            background-color: #afac6e;
            color: #fff; }
        .p-index_price_tbl.-comp tr td {
          font-style: 18px;
          font-size: 1.8rem; }
          @media screen and (max-width: 767px) {
            .p-index_price_tbl.-comp tr td {
              font-size: 15px;
              font-size: 1.5rem; } }
          .p-index_price_tbl.-comp tr td:nth-of-type(3) {
            background-color: #f0efe5; }
            @media screen and (max-width: 767px) {
              .p-index_price_tbl.-comp tr td:nth-of-type(3) {
                font-size: 15px;
                font-size: 1.5rem; } }
          .p-index_price_tbl.-comp tr td .-small {
            display: block;
            font-size: 12px;
            font-size: 1.2rem;
            color: #747474;
            font-family: "Zen Kaku Gothic New", sans-serif; }
          .p-index_price_tbl.-comp tr td .-package {
            background-color: #fff;
            padding: 20px 26px;
            margin: 20px; }
            @media screen and (max-width: 767px) {
              .p-index_price_tbl.-comp tr td .-package {
                padding: 16px; } }
            .p-index_price_tbl.-comp tr td .-package .-ttl {
              font-size: 18px;
              font-size: 1.8rem;
              font-family: "Shippori Mincho", serif;
              color: #9c995b;
              position: relative;
              margin-bottom: 10px;
              padding-bottom: 10px; }
              @media screen and (max-width: 767px) {
                .p-index_price_tbl.-comp tr td .-package .-ttl {
                  font-size: 15px;
                  font-size: 1.5rem; } }
              .p-index_price_tbl.-comp tr td .-package .-ttl::after {
                content: "";
                display: block;
                width: 16%;
                height: 1px;
                background-color: #9c995b;
                left: 0;
                right: 0;
                margin: auto;
                bottom: 0;
                position: absolute; }
            .p-index_price_tbl.-comp tr td .-package .-main {
              font-size: 18px;
              font-size: 1.8rem;
              margin-bottom: 10px; }
              @media screen and (max-width: 767px) {
                .p-index_price_tbl.-comp tr td .-package .-main {
                  font-size: 14px;
                  font-size: 1.4rem; } }
            .p-index_price_tbl.-comp tr td .-package .-sub {
              font-size: 13px;
              font-size: 1.3rem;
              font-family: "Zen Kaku Gothic New", sans-serif; }
      @media screen and (max-width: 767px) {
        .p-index_price_tbl.-case {
          border: none;
          border-bottom: solid 1px #ddd; } }
      .p-index_price_tbl.-case tr th, .p-index_price_tbl.-case tr td {
        font-family: "Shippori Mincho", serif;
        padding: 16px 40px; }
        @media screen and (max-width: 767px) {
          .p-index_price_tbl.-case tr th, .p-index_price_tbl.-case tr td {
            border-bottom: none;
            padding: 10px 20px; } }
      .p-index_price_tbl.-case tr .-gothic {
        font-family: "Zen Kaku Gothic New", sans-serif; }
      .p-index_price_tbl.-case tr th {
        width: 33%;
        background-color: #f5f4ef; }
        @media screen and (max-width: 767px) {
          .p-index_price_tbl.-case tr th {
            width: 100%;
            display: block;
            text-align: center; } }
      .p-index_price_tbl.-case tr td {
        width: 67%; }
        @media screen and (max-width: 767px) {
          .p-index_price_tbl.-case tr td {
            width: 100%;
            display: block; } }
      .p-index_price_tbl.-price {
        margin-bottom: 16px; }
        @media screen and (max-width: 767px) {
          .p-index_price_tbl.-price {
            min-width: 550px; } }
        .p-index_price_tbl.-price tr th,
        .p-index_price_tbl.-price tr td {
          letter-spacing: -.016em;
          font-family: "Shippori Mincho", serif;
          padding: 16px 26px;
          line-height: 1.7; }
          @media screen and (max-width: 767px) {
            .p-index_price_tbl.-price tr th,
            .p-index_price_tbl.-price tr td {
              padding: 10px 16px; } }
          .p-index_price_tbl.-price tr th .-inner + .-inner,
          .p-index_price_tbl.-price tr td .-inner + .-inner {
            margin-top: 16px;
            display: block; }
          .p-index_price_tbl.-price tr th .-tax,
          .p-index_price_tbl.-price tr td .-tax {
            font-size: .8em; }
          .p-index_price_tbl.-price tr th:first-child,
          .p-index_price_tbl.-price tr td:first-child {
            width: 28%; }
          .p-index_price_tbl.-price tr th:nth-child(2),
          .p-index_price_tbl.-price tr td:nth-child(2) {
            width: 43%; }
          .p-index_price_tbl.-price tr th:nth-child(3),
          .p-index_price_tbl.-price tr td:nth-child(3) {
            width: 29%; }
        .p-index_price_tbl.-price tr th {
          background-color: #edece9;
          text-align: center; }
        .p-index_price_tbl.-price tr td:first-child {
          background-color: #f6f6f6; }
        .p-index_price_tbl.-price tr td:nth-child(2) {
          font-family: "Zen Kaku Gothic New", sans-serif;
          font-size: 14px;
          font-size: 1.4rem; }
        .p-index_price_tbl.-price tr td:nth-child(3) {
          text-align: right; }
        .p-index_price_tbl.-price tr td .c-txt_note {
          display: block; }
    .p-index_price_case {
      background-color: #fbfbf8;
      padding: 70px;
      border: solid 1px #dddddd; }
      @media screen and (max-width: 767px) {
        .p-index_price_case {
          padding: 24px; } }
      .p-index_price_case_head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 34px; }
        @media screen and (max-width: 767px) {
          .p-index_price_case_head {
            flex-direction: column; } }
        .p-index_price_case_head_ttl {
          font-size: 32px;
          font-size: 3.2rem;
          position: relative;
          z-index: 1; }
          @media screen and (max-width: 767px) {
            .p-index_price_case_head_ttl {
              font-size: 26px;
              font-size: 2.6rem;
              text-align: center;
              padding-left: 0;
              display: inline-block;
              width: 100%;
              font-weight: 900; } }
          .p-index_price_case_head_ttl::before {
            content: "CASE";
            display: block;
            width: 5em;
            font-size: 106px;
            font-size: 10.6rem;
            color: #ecebe3;
            font-family: "Fjalla One", sans-serif;
            letter-spacing: .1em;
            position: absolute;
            top: -.14em;
            left: 0;
            margin: auto;
            line-height: 1;
            z-index: -1; }
            @media screen and (max-width: 767px) {
              .p-index_price_case_head_ttl::before {
                font-size: 70px;
                font-size: 7rem;
                text-align: center;
                width: 100%; } }
        .p-index_price_case_head_lead {
          font-size: 22px;
          font-size: 2.2rem;
          font-family: "Shippori Mincho", serif; }
          @media screen and (max-width: 767px) {
            .p-index_price_case_head_lead {
              font-size: 20px;
              font-size: 2.0rem;
              text-align: center;
              margin-top: 20px;
              line-height: 1.6; } }
      .p-index_price_case .slick_case {
        padding-top: 8px; }
        .p-index_price_case .slick_case .slick-slide {
          margin: 1px; }
        .p-index_price_case .slick_case_ttl {
          font-size: 24px;
          font-size: 2.4rem;
          border-bottom: solid 1px;
          padding: 10px;
          margin-bottom: 6px; }
          @media screen and (max-width: 767px) {
            .p-index_price_case .slick_case_ttl {
              font-size: 20px;
              font-size: 2rem;
              padding-bottom: 6px;
              margin-bottom: 14px;
              line-height: 1.6; } }
          .p-index_price_case .slick_case_ttl .-small {
            font-size: .9em; }
      .p-index_price_case .beer-slider {
        width: 60%;
        margin: 20px auto 40px;
        display: block;
        outline: none; }
        @media screen and (max-width: 767px) {
          .p-index_price_case .beer-slider {
            width: 100%;
            margin: 10px auto 20px; } }
      .p-index_price_case .slick-dots {
        z-index: -1; }
        @media screen and (min-width: 768px) {
          .p-index_price_case .slick-dots {
            top: 0; } }
        @media screen and (max-width: 767px) {
          .p-index_price_case .slick-dots {
            top: -8vw; } }
        .p-index_price_case .slick-dots li {
          width: 7px;
          height: 7px; }
          .p-index_price_case .slick-dots li.slick-active button::before {
            background-color: #333; }
          .p-index_price_case .slick-dots li button {
            width: 7px;
            height: 7px; }
            .p-index_price_case .slick-dots li button::before {
              content: "";
              display: block;
              border: solid 1px #333;
              border-radius: 100px;
              opacity: 1;
              width: 7px;
              height: 7px; }
      .p-index_price_case .slide-arrow {
        position: absolute;
        top: 480px;
        transform: translateY(-50%);
        z-index: 10;
        width: 50px;
        height: 50px;
        border: none;
        border-radius: 50%;
        background: #cfcec2;
        color: #fff;
        cursor: pointer; }
        @media screen and (max-width: 767px) {
          .p-index_price_case .slide-arrow {
            top: -10px; } }
        @media screen and (max-width: 767px) {
          .p-index_price_case .slide-arrow {
            width: 10vw;
            height: auto;
            aspect-ratio: 1 / 1; } }
      .p-index_price_case .prev-arrow {
        left: -60px; }
        @media screen and (max-width: 767px) {
          .p-index_price_case .prev-arrow {
            left: 0vw; } }
        .p-index_price_case .prev-arrow::before {
          content: "<";
          display: block;
          transform: scaleY(2); }
      .p-index_price_case .next-arrow {
        right: -60px; }
        @media screen and (max-width: 767px) {
          .p-index_price_case .next-arrow {
            right: 0vw; } }
        .p-index_price_case .next-arrow::before {
          content: ">";
          display: block;
          transform: scaleY(2); }
      .p-index_price_case_pic {
        display: flex;
        justify-content: space-between;
        margin-bottom: 80px; }
        @media screen and (max-width: 767px) {
          .p-index_price_case_pic {
            margin-bottom: 30px; } }
        .p-index_price_case_pic > li {
          width: 32.5531915%; }
    .p-index_price_data {
      background-color: #f9f9f9;
      padding: 50px;
      max-width: 990px;
      margin: 60px auto 30px; }
      @media screen and (max-width: 767px) {
        .p-index_price_data {
          padding: 20px;
          margin: 30px 0 16px; } }
      .p-index_price_data_ttl {
        text-align: center;
        font-size: 18px;
        font-size: 1.8rem;
        line-height: 1;
        margin-bottom: 2em; }
        @media screen and (max-width: 767px) {
          .p-index_price_data_ttl {
            margin-bottom: 1em; } }
      .p-index_price_data_inner {
        max-height: 240px;
        overflow-y: scroll;
        -ms-overflow-style: none;
        /* IE, Edge 対応 */
        scrollbar-width: none;
        /* Firefox 対応 */ }
        .p-index_price_data_inner .simplebar-scrollbar::before {
          background: #2981c7;
          border-radius: 0;
          width: 2px;
          margin-left: -2px; }
        .p-index_price_data_inner .simplebar-scrollbar.simplebar-visible::before {
          opacity: 1; }
        .p-index_price_data_inner .simplebar-track {
          background: #e3e3e3;
          width: 2px !important; }
      .p-index_price_data_tbl {
        width: calc(100% - 28px);
        margin-right: 28px; }
        .p-index_price_data_tbl tr th, .p-index_price_data_tbl tr td {
          width: calc(100% / 3);
          padding: 6px 40px; }
          @media screen and (max-width: 767px) {
            .p-index_price_data_tbl tr th, .p-index_price_data_tbl tr td {
              padding: 6px;
              font-size: 12px !important;
              font-size: 1.2rem !important;
              line-height: 1.5; } }
        .p-index_price_data_tbl tr th {
          background-color: #fff;
          text-align: center;
          font-family: "Shippori Mincho", serif;
          font-size: 15px;
          font-size: 1.5rem; }
          .p-index_price_data_tbl tr th:not(:last-child) {
            border-right: solid 1px #efefef; }
        .p-index_price_data_tbl tr td:last-child {
          text-align: right; }
        .p-index_price_data_tbl tr td:nth-child(2) {
          text-align: center; }
        .p-index_price_data_tbl tr:nth-child(n+2):nth-child(even) td {
          background-color: #efefef; }
          .p-index_price_data_tbl tr:nth-child(n+2):nth-child(even) td:not(:last-child) {
            border-right: solid 1px #fff; }
        .p-index_price_data_tbl tr:nth-child(n+2):nth-child(odd) td:not(:last-child) {
          border-right: solid 1px #efefef; }
      .p-index_price_data + .c-txt_note {
        max-width: 990px;
        margin: auto; }
    .p-index_price_pay {
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      max-width: 900px;
      margin: 50px auto 30px; }
      @media screen and (max-width: 767px) {
        .p-index_price_pay {
          flex-direction: column;
          margin: 30px auto 20px; } }
      .p-index_price_pay > li {
        min-height: 150px;
        background-image: url(../img/pay_bg.webp);
        background-size: cover;
        background-position: center;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 31%;
        font-size: 24px;
        font-size: 2.4rem;
        font-family: "Shippori Mincho", serif;
        color: #fff; }
        @media screen and (max-width: 767px) {
          .p-index_price_pay > li {
            flex-direction: column-reverse;
            width: 100%;
            min-height: 80px; }
            .p-index_price_pay > li:not(:last-child) {
              margin-bottom: 2% !important; } }
        .p-index_price_pay > li:nth-child(1) {
          width: 100%;
          margin-bottom: 3%; }
          @media screen and (max-width: 767px) {
            .p-index_price_pay > li:nth-child(1) {
              padding: 4px 0 30px; } }
          .p-index_price_pay > li:nth-child(1) .p-index_price_pay_txt {
            width: 272px; }
            @media screen and (max-width: 767px) {
              .p-index_price_pay > li:nth-child(1) .p-index_price_pay_txt {
                width: 60%; } }
          .p-index_price_pay > li:nth-child(1) .p-index_price_pay_img {
            margin-left: 40px;
            width: 40%; }
      .p-index_price_pay + .c-txt_note {
        max-width: 900px;
        margin: auto; }
    .p-index_price .p-index_price_support_ttl {
      font-size: 18px;
      font-size: 1.8rem;
      color: #DB6F23;
      border-left: solid 8px;
      padding-left: .7em;
      margin: 35px 0 15px; }
      @media screen and (max-width: 767px) {
        .p-index_price .p-index_price_support_ttl {
          margin: 20px 0 10px; } }
    .p-index_price .c-accordion_content {
      background-color: #f8f8f8;
      font-size: 16px;
      font-size: 1.6rem; }
      .p-index_price .c-accordion_content .c-txt_list {
        border: dotted 1px #c3c3c3;
        max-width: 480px;
        margin: 20px 0; }
        .p-index_price .c-accordion_content .c-txt_list > li {
          font-size: 16px;
          font-size: 1.6rem; }
  .p-index_photo {
    overflow: hidden;
    max-width: 1440px;
    margin: auto;
    position: relative; }
    .p-index_photo_name {
      width: 364px;
      height: 130px;
      background-color: rgba(25, 71, 106, 0.8);
      font-family: "Shippori Mincho", serif;
      line-height: 1;
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      position: absolute;
      top: 0;
      z-index: 2; }
      .p-index_photo_name::before {
        content: "";
        display: block;
        aspect-ratio: 68 / 67;
        width: 68px;
        background-image: url(../img/lodo_wht.webp);
        background-size: cover;
        margin-right: 20px; }
      .p-index_photo_name::after {
        content: "";
        display: block;
        width: calc(100% - 14px);
        height: calc(100% - 14px);
        border: solid 1px #fff;
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        margin: auto; }
      .p-index_photo_name_txt .-eng {
        font-size: 29px;
        font-size: 2.9rem;
        margin-bottom: 10px; }
      .p-index_photo_name_txt .-jp {
        font-size: 15px;
        z-index: 1.5rem; }
    .p-index_photo .slick-img img {
      height: 50vh;
      aspect-ratio: 3 / 2;
      margin: auto;
      max-height: 100%;
      max-width: 100%;
      object-fit: cover;
      object-position: center;
      width: 100%;
      margin-bottom: 10px; }
  .p-index_access {
    padding: 120px 0;
    margin-top: 10px;
    background-color: #f2f5f7; }
    @media screen and (max-width: 767px) {
      .p-index_access {
        padding: 60px 0; } }
    .p-index_access_map {
      height: 400px;
      width: 100%;
      margin-bottom: 40px; }
      @media screen and (max-width: 767px) {
        .p-index_access_map {
          height: 240px; } }
      .p-index_access_map iframe {
        width: 100%;
        height: 100%; }
    .p-index_access_tbl {
      font-family: "Shippori Mincho", serif;
      width: 100%; }
      .p-index_access_tbl tr th, .p-index_access_tbl tr td {
        padding: 20px 30px; }
        @media screen and (max-width: 767px) {
          .p-index_access_tbl tr th, .p-index_access_tbl tr td {
            padding: 10px 12px;
            font-size: 14px;
            font-size: 1.4rem; } }
      .p-index_access_tbl tr th {
        width: 15%;
        border-bottom: solid 1px #82aac9; }
        @media screen and (max-width: 767px) {
          .p-index_access_tbl tr th {
            width: 90px; } }
      .p-index_access_tbl tr td {
        width: 85%;
        border-bottom: solid 1px #ddd; }
        @media screen and (max-width: 767px) {
          .p-index_access_tbl tr td {
            width: calc(100% - 90px); } }
      .p-index_access_tbl tr:first-child th {
        border-top: solid 1px #82aac9; }
      .p-index_access_tbl tr:first-child td {
        border-top: solid 1px #ddd; }
  .p-index_reserve {
    padding: 60px 0;
    background-color: #f2f5f9;
    background-image: url(../img/reserve_bg.webp);
    background-size: cover;
    background-position: center; }
    @media screen and (max-width: 767px) {
      .p-index_reserve {
        padding: 30px 0; } }
    .p-index_reserve_box {
      padding: 50px; }
      @media screen and (max-width: 767px) {
        .p-index_reserve_box {
          padding: 25px 20px; } }
    .p-index_reserve_ttl {
      line-height: 1;
      margin-bottom: 50px;
      font-size: 36px;
      font-size: 3.6rem;
      text-align: center;
      color: #fff; }
      @media screen and (max-width: 1240px) and (min-width: 768px) {
        .p-index_reserve_ttl {
          margin-bottom: 30px;
          font-size: 30px;
          font-size: 3rem; } }
      @media screen and (max-width: 767px) {
        .p-index_reserve_ttl {
          line-height: 1.4;
          margin-bottom: 20px;
          font-size: 20px;
          font-size: 2rem; } }
    @media screen and (min-width: 768px) {
      .p-index_reserve_grid {
        display: flex;
        align-items: center;
        justify-content: center; } }
    @media screen and (min-width: 768px) {
      .p-index_reserve_grid_tel, .p-index_reserve_grid_line {
        width: 48%; } }
    .p-index_reserve_grid_tel a, .p-index_reserve_grid_line a {
      display: flex;
      align-items: center;
      justify-content: center;
      height: 130px; }
      @media screen and (max-width: 767px) {
        .p-index_reserve_grid_tel a, .p-index_reserve_grid_line a {
          height: 75px; } }
    .p-index_reserve_grid_tel {
      margin: 0 4% 0 0;
      line-height: 1; }
      @media screen and (max-width: 767px) {
        .p-index_reserve_grid_tel {
          margin: 0 0 15px 0;
          padding-top: 5px; } }
      .p-index_reserve_grid_tel a {
        background-color: #174e90;
        font-family: "Shippori Mincho", serif;
        color: #fff; }
        @media screen and (min-width: 768px) {
          .p-index_reserve_grid_tel a {
            padding-top: 3px; } }
        .p-index_reserve_grid_tel a img {
          width: 54px;
          margin: 0 10px 0 0; }
          @media screen and (max-width: 767px) {
            .p-index_reserve_grid_tel a img {
              width: 28px;
              margin: 0 7px 0 0; } }
      @media screen and (max-width: 767px) {
        .p-index_reserve_grid_tel_ttl {
          font-size: 14px;
          font-size: 1.4rem;
          text-align: center; } }
      .p-index_reserve_grid_tel_num {
        margin-top: 7px;
        font-size: 36px;
        font-size: 3.6rem; }
        @media screen and (max-width: 1240px) and (min-width: 768px) {
          .p-index_reserve_grid_tel_num {
            font-size: 34px;
            font-size: 3.4rem; } }
        @media screen and (max-width: 767px) {
          .p-index_reserve_grid_tel_num {
            margin-top: 8px;
            font-size: 30px;
            font-size: 3rem; } }
    .p-index_reserve_grid_line a {
      background-color: #fff;
      color: #06c755;
      font-family: "Shippori Mincho", serif;
      font-weight: 500;
      font-size: 37px;
      font-size: 3.7rem; }
      @media screen and (max-width: 767px) {
        .p-index_reserve_grid_line a {
          font-size: 22px;
          font-size: 2.2rem; } }
      .p-index_reserve_grid_line a img {
        width: 55px;
        margin: 27.5px; }
        @media screen and (max-width: 767px) {
          .p-index_reserve_grid_line a img {
            width: 30px;
            margin: 15px; } }
    .p-index_reserve_grid_line_txt {
      line-height: 1.2;
      color: #fff;
      font-size: 28px;
      font-size: 2.8rem; }
      @media screen and (max-width: 1240px) and (min-width: 768px) {
        .p-index_reserve_grid_line_txt {
          font-size: 24px;
          font-size: 2.4rem; } }
      @media screen and (max-width: 767px) {
        .p-index_reserve_grid_line_txt {
          font-size: 20px;
          font-size: 2rem; } }
    .p-index_reserve_btm {
      margin-top: 30px;
      font-size: 20px;
      font-size: 2rem;
      text-align: center; }
      @media screen and (max-width: 1240px) and (min-width: 768px) {
        .p-index_reserve_btm {
          font-size: 18px;
          font-size: 1.8rem; } }
      @media screen and (max-width: 767px) {
        .p-index_reserve_btm {
          margin-top: 15px;
          font-size: 14px;
          font-size: 1.4rem; } }

.fade {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease; }

.fade.show {
  opacity: 1;
  transform: translateY(0); }

/*# sourceMappingURL=cmn_style.css.map */
