@charset "UTF-8";
/* ====================================================
common layout style
==================================================== */
/* -----------------------------------------------
変数
----------------------------------------------- */
/* -----------------------------------------------
flex
----------------------------------------------- */
/* -----------------------------------------------
position
----------------------------------------------- */
/* -----------------------------------------------
icon
----------------------------------------------- */
/* -----------------------------------------------
font-size
----------------------------------------------- */
/* ====================================================
reset style
==================================================== */
body {
  line-height: 1;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  vertical-align: baseline;
}

* {
  box-sizing: border-box;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

html,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
}

table {
  font-size: 100%;
}

ul {
  list-style-type: none;
}

li img {
  vertical-align: bottom;
}

figure {
  margin: 0;
  padding: 0;
}

/* ====================================================
base
==================================================== */
/*--------------------------------------------
display
--------------------------------------------*/
.device_pc {
  display: inline-block !important;
}
@media print, screen and (max-width: 768px) {
  .device_pc {
    display: none !important;
  }
}

.device_sp {
  display: none !important;
}
@media print, screen and (max-width: 768px) {
  .device_sp {
    display: inline-block !important;
  }
}

/* ====================================================
base style
==================================================== */
html {
  font-size: 62.5%;
  font-size: 0.69vw;
}
@media print, screen and (max-width: 768px) {
  html {
    font-size: 2.666vw;
  }
}

body {
  font-family: "Zen Maru Gothic", sans-serif;
  word-wrap: break-word;
  overflow-wrap: break-word;
  line-height: 1.6;
  overflow: auto;
  font-weight: 400;
  color: #212121;
  vertical-align: middle;
  line-height: 2;
  font-size: clamp(15px, 15px + (20 - 15) * (100vw - 375px) / (1440 - 375), 20px);
}
@media print, screen and (max-width: 768px) {
  body {
    font-size: calc(15 / 375 * 100vw);
  }
}
body {
  position: relative;
  letter-spacing: 0em;
}
@media print, screen and (max-width: 768px) {
  body {
    font-weight: 400;
  }
}
body.is-fixed {
  height: 100%;
  overflow: hidden;
}

a {
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  color: #000000;
}

a:link {
  text-decoration: none;
}

a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
  opacity: 0.7;
}

a:active {
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: top;
  border: 0;
}

* {
  box-sizing: border-box;
}

figure {
  width: 100%;
}

::-moz-placeholder {
  color: #e4e4e4;
}

::placeholder {
  color: #e4e4e4;
}

em {
  font-weight: 600;
}

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

ol {
  text-indent: 0;
  list-style: decimal;
  padding-left: 1em;
}

summary {
  cursor: pointer;
  list-style: none;
  box-sizing: border-box;
}

summary::-webkit-details-marker {
  display: none;
}

button {
  font-family: "Zen Maru Gothic", sans-serif;
}

/* ====================================================
anime
==================================================== */
/* 共通 */
.anim-fade {
  opacity: 0;
  transition: opacity 0.8s ease, transform 0.8s ease;
}

/* 下から */
.fade-up {
  transform: translateY(24px);
}

/* 表示後 */
.anim-fade.is-visible {
  opacity: 1;
  transform: translate(0, 0);
}

/* ====================================================
slider
==================================================== */
.js-highlights-slider {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
}
.js-highlights-slider.slick-initialized {
  opacity: 1;
  visibility: visible;
}

/* ====================================================
 投稿 
==================================================== */
/* ===================================================
   Gutenberg 投稿用 基本スタイル
=================================================== */
/* ========================================
投稿本文共通
======================================== */
.news-single__content {
  line-height: 1.8;
  word-break: break-word;
}

/* ========================================
横並びブロック
======================================== */
.is-layout-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 4rem;
}

.is-layout-flex > * {
  flex: 1 1 250px;
  box-sizing: border-box;
  margin: 0;
}

.is-layout-flex figure {
  margin: 0;
}

@media print, screen and (max-width: 768px) {
  .is-layout-flex:not(.wp-block-gallery) {
    flex-direction: column;
    gap: 0.5rem;
  }
  .is-layout-flex:not(.wp-block-gallery) > * {
    flex: 1;
  }
}
/* ========================================
段落
======================================== */
.news-single__content p {
  margin-top: 0 !important;
  margin-bottom: 1em;
}

/* ========================================
画像・動画
======================================== */
.news-single__content img,
.news-single__content video {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 1em 0;
}

.wp-block-image {
  width: 100%;
  margin: 2em 0;
}

.wp-block-image figcaption {
  margin-top: 0.75em;
  font-size: 1.3rem;
  color: #777;
  text-align: center;
}

