@charset "UTF-8";
/* ---------------------------------------------------------
    font
--------------------------------------------------------- */
@font-face {
  font-family: "line-rg";
  src: url("../font/LINESeedJP_A_OTF_Rg.woff") format("woff");
}

@font-face {
  font-family: "line-bd";
  src: url("../font/LINESeedJP_A_OTF_Bd.woff") format("woff");
}

@font-face {
  font-family: "line-eb";
  src: url("../font/LINESeedJP_A_OTF_Eb.woff") format("woff");
}

@font-face {
  font-family: "line-th";
  src: url("../font/LINESeedJP_A_OTF_Th.woff") format("woff");
}

/* ---------------------------------------------------------
    fade
--------------------------------------------------------- */
.fadeIn_up {
  opacity: 0;
  -webkit-transform: translate(0, 50%);
          transform: translate(0, 50%);
  -webkit-transition: 2s;
  transition: 2s;
}

.fadeIn_up.is-show {
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
  opacity: 1;
}

.fadeIn_up.delay {
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}

.fadeIn {
  opacity: 0;
  -webkit-transition: 2s;
  transition: 2s;
}

.fadeIn.is-show {
  opacity: 1;
}

.fadeIn.delay {
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}

.oneTxt {
  visibility: hidden;
}

.oneTxt.is-ready {
  visibility: visible;
}

.oneTxt span {
  opacity: 0;
  -webkit-transition: .6s ease-in-out;
  transition: .6s ease-in-out;
}

/* ---------------------------------------------------------
    variable
--------------------------------------------------------- */
body {
  overflow-x: hidden !important;
  background: #ebe9de;
  font-family: "line-rg";
  font-weight: 400;
  color: #333;
  position: relative;
}

img {
  width: 100%;
  vertical-align: top;
}

.inner {
  max-width: 1100px;
  padding: 0 20px;
  margin: auto;
}

