@charset "UTF-8";

:root {
  /* 色管理用の変数 */
  --black-color: #000;
  --white-color: #fff;
  --main-color: #7e2223;
  --gray-color: #333333;
  --gray-color02: #fafafa;
  --primary-color: #1863af;
  --accent-color: #fc7f24;
}

:root {
  /* コンテンツ幅管理用の変数 */
  --content-width-sm: 600px;
  --content-width: 768px;
  --content-width-lg: 1025px;
}

:root {
  /* z-index管理用の変数 */
  --z-index-back: -1;
  --z-index-default: 1;
  --z-index-page-top: 50;
  --z-index-header: 100;
  --z-index-menu: 150;
}

html {
  scroll-behavior: smooth;
}

body {
  background-image: url(../img/bg_img.jpg);
  background-size: cover;
  background-position: center;
  font-family: "Noto Serif JP", serif;
  line-height: 1.5;
  letter-spacing: 0.05em;
}

.sp-only {
  display: block;
}
.pc-only {
  display: none;
}
@media screen and (min-width: 1025px) {
  .sp-only {
    display: none;
  }
  .pc-only {
    display: block;
  }
}

/* ------------------------------------------------- */
/* セクション画像 */
.m_section_img_box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 50%;
  margin: 0 auto;
}
@media screen and (min-width: 1025px) {
  .m_section_img_box {
    width: 60%;
  }
}
.flag_box {
  width: 68%;
}

.m_section_img_wrap {
  width: 40px;
  height: 108px;
  z-index: var(--z-index-back);
}
@media screen and (min-width: 1025px) {
  .m_section_img_wrap {
    width: 80px;
    height: 176px;
  }
}
.m_section_img_wrap:nth-child(odd) {
  transform: rotate(45deg);
}
.m_section_img_wrap:nth-child(even) {
  transform: rotate(-45deg);
}
.flag_wrap {
  width: 64px;
  height: 100px;
}
@media screen and (min-width: 1025px) {
  .flag_wrap {
    width: 128px;
  }
}

.u_flag_img {
  transform: scale(-1, 1);
}

.m_section_img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
/* ./セクション画像 */
/* ------------------------------------------------- */

/* ------------------------------------------------- */
/* layout */
/* ------------------------------------------------- */
/* l.header */
.l_header_logo_title {
  position: absolute;
  top: 15%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: var(--z-index-header);
}
@media screen and (min-width: 768px) {
  .l_header_logo_title {
    top: 14%;
  }
}
@media screen and (min-width: 1025px) {
  .l_header_logo_title {
    top: 9%;
    left: 15%;
    margin-top: 50px;
  }
}
.l_post_header_logo_title {
  /* works.html */
  top: 7%;
  left: 20%;
}
@media screen and (min-width: 768px) {
  .l_post_header_logo_title {
    top: 14%;
  }
}
@media screen and (min-width: 1025px) {
  .l_post_header_logo_title {
    top: 9%;
  }
}


.l_header_logo_wrap {
  display: inline-block;
  width: 120px;
  height: 120px;
}
.l_post_header_logo_wrap {
  /* works.html */
  width: 64px;
  height: 64px;
}
@media screen and (min-width: 768px) {
  .l_post_header_logo_wrap {
    width: 120px;
    height: 120px;
  }
}

.l_header_logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
}

.m_ham_nav {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-image: url(../img/bg_img.jpg);
  text-align: center;
  height: 100%;
  /* top_kv_labelを中央揃え */
  display: flex;
  justify-content: center;
}

.m_ham_nav_list {
  width: 80%;
  height: 70%;
  background-color: var(--main-color);
  position: absolute;
  bottom: 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 600px) {
  .m_ham_nav_list {
    width: 60%;
  }
}
@media screen and (min-width: 768px) {
  .m_ham_nav_list {
    width: 50%;
    height: 70%;
  }
}
@media screen and (min-width: 1025px) {
  .m_ham_nav_list {
    width: 40%;
  }
}

.m_ham_nav_item:not(:first-child) {
  margin: 60px 0 0;
}

