/*====================================================================================
1. FOUNDATION.
====================================================================================*/
/*------------------------------------------------------------------------------------
1.1. 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=Quicksand:wght@300..700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap");
* {
  box-sizing: border-box;
}

:root {
  /* Base Colors */
  --color-black: #1B1B1B;
  --color-white: #fff;
  --color-blue: #39979D;
  --color-blue_light: #EFF6F7;
  --color-blue_purple: #5A84E4;
  --color-red: #CC0000;
  --color-yellow: #FFF100;
  --color-orange: #F24B00;
  --color-gray: #EDEDED;
  /* Fonts */
  --font-Noto_Sans_JP: "Noto Sans JP", sans-serif;
  /* Theme Tokens */
  --theme-color-1: var(--color-black);
  --theme-color-2: var(--color-white);
  --theme-color-3: var(--color-blue);
  --theme-color-4: var(--color-blue_light);
  --theme-color-5: var(--color-blue_purple);
  --theme-color-6: var(--color-red);
  --theme-color-7: var(--color-yellow);
  --theme-color-8: var(--color-orange);
  --theme-color-9: var(--color-gray);
  /* Theme Families */
  --theme-font-jp-primary: var(--font-Noto_Sans_JP);
}

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: var(--theme-font-jp-primary);
  color: var(--theme-color-1);
  letter-spacing: 1.6px;
}
body.lb-disable-scrolling {
  position: fixed;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  body {
    font-size: 1.4rem;
    line-height: 1.4;
  }
  body img {
    width: auto;
    height: auto;
    max-width: 100%;
  }
}
@media only screen and (min-width: 768px) {
  body {
    font-size: 1.6rem;
    line-height: 1.6;
  }
}

.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;
  }
}
/*------------------------------------------------------------------------------------
1.2. RESET.
------------------------------------------------------------------------------------*/
/* ---------- START ANCHORLINK ---------- */
a {
  color: var(--theme-color-1);
  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: var(--theme-color-1);
}
@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;
}

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 var(--theme-color-9);
  background-color: var(--theme-color-9);
  overflow-x: auto;
}

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

input,
select,
option,
optgroup,
textarea {
  background-color: var(--theme-color-4);
  border-color: var(--theme-color-3);
  font-family: var(--theme-font-jp-primary);
  font-weight: 400;
  -webkit-text-size-adjust: 100%;
  color: var(--theme-color-1);
  border-width: 0 0 1px 0;
}

button,
input[type=submit],
input[type=button] {
  transition: all 0.3s ease;
  font-family: var(--theme-font-jp-primary);
}

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. LAYOUT.
====================================================================================*/
/*------------------------------------------------------------------------------------
2.1. 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: 114rem;
    padding: 0 2rem;
  }
}

/*------------------------------------------------------------------------------------
2.2. HEADER.
------------------------------------------------------------------------------------*/
.lock-scroll {
  overflow: hidden;
  position: relative;
  height: 100%;
}

.l-header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  transition: all 0.5s;
  z-index: 9;
}
.l-header__inner {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}
.l-header__right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
}
.l-header.fixed {
  position: fixed;
  background: rgba(239, 246, 247, 0.8);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  left: 0;
  top: 0;
  z-index: 999;
}
@media only screen and (max-width: 767px) {
  .l-header__logo {
    width: 40%;
  }
  .l-header__right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 55%;
    gap: 1rem;
  }
  .l-header__right .btn-login .c-btn__link {
    min-width: auto;
    padding: 0.5rem 1rem;
  }
}
@media only screen and (min-width: 768px) {
  .l-header__inner {
    padding: 2rem 0;
  }
  .l-header__logo {
    width: 23.8rem;
  }
  .l-header__logo img {
    width: 100%;
    height: auto;
  }
  .l-header__right {
    width: calc(100% - 25rem);
    gap: 6rem;
  }
}

