@charset "UTF-8";
/*
====>> サイトのレイアウトに関わるデフォルトスタイリング <<====

・このファイルはベースのスタイルになるので、原則オーバーライド(上書き)はしない事
・共通パーツの大まかレイアウトやサイトの幅に関するスタイルを格納

*/
/*
====>> サイトのレイアウトに関わるデフォルトスタイリング <<====

・このファイルはベースのスタイルになるので、原則オーバーライド(上書き)はしない事
・共通パーツの大まかレイアウトやサイトの幅に関するスタイルを格納

*/
/*		コンテンツタイプと幅
-----------------------------------------------------*/
.l-header {
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  width: 100%;
  padding: 15px 30px;
  background: #fcfaf7;
  z-index: var(--z-index-header);
}
@media screen and (max-width: 820px) {
  .l-header {
    padding: 10px 10px;
  }
}
.l-header_logo a {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  text-decoration: none;
}
.l-header_logo a span {
  font-size: clamp(1rem, 1.1666666667vw, 1.4rem);
  font-weight: bold;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .l-header_logo a span {
    font-size: 10px !important;
    letter-spacing: 0.2em;
  }
}
.l-header_logo a span.en {
  font-size: clamp(0rem, 2vw, 2.4rem);
}
.l-header_nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  gap: 30px;
  margin-left: auto;
}
.l-header_nav a {
  text-decoration: none;
}
.l-header_nav_list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  font-weight: bold;
}
@media screen and (max-width: 949px) {
  .l-header_nav_list {
    display: none;
  }
}
.l-header_nav_list ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  gap: 40px;
}
.l-header_language {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  margin-right: 24px;
  padding: 7px 17px 7px 18px;
  background-color: var(--color-language);
  border-radius: 100px;
  font-weight: bold;
}
@media screen and (max-width: 820px) {
  .l-header_language {
    width: fit-content;
    margin-right: 5px;
    padding-left: 10px;
  }
}
@media screen and (max-width: 575px) {
  .l-header_language {
    padding: 4px 12px 4px 8px;
    letter-spacing: 0.1em;
  }
}
@media (hover: hover) {
  .l-header_language:hover {
    cursor: pointer;
  }
}
.l-header_language img:first-child {
  width: 16px;
  height: 16px;
  margin-right: 10px;
}
@media screen and (max-width: 575px) {
  .l-header_language img:first-child {
    width: 15px;
    height: 15px;
    margin-right: 5px;
  }
}
.l-header_language img.langage_arrow {
  margin-left: 10px;
  transition: transform 0.3s ease;
}
@media screen and (max-width: 820px) {
  .l-header_language img.langage_arrow {
    margin-left: 10px;
  }
}
@media screen and (max-width: 820px) {
  .l-header_language img.langage_arrow {
    margin-left: 5px;
  }
}
.l-header_language_current {
  font-size: 14px;
  text-decoration: none;
  color: inherit;
  pointer-events: none;
}
@media screen and (max-width: 820px) {
  .l-header_language_current {
    font-size: 12px;
  }
}
@media screen and (max-width: 575px) {
  .l-header_language_current {
    font-size: 10px;
  }
}
.l-header_language_content {
  position: absolute;
  top: 55px;
  right: 0;
  width: 205px;
  background-color: var(--color-white);
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  padding: 15px 0;
  transform: translateY(-10px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 100;
  margin-top: 10px;
}
@media screen and (max-width: 820px) {
  .l-header_language_content {
    width: 180px;
    right: -20px;
  }
}
@media screen and (max-width: 575px) {
  .l-header_language_content {
    padding: 10px 0;
  }
}
.l-header_language_list li {
  position: relative;
}
.l-header_language_list li a {
  display: block;
  padding: 8px 10px 8px 30px;
  color: var(--color-base);
  text-decoration: none;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.4;
  transition: all 0.2s ease;
  position: relative;
}
@media (hover: hover) {
  .l-header_language_list li a:hover {
    color: var(--color-orange);
    background-color: rgba(255, 165, 0, 0.05);
  }
}
@media screen and (max-width: 575px) {
  .l-header_language_list li a {
    font-size: 13px;
    padding: 6px 15px 6px 25px;
  }
}
@media screen and (max-width: 767px) {
  .l-header_language_list li a {
    font-size: 11px;
  }
}
.l-header_language_list li.current a {
  color: var(--color-orange);
}
.l-header_language_list li.current a::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background-color: var(--color-orange);
  border-radius: 50%;
  opacity: 1;
}
@media screen and (max-width: 575px) {
  .l-header_language_list li.current a::before {
    left: 10px;
    width: 5px;
    height: 5px;
  }
}
.l-header_language.is-open img:last-child {
  transform: rotate(180deg);
}
.l-header_language.is-open .l-header_language_content {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}
.l-header_menu_btn {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 5px;
  width: 65px;
  height: 65px;
  background-color: var(--color-orange);
  border-radius: 10px;
  cursor: pointer;
}
@media screen and (max-width: 820px) {
  .l-header_menu_btn {
    gap: 4px;
    width: 42px;
    height: 42px;
  }
}
@media (hover: hover) {
  .l-header_menu_btn:hover {
    opacity: 0.8;
  }
}
.l-header_menu_btn_line {
  width: 24px;
  height: 2px;
  background-color: var(--color-white);
  border-radius: 1px;
  transition: all 0.3s ease;
  transform-origin: center;
}
@media screen and (max-width: 820px) {
  .l-header_menu_btn_line {
    width: 20px;
  }
}
.l-header_menu_btn_line:nth-child(1) {
  transition: all 0.3s ease;
}
.l-header_menu_btn_line:nth-child(2) {
  transition: all 0.3s ease;
}
.l-header_menu_btn_line:nth-child(3) {
  transition: all 0.3s ease;
}
.l-header_menu_btn_name {
  font-size: 13px;
  font-weight: bold;
  color: var(--color-white);
  letter-spacing: 1.5;
  line-height: 1;
  transition: opacity 0.3s ease;
}
@media screen and (max-width: 820px) {
  .l-header_menu_btn_name {
    font-size: 10px;
  }
}
.l-header_menu_content {
  position: absolute;
  top: 100%;
  right: 30px;
  width: 615px;
  background-color: var(--color-footer-wrapper);
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  padding: clamp(0rem, 10.5263157895vw, 10rem) clamp(0rem, 8.4210526316vw, 8rem);
  transform: translateY(-10px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 100;
}
@media screen and (max-width: 820px) {
  .l-header_menu_content {
    width: 100%;
    width: 90%;
    right: 5%;
  }
}
.l-header_menu_content .c-btn {
  justify-content: flex-start;
  margin-top: 0;
}
@media (hover: hover) {
  .l-header_menu_content .c-btn a:hover {
    background-color: var(--color-base);
    color: var(--color-white);
  }
}
.l-header_menu_nav {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 25px;
}
.l-header_menu_list {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  width: 46%;
}
@media screen and (max-width: 820px) {
  .l-header_menu_list {
    width: 100%;
  }
}
.l-header_menu_list li:first-child a {
  font-weight: bold;
}
.l-header_menu_list li a {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  gap: 10px;
  padding: 5px 0;
  color: var(--color-base);
  text-decoration: none;
  font-size: 15px;
  line-height: 1.4;
}
@media (hover: hover) {
  .l-header_menu_list li a:hover {
    color: var(--color-orange);
    text-decoration: underline;
  }
}
.l-header_menu_links {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  gap: 24px;
  margin-bottom: 25px;
}
.l-header_menu_links a {
  color: var(--color-base);
  text-decoration: none;
  font-size: 15px;
  font-weight: bold;
}
@media (hover: hover) {
  .l-header_menu_links a:hover {
    color: var(--color-orange);
    text-decoration: underline;
  }
}
.l-header_menu_map_btn {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  width: 100% !important;
  padding: 12px 20px;
  background-color: var(--color-orange);
  color: var(--color-white);
  text-decoration: none;
  border-radius: 25px;
  font-weight: bold;
  font-size: 14px;
  gap: 8px;
  transition: all 0.2s ease;
}
@media (hover: hover) {
  .l-header_menu_map_btn:hover {
    background-color: #e67e22;
    transform: translateY(-1px);
  }
}
.l-header_menu_map_btn .icon {
  width: 16px;
  height: 16px;
  background-image: url(../img/icon/icon_head_pin.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.l-header_menu.is-open .l-header_menu_btn_line:nth-child(1) {
  transform: rotate(45deg) translate(3px, 3px);
}
@media screen and (max-width: 820px) {
  .l-header_menu.is-open .l-header_menu_btn_line:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px);
  }
}
.l-header_menu.is-open .l-header_menu_btn_line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.l-header_menu.is-open .l-header_menu_btn_line:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}
@media screen and (max-width: 820px) {
  .l-header_menu.is-open .l-header_menu_btn_line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
}
.l-header_menu.is-open .l-header_menu_content {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

/*
====>> サイトのレイアウトに関わるデフォルトスタイリング <<====

・このファイルはベースのスタイルになるので、原則オーバーライド(上書き)はしない事
・共通パーツの大まかレイアウトやサイトの幅に関するスタイルを格納

*/
/*		コンテンツタイプと幅
-----------------------------------------------------*/
.l-footer {
  margin-top: clamp(0rem, 15.7894736842vw, 15rem);
  padding: 95px 2.5% 80px;
  background-color: var(--color-footer-wrapper);
}
@media screen and (max-width: 820px) {
  .l-footer {
    margin-top: clamp(0rem, 15.7894736842vw, 15rem);
    padding: clamp(0rem, 10vw, 9.5rem) clamp(0rem, 0.2631578947vw, 0.25rem) clamp(0rem, 8.4210526316vw, 8rem);
  }
}
.l-footer_title {
  margin-bottom: 60px;
  text-align: center;
}
@media screen and (max-width: 820px) {
  .l-footer_title {
    margin-bottom: clamp(3.8rem, 6.3157894737vw, 6rem);
  }
}
@media screen and (max-width: 767px) {
  .l-footer_title {
    text-align: left;
  }
}
.l-footer_title .en {
  font-size: clamp(2.3rem, 3.25vw, 3.9rem);
  font-weight: bold;
  letter-spacing: 0.1em;
}
.l-footer_title .ja {
  font-size: clamp(1.6rem, 1.8333333333vw, 2.2rem);
  font-weight: bold;
  letter-spacing: 0.1em;
  color: var(--color-base);
}
.l-footer_nav_box {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: row;
  gap: 82px;
  margin-bottom: 50px;
}
@media screen and (max-width: 575px) {
  .l-footer_nav_box {
    flex-direction: column;
    margin-bottom: 0;
    gap: 20px;
  }
}
.l-footer_nav_list {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  gap: 8px;
}
.l-footer_nav_item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  gap: 10px;
  font-size: clamp(1.4rem, 1.3333333333vw, 1.6rem);
  font-weight: bold;
  letter-spacing: 0.1em;
}
.l-footer_nav_item a {
  font-weight: normal;
  text-decoration: initial;
}
@media (hover: hover) {
  .l-footer_nav_item a:hover {
    text-decoration: underline;
  }
}
.l-footer_nav_item:first-of-type a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  gap: 10px;
  font-weight: bold;
}
.l-footer_nav_btn {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: row;
  gap: 40px;
  margin-bottom: 50px;
}
@media screen and (max-width: 949px) {
  .l-footer_nav_btn {
    margin-bottom: clamp(2.5rem, 5.2631578947vw, 5rem);
  }
}
@media screen and (max-width: 820px) {
  .l-footer_nav_btn {
    margin-top: 50px;
  }
}
@media screen and (max-width: 767px) {
  .l-footer_nav_btn {
    gap: 20px;
  }
}
@media screen and (max-width: 599px) {
  .l-footer_nav_btn {
    flex-direction: column;
    gap: 15px;
  }
}
@media screen and (max-width: 575px) {
  .l-footer_nav_btn {
    align-items: initial;
  }
}
.l-footer_nav_btn .c-btn {
  margin-top: 0;
  padding: 13px 20px;
}
@media screen and (max-width: 949px) {
  .l-footer_nav_btn .c-btn {
    padding: 0;
  }
}
@media screen and (max-width: 575px) {
  .l-footer_nav_btn .c-btn a {
    max-width: 100%;
    width: 100%;
  }
}
@media (hover: hover) {
  .l-footer_nav_btn .c-btn a:hover {
    background-color: var(--color-base);
    color: var(--color-white);
  }
}
.l-footer_nav_menu {
  margin-bottom: 20px;
}
.l-footer_nav_menu_list {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
}
@media screen and (max-width: 767px) {
  .l-footer_nav_menu_list {
    justify-content: flex-start;
  }
}
.l-footer_nav_menu_item {
  border-left: 1px solid var(--color-base);
  line-height: 1.2;
}
.l-footer_nav_menu_item:last-child {
  border-right: 1px solid var(--color-base);
}
.l-footer_nav_menu_item a {
  padding: 0 20px;
  font-weight: bold;
  text-decoration: initial;
}
@media (hover: hover) {
  .l-footer_nav_menu_item a:hover {
    text-decoration: underline;
  }
}
.l-footer .c-copyright {
  text-align: center;
}

/*		コンテンツタイプと幅
-----------------------------------------------------*/
.l-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

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