@charset "utf-8";

html {
  width: 100%;
  font-size: calc(10 / 1440 * 100vw);
}

@media all and (max-width: 576px) {
  html {
    font-size: calc(10 / 390 * 100vw);
  }
}

/* モーダル対応（Windows） */
html.is-windows.is-fixed {
  /* scrollbar track 表示 */
  overflow-y: scroll !important;
}

body {
  font-family: 'Noto Sans JP', sans-serif;
  opacity: 0;
  color: #000;
  font-size: min(16px, 1.6rem);
  line-height: 1.75;
  font-weight: 400;
  margin: 0;
  /* フォントサイズ自動調整解除 */
  -webkit-text-size-adjust: 100%;
  /* 半角英数連続文字改行 */
  word-break: break-word;
  /* 完全改行 */
  /* word-break: break-all; */
  letter-spacing: 0.05em;
  /* 自動カーニング */
  font-feature-settings: 'palt';
}

html[lang='en'] body {
  font-family: 'Rubik', sans-serif;
  line-height: 1.45;
}

html[lang='zh-cmn-Hans'] body {
  font-family: 'Noto Sans SC', sans-serif;
}

html[lang='ko'] body {
  font-family: 'Noto Sans KR', sans-serif;
  /* スペース改行（単語内非改行回避） */
  word-break: keep-all;
  /* 連続文字改行 */
  word-wrap: break-word;
}

@media all and (max-width: 576px) {
  body {
    font-size: 1.6rem;
  }
}

body.is-show {
  opacity: 1;
  transition: opacity 1s ease-out;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  outline: 0px !important;
  backface-visibility: hidden;
  /* タップ時のハイライト非表示 */
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

*:last-child {
  margin-bottom: 0 !important;
}

img {
  vertical-align: bottom;
  width: 100%;
}

video {
  vertical-align: bottom;
  width: 100%;
}

ul,
ol {
  margin: 0;
  padding: 0;
}

ul li,
ol li {
  list-style-type: none;
}

dl,
dd {
  margin: 0;
}

input,
textarea {
  /* フォーカス時の画面ズーム防止 */
  font-size: 16px;
}

textarea {
  /* 直下の隙間除去 */
  display: block;
}

table {
  border-collapse: collapse;
  border: none;
  border-spacing: 0;
}

sup {
  font-size: 50%;
  vertical-align: super;
  position: relative;
  top: -0.1em;
}

sub {
  font-size: 50%;
  vertical-align: sub;
  position: relative;
  bottom: -0.1em;
}

em {
  font-style: normal;
}

a {
  color: #000;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

/* font
------------------------------*/
.en {
  font-family: 'Rubik', sans-serif;
}

/* display
------------------------------*/
.pc {
  display: inline;
}

@media all and (max-width: 1023px) {
  .pc {
    display: none;
  }
}

.tb {
  display: none;
}

@media all and (max-width: 1023px) {
  .tb {
    display: inline;
  }
}

@media all and (max-width: 576px) {
  .tb {
    display: none;
  }
}

.sp {
  display: none;
}

@media all and (max-width: 576px) {
  .sp {
    display: inline;
  }
}

.pc.tb {
  display: inline;
}

@media all and (max-width: 576px) {
  .pc.tb {
    display: none;
  }
}

.tb.sp {
  display: none;
}

@media all and (max-width: 1023px) {
  .tb.sp {
    display: inline;
  }
}

.pc-only {
  display: block;
}

.sp-only {
  display: none;
}

@media all and (max-width: 576px) {
  .pc-only {
    display: none;
  }

  .sp-only {
    display: block;
  }
}

/* delay scroll animation
------------------------------*/
.fadeInUp {
  opacity: 0;
}

.fadeInUp.is-show {
  animation: fadeInUp 0.5s ease-out forwards;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    pointer-events: none;
    transform: translate3d(0, 20px, 0);
  }

  100% {
    opacity: 1;
    pointer-events: auto;
    transform: translate3d(0, 0, 0);
  }
}

.fadeInBlur {
  opacity: 0;
}

.fadeInBlur.is-show {
  animation: fadeInBlur 0.5s ease-out forwards;
}

@keyframes fadeInBlur {
  0% {
    opacity: 0;
    filter: blur(8px);
    pointer-events: none;
  }

  100% {
    opacity: 1;
    filter: blur(0);
    pointer-events: auto;
  }
}

.scaleBounce {
  transform: scale(0);
}

.scaleBounce.is-show {
  animation: scaleBounce 0.5s ease-out forwards;
}

@keyframes scaleBounce {
  0% {
    transform: scale(0.8);
    pointer-events: none;
    opacity: 0;
  }

  70% {
    transform: scale(1.04);
    opacity: 1;
  }

  100% {
    transform: scale(1);
    pointer-events: auto;
  }
}

.scale {
  opacity: 0;
  transform-origin: bottom center;
}

.scale.is-show {
  animation: scale 0.3s ease-out forwards;
}

@keyframes scale {
  0% {
    opacity: 0;
    transform: scale(0.8) translate3d(0, 20px, 0);
    /* transform: scale(0.9) translate3d(0, 20px, 0); */
    pointer-events: none;
  }
  10% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: scale(1) translate3d(0, 0, 0);
    pointer-events: auto;
  }
}

