@charset "UTF-8";

/*==========# デバッグ用  */
/* * {
  outline: 1px solid #0000FF!important;
} */

/* フォント */
/* ===== Lato */
@font-face {
  font-display: swap;
  font-family: 'Lato';
  src: url("../font/Lato/Lato-Light.woff2") format("woff2"),
    url("../font/Lato/NotLato-Light.woff") format("woff");
  font-style: normal;
  font-weight: 300;
}
@font-face {
  font-display: swap;
  font-family: 'Lato';
  src: url("../font/Lato/Lato-Regular.woff2") format("woff2"),
    url("../font/Lato/Lato-Regular.woff") format("woff");
  font-style: normal;
  font-weight: 400;
}
@font-face {
  font-display: swap;
  font-family: 'Lato';
  src: url("../font/Lato/Lato-Bold.woff2") format("woff2"),
    url("../font/Lato/Lato-Bold.woff") format("woff");
  font-style: normal;
  font-weight: 700;
}



/*────────────────────────────────────────────────────────────────────────
**  root
────────────────────────────────────────────────────────────────────────*/
:root {
  --color-txt: #222222;
  --color-txt-rgb: 34, 34, 34;
  --color-main: #479C35;
  --color-bg: #6B8266;
  --color-bg-pale: #F0F0EB;
  --color-MonoD9: #D9D9D9;
  --color-MonoA3: #A3A3A3;

  /* フォント */
  --ffamily--base: "游ゴシック", "Yu Gothic", "YuGothic", "Noto Sans JP", "ヒラギノ角ゴ ProN W3", "メイリオ", Meiryo, sans-serif;
  --ffamily--en: "Lato", sans-serif;
  --ffamily--en-sub: "Helvetica Neue", "Helvetica", "Arial", sans-serif;


  --fsize-default-pc: clamp(12px, calc(9.333px + 0.444vw), 16px);
  --fsize-16-22: clamp(16px, calc(12px + 0.666vw), 22px);
  --fsize-16-30: clamp(16px, calc(6.666px + 1.555vw), 30px);
  --fsize-18-30: clamp(18px, calc(10px + 1.333vw), 30px);
  --fsize-20-30: clamp(20px, calc(13.333px + 1.111vw), 30px);
  --fsize-26-50: clamp(26px, calc(10px + 2.666vw), 50px);


  --contents--width: 1200px;
  --radius-pc: min(50px, 7vw);
  /* --radius-sp: 25px; */
}

/*────────────────────────────────────────────────────────────────────────
**  reset css
────────────────────────────────────────────────────────────────────────*/

/* ボックスサイズ */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* スムーススクロール */
html {
  scroll-behavior: smooth;
}

body {
  /* タイポグラフィ */
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;

  /* 横スクロール予防 */
  overflow-x: hidden;

  /* コンテンツが少なくても高さを保つ */
  display: flex;
  flex-flow: column;
  min-height: 100vh;
  margin: 0;
}

/* テキスト */
p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}
h1, h2, h3, h4, h5, h6 {
  /* text-wrap: balance; */
  line-height: 1.5;
  font-weight: 600;
  font-feature-settings: "palt";
}
body, h1, h2, h3, h4, h5, h6, p, figure, blockquote, dl, dd {
  margin: 0;
}

p {
  text-align: justify;
}




/* リスト */
ul, ol {
  margin: 0;
  padding: 0;
  list-style: none;
}
ul:not([class]) {
  margin: 1em 0;
  padding-left: 40px;
  list-style-type: disc;
}
ol:not([class]) {
  margin: 1em 0;
  padding-left: 40px;
  list-style-type: decimal;
}


/* メディア要素 */
img, picture, video, canvas, svg {
  display: inline-block;
  max-width: 100%;
}
img {
  vertical-align: middle;
}


/* アンカー */
a:not([class]) {
  text-decoration-skip-ink: auto;
  color: currentColor;
}


/* テーブル */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* ボーダー */
hr {
  display: block;
  border: 0;
  border-top: 1px solid var(--color-txt);
  margin: 1em 0;
  padding: 0;
}


