@charset "UTF-8";
/*------------------------------------------------------------
	サイト幅でセンタリング
------------------------------------------------------------*/
/*------------------------------------------------------------
	breakpoint
------------------------------------------------------------*/
/*------------------------------------------------------------
	フォント
------------------------------------------------------------*/
/*------------------------------------------------------------
	clearfix
------------------------------------------------------------*/
/*------------------------------------------------------------
	flex
------------------------------------------------------------*/
/*------------------------------------------------------------
	Other
------------------------------------------------------------*/
/*------------------------------------------------------------
	デフォルトスタイル
------------------------------------------------------------*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}
@media screen and (max-width: 850px) {
  html {
    font-size: 2.6666666667vw;
  }
}

body {
  color: #000;
  font-size: 1.8rem;
  line-height: 1.6;
  font-family: "Noto Sans JP", sans-serif;
  background-color: #FFF;
}
@media screen and (max-width: 850px) {
  body {
    font-size: 1.4rem;
  }
}

code,
pre,
kbd,
samp {
  font-family: "JetBrains Mono", monospace;
}

a {
  color: #3498db;
  text-decoration: none;
  transition: 0.3s;
}
a:hover {
  opacity: 0.7;
}

ul,
ol {
  list-style: none;
}

/*------------------------------------------------------------
	レイアウト
------------------------------------------------------------*/
#container {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
  background-color: #E2E2E2;
}

/*------------------------------------------------------------
	ヘッダー
------------------------------------------------------------*/
#gHeader {
  background: #fff;
  border-bottom: 1px solid #e0e0e0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
#gHeader .header_inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#gHeader .header_inner h1 {
  font-size: 2.4rem;
  font-weight: bold;
}
#gHeader .header_inner h1 a {
  color: #3498db;
}
@media screen and (max-width: 850px) {
  #gHeader .header_inner h1 {
    font-size: 2rem;
  }
}
#gHeader .header_inner #gNavi ul {
  display: flex;
  gap: 2rem;
  align-items: center;
}
#gHeader .header_inner #gNavi ul li a {
  font-size: 1.6rem;
  font-weight: 500;
  color: #333;
  transition: color 0.3s;
}
#gHeader .header_inner #gNavi ul li a:hover {
  color: #3498db;
}
@media screen and (max-width: 850px) {
  #gHeader .header_inner #gNavi ul li a {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 850px) {
  #gHeader .header_inner {
    padding: 1rem 1.5rem;
  }
}

/*------------------------------------------------------------
	共通メニュー
------------------------------------------------------------*/
.menu_logo {
  display: block;
  position: absolute;
  left: 2rem;
  top: 2rem;
  z-index: 102;
  width: 12rem;
  height: auto;
  pointer-events: auto;
  text-decoration: none;
}
.menu_logo img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}
@media screen and (max-width: 1100px) {
  .menu_logo {
    left: 1.2rem;
    top: 1.2rem;
    width: 8rem;
  }
}