/* ---------------------------------------------------------
    header
--------------------------------------------------------- */
.header {
  width: 280px;
  height: calc(100vh - 35px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -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;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
}

.header .logo {
  width: 125px;
  position: relative;
  margin-top: 45px;
}

.header .logo .link {
  position: absolute;
  inset: 0;
}

.header .sp_menu {
  display: none;
}

.header .navigation_pc nav .navi {
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -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: 25px;
}

.header .navigation_pc nav .navi .navi_item {
  font-family: "line-bd";
  font-size: 18px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -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: 3px;
}

.header .navigation_pc nav .navi .navi_item .link {
  position: absolute;
  inset: 0;
}

.header .navigation_pc nav .navi .navi_item .en {
  font-size: 14px;
  font-family: "line-rg";
  color: #a5410d;
}

.header .navigation_sp {
  display: none;
}

@media (max-width: 767px) {
  .header {
    width: 100%;
    height: auto;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    position: fixed;
    top: 0;
    left: 0;
    padding: 15px 20px 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .header .logo {
    width: 70px;
    margin-top: 0;
  }
  .header .sp_menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 15px;
  }
  .header .sp_menu .icon {
    width: 45px;
  }
  .header .sp_menu .icon .link {
    position: absolute;
    inset: 0;
  }
  .header .sp_menu .hamburger_menu {
    -moz-appearance: none;
         appearance: none;
    -webkit-appearance: none;
    width: 45px;
    height: 45px;
    padding: 0;
    background: #a73f0f;
    border: 0;
    border-radius: 50%;
    position: relative;
    cursor: pointer;
  }
  .header .sp_menu .hamburger_menu.active .bar {
    width: 30px;
  }
  .header .sp_menu .hamburger_menu.active .bar:nth-child(1) {
    -webkit-transform: translateX(-50%) rotate(45deg);
            transform: translateX(-50%) rotate(45deg);
    top: 22px;
  }
  .header .sp_menu .hamburger_menu.active .bar:nth-child(2) {
    opacity: 0;
  }
  .header .sp_menu .hamburger_menu.active .bar:nth-child(3) {
    -webkit-transform: translateX(-50%) rotate(-45deg);
            transform: translateX(-50%) rotate(-45deg);
    top: 22px;
  }
  .header .sp_menu .hamburger_menu .bar {
    width: 20px;
    height: 2px;
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    background: #fff;
    -webkit-transition: all .3s;
    transition: all .3s;
  }
  .header .sp_menu .hamburger_menu .bar:nth-child(1) {
    top: 14px;
  }
  .header .sp_menu .hamburger_menu .bar:nth-child(2) {
    top: 22px;
  }
  .header .sp_menu .hamburger_menu .bar:nth-child(3) {
    top: 30px;
  }
  .header .navigation_pc {
    display: none;
  }
  .header .navigation_sp {
    width: 100%;
    height: 100vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -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;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 40px;
    background: #eceae0;
    position: fixed;
    top: 0;
    right: -180%;
    z-index: -1;
    -webkit-transition: all .5s;
    transition: all .5s;
  }
  .header .navigation_sp.panelactive {
    right: 0;
  }
  .header .navigation_sp .logo {
    width: 125px;
  }
  .header .navigation_sp nav .navi {
    margin-top: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -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: 25px;
  }
  .header .navigation_sp nav .navi .navi_item {
    font-family: "line-bd";
    font-size: 18px;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -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: 3px;
  }
  .header .navigation_sp nav .navi .navi_item .link {
    position: absolute;
    inset: 0;
  }
  .header .navigation_sp nav .navi .navi_item .en {
    font-size: 14px;
    font-family: "line-rg";
    color: #a5410d;
  }
}

/* ---------------------------------------------------------
    footer
--------------------------------------------------------- */
.footer {
  margin-top: 80px;
  padding: 10px 0;
  position: relative;
}

.footer::before {
  content: '';
  width: 90%;
  height: 1px;
  background: #333;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.footer .copy .copyright {
  font-size: 18px;
  text-align: center;
}

@media (max-width: 767px) {
  .footer {
    margin-top: 45px;
    padding: 10px 0;
  }
  .footer .copy .copyright {
    font-size: 12px;
  }
}

/* ---------------------------------------------------------
    mainvisual
--------------------------------------------------------- */
.sect_mainVisual {
  width: calc(100% - 280px);
  height: calc(100vh - 35px);
  margin: 0 0 0 auto;
  position: relative;
}

.sect_mainVisual .page_title {
  width: 100px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.sect_mainVisual .mainVisual {
  width: 100%;
  height: 100%;
}

.sect_mainVisual .mainVisual .image {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0 0 0 50px;
}

.sect_mainVisual .mainVisual .image.sp {
  display: none;
}

@media (max-width: 767px) {
  .sect_mainVisual {
    width: calc(100% - 30px);
    height: calc(100vh - 20px);
  }
  .sect_mainVisual .page_title {
    width: 70px;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  .sect_mainVisual .mainVisual {
    width: 100%;
    height: 100%;
  }
  .sect_mainVisual .mainVisual .image {
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 0 0 0 50px;
  }
  .sect_mainVisual .mainVisual .image.pc {
    display: none;
  }
  .sect_mainVisual .mainVisual .image.sp {
    display: block;
  }
}

/* ---------------------------------------------------------
    concept
--------------------------------------------------------- */
.sect_concept {
  margin-top: 130px;
}

.sect_concept .concept {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 420px 1fr;
      grid-template-columns: 420px 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 35px;
}

.sect_concept .concept .text_contents .sect_title {
  font-size: 24px;
  font-family: "line-bd";
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -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: 8px;
}

.sect_concept .concept .text_contents .sect_title .en {
  font-size: 20px;
  color: #a5410d;
  font-family: "line-rg";
}

.sect_concept .concept .text_contents .sub_title {
  text-align: center;
  font-family: "line-bd";
  margin-top: 15px;
}

.sect_concept .concept .text_contents .sentence {
  font-size: 16px;
  line-height: 1.6;
  margin-top: 25px;
}

.sect_concept .concept .photograph {
  width: 100%;
}

.sect_concept .concept .photograph .image {
  border-radius: 15px;
}

@media (max-width: 767px) {
  .sect_concept {
    margin-top: 60px;
  }
  .sect_concept .concept {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
  }
  .sect_concept .concept .text_contents {
    display: contents;
  }
  .sect_concept .concept .text_contents .sect_title {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .sect_concept .concept .text_contents .sub_title {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .sect_concept .concept .text_contents .sentence {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }
  .sect_concept .concept .photograph {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    margin-top: 20px;
  }
}

/* ---------------------------------------------------------
    collection
--------------------------------------------------------- */
.sect_collection {
  margin-top: 150px;
}

.sect_collection .collection .sect_title {
  font-size: 24px;
  font-family: "line-bd";
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -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: 8px;
}

.sect_collection .collection .sect_title .en {
  font-size: 20px;
  color: #a5410d;
  font-family: "line-rg";
}

.sect_collection .collection .collections {
  margin-top: 40px;
  list-style-type: none;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 1fr;
      grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
}

.sect_collection .collection .collections .item .photograph {
  overflow: hidden;
  border-radius: 10px;
}

.sect_collection .collection .collections .item .photograph:hover .image {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.sect_collection .collection .collections .item .photograph .image {
  border-radius: 10px;
  -webkit-transition: all .6s ease;
  transition: all .6s ease;
}

.sect_collection .collection .collections .item .item_title {
  font-size: 18px;
  font-family: "line-bd";
  margin-top: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -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: 8px;
}

.sect_collection .collection .collections .item .item_title .en {
  font-size: 20px;
  color: #a5410d;
  font-family: "line-rg";
}

@media (max-width: 767px) {
  .sect_collection {
    margin-top: 95px;
  }
  .sect_collection .collection .collections {
    max-width: 400px;
    margin: 25px auto 0;
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    gap: 60px;
  }
}

/* ---------------------------------------------------------
    wave
--------------------------------------------------------- */
.wave {
  margin-top: 90px;
}

@media (max-width: 767px) {
  .wave {
    margin-top: 65px;
  }
}

/* ---------------------------------------------------------
    plan
--------------------------------------------------------- */
.sect_plan {
  padding: 25px 0 60px;
  background: #e3dbca;
  position: relative;
}

.sect_plan .plan .sect_title {
  font-size: 24px;
  font-family: "line-bd";
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -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: 8px;
}

.sect_plan .plan .sect_title .en {
  font-size: 20px;
  color: #a5410d;
  font-family: "line-rg";
}

.sect_plan .plan .plans {
  margin-top: 40px;
  list-style-type: none;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 1fr;
      grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
}

.sect_plan .plan .plans .plan_item {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  background: #fff;
  padding: 50px 20px 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 10px;
  position: relative;
}

.sect_plan .plan .plans .plan_item:nth-child(2) {
  margin-top: 100px;
}

.sect_plan .plan .plans .plan_item:nth-child(3) {
  margin-top: 200px;
}

.sect_plan .plan .plans .plan_item .item_title {
  width: calc(100% - 40px);
  height: 50px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: #fff;
  border: 2.4px solid #938973;
  border-radius: 50px;
  display: -ms-grid;
  display: grid;
  place-content: center;
  font-family: "line-bd";
  position: absolute;
  top: -25px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.sect_plan .plan .plans .plan_item .item_title span {
  font-size: 18px;
  color: #938973;
}

.sect_plan .plan .plans .plan_item .sentence {
  font-size: 18px;
  line-height: 1.6;
}

.sect_plan .plan .plans .plan_item .point {
  max-width: 240px;
  margin: 25px auto 0;
}

.sect_plan .plan .plans .plan_item .point_list {
  margin-top: 5px;
}

.sect_plan .plan .plans .plan_item .point_list .point_list_item {
  padding: 10px 0;
  border-bottom: 1px dashed #707070;
}

.sect_plan .plan .plans .plan_item .point_list .point_list_item span {
  display: block;
  font-family: "line-bd";
  font-size: 16px;
  text-align: center;
  word-break: keep-all;
  line-height: 1.4;
}

.sect_plan .plan .photographs {
  display: none;
}

.sect_plan .plan .custom_made {
  color: #fff;
  width: 550px;
  padding: 35px 45px 30px;
  margin: 125px 0 0 auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: #938973;
  border-radius: 10px;
}

.sect_plan .plan .custom_made .content_title {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 24px;
  font-family: "line-bd";
  padding-bottom: 10px;
  border-bottom: 1px solid #fff;
}

.sect_plan .plan .custom_made .sentence {
  font-size: 18px;
  line-height: 1.6;
  margin-top: 20px;
}

.sect_plan .plan .custom_made .btns {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 30px auto 0;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  gap: 10px;
}

.sect_plan .plan .custom_made .btns .btn {
  width: 310px;
  height: 45px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px solid #a5410f;
  border-radius: 50px;
  background: #fff;
  display: -ms-grid;
  display: grid;
  place-content: center;
  position: relative;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.sect_plan .plan .custom_made .btns .btn:hover {
  background: #a5410f;
}

.sect_plan .plan .custom_made .btns .btn:hover span {
  color: #fff;
}

.sect_plan .plan .custom_made .btns .btn .link {
  position: absolute;
  inset: 0;
}

.sect_plan .plan .custom_made .btns .btn span {
  font-family: "line-bd";
  font-size: 18px;
  color: #a5410f;
}

.sect_plan .photograph_left {
  width: 30vw;
  position: absolute;
  bottom: 400px;
  left: 0;
}

.sect_plan .photograph_left .image {
  border-radius: 0 10px 10px 0;
}

.sect_plan .photograph_right {
  position: absolute;
  top: 0;
  right: 0;
  width: 32vw;
  max-width: 435px;
}

.sect_plan .photograph_right .image {
  border-radius: 10px 0 0 10px;
}

@media (max-width: 767px) {
  .sect_plan {
    padding: 20px 0 70px;
  }
  .sect_plan .plan .plans {
    margin-top: 80px;
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    gap: 80px;
  }
  .sect_plan .plan .plans .plan_item {
    padding: 50px 15px 20px;
  }
  .sect_plan .plan .plans .plan_item:nth-child(2), .sect_plan .plan .plans .plan_item:nth-child(3) {
    margin-top: 0;
  }
  .sect_plan .plan .plans .plan_item .item_title {
    max-width: 275px;
  }
  .sect_plan .plan .plans .plan_item .item_title span {
    font-size: 22px;
  }
  .sect_plan .plan .plans .plan_item .point {
    margin: 30px auto 0;
  }
  .sect_plan .plan .plans .plan_item .point_list {
    margin-top: 5px;
  }
  .sect_plan .plan .plans .plan_item .point_list .point_list_item {
    padding: 10px 0;
    border-bottom: 1px dashed #707070;
  }
  .sect_plan .plan .plans .plan_item .point_list .point_list_item span {
    display: block;
    font-family: "line-bd";
    font-size: 16px;
    text-align: center;
    word-break: keep-all;
    line-height: 1.4;
  }
  .sect_plan .plan .photographs {
    margin-top: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .sect_plan .plan .photographs .left {
    width: 60vw;
    margin: -25px auto 0 -20px;
  }
  .sect_plan .plan .photographs .left .image {
    border-radius: 0 12px 12px 0;
    height: 100%;
  }
  .sect_plan .plan .photographs .right {
    width: 73vw;
    margin: 0 -20px 0 auto;
  }
  .sect_plan .plan .photographs .right .image {
    border-radius: 12px 0 0 12px;
    height: 100%;
  }
  .sect_plan .plan .custom_made {
    width: calc(100% + 20px);
    padding: 30px 20px 40px;
    margin: 85px -20px 0 auto;
    border-radius: 15px 0 0 15px;
  }
  .sect_plan .plan .custom_made .content_title {
    line-height: 1.6;
    padding-bottom: 0;
    margin: auto;
    word-break: keep-all;
  }
  .photograph_left, .photograph_right {
    display: none;
  }
}

/* ---------------------------------------------------------
    wave_photograph
--------------------------------------------------------- */
.wave_photograph {
  width: 100%;
}

/* ---------------------------------------------------------
    option
--------------------------------------------------------- */
.sect_option {
  margin-top: 100px;
}

.sect_option .option .sect_title {
  font-size: 24px;
  font-family: "line-bd";
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -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: 8px;
}

.sect_option .option .sect_title .en {
  font-size: 20px;
  color: #a5410d;
  font-family: "line-rg";
}

.sect_option .option .sub_title {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 20px auto 0;
  font-size: 18px;
  line-height: 1.6;
}

.sect_option .option .option_list {
  max-width: 965px;
  margin: 110px auto 0;
}

.sect_option .option .option_list .option_list_item {
  margin-bottom: 260px;
  position: relative;
}

.sect_option .option .option_list .option_list_item:nth-child(2) {
  margin-bottom: 200px;
}

.sect_option .option .option_list .option_list_item:nth-child(2) .contents {
  left: auto;
  right: 0;
}

.sect_option .option .option_list .option_list_item:nth-child(2) .photograph {
  margin: 0 auto 0 0;
}

.sect_option .option .option_list .option_list_item:last-child {
  margin-bottom: 0;
}

.sect_option .option .option_list .option_list_item .contents {
  width: 450px;
  padding: 60px 45px 35px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: #fff;
  border-radius: 12px;
  position: absolute;
  top: 50%;
  left: 0;
}

.sect_option .option .option_list .option_list_item .contents .item_title {
  width: 300px;
  height: 60px;
  background: #a19679;
  border-radius: 50px;
  display: -ms-grid;
  display: grid;
  place-content: center;
  position: absolute;
  top: -30px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.sect_option .option .option_list .option_list_item .contents .item_title span {
  font-size: 22px;
  font-family: "line-bd";
  color: #fff;
}

.sect_option .option .option_list .option_list_item .contents .sentence {
  font-size: 18px;
  line-height: 1.6;
}

.sect_option .option .option_list .option_list_item .contents .btn {
  width: 250px;
  height: 45px;
  margin: 45px auto 0;
  border: 1px solid #a5410f;
  border-radius: 50px;
  display: -ms-grid;
  display: grid;
  place-content: center;
  position: relative;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.sect_option .option .option_list .option_list_item .contents .btn:hover {
  background: #a5410f;
}

.sect_option .option .option_list .option_list_item .contents .btn:hover span {
  color: #fff;
}

.sect_option .option .option_list .option_list_item .contents .btn .link {
  position: absolute;
  inset: 0;
}

.sect_option .option .option_list .option_list_item .contents .btn span {
  font-size: 18px;
  font-family: "line-bd";
  color: #a5410f;
}

.sect_option .option .option_list .option_list_item .photograph {
  width: 60%;
  margin: 0 0 0 auto;
}

.sect_option .option .option_list .option_list_item .photograph .image {
  border-radius: 20px;
}

@media (max-width: 767px) {
  .sect_option {
    margin-top: 60px;
  }
  .sect_option .option .option_list {
    margin: 45px auto 0;
  }
  .sect_option .option .option_list .option_list_item {
    margin-bottom: 120px;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .sect_option .option .option_list .option_list_item:nth-child(2) {
    margin-bottom: 120px;
  }
  .sect_option .option .option_list .option_list_item:nth-child(2) .contents {
    margin: -30px -20px 0 auto;
    border-radius: 12px 0 0 12px;
  }
  .sect_option .option .option_list .option_list_item:nth-child(2) .photograph {
    margin: 0 auto 0 -20px;
  }
  .sect_option .option .option_list .option_list_item:nth-child(2) .photograph .image {
    border-radius: 0 20px 20px 0;
  }
  .sect_option .option .option_list .option_list_item .contents {
    width: 335px;
    padding: 60px 30px 25px;
    margin: -30px 0 0 -20px;
    border-radius: 0 12px 12px 0;
    position: relative;
  }
  .sect_option .option .option_list .option_list_item .contents .btn {
    margin: 35px auto 0;
  }
  .sect_option .option .option_list .option_list_item .photograph {
    width: 80vw;
    margin: 0 -20px 0 auto;
  }
  .sect_option .option .option_list .option_list_item .photograph .image {
    border-radius: 20px 0 0 20px;
    height: 305px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

/* ---------------------------------------------------------
    flow
--------------------------------------------------------- */
.sect_flow {
  padding: 110px 0 140px;
  margin-top: 440px;
  background: url(../images/top/flow_bg.jpg) no-repeat center/cover;
}

.sect_flow .flow {
  max-width: 845px;
  padding: 45px 35px 110px;
  margin: auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: #fff;
  border-radius: 40px;
}

.sect_flow .flow .sect_title {
  font-size: 24px;
  font-family: "line-bd";
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -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: 8px;
}

.sect_flow .flow .sect_title .en {
  font-size: 20px;
  color: #a5410d;
  font-family: "line-rg";
}

.sect_flow .flow .flow_content {
  margin-top: 35px;
}

.sect_flow .flow .flow_content .flow_list {
  list-style: none;
  margin: 0;
  position: relative;
}

.sect_flow .flow .flow_content .flow_list::before {
  content: "";
  position: absolute;
  left: 48px;
  top: 35px;
  height: calc(100% - 105px);
  border-left: 2px dotted #e2e2e2;
}

.sect_flow .flow .flow_content .flow_list .flow_item {
  position: relative;
  padding: 45px 0;
}

.sect_flow .flow .flow_content .flow_list .flow_item .flow_icon {
  position: absolute;
  left: 17px;
  /* 直径70px の中心が 48px に来るよう調整 */
  top: 42%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background: #a5410f;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -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;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  line-height: 1;
}

.sect_flow .flow .flow_content .flow_list .flow_item .flow_icon .flow_icon_label {
  display: block;
  font-size: 12px;
  letter-spacing: .08em;
  margin-bottom: 4px;
}

.sect_flow .flow .flow_content .flow_list .flow_item .flow_icon .flow_icon_num {
  display: block;
  font-size: 24px;
}

.sect_flow .flow .flow_content .flow_list .flow_item .flow_body {
  padding-left: 100px;
  padding-top: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5px;
}

.sect_flow .flow .flow_content .flow_list .flow_item .flow_body .flow_title {
  font-size: 22px;
  line-height: 1.4;
  font-family: "line-bd";
  color: #333;
}

.sect_flow .flow .flow_content .flow_list .flow_item .flow_body .flow_text {
  line-height: 1.9;
  color: #333;
}

.sect_flow .flow .flow_content .flow_list .flow_item .flow_body .flow_text br {
  display: none;
}

@media (max-width: 767px) {
  .sect_flow {
    padding: 55px 0 60px;
    margin-top: 120px;
  }
  .sect_flow .flow {
    padding: 30px 15px 50px;
    border-radius: 17px;
  }
  .sect_flow .flow .flow_content {
    margin-top: 15px;
  }
  .sect_flow .flow .flow_content .flow_list::before {
    content: "";
    position: absolute;
    left: 20px;
    top: 35px;
    height: calc(100% - 105px);
    border-left: 2px dotted #e2e2e2;
  }
  .sect_flow .flow .flow_content .flow_list .flow_item {
    padding: 20px 0;
  }
  .sect_flow .flow .flow_content .flow_list .flow_item .flow_icon {
    left: 0;
    /* 直径70px の中心が 48px に来るよう調整 */
    top: 27%;
    width: 42px;
    height: 42px;
  }
  .sect_flow .flow .flow_content .flow_list .flow_item .flow_icon .flow_icon_label {
    font-size: 8px;
    margin-bottom: 3px;
  }
  .sect_flow .flow .flow_content .flow_list .flow_item .flow_icon .flow_icon_num {
    font-size: 16px;
  }
  .sect_flow .flow .flow_content .flow_list .flow_item .flow_body {
    padding-left: 55px;
    padding-top: 0;
    gap: 5px;
  }
  .sect_flow .flow .flow_content .flow_list .flow_item .flow_body .flow_title {
    font-size: 18px;
  }
  .sect_flow .flow .flow_content .flow_list .flow_item .flow_body .flow_text {
    line-height: 1.6;
    font-size: 14px;
  }
  .sect_flow .flow .flow_content .flow_list .flow_item .flow_body .flow_text br {
    display: block;
  }
}

/* ---------------------------------------------------------
    access
--------------------------------------------------------- */
.sect_access {
  margin-top: 125px;
}

.sect_access .sect_title {
  font-size: 24px;
  font-family: "line-bd";
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -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: 8px;
}

.sect_access .sect_title .en {
  font-size: 20px;
  color: #a5410d;
  font-family: "line-rg";
}

.sect_access .wrapper {
  margin-top: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 60px;
}

.sect_access .wrapper .map {
  width: 100%;
  height: 430px;
}

.sect_access .wrapper .map iframe {
  width: 100%;
  height: 100%;
}

.sect_access .wrapper .text {
  line-height: 2;
  margin-right: 8.5vw;
  white-space: nowrap;
}

@media (max-width: 1040px) {
  .sect_access .wrapper .text {
    margin-right: 20px;
  }
}

@media (max-width: 767px) {
  .sect_access {
    margin-top: 70px;
  }
  .sect_access .wrapper {
    margin: 20px auto 0;
    padding: 0 20px;
    -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;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    gap: 20px;
  }
  .sect_access .wrapper .map {
    width: 100%;
    height: 290px;
  }
  .sect_access .wrapper .text {
    margin-right: 0;
  }
}

/* ---------------------------------------------------------
    contact
--------------------------------------------------------- */
.sect_contact {
  margin-top: 100px;
}

.sect_contact .contact {
  max-width: 860px;
  margin: auto;
  padding: 20px 40px 25px;
  background: #fff;
  border-radius: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.sect_contact .contact .sect_title {
  font-size: 24px;
  font-family: "line-bd";
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -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: 8px;
}

.sect_contact .contact .sect_title .en {
  font-size: 20px;
  color: #a5410d;
  font-family: "line-rg";
}

.sect_contact .contact .sentence {
  font-size: 18px;
  line-height: 1.6;
  text-align: center;
  margin-top: 15px;
}

.sect_contact .contact .btn {
  width: 340px;
  height: 45px;
  margin: 55px auto 0;
  border: 1px solid #a5410f;
  border-radius: 50px;
  display: -ms-grid;
  display: grid;
  place-content: center;
  position: relative;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.sect_contact .contact .btn:hover {
  background: #a5410f;
}

.sect_contact .contact .btn:hover span {
  color: #fff;
}

.sect_contact .contact .btn .link {
  position: absolute;
  inset: 0;
}

.sect_contact .contact .btn span {
  font-size: 18px;
  font-family: "line-bd";
  color: #a5410f;
}

.sect_contact .contact .note {
  font-size: 18px;
  margin-top: 8px;
  text-align: center;
}

.sect_contact .contact .note br {
  display: none;
}

@media (max-width: 767px) {
  .sect_contact {
    margin-top: 40px;
  }
  .sect_contact .contact {
    padding: 25px 20px 50px;
    border-radius: 14px;
  }
  .sect_contact .contact .sentence {
    margin-top: 25px;
  }
  .sect_contact .contact .btn {
    margin: 30px auto 0;
    width: 280px;
  }
  .sect_contact .contact .note {
    font-size: 18px;
    margin-top: 8px;
    text-align: center;
    line-height: 1.4;
  }
  .sect_contact .contact .note br {
    display: block;
  }
}
/*# sourceMappingURL=top.css.map */