@charset "UTF-8";
/*====================================================================================
1. START COMMON BASE.
====================================================================================*/
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Jost:wght@100..900&display=swap");
* {
  box-sizing: border-box;
}

:root {
  --orange: #ff9000;
  --yellow: #f2e400;
  --red: #ed0000;
  --gray: #f0f0f0;
  --font-Noto-en: "Jost", sans-serif;
}

html {
  font-size: 62.5%;
  overflow-y: auto;
  line-height: 1.6;
}

:where(html:not(.sg-cms *)) {
  padding: 0;
  margin: 0;
}

:where(figure:not(.sg-cms *)) {
  padding: 0;
  margin: 0;
}

body {
  font-family: "Noto Sans JP", "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", "Yu Gothic", "ヒラギノ角ゴシック ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 1.6rem;
  line-height: 1.8;
  color: #4d4d4d;
}
body.lb-disable-scrolling {
  position: fixed;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  body img {
    width: auto;
    height: auto;
    max-width: 100%;
  }
}
@media only screen and (max-width: 47.9375em) {
  body {
    font-size: 1.4rem;
    line-height: 1.4;
  }
}

.l-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  min-width: 32rem;
  overflow: hidden;
}

@media only screen and (min-width: 768px) and (max-width: 1200px) {
  body {
    min-width: 120rem;
  }
  body .l-header {
    width: 120rem;
  }
  body .l-wrapper {
    max-width: 120rem;
  }
}
.w-brall {
  word-break: break-all;
}

/* ---------- START ANCHORLINK ---------- */
a {
  color: #000;
  text-decoration: underline;
  background-color: transparent;
}
a:hover, a:active, a:focus {
  outline: none;
}
@media only screen and (min-width: 768px) {
  a {
    transition: all 0.3s ease;
  }
  a:hover {
    text-decoration: none;
    transition: all 0.3s ease;
  }
  a:hover img {
    opacity: 0.8;
  }
}

a[href*="tel:"] {
  cursor: default;
  text-decoration: none;
  color: #4d4d4d;
}
@media only screen and (max-width: 767px) {
  a[href*="tel:"] {
    pointer-events: auto;
    cursor: pointer;
  }
}
@media only screen and (min-width: 768px) {
  a[href*="tel:"] {
    pointer-events: none;
  }
}

/*---------- START HOVER IMG  ----------*/
.ov-hover:hover img {
  opacity: 0.7;
  filter: alpha(opacity=70);
  -ms-filter: "alpha( opacity=70)";
}

/* ----------  START code set ---------- */
h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.6;
  color: #000;
}

pre,
code,
kbd,
samp,
var,
.font_mono {
  font-size: 1.3rem;
  line-height: 1.6;
}

pre {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  background-color: #f4f4f4;
  overflow-x: auto;
}

img {
  vertical-align: top;
  margin: 0px;
  padding: 0px;
  border: 0px;
  transition: All 0.3s ease;
}