.menu_container {
  opacity: 1;
  visibility: visible;
  position: fixed;
  top: 2rem;
  right: 0;
  width: fit-content;
  z-index: 100;
  transition: opacity 0.5s ease, visibility 0.5s ease, transform 0.5s ease;
  transform: translateY(0);
  pointer-events: auto;
}
@media screen and (max-width: 1100px) {
  .menu_container {
    top: 1.2rem;
    left: 0;
    right: 0;
    width: 100%;
    display: flex;
    justify-content: flex-end;
    padding-inline: 1.2rem;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }
}
.menu_container.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}
.menu_container .menu_toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 4.4rem;
  height: 4.4rem;
  background: #343434;
  border: none;
  border-radius: 0.4rem;
  cursor: pointer;
  padding: 0;
  gap: 0.4rem;
  position: relative;
  z-index: 101;
  pointer-events: auto;
}
.menu_container .menu_toggle span {
  display: block;
  width: 2.2rem;
  height: 0.2rem;
  background: #fff;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
@media screen and (max-width: 1100px) {
  .menu_container .menu_toggle {
    display: flex;
  }
}
.menu_container.is-open .menu_toggle span:nth-child(1) {
  transform: translateY(0.6rem) rotate(45deg);
}
.menu_container.is-open .menu_toggle span:nth-child(2) {
  opacity: 0;
}
.menu_container.is-open .menu_toggle span:nth-child(3) {
  transform: translateY(-0.6rem) rotate(-45deg);
}
.menu_container .menu_list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6.4rem;
  list-style: none;
  background: #343434;
  font-family: "JetBrains Mono", monospace;
  padding: 1.2rem 7.6rem 1.2rem 3.3rem;
  height: 6.5rem;
}
.menu_container .menu_list li {
  margin: 0;
}
.menu_container .menu_list li a {
  display: block;
  color: #fff;
  text-decoration: none;
  font-size: 1.4rem;
  font-weight: 700;
  transition: color 0.3s;
}
.menu_container .menu_list li a:hover {
  color: #3498db;
}
@media screen and (max-width: 850px) {
  .menu_container .menu_list li a {
    font-size: 1.2rem;
    padding: 0.4rem 0.8rem;
  }
}
.menu_container .menu_list li a.menu_contact_button {
  background: #D84D5B;
  color: #fff;
  padding: 1rem 3rem;
  width: fit-content;
}
.menu_container .menu_list li .menu_sub_list {
  list-style: none;
  display: flex;
  gap: 1.6rem;
  margin-top: 0.6rem;
}
.menu_container .menu_list li .menu_sub_list a {
  font-size: 1.2rem;
  font-weight: 500;
}
.menu_container .menu_list.sp_menu {
  display: none;
}
@media screen and (max-width: 1100px) {
  .menu_container .menu_list.pc_menu {
    display: none;
  }
  .menu_container .menu_list.sp_menu {
    display: none;
    flex-direction: column;
    gap: 1.6rem;
    padding: 0;
    position: static;
    width: 100%;
    height: auto;
    background: transparent;
    text-align: left;
    align-items: flex-start;
    position: relative;
    z-index: 2;
  }
  .menu_container .menu_list li {
    width: 100%;
  }
  .menu_container .menu_list a {
    font-size: 1.8rem;
    padding: 0.4rem 0;
  }
  .menu_container .menu_list .menu_sub_list {
    flex-direction: column;
    gap: 0.8rem;
    margin-top: 0.6rem;
    padding-left: 1.2rem;
  }
  .menu_container .menu_list .menu_sub_list a {
    font-size: 1.4rem;
    position: relative;
    padding-left: 1.6rem;
  }
  .menu_container .menu_list .menu_sub_list a::before {
    content: "▶";
    color: #fff;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1rem;
  }
}
@media screen and (max-width: 1100px) {
  .menu_container.is-open .menu_list.sp_menu {
    display: flex;
    animation: menuListIn 0.45s ease both;
  }
}
@media screen and (max-width: 1100px) {
  .menu_container.is-open {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 6.4rem 2.4rem 3.2rem;
    background: transparent;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 2.4rem;
    pointer-events: auto;
  }
}
@media screen and (max-width: 1100px) {
  .menu_container.is-open .menu_toggle {
    position: fixed;
    top: 1.2rem;
    right: 1.2rem;
  }
}
.menu_container::before {
  content: "";
  display: none;
}
.menu_container .menu_social {
  display: none;
}
@media screen and (max-width: 1100px) {
  .menu_container.is-open::before {
    display: block;
    position: fixed;
    inset: 0;
    background: #000;
    transform: translateY(-100%);
    animation: menuOverlayIn 0.5s ease forwards;
    z-index: 0;
  }
}
@media screen and (max-width: 1100px) {
  .menu_container.is-open .menu_social {
    display: flex;
    justify-content: flex-start;
    margin-top: 2.4rem;
    position: relative;
    z-index: 2;
    animation: menuItemIn 0.35s ease both;
    animation-delay: 0.7s;
  }
}
.menu_container.is-open .menu_instagram {
  display: inline-flex;
  width: 3.2rem;
  height: 3.2rem;
}
.menu_container.is-open img {
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 1100px) {
  .menu_container.is-open .menu_list.sp_menu > li {
    animation: menuItemIn 0.35s ease both;
  }
  .menu_container.is-open .menu_list.sp_menu > li:nth-child(1) {
    animation-delay: 0.2s;
  }
  .menu_container.is-open .menu_list.sp_menu > li:nth-child(2) {
    animation-delay: 0.25s;
  }
  .menu_container.is-open .menu_list.sp_menu > li:nth-child(3) {
    animation-delay: 0.3s;
  }
  .menu_container.is-open .menu_list.sp_menu > li:nth-child(4) {
    animation-delay: 0.35s;
  }
  .menu_container.is-open .menu_list.sp_menu > li:nth-child(5) {
    animation-delay: 0.4s;
  }
  .menu_container.is-open .menu_list.sp_menu > li:nth-child(6) {
    animation-delay: 0.45s;
  }
  .menu_container.is-open .menu_list.sp_menu > li:nth-child(7) {
    animation-delay: 0.5s;
  }
  .menu_container.is-open .menu_list.sp_menu > li:nth-child(8) {
    animation-delay: 0.55s;
  }
  .menu_container.is-open .menu_list.sp_menu > li:nth-child(9) {
    animation-delay: 0.6s;
  }
  .menu_container.is-open .menu_list.sp_menu .menu_sub_list li {
    animation: menuItemIn 0.35s ease both;
  }
  .menu_container.is-open .menu_list.sp_menu .menu_sub_list li:nth-child(1) {
    animation-delay: 0.45s;
  }
  .menu_container.is-open .menu_list.sp_menu .menu_sub_list li:nth-child(2) {
    animation-delay: 0.5s;
  }
}

