@charset "UTF-8";

/* ////////////////////////////////////////////////////////////////////
base
//////////////////////////////////////////////////////////////////// */
/* ==================================================
font-size、等
=====================================================
12px：0.75rem
13px：0.8125rem
14px：0.875rem
15px：0.9375rem
16px：1rem
18px：1.125rem
20px：1.25rem
24px：1.5rem
28px：1.75rem
32px：2rem
40px：2.5rem
48px：3rem
64px：4rem
width: 100%;
max-width: 980px;
=================================================== */
/* --------------------------
root
-------------------------- */
:root {
  --color-main: #678E7C;
  --color-bright: #B3C7BE;
  --color-brighter: #E6ECE9;
  --color-dark: #567667;
  --color-accent:#8E6967;
  --color-sub:#0C3555;
  --color-text: #222;
  --color-line: #e6eeee;
  --color-white: #fff;
  --color-pink: #ff0086;
  --inner: 1180px;
}
/* --------------------------
body、Google fonts（すべて）
-------------------------- */
body {
  color: var(--color-text);
  background: var(--color-white);
  line-height: 1.7;
  /* Google fonts */
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}
/* --------------------------
Google fonts
-------------------------- */
.klee-one-regular {
  font-family: "Klee One", cursive;
  font-weight: 400;
  font-style: normal;
}
/* --------------------------
text
-------------------------- */
.text-right{
  text-align: right;
}
/* --------------------------
common link
-------------------------- */
.common-link {
  color: var(--color-main);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}
/* --------------------------
改行
-------------------------- */
/* スマホのみ改行（PCの場合、改行非表示） */
.sp-br {
  display: none;
}

/* スマホのみ改行（PCの場合、改行非表示） */
@media screen and (max-width: 777px) {
  .sp-br {
    display: block;
  }

}

/*  */

/* スマホの場合、改行非表示（pcのみ改行） */
@media screen and (max-width: 777px) {
  .pc-br {
    display: none;
  }
}
/* --------------------------
body-wrapper
-------------------------- */
.body-wrapper {
  width: 100%;
  overflow: hidden;
}

/* --------------------------
containerは、以下直下のdiv
structure-header
structure-main
structure-footer
-------------------------- */
.container {
  width: min(var(--inner), calc(100% - 48px));
  /* 上下・左右 */
  margin: 0 auto;
}

/* --------------------------
見出し
-------------------------- */
h2 {
  color: var(--color-sub);
  margin-top: 1.5rem;
}

/* ==================================================
pc
section-center-text（セクションのコピーの汎用化）
================================================== */
.global-center-text {
  /* max-width: 860px; */
  margin: 0 auto 3rem;
  font-size: 1rem;
  line-height: 2;
  text-align: center;
}
.global-center-text span {
  font-weight: 700;
}

.global-text {
  /* max-width: 860px; */
  margin: 2rem 0;
  font-size: 1rem;
  line-height: 2;
}
.global-text span {
  font-weight: 700;
}

/* ==================================================
ボタン
================================================== */
/* --------------------------
btn-base
-------------------------- */
.btn-primary,
.btn-secondary,
.btn-outline,
.btn-dark,
.btn-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-width: 16rem;
  padding: 1rem 2rem;
  border: 2px solid transparent;
  border-radius: 999px;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  transition: all 0.3s ease;
}

/* --------------------------
btn-primary（第１ボタン）
-------------------------- */
.btn-primary {
  color: #fff;
  background-color: var(--color-main);
  /* border-color: var(--color-main); */
}

.btn-primary:hover {
  color: #fff;
  background-color: var(--color-accent);
}

/* --------------------------
btn-secondary（第２ボタン）
-------------------------- */
.btn-secondary {
  color: var(--color-main);
  background-color: #fff;
  border-color: var(--color-main)
}

.btn-secondary:hover {
  color: #fff;
  background-color: var(--color-accent);
  border-color: var(--color-accent);
}

/* --------------------------
btn-outline
-------------------------- */
.btn-outline {
  color: var(--color-text);
  background-color: transparent;
  border-color: #dddddd;
}

.btn-outline:hover {
  border-color: var(--color-main);
  color: var(--color-main);
}