.m_ham_nav_link {
  font-size: 24px;
  font-weight: 700;
  color: var(--white-color);
  font-family: "Jacques Francois", serif;
}
.m_ham_nav_link:hover {
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .m_ham_nav_link {
    font-size: 28px;
  }
}
@media screen and (min-width: 1025px) {
  .m_ham_nav_link {
    font-size: 32px;
  }
}
/* ./ l.header */
/* ------------------------------------------------- */
.l_section {
  margin-top: 120px;
  position: relative;
}
@media screen and (min-width: 1025px) {
  .l_section {
    margin-top: 200px;
  }
}

.l_section_title {
  text-align: center;
}

.l_section_main_title {
  font-size: 32px;
  font-weight: bold;
  font-family: "Jacques Francois", serif;
}
@media screen and (min-width: 1025px) {
  .l_section_main_title {
    font-size: 48px;
  }
}

.l_section_sub_title {
  margin-top: 8px;
  font-weight: bold;
}
/* ./layout */
/* ------------------------------------------------- */

/* ------------------------------------------------- */
/* module */
.m_btn {
  width: 100%;
  height: 100%;
  border-radius: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.16);
  color: var(--white-color);
  font-weight: bold;
  letter-spacing: 0.1em;
  overflow: hidden;
}

.m_btn:hover {
  opacity: 0.9;
}
.m_btn__right-arrow {
  background: var(--main-color);
  position: relative;
}

.m_btn__right-arrow::before {
  content: "";
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  border-width: 6px;
  border-style: solid;
  border-color: transparent transparent transparent var(--white-color);
}
/* about_btn */
.m_small_btn {
  color: var(--main-color);
  background-color: var(--white-color);
}
.m_small_btn__right-arrow {
  position: relative;
}
.m_small_btn__right-arrow::before {
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  border-width: 6px;
  border-style: solid;
  border-color: transparent transparent transparent var(--main-color);
}

/* ./module */
/* ------------------------------------------------- */

/* ------------------------------------------------- */
/* top_kv */
.top_kv {
  height: 100vh;
  position: relative;
}

.top_kv_inner {
  height: 100%;
  background: var(--main-color);
  /* top_kv_labelを中央揃え */
  display: flex;
  justify-content: center;
}

.top_kv_label {
  width: 80%;
  height: 70%;
  background-color: var(--white-color);
  position: absolute;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 600px) {
  .top_kv_label {
    width: 60%;
  }
}
@media screen and (min-width: 768px) {
  .top_kv_label {
    width: 50%;
    height: 70%;
  }
}
@media screen and (min-width: 1025px) {
  .top_kv_label {
    width: 40%;
  }
}

.top_label_box {
  text-align: center;
  font-weight: bold;
}

.top_label_title {
  margin-top: 8px;
  font-size: 28px;
  font-family: "Jacques Francois", serif;
}

.top_label_content {
  margin-top: 8px;
  font-size: 24px;
  letter-spacing: 0.1em;
  color: var(--main-color);
}

.top_label_content_top {
  font-family: "Italianno", cursive;
}

.top_label_content_main {
  font-family: "Italianno", cursive;
}

.top_label_content_sub {
  margin-top: 24px;
  font-size: 20px;
  font-family: "Jacques Francois", serif;
  color: var(--black-color);
}

.top_label_born {
  font-size: 20px;
}

@media screen and (min-width: 768px) {
  .top_label_title {
    font-size: 36px;
  }
  .top_label_content {
    font-size: 32px;
  }
  .top_label_content_sub,
  .top_label_born {
    font-size: 24px;
  }
}

.top_kv_scroll_img_wrap {
  width: 56px;
  margin: 72px auto 0;
}
@media screen and (min-width: 1025px) {
  .top_kv_scroll_img_wrap {
    width: 80px;
  }
}

.top_kv_scroll_img {
  width: 100%;
  object-fit: cover;
  display: block;
}

.btn_container {
  position: absolute;
  top: 0%;
  left: 100%;
  transform: translate(-50%, -50%);
  z-index: var(--z-index-header);
}

.m_ham {
  width: 56px;
}
@media screen and (min-width: 1025px) {
  .m_ham {
    width: 80px;
  }
}

.m_ham_img {
  width: 100%;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: block;
}

.open_menu {
  opacity: 1;
}
.open_menu.is-active {
  opacity: 0;
  transition: 1s;
}

.close_menu {
  opacity: 0;
}
.close_menu.is-active {
  opacity: 1;
  transition: 1s;
}
/* ./ top_kv */
/* ------------------------------------------------- */

