* {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  height: 100%;
  overflow-y: scroll;
  scroll-behavior: smooth;
}

@media screen and (max-width: 1365px) {
  html {
    font-size: calc(100vw / 1365 * 10);
  }
}

@media screen and (max-width: 767px) {
  html {
    font-size: calc(100vw / 375 * 10);
  }
}

body {
  color: #333;
  font-family: "游明朝", "Yu Mincho", YuMincho, serif;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1;
  min-width: 86.1%;
  -webkit-text-size-adjust: none;
}

body.active {
  height: 100%;
  overflow: hidden;
}

a {
  color: #333;
  text-decoration: none;
  transition: 0.2s;
}

a:hover {
  opacity: 0.75;
}

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

dl,
ul {
  list-style: none;
}

.only_pc {
  display: block !important;
}

.only_sp {
  display: none !important;
}

.container {
  margin: 0 auto;
  max-width: 102rem;
  padding: 0 1rem;
}

@media screen and (max-width: 767px) {
  body {
    min-width: auto;
  }
  .only_pc {
    display: none !important;
  }
  .only_sp {
    display: block !important;
  }
  .container {
    width: 100%;
    max-width: 100%;
    padding: 0 15px;
    margin: 0;
  }
}

/* ------------------------------------------
  header
------------------------------------------ */

.header {
  color: #fff;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 999;
  width: 100%;
  background-color: transparent;
}

.header .header_content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 5rem;
}

header .header_menu {
  display: flex;
  padding: 0 1rem;
}

header .header_menu .header_menu_item {
  flex-grow: 1;
  position: relative;
}

header .header_menu .header_menu_item:not(:first-child) {
  border-left: 1px solid #333;
}

header .header_menu .header_menu_item .header_menu_item_link {
  color: #fff;
  display: block;
  text-align: center;
  padding: 0 3rem;
}

.header_child_menu {
  background-color: #fff;
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.09);
  bottom: -1.5rem;
  left: 0;
  position: absolute;
  transform: translateY(100%);
  width: 120%;
  box-shadow: inset 0px 3px 6px rgba(0, 0, 0, 0.16),
    inset 0px 3px 6px rgba(0, 0, 0, 0.16);
  font-size: 1.4rem;
  display: none;
}

.header_child_menu_item_link {
  align-items: center;
  justify-content: center;
  /* color: #fff; */
  color: #333;
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
}

.header_child_menu_item_link:hover {
  background: #eacbc4;
  color: #fff;
}
.header_child_menu_item_link::after {
  background-image: url(../img/common/header_menu_item_link_arrow.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: block;
  height: 0.5rem;
  margin-left: 1rem;
  transform: rotate(270deg);
  width: 0.7rem;
}

.header_sp_contents {
  display: none;
}

.header_sp_link {
  display: none;
}

.fixed {
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.09);
}

header .header_logo a {
  color: #fff;
  font-size: 2rem;
}

header.fixed .header_logo a {
  color: #333;
  position: relative;
  z-index: 99999;
}

header.fixed .header_menu .header_menu_item::before {
  background-color: #333;
}

header.fixed .header_menu .header_menu_item .ttl {
  color: #333;
}

header.fixed
  .header_menu
  .header_menu_item
  .header_menu_item_link.has_child::after {
  background-image: url(../img/common/header_menu_item_link_arrow_fixed.png);
}

header.fixed .header_child_menu_item_link {
  color: #333;
  line-height: 1.5;
}
header.fixed .header_child_menu_item_link:hover {
  color: #fff;
}
header.fixed .header_child_menu {
  background-color: #fff;
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.09);

  bottom: -1.5rem;
  width: 120%;
  transition: none;
  display: none;
}