/* フォーム  */
input, button, textarea, select {
  font: inherit;
}
button, input, label {
  line-height: 1.2;
}
@media screen and (max-width: 767px) {
  /* iOS端末でのフォームの拡大表示に対応 */
  input, textarea, select {
    font-size: 16px !important;
  }
}

*:focus {
  outline: none;
}




input[type="button"],
input[type="date"],
button,
select {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
  color: var(--color-txt);
}


/*────────────────────────────────────────────────────────────────────────
**  基本設定
────────────────────────────────────────────────────────────────────────*/


::selection {
  background: rgba(var(--color-txt-rgb), 0.3);
}

html {
  font-family: var(--ffamily--base);
  color: var(--color-txt);
  /* font-feature-settings: "palt"; */
  text-align: left;
  font-weight: 700;
  font-size: var(--fsize-default-pc);
  scroll-padding-top: var(--header-height-pc);
}
@media screen and (max-width: 999px) {
  html {
    scroll-padding-top: var(--header-height-sp);
  }
}
@media screen and (max-width: 767px) {
  /* html {
    font-size: var(--fsize-default-sp);
  } */
}

/* アンカーリンク */
a {
  text-decoration: none;
  color: var(--color-txt);
  transition: all .5s;
}
a:not([class]):hover {
  transition: all .8s;
  opacity: 0.7;
  filter: alpha(opacity=80);
}


/* 通常ボーダー */
hr {
  border-top: solid 1px var(--color-MonoE6);
  margin: 100px 0;
}

@media screen and (max-width: 999px) {
  hr {
    margin: 50px 0;
  }
}
i:not(:has(.gutenberg-txt)) {
  font-style: normal;
}


.txt-center,
.txt-center p {
  text-align: center;
}

/*────────────────────────────────────────────────────────────────────────
**  splideのデフォルトのスタイルを上書き
────────────────────────────────────────────────────────────────────────*/

.splide {
  .splide__track {
    background: transparent;
    .splide__slide {
      img {
        width: 100%;
        height: 100%;
      }
    }
  }
  .splide__pagination__page.is-active {
    background: var(--color-bg) !important;
    transform: scale(1) !important;
  }
  .splide__arrow {
    opacity: 1;
  }
}


/*────────────────────────────────────────────────────────────────────────
**  keyframes
────────────────────────────────────────────────────────────────────────*/




/*────────────────────────────────────────────────────────────────────────
**  画像
────────────────────────────────────────────────────────────────────────*/


.img-wrap img {
  height: auto;
}

/* トリミング */
.img-wrap.crop {
  background: white;
  width: 100%;
  overflow: hidden;
}
.img-wrap.crop.radius,
.crop.radius {
  border-radius: 30px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .img-wrap.crop.radius,
  .crop.radius {
    border-radius: 16px;
  }
}

.img-wrap.crop img {
  transition: .8s all;
  object-fit: contain;
  width: 100%;
  height: 100%;
}
.img-wrap.cover img {
  object-fit: cover;
}

.img-wrap.contain img {
  object-fit: contain;
}

a:hover:has(.img-wrap.crop) img,
button:hover:has(.img-wrap.crop) img {
  transform: scale(1.1, 1.1);
  transition: .5s all;
}
a:hover:has(.img-wrap.crop),
button:hover:has(.img-wrap.crop) {
  opacity: 1;
}


.img-wrap.aspect-1-1 img {
  aspect-ratio: 1/1;
  object-fit: cover;
}
/* .img-wrap.aspect-2-1 img {
  aspect-ratio: 2/1;
  object-fit: cover;
}
.img-wrap.aspect-2-3 img {
  aspect-ratio: 2/3;
  object-fit: cover;
}
.img-wrap.aspect-3-2 img {
  aspect-ratio: 3/2;
  object-fit: cover;
}
.img-wrap.aspect-4-3 img {
  aspect-ratio: 4/3;
  object-fit: cover;
}
.img-wrap.aspect-6-5 img {
  aspect-ratio: 6/5;
  object-fit: cover;
} */



/*────────────────────────────────────────────────────────────────────────
**  レスポンシブ切替用
────────────────────────────────────────────────────────────────────────*/
@media screen and (min-width: 768px) {
  .spOnly {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  .pcOnly {
    display: none !important;
  }
}