/* ------------------------------------------------- */
/* welcome */
.welcome {
  margin: 120px auto 0;
  width: 90%;
}

.welcome_inner {
  background-image: url(../img/start.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 64px;
}
@media screen and (min-width: 1025px) {
  .welcome_inner {
    margin-top: 64px;
  }
}

.welcome_text_wrap {
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  width: 500px;
  height: auto;
  padding: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  text-shadow: 1px 1px 0 #fff, -1px -1px 0 #fff, -1px 1px 0 #fff,
  1px -1px 0 #fff, 0px 1px 0 #fff, 0-1px 0 #fff, -1px 0 0 #fff, 1px 0 0 #fff;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .welcome_text_wrap {
    padding: 90px;
  }
}

.welcome_inner_text,
.welcome_inner_text02 {
  font-size: 16px;
  font-weight: bold;
  line-height: 1.7;
}
@media screen and (min-width: 768px) {
  .welcome_inner_text,
  .welcome_inner_text02 {
    font-size: 18px;
  }
}

.welcome_inner_text02 {
  margin-top: 16px;
}
/* ./ welcome */
/* ------------------------------------------------- */

/* ------------------------------------------------- */
/* about */
.top_about {
  width: 90%;
  margin-right: auto;
  margin-left: auto;
}
.top_about_box {
  width: 100%;
  margin: 0 auto;
}
@media screen and (min-width: 600px) {
  .top_about_box {
    max-width: 90%;
  }
}
@media screen and (min-width: 768px) {
  .top_about_box {
    max-width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0 32px;
    margin-top: 112px;
  }
}
@media screen and (min-width: 1025px) {
  .top_about_box {
    gap: 0 50px;
  }
}

.top_about_img_wrap {
  width: 100%;
  height: auto;
  margin: 0 auto;
  margin-top: 64px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .top_about_img_wrap {
    width: 360px;
    height: 360px;
    margin: 0;
  }
}

.top_about_img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.top_about_text_box {
  margin-top: 40px;
  background: linear-gradient(rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.7)),
    url("../img/about_text_img.jpg") center/cover;
  padding: 32px;
  color: var(--black-color);
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .top_about_text_box {
    margin-top: 0;
    width: 50%;
  }
}
@media screen and (min-width: 1025px) {
  .top_about_text_box {
    width: 57%;
  }
}

.top_about_text_title_wrap {
  text-align: center;
}

.top_about_text_title {
  font-size: 28px;
  font-family: "Jacques Francois", serif;
}
@media screen and (min-width: 1025px) {
  .top_about_text_title {
    font-size: 32px;
  }
}

.top_about_text_box_unit {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.top_about_text_item_title {
  font-size: 20px;
  font-weight: bold;
  position: relative;
}
@media screen and (min-width: 1025px) {
  .top_about_text_item_title {
    font-size: 24px;
  }
}

.top_about_text_list {
  margin-top: 24px;
  margin-left: 16px;
}

.top_about_text_item {
  line-height: 1.5;
  white-space: nowrap;
  font-weight: bold;
}
.top_about_text_item:first-child {
  margin-top: 16px;
}
.top_about_text_item:not(:first-child) {
  margin-top: 8px;
}
.top_about_text_item_main {
  font-size: 18px;
}

/* ------------- */
/* about_text_pc */
.top_about_text_pc {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 1200px) {
  .top_about_text_pc {
    gap: 0 50px;
  }
}

.top_about_text_pc .top_about_text_list .top_about_text_item {
  height: 32px;
}

.top_about_text_pc .top_about_text_list .top_about_text_item {
  font-size: 16px;
}

.top_about_text_list_main {
  list-style: none;
}
.top_about_text_pc .top_about_text_list_main .top_about_text_item_main {
  font-size: 18px;
}
@media screen and (min-width: 1200px) {
  .top_about_text_pc .top_about_text_list .top_about_text_item {
    font-size: 18px;
  }
  .top_about_text_pc .top_about_text_list_main .top_about_text_item_main {
    font-size: 20px;
  }
}
/* ./top_about_text_pc */
/* --------------- */
.top_about_btn_wrapper {
  margin: 32px auto 0;
  padding-right: 16px;
  padding-left: 16px;
  max-width: calc(177px + 32px);
  height: 40px;
}
/* ./ about */
/* ------------------------------------------------- */

/* ------------------------------------------------- */
/* skills */
.skills_box {
  margin-top: 80px;
}
@media screen and (min-width: 1025px) {
  .skills_box {
    margin-top: 112px;
  }
}

.skills_list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px 0;
}
@media screen and (min-width: 600px) {
  .skills_list {
    max-width: 80%;
    margin: 0 auto;
  }
}
@media screen and (min-width: 768px) {
  .skills_list {
    max-width: none;
    gap: 16px 0;
  }
}