body.top-page .menu_container {
  opacity: 0;
  visibility: hidden;
  transform: translateY(-20px);
  pointer-events: none;
}
@media screen and (max-width: 1100px) {
  body.top-page .menu_container {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }
}
body.top-page .menu_container.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

@keyframes menuOverlayIn {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}
@keyframes menuListIn {
  from {
    opacity: 0;
    transform: translateX(24px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes menuItemIn {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/*------------------------------------------------------------
	フッター
------------------------------------------------------------*/
#gFooter {
  background: #fff;
  border-top: 0.1rem solid #e0e0e0;
  margin-top: auto;
}
#gFooter .footer_inner {
  max-width: 120rem;
  margin: 0 auto;
  padding: 4rem 2rem 2rem;
}
#gFooter .footer_inner .footer_content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 3rem;
  gap: 4rem;
}
@media screen and (max-width: 850px) {
  #gFooter .footer_inner .footer_content {
    flex-direction: column;
    gap: 3rem;
  }
}
#gFooter .footer_inner .footer_content .footer_left .footer_logo {
  margin-bottom: 2rem;
}
#gFooter .footer_inner .footer_content .footer_left .footer_logo img {
  max-width: 20rem;
  height: auto;
}
#gFooter .footer_inner .footer_content .footer_left .footer_contact .footer_address {
  margin-bottom: 2rem;
}
#gFooter .footer_inner .footer_content .footer_left .footer_contact .footer_address p {
  font-size: 1.8rem;
  color: #000;
  line-height: 1.8;
  margin-bottom: 0.5rem;
}
#gFooter .footer_inner .footer_content .footer_left .footer_contact .footer_social .footer_instagram {
  display: inline-block;
  transition: opacity 0.3s;
}
#gFooter .footer_inner .footer_content .footer_left .footer_contact .footer_social .footer_instagram:hover {
  opacity: 0.7;
}
#gFooter .footer_inner .footer_content .footer_left .footer_contact .footer_social .footer_instagram img {
  width: 3rem;
  height: 3rem;
}
#gFooter .footer_inner .footer_content .footer_right {
  display: flex;
  gap: 4rem;
  flex: 1;
  justify-content: flex-end;
}
@media screen and (max-width: 850px) {
  #gFooter .footer_inner .footer_content .footer_right {
    flex-direction: column;
    gap: 2rem;
    width: 100%;
  }
}
#gFooter .footer_inner .footer_content .footer_right .footer_nav_column .footer_nav_list li {
  margin-bottom: 1rem;
}
#gFooter .footer_inner .footer_content .footer_right .footer_nav_column .footer_nav_list li a {
  font-size: 1.4rem;
  font-weight: 700;
  color: #000;
  transition: opacity 0.3s;
}
#gFooter .footer_inner .footer_content .footer_right .footer_nav_column .footer_nav_list li a:hover {
  opacity: 0.7;
}
#gFooter .footer_inner .footer_content .footer_right .footer_nav_column .footer_nav_list li.footer_nav_parent > a {
  font-weight: 700;
}
#gFooter .footer_inner .footer_content .footer_right .footer_nav_column .footer_nav_list li.footer_nav_parent .footer_nav_sub {
  margin-top: 0.8rem;
  padding-left: 0;
}
#gFooter .footer_inner .footer_content .footer_right .footer_nav_column .footer_nav_list li.footer_nav_parent .footer_nav_sub li {
  margin-bottom: 0.6rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