/*------------------------------------------------------------------------------------
2.3. FOOTER.
------------------------------------------------------------------------------------*/
.l-footer {
  position: relative;
  border-top: 2px solid var(--theme-color-9);
}
.l-footer__logo {
  text-align: center;
}
.l-footer__copyright {
  background: var(--theme-color-9);
  word-break: keep-all;
  font-size: 1.2rem;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .l-footer__logo {
    padding: 2rem 0;
  }
  .l-footer__copyright {
    padding: 1rem 0;
  }
}
@media only screen and (min-width: 768px) {
  .l-footer__logo {
    padding: 4rem 0;
  }
  .l-footer__copyright {
    padding: 2rem 0;
    font-size: 1.4rem;
  }
}

.c-page-top {
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 9;
}
.c-page-top a {
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--theme-color-3);
  width: 3rem;
  height: 3rem;
  font-size: 1.2rem;
  font-weight: bold;
  text-decoration: none;
  border-radius: 1rem;
}
.c-page-top a .c-arr {
  position: relative;
  width: 1rem;
  margin-top: 0.7rem;
}
@media only screen and (min-width: 768px) {
  .c-page-top a {
    width: 5rem;
    height: 5rem;
    font-size: 1.4rem;
  }
  .c-page-top a:hover {
    opacity: 0.7;
  }
}

/*====================================================================================
3. COMPONENT.
====================================================================================*/
/*------------------------------------------------------------------------------------
3.1. CLEARFIX.
------------------------------------------------------------------------------------*/
.c-clearfix {
  display: block;
}

.c-clearfix::after {
  display: block;
  content: " ";
  height: 0;
  clear: both;
  visibility: hidden;
}

/*------------------------------------------------------------------------------------
3.2. BUTTON.
------------------------------------------------------------------------------------*/
/*---------- START HAMBURGER ----------*/
@media only screen and (max-width: 767px) {
  .c-trigger-menu {
    background: var(--theme-color-3);
    border-radius: 0.5rem;
    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: 4rem;
    height: 4rem;
    gap: 0.5rem;
    border: none;
    z-index: 9999;
  }
  .c-trigger-menu .icon, .c-trigger-menu .txt {
    position: relative;
    display: block;
  }
  .c-trigger-menu .icon {
    width: 3rem;
    height: 2.2rem;
  }
  .c-trigger-menu .icon span {
    display: block;
    position: absolute;
    width: 2.5rem;
    height: 0.2rem;
    background: var(--theme-color-2);
    opacity: 1;
    left: 0;
    right: 0;
    margin: auto;
    transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transition: 0.25s ease-in-out;
    font-weight: 500;
  }
  .c-trigger-menu .icon span:nth-child(1) {
    top: 0.2rem;
  }
  .c-trigger-menu .icon span:nth-child(2) {
    top: 0;
    bottom: 0;
  }
  .c-trigger-menu .icon span:nth-child(3) {
    bottom: 0.2rem;
  }
  .c-trigger-menu.active .icon span:nth-child(1) {
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    left: 0;
    top: 1rem;
  }
  .c-trigger-menu.active .icon span:nth-child(2) {
    opacity: 0;
  }
  .c-trigger-menu.active .icon span:nth-child(3) {
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    left: 0;
    top: 0.3rem;
  }
}
@media only screen and (min-width: 768px) {
  .c-trigger-menu {
    display: none;
  }
}