/* wrap
------------------------------*/
.l-wrap {
  overflow: clip;
  position: relative;
  z-index: 0;
  width: 100%;
}

/* main
------------------------------*/
.l-main {
  width: 100%;
}

.l-main__btm {
  background-color: #ebf6e8;
  padding: min(120px, 12rem) 0 min(77px, 7.7rem);
}

@media all and (max-width: 576px) {
  .l-main__btm {
    padding: 6rem 0;
  }
}

/* btn
------------------------------*/
.c-btn {
  width: 100%;
  height: 100%;
  font-size: min(16px, 1.6rem);
  display: flex;
  justify-content: center;
  align-items: center;
  color: #000;
  background-color: #fff;
  letter-spacing: 0;
  border-radius: 9999px;
  transition: all 0.3s ease-out;
}

@media all and (max-width: 576px) {
  .c-btn {
    font-size: 1.4rem;
  }
}

@media (hover: hover) {
  .c-btn:hover {
    color: #fff;
    background-color: #000;
  }
}

@media (hover: hover) {
  .c-btn.--pdf:hover {
    background-color: #e60012;
  }
}

.c-btn.--pdf::after {
  content: 'PDF';
  font-family: 'Rubik', sans-serif;
  font-size: 10px;
  font-weight: 600;
  line-height: 1;
  display: block;
  color: #fff;
  padding: 4px 3px;
  border-radius: 4px;
  background-color: #e60012;
  margin-left: min(10px, 1rem);
  margin-top: 0.2em;
  transition: all 0.3s ease-out;
}

@media all and (max-width: 576px) {
  .c-btn.--pdf::after {
    margin-left: 0.5rem;
  }
}

@media (hover: hover) {
  .c-btn.--pdf:hover::after {
    background: #fff;
    color: #e60012;
  }
}

.c-btn.--arrow::after {
  content: '';
  display: inline-block;
  vertical-align: middle;
  color: #000;
  line-height: 1;
  width: 0.5em;
  aspect-ratio: 1;
  border: 1px solid #000;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translateX(-25%) rotate(45deg);
  margin-left: min(10px, 1rem);
  transition: all 0.3s ease-out;
}

@media (hover: hover) {
  .c-btn.--arrow:hover::after {
    border-color: #fff;
  }
}

.c-btn.--external::after {
  content: '';
  display: inline-block;
  width: 14px;
  aspect-ratio: 1;
  margin-left: min(10px, 1rem);
  background: url(../img/common/ico_external_black.svg) no-repeat center center / contain;
  transition: all 0.3s ease-out;
}