#gFooter .footer_inner .footer_content .footer_right .footer_nav_column .footer_nav_list li.footer_nav_parent .footer_nav_sub li::before {
  content: "▶";
  font-size: 1rem;
  color: #000;
  flex-shrink: 0;
}
#gFooter .footer_inner .footer_content .footer_right .footer_nav_column .footer_nav_list li.footer_nav_parent .footer_nav_sub li a {
  font-size: 1.3rem;
}
#gFooter .footer_inner .footer_copyright {
  text-align: center;
}
#gFooter .footer_inner .footer_copyright p {
  font-size: 1.6rem;
  color: #000;
  font-weight: 700;
}
@media screen and (max-width: 850px) {
  #gFooter .footer_inner .footer_copyright p {
    font-size: 1rem;
  }
}

/*------------------------------------------------------------
	汎用スタイル
------------------------------------------------------------*/
.flex {
  display: flex;
  flex-wrap: wrap;
}

.flexB {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.flexC {
  display: flex;
  justify-content: center;
  align-items: center;
}

@media screen and (min-width: 851px) {
  .sp:not(.pc2) {
    display: none !important;
  }
}
@media screen and (max-width: 850px) {
  .pc {
    display: none !important;
  }
  .pc1 {
    display: none !important;
  }
  .pc2:not(.sp) {
    display: none !important;
  }
}
@media screen and (min-width: 1441px) {
  .pc2 {
    display: none !important;
  }
}
@media screen and (min-width: 851px) and (max-width: 1440px) {
  .pc1 {
    display: none !important;
  }
}
.section_title {
  display: flex;
  gap: 1.5rem;
  align-items: baseline;
  text-align: center;
  width: 91.2rem;
  margin-inline: auto;
  max-width: 90%;
}
@media screen and (max-width: 850px) {
  .section_title {
    display: grid;
    grid-template-columns: 1rem auto;
    gap: 0.5rem;
    align-items: center;
  }
}
@media screen and (max-width: 850px) {
  .section_title img {
    grid-column: 1/2;
  }
}
.section_title .en_text {
  font-size: 6.4rem;
  font-weight: 700;
  transform: skewX(-8deg);
  font-family: "Source Sans 3", sans-serif;
}
@media screen and (max-width: 850px) {
  .section_title .en_text {
    font-size: 4.8rem;
    grid-column: 1/3;
    text-align: start;
    height: 6rem;
  }
}
.section_title .ja_text {
  font-size: 1.8rem;
  font-weight: 700;
  grid-column: 2/3;
}
@media screen and (max-width: 850px) {
  .section_title .ja_text {
    font-size: 1.6rem;
    text-align: start;
    margin-left: 1.1rem;
  }
}