button,
input[type=submit],
input[type=button] {
  transition: all 0.3s ease;
  font-family: "Noto Sans JP", "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", "Yu Gothic", "ヒラギノ角ゴシック ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

picture {
  display: block;
  line-height: 1.6;
}

figure {
  margin: 0;
  padding: 0;
}

.white-space_pre-wrap {
  display: grid;
  width: 100%;
  white-space: pre-line;
}

/*====================================================================================
2. START COMMON CONTAINER.
====================================================================================*/
.l-container {
  box-sizing: border-box;
  width: 100%;
  margin: 0 auto;
}
@media only screen and (max-width: 767px) {
  .l-container {
    padding: 0 1rem;
  }
}
@media only screen and (min-width: 768px) {
  .l-container {
    max-width: 120rem;
    padding: 0 2rem;
  }
}

/*====================================================================================
3. START COMMON HEADER
====================================================================================*/
.lock-scroll {
  overflow: hidden;
  position: relative;
  height: 100%;
}

.l-header {
  position: fixed;
  width: 100%;
  background: #fff;
  top: 0;
  left: 0;
  transition: all 0.5s;
  z-index: 99;
}
.l-header.fixed {
  -webkit-transition: all linear 0.3s;
  transition: all linear 0.3s;
}
.l-header a {
  text-decoration: none !important;
}
.l-header__inner {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
}
@media only screen and (max-width: 767px) {
  .l-header__nav {
    display: none;
  }
  .l-header__logo {
    width: 50%;
  }
  .l-header__right {
    width: 45%;
    display: flex;
    justify-content: flex-end;
  }
}
@media only screen and (min-width: 768px) {
  .l-header__inner {
    padding: 1.5rem;
  }
  .l-header__logo {
    width: 33rem;
  }
  .l-header__right {
    width: calc(100% - 33rem);
  }
}

/*---------- START HAMBURGER ----------*/
@media only screen and (max-width: 767px) {
  .trigger-menu {
    background: var(--yellow);
    border-radius: 1rem;
    transform: rotate(0deg);
    transition: 0.5s ease-in-out;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    flex-flow: column;
    width: 5rem;
    height: 5rem;
    gap: 0.5rem;
    border: none;
    z-index: 9999;
  }
  .trigger-menu .icon {
    position: relative;
    display: block;
    width: 3rem;
    height: 2.2rem;
  }
  .trigger-menu .icon span {
    display: block;
    position: absolute;
    width: 3rem;
    height: 0.2rem;
    background: #000;
    opacity: 1;
    left: 0;
    right: 0;
    margin: auto;
    transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transition: 0.25s ease-in-out;
    font-weight: 500;
  }
  .trigger-menu .icon span:nth-child(1) {
    top: 0;
  }
  .trigger-menu .icon span:nth-child(2) {
    top: 0;
    bottom: 0;
  }
  .trigger-menu .icon span:nth-child(3) {
    bottom: 0;
  }
  .trigger-menu.active .icon span:nth-child(1) {
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    left: -0.3rem;
    top: 1.1rem;
  }
  .trigger-menu.active .icon span:nth-child(2) {
    opacity: 0;
  }
  .trigger-menu.active .icon span:nth-child(3) {
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    left: -0.3rem;
    top: 0.1rem;
  }
}
@media only screen and (min-width: 768px) {
  .trigger-menu {
    display: none;
  }
}

/*---------- START GNAV ----------*/
.l-menu_contents__main {
  padding: 0;
}
.l-menu_contents .c-btn__link {
  box-shadow: 0px 2px 0px 0px rgb(208, 196, 0) !important;
}
@media only screen and (max-width: 767px) {
  .l-menu_contents {
    position: absolute;
    top: 100%;
    right: -100%;
    width: 100%;
    background: #fff;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    border: none;
    padding: 3rem 3rem 10rem;
    overflow: auto;
    z-index: 9999;
  }
  .l-menu_contents.is-visible {
    opacity: 1;
    visibility: visible;
    height: 100vh;
    right: 0;
  }
  .l-menu_contents .c-btn {
    text-align: center;
    margin: 2rem auto 0;
  }
  .l-menu_contents .c-btn__link .icon.icon-mail {
    background-size: 2rem !important;
    background-position: top 0.2rem left;
    padding-left: 3.5rem;
  }
}
@media only screen and (min-width: 768px) {
  .l-menu_contents {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 3rem;
  }
  .l-menu_contents .c-btn__link {
    width: 18rem;
    min-width: auto;
    padding: 0.5rem 1rem;
    font-weight: bold;
    font-size: 1.6rem;
    text-align: center;
    margin: auto;
  }
  .l-menu_contents .c-btn__link .icon {
    background-size: 2rem !important;
    padding-left: 3rem !important;
  }
  .l-menu_contents .c-btn__link:hover {
    box-shadow: 0px 2px 0px 0px var(--yellow) !important;
  }
}
@media only screen and (max-width: 1400px) {
  .l-menu_contents {
    gap: 1.5rem;
  }
  .l-menu_contents .c-btn__link {
    width: 15rem;
    font-size: 1.4rem;
  }
}

.gnav__link {
  display: inline-block;
  font-weight: bold;
  font-size: 1.4rem;
}
@media only screen and (max-width: 767px) {
  .gnav__link {
    width: 100%;
    padding: 1rem 0;
    text-align: center;
  }
}
@media only screen and (min-width: 768px) {
  .gnav {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 3rem;
  }
}
@media only screen and (max-width: 1400px) {
  .gnav {
    gap: 1.5rem;
  }
  .gnav__link {
    font-size: 1.3rem;
  }
}

/*---------- START infor-contact ----------*/
/*---------- START infor-contact ----------*/
.nav-link {
  position: relative;
  text-decoration: none !important;
  z-index: 3;
}
.nav-link:after {
  position: absolute;
  content: "";
  background: var(--yellow);
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  margin: auto;
  transition: all 0.5s;
  z-index: -1;
}
@media only screen and (min-width: 768px) {
  .nav-link:hover {
    color: var(--yellow) !important;
  }
  .nav-link:hover:after {
    width: 100%;
  }
}

/*====================================================================================
4. START COMMON FOOTER
====================================================================================*/
.l-footer {
  position: relative;
}
.l-footer__main {
  background: #000;
  color: var(--white);
  padding: 2.5rem 0;
  text-align: center;
}
.l-footer .f-gnav {
  width: 100%;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.l-footer .f-gnav__link {
  display: inline-block;
  color: #fff;
  font-size: 1.4rem;
  padding: 0 1.5rem;
  line-height: normal;
  border-left: 1px solid #fff;
}
.l-footer .f-gnav__item:last-child .f-gnav__link {
  border-right: 1px solid #fff;
}
.l-footer__copyright {
  background: #262626;
  font-size: 1.2rem;
  font-weight: normal;
  text-align: center;
  color: #fff;
  padding: 1.2rem;
}
@media only screen and (max-width: 767px) {
  .l-footer {
    padding-bottom: 7rem;
  }
  .l-footer .c-btn_footer {
    position: fixed;
    bottom: 0;
    left: 0;
    background: #fff;
    display: inline-block;
    width: 100%;
    text-align: center;
    padding: 1rem;
    z-index: 99;
  }
  .l-footer__logo {
    width: 60%;
    margin: 0 auto 2rem;
  }
  .l-footer .f-gnav {
    gap: 1rem 0;
  }
  .l-footer .f-gnav__item:nth-child(3) {
    border-right: 1px solid #fff;
  }
}
@media only screen and (min-width: 768px) {
  .l-footer .c-btn_footer {
    display: none;
  }
  .l-footer__main {
    padding: 5rem 0;
  }
  .l-footer__logo {
    margin: 0 auto 3rem;
  }
  .l-footer .f-gnav__link {
    font-size: 1.6rem;
    padding: 0 2.5rem;
  }
}

.page-up {
  display: none;
  position: fixed;
  right: 2%;
  bottom: 1rem;
  z-index: 99;
}
.page-up a {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 3rem;
  height: 3rem;
  background: #000;
  text-decoration: none;
  overflow: hidden;
  transition: all 0.5s;
  z-index: 2;
}
.page-up a:before {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  background: var(--yellow);
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  transition: all 0.5s;
  z-index: -1;
}
.page-up a .c-arr {
  transform: rotate(-90deg);
}
@media only screen and (max-width: 767px) {
  .page-up .c-arr {
    width: 1.2rem;
  }
}
@media only screen and (min-width: 768px) {
  .page-up {
    bottom: 5rem;
  }
  .page-up a {
    width: 4rem;
    height: 4rem;
  }
  .page-up a:hover:before {
    width: 100%;
    height: 100%;
    transition: all 0.5s;
  }
  .page-up a:hover .c-arr:before {
    border-color: #000;
  }
}

/*====================================================================================
5. START COMMON CSS
====================================================================================*/
.l-wrapper {
  position: relative;
}

.l-main {
  margin-top: var(--headerH);
}

.a-absolute {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9;
}

.l-inner-txt p + p {
  margin-top: 2rem;
}
.l-inner-txt--m p + p {
  margin-top: 1.5rem;
}
.l-inner-txt--s p + p {
  margin-top: 1rem;
}
@media only screen and (min-width: 768px) {
  .l-inner-txt p + p {
    margin-top: 4rem;
  }
  .l-inner-txt--m p + p {
    margin-top: 3rem;
  }
  .l-inner-txt--s p + p {
    margin-top: 2rem;
  }
}

/*---------- START ICON ZOOM  ----------*/
.icon-zoom {
  position: relative;
  display: block;
  overflow: hidden;
}
.icon-zoom:before {
  position: absolute;
  display: inline-block;
  content: "";
  z-index: 3;
  right: 1rem;
  bottom: 1rem;
  width: 4rem;
  height: 4rem;
  background-image: url("../common_img/lightbox/icon-zoom.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 1.6rem 1.6rem;
  background-color: var(--bg-yellow);
}
@media only screen and (min-width: 768px) {
  .icon-zoom img {
    transition: transform 0.5s ease;
  }
  .icon-zoom:hover img {
    transform: scale(1.06);
  }
}

/*---------- START PADDING SECTION ----------*/
.u-padding_top {
  padding-top: 6rem;
}
@media only screen and (min-width: 768px) {
  .u-padding_top {
    padding-top: 12rem;
  }
}

/*---------- START list-indent01 ----------*/
.list-indent01 li {
  text-indent: -1.7rem;
  padding-left: 1.7rem;
}

/*---------- START list-indent02 ----------*/
.list-indent02 li {
  text-indent: -2.2rem;
  padding-left: 2.2rem;
}
@media only screen and (min-width: 768px) {
  .list-indent02 li {
    text-indent: -2.6rem;
    padding-left: 2.6rem;
  }
}

/*---------- START ARROW   ----------*/
.c-arr {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 1.2rem;
  height: 2px;
}
.c-arr:before {
  position: absolute;
  content: "";
  width: 0.8rem;
  height: 0.8rem;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  border-radius: 0.2rem;
  transform: rotate(45deg);
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}
.c-arr--back {
  transform: rotate(180deg);
}
.c-arr--up {
  transform: rotate(-90deg);
}
.c-arr--down {
  transform: rotate(90deg);
}
.c-arr--black:before {
  border-color: #000;
}

/*---------- START BUTTON  ----------*/
.c-btn__link {
  position: relative;
  display: inline-block;
  background-color: rgb(240, 240, 240);
  box-shadow: 0px 4px 0px 0px rgba(208, 196, 0, 0.4);
  border-radius: 4rem;
  text-decoration: none;
  font-weight: 500;
  padding: 1.2rem;
  min-width: 20rem;
  margin-top: 3rem;
  font-weight: bold;
  text-align: center;
  z-index: 9;
}
.c-btn--icon .icon {
  display: inline-block;
}
.c-btn--icon .icon.icon-mail {
  background: url("../images/common_img/icon-mail2.webp") no-repeat center left;
  padding-left: 4rem;
  background-size: 3rem;
}
.c-btn .btn-yellow {
  background: var(--yellow);
  box-shadow: 0px 4px 0px 0px rgb(208, 196, 0);
}
@media only screen and (min-width: 768px) {
  .c-btn__link {
    min-width: 23rem;
    margin-top: 6rem;
    font-size: 1.6rem;
  }
  .c-btn__link .c-arr {
    right: 2rem;
  }
  .c-btn__link:hover {
    background-color: rgba(0, 0, 0, 0.4);
    box-shadow: 0px 4px 0px 0px rgb(240, 240, 240);
  }
  .c-btn .btn-yellow:hover {
    background: rgb(208, 196, 0);
    box-shadow: 0px 4px 0px 0px var(--yellow);
  }
}

/*---------- START TITLE  ----------*/
.c-title01 {
  margin-bottom: 2rem;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.c-title01 span {
  display: block;
  width: 100%;
  text-align: center;
}
.c-title01 .txt-jp {
  font-size: 2.2rem;
}
.c-title01 .txt-jp small {
  display: block;
  text-align: left;
  font-size: 1.8rem;
}
.c-title01 .txt-en {
  text-transform: uppercase;
  font-weight: bold;
  font-size: 1.4rem;
  letter-spacing: 0.05rem;
}
@media only screen and (min-width: 768px) {
  .c-title01 {
    margin-bottom: 4rem;
  }
  .c-title01 .txt-jp {
    font-size: 3.6rem;
  }
  .c-title01 .txt-jp small {
    font-size: 2.4rem;
  }
}

/*---------- START TEXT  ----------*/
.u-txt--en {
  font-family: var(--font-Noto-en);
}
.u-txt--s {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}
.u-txt--m {
  font-size: 1.6rem;
  margin-bottom: 1rem;
}
.u-txt--ml {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}
.u-txt--l {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}
.u-txt--line_yellow {
  display: inline;
  background: linear-gradient(to bottom, transparent calc(100% - 10px), var(--yellow) calc(100% - 10px) calc(100% - 5px), transparent calc(100% - 1px));
  font-weight: bold;
  font-size: 1.7rem;
  color: #000;
}
@media only screen and (min-width: 768px) {
  .u-txt--s {
    font-size: 1.2rem;
    margin-bottom: 2rem;
  }
  .u-txt--m {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
  .u-txt--ml {
    font-size: 2.2rem;
    margin-bottom: 2rem;
  }
  .u-txt--l {
    font-size: 2.6rem;
    font-weight: bold;
    margin-bottom: 3rem;
  }
  .u-txt--line_yellow {
    font-size: 2.2rem;
    background: linear-gradient(to bottom, transparent calc(100% - 13px), var(--yellow) calc(100% - 13px) calc(100% - 5px), transparent calc(100% - 5px));
  }
}

/*---------- START c-contact ----------*/
.c-contact {
  position: relative;
  background: var(--yellow);
  padding: 2rem 0 2.5rem;
  text-align: center;
  z-index: 3;
}
.c-contact__ttl {
  font-weight: bold;
  font-size: 2rem;
  margin-bottom: 1.5rem;
}
.c-contact__btn {
  width: 26rem;
  font-size: 1.8rem;
}
.c-contact__btn .icon.icon-mail {
  background-size: 2rem;
  background-position: top 0.7rem left;
  padding-left: 3.5rem;
}
@media only screen and (max-width: 767px) {
  .c-contact__btn {
    margin-top: 1.5rem;
  }
}
@media only screen and (min-width: 768px) {
  .c-contact {
    padding: 4rem 0 5rem;
  }
  .c-contact__ttl {
    font-size: 3.6rem;
    margin-bottom: 2rem;
  }
  .c-contact__btn {
    width: 46rem;
    font-size: 3.2rem;
  }
  .c-contact__btn .icon.icon-mail {
    background-size: 3.4rem;
    background-position: top 1.8rem left;
    padding-left: 5.5rem;
  }
}