.skills_item {
  width: calc(100% / 2);
  padding: 8px;
}
@media screen and (min-width: 768px) {
  .skills_item {
    width: calc(100% / 3);
  }
  .skills_item:nth-of-type(4),
  .skills_item:nth-of-type(5) {
    width: calc(69% / 2);
  }
}

.skills_item_unit {
  width: 180px;
  margin: 0 auto;
}

.skills_name_box {
  text-align: center;
  font-weight: bold;
}

.skills_name {
  font-size: 24px;
  font-family: "Jacques Francois", serif;
}

.dish_name {
  margin-top: 4px;
}

.skills_img_wrap {
  margin: 16px auto 0;
  width: 50px;
  height: 50px;
  text-align: center;
  perspective: 100vmax;
}
@media screen and (min-width: 1025px) {
  .skills_img_wrap {
    width: 100px;
    height: 100px;
  }
}

.skills_img {
  width: 100%;
  height: 100%;
}

.skills_text {
  margin-top: 16px;
  font-size: 16px;
  letter-spacing: 0.1em;
}
/* ./ skills */
/* ------------------------------------------------- */

/* ------------------------------------------------- */
/* service */
.service_course_box {
  max-width: 90%;
  margin: 80px auto 0;
}
@media screen and (min-width: 1025px) {
  .service_course_box {
    max-width: 80%;
    margin-top: 112px;
  }
}

.service_course_list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 72px 32px;
}
@media screen and (min-width: 1025px) {
  .service_course_list {
    justify-content: space-between;
    gap: 80px;
  }
}

.service_course_item {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .service_course_item {
    width: calc(100% / 2 - 80px);
    margin: 0 auto;
  }
}
@media screen and (min-width: 768px) {
  .service_course_item:nth-of-type(3) {
    width: 100%;
  }
}

.service_course_item_unit {
  width: 320px;
  height: 320px;
  margin: 0 auto;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  position: relative;
}
@media screen and (min-width: 600px) {
  .service_course_item_unit {
    width: 330px;
    height: 330px;
  }
}
@media screen and (min-width: 1025px) {
  .service_course_item_unit {
    width: 400px;
    height: 400px;
  }
}
.service_course_item_unit.img_01 {
  background-image: url(../img/service_horsdoeuvre.png);
}
.service_course_item_unit.img_02 {
  background-image: url(../img/service_potage.png);
}
.service_course_item_unit.img_03 {
  background-image: url(../img/service_poisson.png);
}
.service_course_item_unit.img_04 {
  background-image: url(../img/service_sorbet.png);
}
.service_course_item_unit.img_05 {
  background-image: url(../img/service_viande.png);
}

.service_course_content_wrap {
  margin: 0 auto;
  text-align: center;
  font-weight: bold;
  color: var(--black-color);
  background-color: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  width: 320px;
  height: 320px;
  text-align: center;
  text-shadow: 1px 1px 0 #fff, -1px -1px 0 #fff, -1px 1px 0 #fff,
    1px -1px 0 #fff, 0px 1px 0 #fff, 0-1px 0 #fff, -1px 0 0 #fff, 1px 0 0 #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 600px) {
  .service_course_content_wrap {
    width: 330px;
    height: 330px;
  }
}
@media screen and (min-width: 1025px) {
  .service_course_content_wrap {
    width: 400px;
    height: 400px;
  }
}

.service_course_content_title {
  font-size: 28px;
  white-space: nowrap;
}

.m_num {
  font-size: 16px;
  margin-right: 8px;
}

.service_couse_content_text {
  margin-top: 24px;
  font-size: 14px;
  white-space: nowrap;
}
/* ./ service */
/* ------------------------------------------------- */

/* ------------------------------------------------- */
/* works */
.top_works {
  overflow: hidden;
}