/* ========================================
埋め込み(Youtube)
======================================== */
.wp-block-embed {
  margin: 2em 0;
}

.wp-block-embed__wrapper {
  position: relative;
  aspect-ratio: 16/9;
}

.wp-block-embed iframe {
  width: 100%;
  height: 100%;
}

/* ========================================
見出し
======================================== */
.news-single__content strong {
  font-weight: 600;
}

.news-single__content h2 {
  text-align: center;
  font-size: clamp(20px, 20px + (23 - 20) * (100vw - 375px) / (1440 - 375), 23px);
}
@media print, screen and (max-width: 768px) {
  .news-single__content h2 {
    font-size: calc(20 / 375 * 100vw);
  }
}
.news-single__content h2 {
  font-weight: 600;
  position: relative;
  padding-bottom: 2rem;
  margin-top: 2em;
  margin-bottom: 3rem;
}
@media print, screen and (max-width: 768px) {
  .news-single__content h2 {
    line-height: 1.5;
    margin-bottom: 2rem;
  }
}
.news-single__content h2::before {
  content: "•••";
  position: absolute;
  left: 1rem;
  right: 0;
  bottom: 0;
  color: #b0d08f;
  font-size: 2rem;
  line-height: 1;
  letter-spacing: 0.4em;
}

.news-single__content h3 {
  padding: 1em 0 0.4em;
  font-size: clamp(24px, 24px + (26 - 24) * (100vw - 375px) / (1440 - 375), 26px);
}
@media print, screen and (max-width: 768px) {
  .news-single__content h3 {
    font-size: calc(24 / 375 * 100vw);
  }
}
.news-single__content h3 {
  border-bottom: 1px solid #2a6a30;
}

.news-single__content h4 {
  padding: 1em 0 0.4em;
  color: #3b6043;
  font-size: clamp(18px, 18px + (18 - 18) * (100vw - 375px) / (1440 - 375), 18px);
}
@media print, screen and (max-width: 768px) {
  .news-single__content h4 {
    font-size: calc(18 / 375 * 100vw);
  }
}

/* ========================================
リスト
======================================== */
.news-single__content ul,
.news-single__content ol {
  margin-bottom: 1em;
  padding-left: 0;
  line-height: 1.8;
}

.news-single__content ul li {
  position: relative;
  padding-left: 1em;
}

.news-single__content ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.75em;
  width: 0.35em;
  height: 0.35em;
  border-radius: 50%;
  background: #225a3c;
}

.news-single__content ol {
  padding-left: 1.5em;
}

/* ========================================
引用
======================================== */
.wp-block-quote {
  margin: 2em 0;
  padding: 1.5em 2em;
  border-left: 4px solid #225a3c;
  background: #f7f7f7;
  color: #555;
  font-style: italic;
}

.wp-block-quote p:last-child {
  margin-bottom: 0;
}

/* ========================================
テーブル
======================================== */
.wp-block-table table thead {
  border-bottom: none;
}

.wp-block-table {
  overflow-x: auto;
  display: block;
  margin-bottom: 2em;
}

.wp-block-table table {
  width: 100%;
  min-width: 600px;
  border-collapse: collapse;
}

.wp-block-table th {
  background: #225a3c;
  color: #fff;
}

.wp-block-table th,
.wp-block-table td {
  padding: 1em;
  border: 1px solid #ddd;
}

/* ========================================
コード
======================================== */
.wp-block-code {
  overflow-x: auto;
  padding: 1rem;
  background: #f5f5f5;
  border-radius: 4px;
  margin-bottom: 2em;
}

.wp-block-code code {
  font-family: monospace;
}

/* ========================================
ボタン
======================================== */
.wp-block-button {
  text-align: center;
  margin: 2em 0;
}

.wp-block-button__link {
  display: inline-block;
  padding: 1em 2em;
  border-radius: 999px;
  background: #225a3c;
  color: #fff;
  text-decoration: none;
}

/* ========================================
区切り線
======================================== */
.wp-block-separator {
  margin: 3em 0;
  border: none;
  border-top: 1px solid #ddd;
}

/* ========================================
ギャラリー
======================================== */
.wp-block-gallery {
  margin: 2em 0;
  gap: 1.5rem;
}

.wp-block-gallery img {
  width: 100%;
}

/* ========================================
配置
======================================== */
.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.alignleft {
  float: left;
  margin: 0 2rem 2rem 0;
}

.alignright {
  float: right;
  margin: 0 0 2rem 2rem;
}

@media print, screen and (max-width: 768px) {
  .alignleft,
  .alignright {
    float: none;
    display: block;
    margin: 2rem auto;
  }
}/*# sourceMappingURL=common.css.map */