@media all and (max-width: 576px) {
  .c-btn.--external::after {
    margin-left: 0.5rem;
  }
}

@media (hover: hover) {
  .c-btn.--external:hover::after {
    background-image: url(../img/common/ico_external_white.svg);
  }
}

/* header
------------------------------*/
.l-header {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.p-header {
  width: 100%;
  padding: min(20px, 2rem) min(20px, 2rem) 0;
}

@media all and (max-width: 576px) {
  .p-header {
    padding: 1.5rem 1.5rem 0;
  }
}

.p-header__inner {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
}

.p-header__logo {
  margin: 0;
  line-height: 1.1;
  display: flex;
}

.p-header__logo img {
  width: min(183px, 18.3rem);
}

@media all and (max-width: 576px) {
  .p-header__logo img {
    width: 10.4rem;
  }
}

.p-header__logo span {
  font-size: min(30px, 3rem);
  font-weight: 600;
  margin-left: min(27px, 2.7rem);
  padding-top: 0.6em;
}

@media all and (max-width: 576px) {
  .p-header__logo span {
    font-size: 1.6rem;
    margin-left: 1.6rem;
  }

  html[lang='en'] .p-header__logo span {
    font-size: 1.2rem;
    margin-left: 1rem;
    padding-top: 1em;
  }

  html[lang='ko'] .p-header__logo span {
    font-size: 1.4rem;
  }
}

.p-header__lang {
  width: min(70px, 7rem);
  margin-left: auto;
  line-height: 1;
  position: relative;
  z-index: 0;
}

@media all and (max-width: 576px) {
  .p-header__lang {
    width: 6rem;
  }
}

.p-header__lang > img {
  cursor: pointer;
}

.p-header__lang-list {
  display: none;
  position: absolute;
  top: min(30px, 3rem);
  right: 0;
  width: min(160px, 16rem);
  background-color: #fff;
  border-radius: 6px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  padding: min(16px, 1.6rem);
}

@media all and (max-width: 576px) {
  .p-header__lang-list {
    top: 3rem;
    width: 14rem;
    padding: 1.4rem;
  }
}

.p-header__lang-list ul li {
  margin-bottom: min(16px, 1.6rem);
}

@media all and (max-width: 576px) {
  .p-header__lang-list ul li {
    margin-bottom: 1.4rem;
  }
}

.p-header__lang-list ul li a {
  font-size: min(16px, 1.6rem);
  transition: all 0.3s ease-out;
}

@media all and (max-width: 576px) {
  .p-header__lang-list ul li a {
    font-size: 1.4rem;
  }
}

@media (hover: hover) {
  .p-header__lang-list ul li a:hover {
    color: #62b947;
  }
}
.p-header__lang-list ul li.is-current a {
  color: #008c1f;
  pointer-events: none;
}

/* footer
------------------------------*/
.l-footer {
  width: 100%;
  background-color: #ebf6e8;
}

.p-footer {
  width: 100%;
  background-color: #008c46;
  border-top-left-radius: min(40px, 4rem);
  border-top-right-radius: min(40px, 4rem);
  height: min(67px, 6.7rem);
  position: relative;
  z-index: 0;
}

@media all and (max-width: 576px) {
  .p-footer {
    height: 4.3rem;
  }
}

.p-footer::after {
  content: '';
  display: block;
  background: url(../img/common/footer_btm_img.png) no-repeat center center/contain;
  width: min(138px, 13.8rem);
  aspect-ratio: 200/156;
  position: absolute;
  top: calc(-1 * min(62px, 6.2rem));
  left: 50%;
  transform: translateX(-50%);
}

@media all and (max-width: 576px) {
  .p-footer::after {
    width: 14.8rem;
    top: calc(-1 * min(93px, 9.3rem));
  }
}