.top_works_list-wrapper {
  position: relative;
}
@media screen and (min-width: 1025px) {
  .top_works_list-wrapper {
    margin-left: auto;
    margin-right: auto;
    height: auto;
  }
}

.top_works_list {
  max-width: var(--content-width-lg);
  width: 100%;
  margin-top: 80px;
}

.top_works_item {
  /* padding: 48px 16px; */
  padding: 0 16px;
  height: 100%;
}
@media screen and (min-width: 1200px) {
  .top_works_item {
    width: 352px;
  }
}

.top_works_title {
  font-size: 24px;
  font-family: "Jacques Francois", serif;
}
@media screen and (min-width: 768px) {
  .top_works_title {
    font-size: 32px;
  }
}

.top_works_link {
  margin: 0 auto;
  max-width: var(--content-width-sm);
}

.top_works_img-wrapper {
  margin-top: 32px;
  position: relative;
}

.top_works_img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}
/* 製作中 */
.on_the_way{
  filter: brightness(0%);
}
.dev {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--white-color);
  font-size: 32px;
  white-space: nowrap;
}

.top_works_dots {
  position: absolute !important;
  left: 50% !important;
  bottom: -90px !important;
  transform: translateX(-50%) !important;
  width: 96px !important;
  height: 16px;
  display: flex;
  justify-content: space-between;
}

.top_works_dots .swiper-pagination-bullet {
  background: var(--main-color);
  width: 16px;
  height: 16px;
  border-radius: 100vh;
  color: transparent;
  border: 2px solid var(--black-color);
}

.top_works_dots .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: var(--main-color);
}

.top_works_nav {
  width: 53px  !important;
  height: 53px  !important;
  background: #fff;
  border-radius: 100vh;
  box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.16);
  position: absolute !important;
  bottom: -109px;
  top: 60% !important;
}

/* .top_works_nav__next {
  left: calc(50% + 96px) !important;
  right: auto !important;
} */
.top_works_nav__prev:after,
.top_works_nav__next:after {
  content: "" !important;
  position: absolute;
  width: 12px;
  height: 12px;
  border-top: 2px solid var(--main-color);
  border-right: 2px solid var(--main-color);
  top: 50%;
  left: 50%;
}
.top_works_nav__prev:after {
  transform: translate(-50%, -50%) rotate(-135deg);
}
.top_works_nav__next:after {
  transform: translate(-50%, -50%) rotate(45deg);
}

.top_works_btn-wrapper {
  margin: 165px auto 0;
  padding-right: 16px;
  padding-left: 16px;
  max-width: calc(344px + 32px);
  height: 56px;
}
/* ./ works */
/* ------------------------------------------------- */

/* ------------------------------------------------- */
/* price */
.top_price {
  margin-bottom: 80px;
}

table {
  width: 90%;
  margin: 80px auto 0;
  text-align: center;
  font-weight: bold;
  table-layout: fixed;
}
tr:nth-child(even) {
  background-color: var(--main-color);
  color: var(--white-color);
  opacity: 0.9;
}
table, tr, th, td {
  border: solid 1px black;
}

table th, table td {
  height: 64px;
}
@media screen and (min-width: 768px) {
  table th, table td {
    height: 80px;
  }
}

.table_main_title,
.table_sub_title,
.table_price,
.table_remarks {
  vertical-align: middle;
  padding: 4px;
}

.table_main_title {
  font-size: 10px;
  text-align: center;
  color: var(--main-color);
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .table_main_title {
    font-size: 24px;
  }
}

.table_sub_title {
  font-size: 10px;
  text-align: center;
  white-space: nowrap;
}
.table_price {
  font-size: 14px;
}
.table_remarks,
.u_blank {
  font-size: 8px;
}
.u_three {
  font-size: 11px;
}
@media screen and (min-width: 768px) {
  .table_sub_title,
  .table_price {
    font-size: 20px;
  }
  .table_remarks,
  .u_blank {
    font-size: 12px;
  }
}

.price_attention {
  max-width: 90%;
  margin: 16px auto 0;
}
@media screen and (min-width: 768px) {
  .price_attention {
    margin: 32px auto 0;
  }
}

.price_attention_message {
  font-size: 10px;
}
@media screen and (min-width: 768px) {
  .price_attention_message {
    font-size: 20px;
  }
}

/* ./ price */
/* ------------------------------------------------- */