/*---------- START BUTTON  ----------*/
.c-btn {
  text-align: center;
}
.c-btn__link {
  position: relative;
  display: inline-block;
  background: var(--theme-color-2);
  border: 2px solid var(--theme-color-3);
  border-radius: 3rem;
  color: var(--theme-color-3);
  text-decoration: none;
  padding: 1rem 2rem;
  min-width: 15rem;
  margin-top: 1.5rem;
  text-align: center;
  font-weight: bold;
  transition: all 0.3s ease;
  z-index: 3;
}
.c-btn__link .c-arr {
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  right: 2rem;
}
.c-btn__link.btn-down .icon-down {
  display: inline-block;
  background: url("../mypage/news/images/download.svg") no-repeat center left;
  padding: 0.5rem 1rem 0.5rem 3.5rem;
}
.c-btn.btn-prev .c-btn__link .c-arr {
  right: auto;
  left: 2rem;
}
.c-btn--orange .c-btn__link {
  border-color: var(--theme-color-8);
  color: var(--theme-color-8);
}
.c-btn--gray .c-btn__link {
  border-color: var(--theme-color-9);
  color: var(--theme-color-9);
}
@media only screen and (min-width: 768px) {
  .c-btn__link {
    min-width: 18rem;
    padding: 0.75rem 2rem;
    margin-top: 3rem;
  }
  .c-btn__link:hover {
    transition: all 0.3s ease;
    background: var(--theme-color-3);
    color: var(--theme-color-2);
  }
  .c-btn__link:hover.btn-down .icon-down {
    display: inline-block;
    background: url("../mypage/news/images/download-white.svg") no-repeat center left;
  }
  .c-btn--orange .c-btn__link:hover {
    background: var(--theme-color-8);
  }
  .c-btn--orange .c-btn__link:hover .c-arr--orange:before {
    border-color: var(--theme-color-2);
  }
}

/*------------------------------------------------------------------------------------
3.3. ICON.
------------------------------------------------------------------------------------*/
/*---------- 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 ARROW BUTTON  ----------*/
.c-arr {
  position: relative;
}
.c-arr:before {
  position: absolute;
  content: "";
  width: 0.8rem;
  height: 0.8rem;
  border-top: 2px solid var(--theme-color-1);
  border-right: 2px solid var(--theme-color-1);
  border-radius: 0.2rem;
  transform: rotate(45deg);
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}
.c-arr--back:before {
  transform: rotate(-135deg);
}
.c-arr--up:before {
  transform: rotate(-45deg);
}
.c-arr--down:before {
  transform: rotate(135deg);
}
.c-arr--white:before {
  border-color: var(--theme-color-2);
}
.c-arr--orange:before {
  border-color: var(--theme-color-8);
}

/*------------------------------------------------------------------------------------
3.4. TITLE.
------------------------------------------------------------------------------------*/
.c-title-lv2 {
  display: flex;
  flex-flow: column;
  text-align: center;
  margin-bottom: 2.5rem;
}
.c-title-lv2 span {
  font-weight: 400;
}
.c-title-lv2 .txt-jp {
  display: inline-block;
  font-size: 2.8rem;
  background: linear-gradient(to bottom, transparent calc(100% - 18px), rgba(255, 241, 0, 0.5) calc(100% - 18px) calc(100% - 5px), transparent calc(100% - 5px));
  width: auto;
  max-width: max-content;
  padding-bottom: 0.5rem;
  margin: auto;
}
.c-title-lv2 .txt-eng {
  font-size: 1.7rem;
  letter-spacing: 2.4px;
  color: var(--theme-color-3);
}
.c-title-lv2--white span {
  color: var(--theme-color-2) !important;
}
@media only screen and (min-width: 768px) {
  .c-title-lv2 {
    margin-bottom: 5rem;
  }
  .c-title-lv2 .txt-jp {
    font-size: 4rem;
  }
  .c-title-lv2 .txt-eng {
    font-size: 1.9rem;
    letter-spacing: 4.8px;
  }
}

/*------------------------------------------------------------------------------------
3.5. TEXT.
------------------------------------------------------------------------------------*/
/*---------- TEXT INDENT ----------*/
.c-text-indent {
  display: block;
  padding-inline-start: 1em;
  text-indent: -1em;
  margin-top: 1.2em;
}