/* --------------------------
btn-dark
-------------------------- */
.btn-dark {
  color: #ffffff;
  background-color: var(--color-text);
  border-color: var(--color-text);
}

.btn-dark:hover {
  color: var(--color-text);
  background-color: #ffffff;
}

/* --------------------------
btn-light
-------------------------- */
.btn-light {
  color: var(--color-text);
  background-color: #f7f7f7;
  border-color: #f7f7f7;
}

.btn-light:hover {
  background-color: #eeeeee;
}

/* --------------------------
btn-small
-------------------------- */
.btn-small {
  min-width: auto;
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
}

/* --------------------------
btn-large
-------------------------- */
.btn-large {
  min-width: 20rem;
  padding: 1.25rem 2.5rem;
  font-size: 1.125rem;
}

/* --------------------------
マーカー
-------------------------- */
.link-marker {
  background: linear-gradient(transparent 60%,
      #8ad8ff 60%);
  font-weight: 700;
}

.marker-yellow {
  background: linear-gradient(transparent 60%,
      #fff36a 60%);
  font-weight: 700;
}

mark {
  background: linear-gradient(transparent 40%,
      #fff36a 60%);
  font-weight: 700;
}

em {
  background: linear-gradient(transparent 40%,
      #fff36a 60%);
  font-weight: 700;
}

strong {
  background: linear-gradient(transparent 40%,
      #fff36a 60%);
  font-weight: 700;
}

/* --------------------------
PC
label-new（赤字のNEWS）
-------------------------- */
.label-new {
  display: inline-block;
  /* margin-right: 0.75rem; */
  margin-left: 0.75rem;
  padding: 0.2rem 0.55rem;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05em;
  background-color: #FF0086;
  border-radius: 9999px;
  vertical-align: middle;
}

/* ==================================================
structure-main （ヘッダーメニュー固定用）
================================================== */
.structure-main {
  padding-top: 86px;
}

/* ==================================================
pc
hero-dummy（ヒーロー）
================================================== */
.hero-dummy {
  overflow: hidden;
  border-radius: 1rem;
}

.hero-dummy-img {
  display: block;
  width: 100%;
  height: 600px;
  /* height: auto; */
  object-fit: cover;
}

/* ==================================================
pc
section-cta
================================================== */

.section-cta {
  padding: 100px 0;
  background: var(--color-white);
}

.section-cta .inner {
  width: min(var(--inner), calc(100% - 48px));
  margin: 0 auto;
}


/* base.cssのsection-cta-contentを上書き */

.section-cta-content {
  display: flex;

  flex-direction: column;
  align-items: center;
  justify-content: center;

  gap: 30px;

  padding: 64px 40px;

  background: var(--color-brighter);

  border-radius: 18px;

  box-shadow:
    0 8px 28px rgba(0, 0, 0, 0.05);

  text-align: center;
}


/* --------------------------
CTA text
-------------------------- */

.section-cta-text {
  margin: 0;

  color: var(--color-text);

  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.8;
}


/* --------------------------
CTA button

base.css に同名classがあるため
ここで明示的に上書き
-------------------------- */

a.section-cta-button {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  min-width: 240px;

  padding: 16px 32px;

  color: var(--color-white);

  font-size: 1rem;
  font-weight: 700;
  line-height: 1;

  background: var(--color-main);

  border: 2px solid var(--color-main);
  border-radius: 10px;

  transition:
    color 0.2s ease,
    background 0.2s ease;
}

a.section-cta-button:hover {
  color: var(--color-main);

  background: var(--color-white);
}

/* ####################################################################
responsive
#################################################################### */
@media screen and (max-width: 777px) {

  /* ===============================================
sp
btn
================================================== */
  .btn-primary,
  .btn-secondary,
  .btn-outline,
  .btn-dark,
  .btn-light {
    width: 100%;
    min-width: auto;
  }

  /* ==================================================
sp
section-cta
================================================== */
  .section-cta-content {
    gap: 24px;

    padding: 40px 22px;

    border-radius: 14px;
  }

  .section-cta-text {
    font-size: 1.125rem;
    line-height: 1.8;
  }

  a.section-cta-button {
    width: 100%;

    min-width: 0;
  }


}