/* ------------------------------------------------- */
/* footer */
.l_footer {
  height: 100vh;
  position: relative;
}

.l_footer_inner {
  height: 100%;
  background-color: var(--main-color);
  /* top_kv_labelを中央揃え */
  display: flex;
  justify-content: center;
  position: relative;
}

.l_footer_logo_wrap {
  margin-top: 50px;
  background-color: #fff;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  box-shadow: 0px 0px 8px 15px #e8e6e6 inset;
  position: relative;
}
@media screen and (min-width: 1025px) {
  .l_footer_logo_wrap {
    margin-top: 0;
    position: absolute;
    top: 40px;
    left: 100px;
  }
}

.l_footer_logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 120px;
  transform: rotate(-45deg);
  z-index: 200;
}

.l_footer_logo_img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.l_footer-nav_list {
  display: flex;
  justify-content: center;
  gap: 0 16px;
}

.l_footer_label {
  width: 80%;
  height: 64%;
  background-color: var(--white-color);
  position: absolute;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 600px) {
  .l_footer_label {
    width: 60%;
  }
}
@media screen and (min-width: 768px) {
  .l_footer_label {
    width: 40%;
  }
}
@media screen and (min-width: 1025px) {
  .l_footer_label {
    height: 74%;
  }
}

.l_footer_label_title {
  margin-top: 16px;
  font-size: 32px;
  font-family: "Jacques Francois", serif;
}

.l_footer-nav {
  margin-top: 56px;
}

.l_footer-nav_link {
  font-family: "Jacques Francois", serif;
}

.l_footer_to_top {
  width: 56px;
  position: absolute;
  top: 0%;
  left: 100%;
  transform: translate(-50%, -50%);
  z-index: var(--z-index-header);
}
@media screen and (min-width: 1025px) {
  .l_footer_to_top {
    width: 80px;
  }
}

.l_footer_to_top_img {
  width: 100%;
  height: auto;
}

.l_footer_cr {
  display: block;
  margin-top: 48px;
  font-weight: normal;
}

.l_footer_cr_en {
  font-family: "Jacques Francois", serif;
}
/* ./ footer */
/* ------------------------------------------------- */


/* ------------------------------------------------- */
/* ------------------------------------------------- */
/* works.html */
/* works layout */
.l_works_title {
  margin-top: 30px;
}

.l_works_container {
  margin-top: 50px;
  padding: 0 16px 100px;
}
@media screen and (min-width: 768px) {
  .l_works_container {
    max-width: 80%;
    margin: 100px auto 0;
  }
}
/* ./works layout */
/* module */
.m_meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.m_meta_date {
  color: var(--gray-color);
  font-size: 12px;
  font-weight: bold;
}
.m_meta_cat {
  color: var(--primary-color);
  font-size: 12px;
  font-weight: bold;
  width: 116px;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--primary-color);
  border-radius: 5px;
}
/* ./module */

.works_article:not(:first-child) {
  margin-top: 50px;
}
@media screen and (min-width: 768px) {
  .works_article:not(:first-child) {
    margin-top: 150px;
  }
}

.works_article_link {
  display: flex;
  justify-content: center;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .works_article_link {
    flex-direction: row;
    gap: 0 40px;
  }
  .works_article:nth-child(even) .works_article_link {
    flex-direction: row-reverse;
  }
}

.works_img_wrap {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .works_img_wrap {
    width: 50%;
  }
}

.works_img {
  width: 100%;
  height: 100%;
}

.works_meta {
  margin-top: 20px;
}

.works_content_wrapper {
  margin-top: 16px;
}
@media screen and (min-width: 768px) {
  .works_content_wrapper {
    width: 50%;
  }
}

.works_content_text:not(:first-child) {
  margin-top: 8px;
}

.works_content_text.works_desc {
  margin-top: 16px;
}

/* ./works.html */
/* ------------------------------------------------- */
/* ------------------------------------------------- */


/* js */
/* ------------------------------------------------- */
.body.is-active {
  overflow: hidden;
}

.m_ham_nav {
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s;
}

.m_ham_nav.is-active {
  opacity: 1;
  pointer-events: inherit;
}

/* common js */
.skills_item_unit.is-3dRotate,
.service_course_item_unit.is-3dRotate {
  transform: rotate3d(1, 0, 0.1, 360deg);
  transition: 1s;
}