/*---------- START TEXT  ----------*/
.u-txt--s {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}
.u-txt--m {
  font-size: 1.6rem;
  margin-bottom: 1rem;
}
.u-txt--l {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
}
.u-txt--xl {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}
@media only screen and (min-width: 768px) {
  .u-txt--s {
    font-size: 1.4rem;
    margin-bottom: 2rem;
  }
  .u-txt--m {
    font-size: 1.8rem;
    margin-bottom: 2rem;
  }
  .u-txt--l {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 3rem;
  }
  .u-txt--xl {
    font-size: 2.4rem;
    font-weight: bold;
    margin-bottom: 3rem;
  }
}

.u-txt_line {
  display: inline;
  background: linear-gradient(to bottom, transparent calc(100% - 2px), var(--theme-color-7) calc(100% - 2px) 100%);
}

/*---------- START BACKGROUND  ----------*/
/*------------------------------------------------------------------------------------
3.5. ITEM.
------------------------------------------------------------------------------------*/
/*------------------------------------------------------------------------------------
3.6. LIST.
------------------------------------------------------------------------------------*/
/*---------- LIST DOT ----------*/
/*---------- LIST indent ----------*/
.c-list-indent {
  margin-top: 1.5rem;
}
.c-list-indent li {
  text-indent: -1em;
  padding-left: 1em;
}

/*---------- LIST BUTTON ----------*/
.c-list-btn {
  width: 100%;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.c-list-btn .c-btn__link {
  margin-top: 0;
}
@media only screen and (max-width: 767px) {
  .c-list-btn {
    justify-content: center;
    gap: 1rem;
  }
}
@media only screen and (min-width: 768px) {
  .c-list-btn {
    justify-content: flex-start;
    gap: 2rem;
  }
}

.c-list-tag .c-btn__link {
  color: var(--theme-color-1);
  border-color: var(--theme-color-1);
}
.c-list-tag .c-btn__link:hover, .c-list-tag .c-btn__link.active {
  background: var(--theme-color-2);
  color: var(--theme-color-8);
  border-color: var(--theme-color-8);
}

/*====================================================================================
4. PROJECT.
====================================================================================*/
/*------------------------------------------------------------------------------------
4.1. NAVIGATION.
------------------------------------------------------------------------------------*/
.l-gnav__link {
  display: inline-block;
  text-decoration: none;
}
@media only screen and (max-width: 767px) {
  .l-gnav {
    position: absolute;
    top: 100%;
    right: -100%;
    width: 100%;
    background: var(--theme-color-2);
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    border: none;
    padding: 1rem 1rem 18rem;
    overflow: auto;
    z-index: 9999;
  }
  .l-gnav.is-visible {
    opacity: 1;
    visibility: visible;
    height: 100vh;
    right: 0;
  }
  .l-gnav__link {
    width: 100%;
    text-align: center;
    color: var(--theme-color-3);
    border-bottom: 1px solid var(--theme-color-3);
    padding: 1rem;
    font-weight: bold;
  }
}
@media only screen and (min-width: 768px) {
  .l-gnav__list {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 4rem;
  }
  .l-gnav__link:hover {
    color: var(--theme-color-3);
  }
}

/*------------------------------------------------------------------------------------
4.2. SECTION COMMON.
------------------------------------------------------------------------------------*/
.c-banner {
  padding: 2.5rem 0;
}
.c-banner__list {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
@media only screen and (max-width: 767px) {
  .c-banner__list {
    justify-content: center;
    gap: 1rem;
  }
  .c-banner__list li {
    width: calc((100% - 1rem) / 2);
    max-width: 20.4rem;
  }
  .c-banner__list li img {
    width: 100%;
    height: auto;
  }
}
@media only screen and (min-width: 768px) {
  .c-banner {
    padding: 5rem 0;
  }
  .c-banner__list {
    gap: 2rem;
  }
  .c-banner__link {
    display: inline-block;
  }
  .c-banner__link:hover {
    outline: 1px solid var(--theme-color-3);
    background: var(--theme-color-4);
  }
}