@media screen and (max-width: 767px) {
  header .header_top {
    align-items: center;
    display: flex;
    justify-content: space-between;
    padding: 2rem 0;
    position: relative;
    z-index: 1;
  }
  header.active {
    background-color: #fff;
  }
  header .header_top .header_logo a {
    transition: 0.2s ease;
    width: 21.3rem;
  }
  header .header_top .header_logo.active a {
    color: #333;
  }
  .header_top_link {
    display: none;
  }
  .header_sp_contents {
    align-items: center;
    display: flex;
  }
  .ham_box {
    cursor: pointer;
    height: 1.4rem;
    position: relative;
    width: 2.5rem;
  }
  .ham_box.active {
    background-color: #eacbc4;
    background-image: url(../img/common/x.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 3.4rem 3.4rem;
    height: 5rem;
    position: absolute;
    right: 0;
    top: 0;
    width: 5rem;
  }
  .ham_box span {
    background-color: #fff;
    display: block;
    height: 0.2rem;
    opacity: 1;
    position: absolute;
    width: 2.5rem;
  }
  .ham_box span:nth-child(1) {
    top: 0rem;
  }
  .ham_box span:nth-child(2) {
    top: 0.6rem;
  }
  .ham_box span:nth-child(3) {
    top: 1.2rem;
  }
  .ham_box.active span {
    opacity: 0;
  }
  header.fixed .ham_box span {
    background-color: #333;
  }
  header .header_menu_wrap {
    background-color: #fff;
    bottom: 0;
    height: 100vh;
    height: 100svh;
    left: 0;
    margin-top: 0;
    opacity: 0;
    padding: 6.4rem 2rem 4.5rem;
    padding-top: 6.4rem;
    pointer-events: none;
    position: absolute;
    right: 0;
    top: 0;
    transition: 0.2s ease;
    visibility: hidden;
  }
  header.fixed .header_menu_wrap {
    padding-bottom: 4.5rem;
  }
  header.active .header_menu_wrap {
    opacity: 1;
    pointer-events: all;
    visibility: visible;
    overflow: scroll;
  }
  header .header_menu {
    flex-direction: column;
    padding: 0;
  }
  header .header_menu .header_menu_item {
    border-bottom: 0.1rem solid #e0e0e0;
    flex-grow: 1;
    position: relative;
  }
  header .header_menu .header_menu_item:not(:first-child) {
    border-left: none;
  }
  header .header_menu .header_menu_item .header_menu_item_link {
    align-items: center;
    display: flex;
    padding: 2.3rem 0;
  }
  /* header .header_menu .header_menu_item .header_menu_item_link.current {
    color: #333;
  } */
  header .header_menu .header_menu_item .header_menu_item_link.has_child {
    justify-content: flex-start;
    padding-bottom: 0;
    pointer-events: none;
  }
  header
    .header_menu
    .header_menu_item
    .header_menu_item_link.has_child::after {
    background-image: url(../img/common/header_menu_item_link_arrow.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    content: "";
    display: block;
    height: 0.5rem;
    margin-left: 1rem;
    width: 0.7rem;
  }
  header
    .header_menu
    .header_menu_item
    .header_menu_item_link.has_child.active::after {
    transform: rotate(180deg);
  }
  .header_child_menu {
    box-shadow: none;
    display: flex;
    flex-wrap: wrap;
    margin-top: 1.7rem;
    opacity: 1;
    padding: 0;
    padding-left: 1rem;
    padding-right: 1rem;
    pointer-events: all;
    position: static;
    transform: translateY(0);
    visibility: visible;
    width: auto;
  }
  header.fixed .header_child_menu {
    width: 100%;
    background-color: initial;
  }
  .header_menu_item.has_child .header_child_menu {
    display: flex;
    gap: 1.4rem 3rem;
  }
  .header_menu_item.has_child:hover .header_child_menu {
    display: flex;
    gap: 1.4rem 3rem;
  }
  .header_child_menu_item_link {
    align-items: center;
    color: #333;
    display: flex;
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: 0.02em;
  }
  .header_child_menu_item_link::after {
    background-image: url(../img/common/header_child_menu_item_link_arrow.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    content: "";
    display: block;
    height: 0.6rem;
    margin-left: 0.8rem;
    transform: rotate(0);
    width: 0.4rem;
  }
  .header_child_menu_item + .header_child_menu_item {
    margin-top: 0;
  }
  .header_menu_item_link .en {
    color: #707070;
    font-size: 1.8rem;
    font-weight: 600;
    letter-spacing: 0.02em;
  }
  .header_menu_item_link .en .colored {
    color: #eacbc4;
  }
  .header_menu_item_link .ttl {
    color: #333;
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    margin-left: 1.3rem;
  }
  .header_sp_link {
    display: block;
    margin-top: 2.8rem;
  }
  .header_sp_link .item01 {
    text-align: center;
  }
  .header_sp_link .item01 .head {
    color: #333;
    font-size: 1.6rem;
    font-weight: 600;
    letter-spacing: 0.02em;
  }
  .header_sp_link .item01 a {
    align-items: center;
    display: flex;
    justify-content: center;
    margin-top: 1.1rem;
  }
  .header_sp_link .item01 a .img {
    width: 3.8rem;
  }
  .header_sp_link .item01 a .text {
    font-size: 3.3rem;
    font-weight: 600;
    margin-left: 0.6rem;
  }
  .header_sp_link .item02 {
    margin-top: 2.2rem;
  }
  .header_sp_link .item02 a {
    align-items: center;
    display: flex;
    justify-content: center;
    padding: 1.5rem 0.5rem;
  }
  .header_sp_link .item02 .line {
    border: 1px solid #333;
  }
  .header_sp_link .item02 .line .img {
    width: 3rem;
    margin-right: 1rem;
  }
  .header_sp_link .item02 a .text {
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    line-height: calc(16 / 11);
    text-align: center;
  }
  .header_sp_link .item02 .mail {
    border: 1px solid #333;
    margin-top: 2rem;
  }
  .header_sp_link .item02 .mail .img {
    width: 3rem;
    margin-right: 1rem;
  }
  header .header_menu_wrap .header_child_menu {
    pointer-events: none;
    visibility: hidden;
  }
  header.active .header_menu_wrap .header_child_menu {
    pointer-events: all;
    visibility: visible;
  }
}

/* ------------------------------------------
  footer
------------------------------------------ */
.floating {
  position: fixed;
  bottom: 1%;
  right: 8px;
  z-index: 99999;
}
.floating_pc {
  width: 168px;
}
.floating_sp {
  display: none;
}

footer {
  background-color: #eacbc4;
  color: #fff;
  padding: 8.5rem 0;
}

footer a {
  color: #fff;
}

footer .flex {
  display: flex;
}

footer .flex .left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: calc(100% - 59rem);
}

footer .flex .left .footer_logo {
  width: 22rem;
}

footer .flex .left .footer_ttl_wrap .small {
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-top: 2rem;
}

footer .flex .left .footer_ttl_wrap .ttl {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

footer .copy {
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  display: block;
  text-align: center;
  margin-top: 11rem;
}

footer .flex .right {
  width: 59rem;
}

footer .flex .right .footer_menu {
  display: grid;
  gap: 3rem 0;
  grid-template-columns: repeat(3, auto);
}

footer .flex .right .footer_menu .en {
  font-size: 1.6rem;
  letter-spacing: 0.08em;
}

footer .flex .right .footer_menu .ttl {
  font-size: 1.2rem;
  letter-spacing: 0.03em;
  margin-top: 0.8rem;
}

footer .right .cta {
  display: flex;
  justify-content: space-between;
  margin-top: 6rem;
}

footer .right .cta a {
  background-color: rgba(51, 51, 51, 0.63);
  border: 0.1rem solid rgba(145, 145, 145, 0.47);
  padding: 2rem 0;
  text-align: center;
  width: 28rem;
}

footer .right .cta a .icon {
  margin: 0 auto;
  width: 4.5rem;
}

footer .right .cta a .ttl {
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  margin-top: 2.2rem;
}

footer .right .cta a .tel {
  font-size: 2.6rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-top: 1.4rem;
}

footer .right .cta a .mail {
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-top: 1.6rem;
}

footer .right .cta a .data_wrap {
  margin-top: 1.5rem;
}

footer .right .cta a .data_wrap .data_item {
  align-items: center;
  display: flex;
  font-size: 1.1rem;
  justify-content: center;
}

footer .right .cta a .data_wrap .data_item + .data_item {
  margin-top: 0.7rem;
}

footer .right .cta a .data_wrap .data_item .head {
  display: block;
  letter-spacing: 0.05em;
  text-align: center;
  width: 6.5rem;
}

footer .right .cta a .data_wrap .data_item .desc {
  display: block;
  letter-spacing: 0.02em;
  margin-left: 1rem;
}

footer .right .cta a .data_wrap .data_item .head02 {
  display: block;
  letter-spacing: 0.05em;
  padding: 0 0.5rem;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .floating {
    bottom: 1%;
    right: 0;
  }
  .floating_sp {
    display: flex;
  }
  .floating_sp figure {
    width: calc(100vw / 2);
  }

  footer {
    padding: 5rem 0 0;
  }
  footer .flex {
    flex-direction: column;
  }
  footer .flex .left {
    flex-direction: column;
    align-items: center;
    width: auto;
  }

  footer .flex .left .add {
    margin-top: 1.9rem;
    text-align: center;
  }
  footer .flex .right {
    width: auto;
    display: flex;
    flex-direction: column-reverse;
    margin-top: 3rem;
  }
  footer .flex .right .footer_menu {
    margin-top: 5rem;
    gap: 4rem 0;
    grid-template-columns: repeat(2, auto);
  }
  footer .right .cta {
    flex-direction: column;
    margin-top: 0;
    row-gap: 2rem;
  }
  footer .right .cta a {
    padding: 3rem 1rem;
    width: auto;
  }
  footer .right .cta a .ttl {
    font-size: 1.8rem;
  }
  footer .right .cta a .tel {
    font-size: 3.3rem;
    margin-top: 2.5rem;
  }
  footer .right .cta a .mail {
    font-size: 1.8rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    margin-top: 1.6rem;
  }
  footer .right .cta a .data_wrap {
    margin-top: 1.8rem;
  }
  footer .right .cta a .data_wrap .data_item {
    font-size: 1.2rem;
  }
  footer .right .cta a .data_wrap .data_item + .data_item {
    margin-top: 0.8rem;
  }
  footer .right .cta a .data_wrap .data_item .head {
    width: 6rem;
  }
  footer .copy {
    padding: 1.9rem 0 2.5rem;
    border-top: 0.1rem solid #fff;
    margin-top: 5.5rem;
    text-align: center;
    font-size: 1.1rem;
  }
}
