@charset "UTF-8";
/* Scss Document */
:root {
  /* color -------------------------------------------------*/
  --color_txt: #000;
  --color_bg: #f0f0f0;
  --color_bg02: #fbf4e5;
  --color_bg03:#dbe9f7;
  --color_warning: #CF1212;
  --color_main: #004ea2;
  --color_border: #ccc;
  --color_accent: #f6ab00;
  --color_grade:linear-gradient( to right, rgb(246,122,0) 0%, rgb(246,171,0) 100%);
  --color_btn:linear-gradient( to right, rgb(246,122,0) 50%, rgb(246,171,0) 100%);
  --color_mizu: #3181d7;
  --color_twitter: #1DA1F2;
  --color_facebook: #1877f2;
  --color_line: #00b900;
  --color_youtube: #DA1725;
  --color_x: #0f1419;
  --color_insta: #e1306c;
  /* transition speed ------------------------------------------------- */
  --trans_speed: 0.2s;
  /* contents size ------------------------------------------------- */
  --contents_max: 1800px;
  --contents_wide: 1600px;
  --contents_lg: 1400px;
  --contents_base: 1200px;
  --contents_sm: 1000px;
  --contents_ss: 800px;
  /* padding -------------------------------------------------*/
  --padding_large: 140px;
  --padding_medium: 100px;
  --padding_small: 80px;
  --padding_ss: 50px;
  /* wrapper padding */
  --wrap-padding:5vw;
  --wrap-padding_md:3vw;
  --wrap-padding_lg:60px;
  /* text size -------------------------------------------------*/
  --fontSize_sm: 14;
  --fontSize_md: 15;
  --fontSize_lg: 16;
  /* header height -------------------------------------------------*/
  --header_height: 70px;
  --header_height_md: 90px;
  --header_height_lg: 100px;
}

* {
  box-sizing: border-box;
}

/* webkit specific styles */
input[type=color]::-webkit-color-swatch {
  border: none;
}

input[type=color]::-webkit-color-swatch-wrapper {
  padding: 0;
}

/* 
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com 
Twitter: @rich_clark
*/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  /*vertical-align:baseline;
  background:transparent;
  font-weight:inherit;*/
}

body {
  line-height: 1;
  -webkit-text-size-adjust: 100%;
}

nav ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

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

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
  font-family: inherit;
}

input:focus {
  outline: none;
}

ul:not(.entryBody ul), ol:not(.entryBody ol) {
  list-style-type: none;
}

button {
  font-family: inherit;
}

img {
  vertical-align: bottom;
  max-width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
}

svg {
  width: 100%;
  fill: #000;
  max-width: 100%;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header_height20px);
}
@media screen and (min-width: 768px) {
  html {
    scroll-padding-top: var(--header_height_md20px);
  }
}
@media screen and (min-width: 1200px) {
  html {
    scroll-padding-top: var(--header_height_lg20px);
  }
}

body {
  line-height: 1;
  font-family: "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Noto Sans JP", sans-serif;
  color: var(--color_txt);
  position: relative;
  overflow-wrap: anywhere;
  word-break: normal;
  line-break: strict;
  text-autospace: normal;
}
body.is-menuopen {
  overflow: hidden;
  height: 100%;
}
body {
  /*
    &::before{
      content: '';
      background: rgb(0 0 0 / 0.5);
      display: block;
      width: 100%;
      height: 100vh;
      position: absolute;
      left: 0;
      top: 0;
      z-index: 1;
    }
  */
}

a {
  outline: none;
  color: var(--color_txt);
  text-decoration: none;
}

/*=============================================================
  parts/base.scss
==============================================================*/
/* base style
---------------------------------------------*/
[class*=base] {
  width: 100%;
  padding-left: var(--wrap-padding);
  padding-right: var(--wrap-padding);
  box-sizing: border-box;
  margin: 0px auto;
}
@media screen and (min-width: 768px) {
  [class*=base] {
    padding-inline: var(--wrap-padding_md);
  }
}
@media screen and (min-width: 1200px) {
  [class*=base] {
    padding-inline: var(--wrap-padding_lg);
  }
}
[class*=base]:not(.base--full) {
  max-width: calc(var(--contents_size) + var(--wrap-padding) * 2);
}
@media screen and (min-width: 768px) {
  [class*=base]:not(.base--full) {
    max-width: calc(var(--contents_size) + var(--wrap-padding_md) * 2);
  }
}
@media screen and (min-width: 1200px) {
  [class*=base]:not(.base--full) {
    max-width: calc(var(--contents_size) + var(--wrap-padding_lg) * 2);
  }
}
[class*=base] [class*=base] {
  padding-left: 0px !important;
  padding-right: 0px !important;
  max-width: var(--contents_size);
}
@media screen and (min-width: 960px) {
  [class*=base] [class*=base] {
    max-width: var(--contents_size);
  }
}

.base--max {
  --contents_size: var(--contents_max);
}

.base--wide {
  --contents_size: var(--contents_wide);
}

.base--large {
  --contents_size: var(--contents_lg);
}

.base {
  --contents_size: var(--contents_base);
}

.base--small {
  --contents_size: var(--contents_sm);
}

.base--ss {
  --contents_size: var(--contents_ss);
}

/*=============================================================
  space.scss
==============================================================*/
.space--large {
  padding-top: calc(var(--padding_large) / 2);
  padding-bottom: calc(var(--padding_large) / 2);
}
@media screen and (min-width: 768px) {
  .space--large {
    padding-top: calc(var(--padding_large) / 3 * 2);
    padding-bottom: calc(var(--padding_large) / 3 * 2);
  }
}
@media screen and (min-width: 1200px) {
  .space--large {
    padding-top: var(--padding_large);
    padding-bottom: var(--padding_large);
  }
}

.space--medium {
  padding-top: calc(var(--padding_medium) / 2);
  padding-bottom: calc(var(--padding_medium) / 2);
}
@media screen and (min-width: 768px) {
  .space--medium {
    padding-top: calc(var(--padding_medium) / 3 * 2);
    padding-bottom: calc(var(--padding_medium) / 3 * 2);
  }
}
@media screen and (min-width: 1200px) {
  .space--medium {
    padding-top: var(--padding_medium);
    padding-bottom: var(--padding_medium);
  }
}

.space--small {
  padding-top: calc(var(--padding_small) / 2);
  padding-bottom: calc(var(--padding_small) / 2);
}
@media screen and (min-width: 768px) {
  .space--small {
    padding-top: calc(var(--padding_small) / 3 * 2);
    padding-bottom: calc(var(--padding_small) / 3 * 2);
  }
}
@media screen and (min-width: 1200px) {
  .space--small {
    padding-top: var(--padding_small);
    padding-bottom: var(--padding_small);
  }
}

.space--ss {
  padding-top: calc(var(--padding_ss) / 2);
  padding-bottom: calc(var(--padding_ss) / 2);
}
@media screen and (min-width: 768px) {
  .space--ss {
    padding-top: calc(var(--padding_ss) / 2);
    padding-bottom: calc(var(--padding_ss) / 2);
  }
}
@media screen and (min-width: 1200px) {
  .space--ss {
    padding-top: var(--padding_ss);
    padding-bottom: var(--padding_ss);
  }
}

.space--contents {
  padding-top: calc(var(--padding_medium) / 3);
  padding-bottom: var(--padding_medium);
}
@media screen and (min-width: 768px) {
  .space--contents {
    padding-top: calc(var(--padding_medium) / 3 * 2);
    padding-bottom: var(--padding_large);
  }
}
@media screen and (min-width: 1200px) {
  .space--contents {
    padding-top: var(--padding_medium);
    padding-bottom: calc(var(--padding_large) * 1.5);
  }
}

/*=============================================================
  sectionbox.scss
==============================================================*/
.sectionbox {
  margin-top: calc(var(--padding_large) / 3);
}
@media screen and (min-width: 768px) {
  .sectionbox {
    margin-top: calc(var(--padding_large) / 3 * 2);
  }
}
@media screen and (min-width: 1200px) {
  .sectionbox {
    margin-top: var(--padding_large);
  }
}
.sectionbox--medium {
  margin-top: calc(var(--padding_medium) / 3);
}
@media screen and (min-width: 768px) {
  .sectionbox--medium {
    margin-top: calc(var(--padding_medium) / 3 * 2);
  }
}
@media screen and (min-width: 1200px) {
  .sectionbox--medium {
    margin-top: var(--padding_medium);
  }
}
.sectionbox--small {
  margin-top: calc(var(--padding_small) / 3);
}
@media screen and (min-width: 768px) {
  .sectionbox--small {
    margin-top: calc(var(--padding_small) / 3 * 2);
  }
}
@media screen and (min-width: 1200px) {
  .sectionbox--small {
    margin-top: var(--padding_small);
  }
}
.sectionbox--ss {
  margin-top: calc(var(--padding_ss) / 3 * 2);
}
@media screen and (min-width: 768px) {
  .sectionbox--ss {
    margin-top: calc(var(--padding_ss) / 3 * 2);
  }
}
@media screen and (min-width: 1200px) {
  .sectionbox--ss {
    margin-top: var(--padding_ss);
  }
}

/*=============================================================
  background.scss
==============================================================*/
.contents_bg {
  background: var(--color_bg);
}

/*=============================================================
  gridLayout.scss
==============================================================*/
.c-grid {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  flex-direction: row;
  row-gap: 60px;
}
@media screen and (max-width: 1199px) {
  .c-grid {
    row-gap: 50px;
  }
}
@media screen and (max-width: 767px) {
  .c-grid {
    row-gap: 40px;
  }
}
.c-grid--reverse {
  flex-direction: row-reverse;
}
@media screen and (max-width: 767px) {
  .c-grid--reverse {
    flex-direction: column;
  }
}

.c-gridItem--cell30 {
  width: 28%;
}
@media screen and (max-width: 767px) {
  .c-gridItem--cell30 {
    width: 100%;
  }
}
.c-gridItem--cell35 {
  width: 33%;
}
@media screen and (max-width: 767px) {
  .c-gridItem--cell35 {
    width: 100%;
  }
}
.c-gridItem--cell40 {
  width: 38%;
}
@media screen and (max-width: 767px) {
  .c-gridItem--cell40 {
    width: 100%;
  }
}
.c-gridItem--cell45 {
  width: 43%;
}
@media screen and (max-width: 767px) {
  .c-gridItem--cell45 {
    width: 100%;
  }
}
.c-gridItem--cell55 {
  width: 52%;
}
@media screen and (max-width: 767px) {
  .c-gridItem--cell55 {
    width: 100%;
  }
}
.c-gridItem--cell60 {
  width: 57%;
}
@media screen and (max-width: 767px) {
  .c-gridItem--cell60 {
    width: 100%;
  }
}
.c-gridItem--cell65 {
  width: 62%;
}
@media screen and (max-width: 767px) {
  .c-gridItem--cell65 {
    width: 100%;
  }
}
.c-gridItem--cell70 {
  width: 67%;
}
@media screen and (max-width: 767px) {
  .c-gridItem--cell70 {
    width: 100%;
  }
}

.c-gridItem_img {
  text-align: center;
}

.c-grid--row2 .c-gridItem {
  width: 47%;
}
@media screen and (max-width: 767px) {
  .c-grid--row2 .c-gridItem {
    width: 100%;
  }
}
.c-grid--row2_spHalf {
  flex-direction: row;
}
.c-grid--row2_spHalf .c-gridItem {
  width: 47%;
}
@media screen and (max-width: 767px) {
  .c-grid--row2_spHalf .c-gridItem {
    width: 48%;
  }
}
.c-grid--row2_wrapnon {
  flex-direction: row;
}
.c-grid--row2_wrapnon .c-gridItem {
  width: 47%;
}

.c-grid--row3::after {
  content: "";
  display: block;
  width: 31%;
}
@media screen and (max-width: 767px) {
  .c-grid--row3::before {
    display: none;
  }
}
.c-grid--row3 .c-gridItem {
  width: 31%;
}
@media screen and (max-width: 767px) {
  .c-grid--row3 .c-gridItem {
    width: 100%;
  }
}
.c-grid--row3_spHalf {
  flex-direction: row;
}
.c-grid--row3_spHalf .c-gridItem {
  width: 31%;
}
@media screen and (max-width: 767px) {
  .c-grid--row3_spHalf .c-gridItem {
    width: 48%;
  }
}
.c-grid--row3_spHalf .c-gridItem:last-of-type {
  margin: 0;
}
@media screen and (max-width: 767px) {
  .c-grid--row3_spHalf .c-gridItem:last-of-type {
    margin: 0 auto;
  }
}
.c-grid--row3_wrapnon {
  flex-direction: row;
}
.c-grid--row3_wrapnon::after {
  content: "";
  display: block;
  width: 31%;
}
.c-grid--row3_wrapnon .c-gridItem {
  width: 31%;
}

.c-grid--row4::before {
  content: "";
  display: block;
  width: 23%;
  order: 1;
}
.c-grid--row4::after {
  content: "";
  display: block;
  width: 23%;
}
@media screen and (max-width: 767px) {
  .c-grid--row4::before {
    display: none;
  }
}
.c-grid--row4 .c-gridItem {
  width: 23%;
}
@media screen and (max-width: 767px) {
  .c-grid--row4 .c-gridItem {
    width: 48%;
  }
}
@media screen and (max-width: 767px) {
  .c-grid--row4 .c-gridItem {
    width: 100%;
  }
}
.c-grid--row4_spHalf {
  flex-direction: row;
}
.c-grid--row4_spHalf::before {
  content: "";
  display: block;
  width: 23%;
  order: 1;
}
.c-grid--row4_spHalf::after {
  content: "";
  display: block;
  width: 23%;
}
@media screen and (max-width: 767px) {
  .c-grid--row4_spHalf::before {
    display: none;
  }
}
.c-grid--row4_spHalf .c-gridItem {
  width: 23%;
}
@media screen and (max-width: 767px) {
  .c-grid--row4_spHalf .c-gridItem {
    width: 48%;
  }
}
.c-grid--row4_wrapnon {
  flex-direction: row;
}
.c-grid--row4_wrapnon::before {
  content: "";
  display: block;
  width: 24%;
  order: 1;
}
.c-grid--row4_wrapnon::after {
  content: "";
  display: block;
  width: 24%;
}
.c-grid--row4_wrapnon .c-gridItem {
  width: 23%;
}

/*=============================================================
  breadcrumb.scss
==============================================================*/
.c-pan {
  display: none;
}
@media screen and (min-width: 960px) {
  .c-pan {
    display: block;
    position: relative;
    z-index: 20;
  }
}
.c-pan ul {
  padding-top: 20px;
  padding-bottom: 20px;
  display: flex;
  font-size: 0.875rem;
  color: var(--color_txt);
  line-height: 1.2;
}
.c-pan ul li + li {
  padding-left: 20px;
  position: relative;
}
.c-pan ul li + li::before {
  content: "＞";
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  text-align: center;
}
.c-pan ul li:last-of-type {
  flex: 1;
}
.c-pan ul a {
  color: var(--color_txt);
  display: inline-block;
}
.c-pan ul a:hover {
  text-decoration: underline;
}

/*=============================================================
  txt.scss
==============================================================*/
/* text style
---------------------------------------------*/
.txtbox p,
.txt {
  font-size: clamp(0.875rem, 0.832rem + 0.192vw, 1rem);
  line-height: 1.8;
}
@media screen and (min-width: 768px) {
  .txtbox p,
  .txt {
    line-height: 2;
  }
}
@media screen and (min-width: 1200px) {
  .txtbox p,
  .txt {
    line-height: 2.2;
  }
}

.txtbox:not(.entryBody) p + p,
.txt + .txt {
  margin-top: 15px;
}
@media screen and (min-width: 768px) {
  .txtbox:not(.entryBody) p + p,
  .txt + .txt {
    margin-top: 30px;
  }
}

.txt--small {
  font-size: clamp(0.75rem, 0.707rem + 0.192vw, 0.875rem);
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .txt--small {
    line-height: 1.7;
  }
}
@media screen and (min-width: 1200px) {
  .txt--small {
    line-height: 1.8;
  }
}
.txt--small + .txt, .txt + .txt--small {
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .txt--small + .txt, .txt + .txt--small {
    margin-top: 30px;
  }
}

.txt--big {
  font-size: clamp(1rem, 0.957rem + 0.192vw, 1.125rem);
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .txt--big {
    line-height: 1.8;
  }
}
@media screen and (min-width: 1200px) {
  .txt--big {
    line-height: 2;
  }
}
.txt--big + .txt, .txt + .txt--big {
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .txt--big + .txt, .txt + .txt--big {
    margin-top: 30px;
  }
}

.c-underline {
  display: inline-block;
  padding: 0 2px 2px 2px;
  background: linear-gradient(transparent 60%, rgba(255, 255, 255, 0.6) 60%);
}

.c-txtCenter {
  text-align: left;
}
@media screen and (min-width: 768px) {
  .c-txtCenter {
    text-align: center;
  }
}

.c-txtAnnotation {
  font-size: 0.75rem;
  line-height: 1.3;
}
@media screen and (min-width: 768px) {
  .c-txtAnnotation {
    font-size: 0.8125rem;
  }
}

.c-notesMark {
  position: relative;
  padding-left: 15px;
}
@media screen and (min-width: 1200px) {
  .c-notesMark {
    padding-left: 20px;
  }
}
.c-notesMark::before {
  content: "※";
  position: absolute;
  left: 0;
  top: 0;
}

/*=============================================================
  title.scss
==============================================================*/
.c-heading01 {
  border-left: 5px solid var(--color_main);
  background: var(--color_bg);
  padding: 10px 15px;
  font-size: clamp(1.25rem, 1.077rem + 0.769vw, 1.75rem);
  line-height: 1.3;
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .c-heading01 {
    padding: 10px 15px;
    border-left-width: 7px;
    margin-bottom: 30px;
  }
}
@media screen and (min-width: 1200px) {
  .c-heading01 {
    padding: 15px 20px;
    margin-bottom: 40px;
  }
}

.c-heading02 {
  font-size: clamp(1.125rem, 0.952rem + 0.769vw, 1.625rem);
  line-height: 1.3;
  border-top: 2px solid var(--color_main);
  border-bottom: 2px solid var(--color_main);
  padding: 10px 0;
  margin-bottom: 20px;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .c-heading02 {
    padding: 15px 0;
    margin-bottom: 25px;
  }
}
@media screen and (min-width: 1200px) {
  .c-heading02 {
    margin-bottom: 30px;
  }
}

/*=============================================================
  button.scss
==============================================================*/
.c-btn01 {
  background: var(--color_main);
  width: 100%;
  min-width: 200px;
  max-width: 300px;
  padding: 20px 10px;
  color: #fff;
  border-radius: 9999px;
  display: block;
  text-align: center;
  font-size: clamp(1rem, 0.957rem + 0.192vw, 1.125rem);
  font-weight: 700;
  transition: var(--trans_speed) all;
}
@media screen and (min-width: 768px) {
  .c-btn01 {
    padding: 20px 10px;
  }
}
@media (any-hover: hover) {
  .c-btn01:hover {
    background: color-mix(in srgb, var(--color_main) 60%, #000);
  }
}
.c-btn01.-cen {
  margin-inline: auto;
}

.c-btn02 {
  background: var(--color_btn);
  background-size: 200%;
  background-position: right center;
  width: 100%;
  max-width: 380px;
  padding: 20px 10px;
  color: #fff;
  border-radius: 9999px;
  display: block;
  text-align: center;
  font-size: clamp(1rem, 0.957rem + 0.192vw, 1.125rem);
  font-weight: 700;
  transition: var(--trans_speed) all;
  position: relative;
}
@media screen and (min-width: 768px) {
  .c-btn02 {
    padding: 20px 10px;
  }
}
@media screen and (min-width: 1200px) {
  .c-btn02 {
    padding: 25px 10px;
  }
}
.c-btn02::after {
  font-family: "Font Awesome 6 Free";
  content: "\f061";
  font-weight: 900;
  position: absolute;
  right: 15px;
  top: 50%;
  translate: 0 -20%;
  font-size: 80%;
}
@media screen and (min-width: 768px) {
  .c-btn02::after {
    right: 20px;
  }
}
@media (any-hover: hover) {
  .c-btn02:hover {
    background-position: left center;
  }
}
.c-btn02.-cen {
  margin-inline: auto;
}

/*=============================================================
  formParts.scss
==============================================================*/
/* form parts style
---------------------------------------------*/
.form50 {
  width: 50px;
}

.form70 {
  width: 70px;
}

.form100 {
  width: 100%;
  max-width: 100px;
}

.form150 {
  width: 100%;
  max-width: 150px;
}

.form200 {
  width: 100%;
  max-width: 200px;
}

.form250 {
  width: 100%;
  max-width: 250px;
}

.form300 {
  width: 100%;
  max-width: 300px;
}

.form350 {
  width: 100%;
  max-width: 350px;
}

.form400 {
  width: 100%;
  max-width: 400px;
}

.formmax {
  width: 100%;
}

.comment_box {
  width: 100%;
  margin: 5px 0px 5px 0px;
  height: 300px;
}

.formZip {
  width: 100%;
  max-width: 100px;
}
@media screen and (min-width: 560px) {
  .formZip {
    max-width: 150px;
  }
}

.formPostbtn {
  display: inline-block;
  max-width: 150px;
  margin-left: 10px;
}
.formPostbtn button {
  background: #333;
  color: #fff;
  font-size: 0.75rem;
  cursor: pointer;
  padding: 8px 10px;
  font-weight: bold;
  border: none;
}
@media screen and (min-width: 560px) {
  .formPostbtn button {
    font-size: 0.875rem;
  }
}

input[type=text],
input[type=tel],
input[type=email],
textarea {
  border: 1px solid #ccc;
  padding: 10px 15px;
  border-radius: 3px;
  box-sizing: border-box;
  font-size: 1rem;
}
input[type=text]:focus,
input[type=tel]:focus,
input[type=email]:focus,
textarea:focus {
  border: 1px solid #fff;
  box-shadow: 0px 0px 0 2px var(--color_main);
}
input[type=text]:focus::placeholder,
input[type=tel]:focus::placeholder,
input[type=email]:focus::placeholder,
textarea:focus::placeholder {
  color: transparent;
}
input[type=text]::placeholder,
input[type=tel]::placeholder,
input[type=email]::placeholder,
textarea::placeholder {
  color: #999;
}

select {
  border: 1px solid #ccc;
  padding: 10px 15px;
  background: #fff;
  font-size: 1rem;
}

input:focus,
textarea:focus {
  border: 1px solid #fff;
  box-shadow: 0px 0px 3px #ccc;
}

input[type=radio] {
  margin-top: -3px;
}

button:disabled {
  opacity: 0.4 !important;
  cursor: default !important;
}

label {
  display: inline-block;
  padding: 10px;
}

/*=============================================================
  formlayout.scss
==============================================================*/
.formWrap {
  width: 100%;
  margin-inline: auto;
}

.formTable {
  width: 100%;
  border-bottom: 1px solid var(--color_border);
  margin-bottom: 40px;
}
.formTable caption {
  text-align: left;
  font-size: clamp(1.25rem, 1.034rem + 0.962vw, 1.875rem);
  color: var(--color_main);
  font-weight: 700;
  padding: 20px 0;
}
.formTable th,
.formTable td {
  text-align: left;
  padding-inline: 15px;
}
@media screen and (max-width: 767px) {
  .formTable th,
  .formTable td {
    display: block;
    width: 100%;
  }
}
.formTable th {
  font-size: 0.9375rem;
  padding-top: 30px;
  border-top: 1px solid var(--color_border);
}
@media screen and (min-width: 768px) {
  .formTable th {
    padding-block: 20px;
    padding-left: 20px;
    padding-right: 0;
    position: relative;
  }
}
@media screen and (min-width: 1200px) {
  .formTable th {
    font-size: 1rem;
    padding-block: 30px;
  }
}
.formTable th span {
  background: var(--color_warning);
  color: #fff;
  font-size: 0.75rem;
  display: inline-block;
  padding: 2px 3px;
  border-radius: 3px;
  margin-left: 10px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .formTable th span {
    padding: 2px 3px 5px;
    position: absolute;
    right: 0;
    top: 50%;
    translate: 0 -50%;
  }
}
@media screen and (min-width: 1200px) {
  .formTable th span {
    font-size: 0.8125rem;
    padding: 5px 8px;
    margin-right: 10px;
  }
}
.formTable td {
  font-size: 0.9375rem;
  padding-top: 10px;
  padding-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .formTable td {
    padding-block: 30px;
    padding-inline: 30px;
    border-top: 1px solid var(--color_border);
  }
}
@media screen and (min-width: 1200px) {
  .formTable td {
    font-size: 1rem;
    padding-block: 30px;
    padding-inline: 40px;
  }
}

.confirmTable {
  width: 100%;
  border-bottom: 1px solid var(--color_border);
  margin: 40px 0 60px 0;
}
@media screen and (min-width: 768px) {
  .confirmTable {
    table-layout: fixed;
  }
}
.confirmTable th,
.confirmTable td {
  text-align: left;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .confirmTable th,
  .confirmTable td {
    display: block;
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media screen and (min-width: 768px) {
  .confirmTable th,
  .confirmTable td {
    padding: 30px 20px;
  }
}
@media screen and (min-width: 1200px) {
  .confirmTable th,
  .confirmTable td {
    padding: 40px 30px;
  }
}
.confirmTable th {
  font-size: 0.9375rem;
  border-top: 1px solid var(--color_border);
}
@media screen and (max-width: 767px) {
  .confirmTable th {
    padding-top: 30px;
  }
}
@media screen and (min-width: 768px) {
  .confirmTable th {
    font-size: 1rem;
    width: 33%;
  }
}
@media screen and (min-width: 1200px) {
  .confirmTable th {
    font-size: 1.125rem;
  }
}
.confirmTable th span {
  background: var(--color_warning);
  color: #fff;
  font-size: 0.75rem;
  display: inline-block;
  padding: 2px 3px;
  border-radius: 3px;
  margin-right: 5px;
  position: relative;
  top: -2px;
}
@media screen and (min-width: 768px) {
  .confirmTable th span {
    padding: 2px 3px;
  }
}
@media screen and (min-width: 1200px) {
  .confirmTable th span {
    font-size: 0.8125rem;
    padding: 5px 8px;
    margin-right: 10px;
  }
}
.confirmTable td {
  font-size: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .confirmTable td {
    padding-top: 20px;
    padding-bottom: 30px;
  }
}
@media screen and (min-width: 768px) {
  .confirmTable td {
    border-top: 1px solid var(--color_border);
  }
}
@media screen and (min-width: 1200px) {
  .confirmTable td {
    font-size: 1rem;
  }
}

.formList_row {
  display: flex;
  flex-wrap: wrap;
  column-gap: 20px;
  row-gap: 5px;
}
@media screen and (min-width: 768px) {
  .formList_row {
    row-gap: 10px;
  }
}

.formFlex {
  display: flex;
  flex-wrap: wrap;
  column-gap: 20px;
  row-gap: 15px;
}
.formFlex div {
  display: flex;
  align-items: center;
}
.formFlex--sanka {
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .formFlex--sanka {
    flex-direction: row;
  }
}

.formPointTxt {
  margin-top: 20px;
  font-size: 0.8125rem;
  line-height: 1.3;
}
.formPointTxt li::before {
  color: var(--color_warning);
}

.formPrivacy {
  padding: 20px;
  text-align: center;
  margin: 0px auto;
}
.formPrivacy_txt {
  font-size: 0.8125rem;
  line-height: 1.5;
  padding-bottom: 15px;
}
@media screen and (min-width: 1200px) {
  .formPrivacy_txt {
    font-size: 0.875rem;
  }
}
.formPrivacy_check {
  font-size: 1.125rem;
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .formPrivacy_check {
    font-size: 1.1875rem;
  }
}
@media screen and (min-width: 1200px) {
  .formPrivacy_check {
    font-size: 1.25rem;
  }
}
.formPrivacy_check input {
  margin-right: 10px;
}

.error_txt {
  width: 100%;
  padding: 10px 15px 8px 35px;
  box-sizing: border-box;
  font-size: 108%;
  position: relative;
  background: #FFF5F5;
}

.error_txt i {
  display: block;
  position: absolute;
  top: 11px;
  left: 10px;
  font-size: 18px;
}

.error_box {
  background: #fff;
  padding: 20px;
  border: 1px solid #bcbcbc;
  border-radius: 3px;
  margin-bottom: 40px;
}

.error_box p {
  color: #CF1212;
  padding-bottom: 10px;
  font-size: 0.8125rem;
}

.submit_btn {
  width: 90%;
  max-width: 340px;
  margin: 30px auto;
}
.submit_btn button[type=submit] {
  width: 100%;
  background: var(--color_btn);
  background-size: 200%;
  background-position: right center;
  border: none;
  border-radius: 9999px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  cursor: pointer;
  font-size: 16px;
  font-weight: bold;
  padding: 15px;
  text-align: center;
  position: relative;
  transition: var(--trans_speed) all;
}
@media screen and (min-width: 768px) {
  .submit_btn button[type=submit] {
    font-size: 18px;
    padding: 20px 15px;
  }
}
@media screen and (min-width: 1200px) {
  .submit_btn button[type=submit] {
    padding: 25px 15px;
    font-size: 20px;
  }
}
@media (any-hover: hover) {
  .submit_btn button[type=submit]:hover {
    background-position: left center;
  }
}
.submit_btn button[type=submit] .c-btniconSvg {
  display: inline-block;
}
.submit_btn button[type=submit] .c-btniconSvg svg {
  fill: #fff;
  width: 16px;
  aspect-ratio: 320/512;
}

.back_btn {
  width: 40%;
  max-width: 250px;
  margin: 20px auto 0px auto;
  text-align: center;
}
.back_btn button {
  border: 1px solid #b9b9b9;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin: 0px auto;
  color: var(--color_txt);
  padding: 10px 0px 8px 0px;
  font-size: 13px;
  text-decoration: none;
  border-radius: 3px;
  cursor: pointer;
  background: rgb(238, 238, 238);
}
@media screen and (min-width: 768px) {
  .back_btn button {
    padding: 13px 0px 13px 0px;
    font-size: 15px;
    line-height: 1.5;
  }
}
.back_btn button .c-btniconSvg {
  display: inline-flex;
  align-items: center;
  padding-top: 2px;
}
.back_btn button .c-btniconSvg svg {
  fill: var(--color_txt);
  width: 16px;
  aspect-ratio: 320/512;
}

.formbtn_box {
  margin-top: 40px;
  margin-bottom: 40px;
}

/*=============================================================
  list.scss
==============================================================*/
.c-ulList {
  padding-left: 25px;
}
.c-ulList li {
  list-style: disc;
  font-size: calc(var(--fontSize_sm) / 16)rem;
  line-height: 1.8;
}
@media screen and (min-width: 560px) {
  .c-ulList li {
    font-size: calc(var(--fontSize_md) / 16)rem;
  }
}
@media screen and (min-width: 960px) {
  .c-ulList li {
    font-size: calc(var(--fontSize_lg) / 16)rem;
    line-height: 1.8;
  }
}
.c-ulList li + li {
  margin-top: 5px;
}

.c-olList {
  padding-left: 25px;
}
.c-olList li {
  list-style: decimal;
  font-size: calc(var(--fontSize_sm) / 16)rem;
  line-height: 1.8;
}
@media screen and (min-width: 560px) {
  .c-olList li {
    font-size: calc(var(--fontSize_md) / 16)rem;
  }
}
@media screen and (min-width: 960px) {
  .c-olList li {
    font-size: calc(var(--fontSize_lg) / 16)rem;
    line-height: 1.8;
  }
}
.c-olList li + li {
  margin-top: 5px;
}

.c-notesList li {
  position: relative;
  padding-left: 15px;
}
@media screen and (min-width: 960px) {
  .c-notesList li {
    padding-left: 20px;
  }
}
.c-notesList li::before {
  content: "※";
  position: absolute;
  left: 0;
  top: 0;
}

/*=============================================================
  loading.scss
==============================================================*/
.loading {
  position: fixed;
  width: 100svw;
  height: 100svh;
  z-index: 999;
  text-align: center;
  color: #fff;
  display: none;
}
.loading.is-active {
  display: block;
}

.js-fadein {
  opacity: 0;
}

/*=============================================================
  pagetop.scss
==============================================================*/
.pagetop {
  display: none;
}
@media screen and (min-width: 960px) {
  .pagetop {
    display: none;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--color_main);
    color: #000;
    position: fixed;
    right: 20px;
    bottom: 20px;
    border: 3px solid #fff;
    overflow: hidden;
    z-index: 100;
    cursor: pointer;
  }
  .pagetop::before {
    font-family: "Font Awesome 6 Free";
    content: "\f062";
    font-weight: 900;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    font-size: 0.9375rem;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
.pagetop * {
  display: none;
}
@media screen and (min-width: 960px) {
  .pagetop * {
    display: block;
  }
}

/*=============================================================
  youtube.scss
==============================================================*/
.c-youtube {
  position: relative;
  width: 100%;
}
.c-youtube::before {
  content: "";
  display: block;
  padding-top: 56.25%;
}
.c-youtube div {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.c-youtube iframe {
  width: 100%;
  height: 100%;
}

.c-video {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.c-video video {
  object-fit: cover;
  width: 102%;
  height: 102%;
}

/*=============================================================
  table.scss
==============================================================*/
.c-tableScroll {
  overflow: auto;
  max-width: 100%;
}
.c-tableScroll table {
  width: 680px !important;
}
@media screen and (min-width: 560px) {
  .c-tableScroll table {
    width: 100%;
  }
}

/*=============================================================
  hide.scss
==============================================================*/
.is-spHide {
  display: none;
}
@media screen and (min-width: 560px) {
  .is-spHide {
    display: block;
  }
}
.is-spHide--inline {
  display: none;
}
@media screen and (min-width: 560px) {
  .is-spHide--inline {
    display: inline;
  }
}

.is-pcHide {
  display: block;
}
@media screen and (min-width: 960px) {
  .is-pcHide {
    display: none;
  }
}
.is-pcHide--inline {
  display: inline;
}
@media screen and (min-width: 960px) {
  .is-pcHide--inline {
    display: none;
  }
}

.is-tabHide {
  display: block;
}
@media screen and (min-width: 560px) {
  .is-tabHide {
    display: none;
  }
}
@media screen and (min-width: 960px) {
  .is-tabHide {
    display: block;
  }
}
.is-tabHide--inline {
  display: inline;
}
@media screen and (min-width: 560px) {
  .is-tabHide--inline {
    display: none;
  }
}
@media screen and (min-width: 960px) {
  .is-tabHide--inline {
    display: inline;
  }
}

.is-spShow {
  display: block;
}
@media screen and (min-width: 560px) {
  .is-spShow {
    display: none;
  }
}
.is-spShow--inline {
  display: inline;
}
@media screen and (min-width: 560px) {
  .is-spShow--inline {
    display: none;
  }
}

.is-pcShow {
  display: none;
}
@media screen and (min-width: 960px) {
  .is-pcShow {
    display: block;
  }
}
.is-pcShow--inline {
  display: none;
}
@media screen and (min-width: 960px) {
  .is-pcShow--inline {
    display: inline;
  }
}

.is-tabShow {
  display: none;
}
@media screen and (min-width: 560px) {
  .is-tabShow {
    display: block;
  }
}
@media screen and (min-width: 960px) {
  .is-tabShow {
    display: none;
  }
}
.is-tabShow--inline {
  display: none;
}
@media screen and (min-width: 560px) {
  .is-tabShow--inline {
    display: inline;
  }
}
@media screen and (min-width: 960px) {
  .is-tabShow--inline {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .is-mdUnderHide {
    display: none;
  }
}

@media screen and (min-width: 768px) {
  .is-mdOverHide {
    display: none;
  }
}

/*=============================================================
  link.scss
==============================================================*/
.a-linkline:link, .a-linkline:visited {
  color: #1530A0;
  text-decoration: underline;
}
.a-linkline:hover, .a-linkline:active {
  color: #4460D5;
  text-decoration: none;
}

.c-anchorlink {
  padding-top: var(--header_height);
  margin-top: -var(--header_height);
}
@media screen and (min-width: 960px) {
  .c-anchorlink {
    padding-top: var(--header_height_lg);
    margin-top: -var(--header_height_lg);
  }
}

.c-hoverimg img {
  transition: all 0.3s;
  backface-visibility: hidden;
}
@media screen and (min-width: 960px) {
  .c-hoverimg:hover img {
    transform: scale(1.1);
  }
}

/*=============================================================
  animation.scss
==============================================================*/
.is-anime_img {
  position: relative;
  overflow: hidden;
}
.is-anime_img::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: var(--color_main);
  position: absolute;
  left: 0;
  top: 0;
  z-index: 10;
}
.is-anime_img[data-aos=is-animation]::after {
  transition-property: left;
  transition-duration: 0.2s;
  transition-delay: 0.1s;
}
.is-anime_img[data-aos=is-animation].aos-animate::after {
  left: 100%;
}
[data-aos=is-animation] .is-anime_img::after {
  transition-property: left;
  transition-duration: 0.2s;
  transition-delay: 0.1s;
}
[data-aos=is-animation].aos-animate .is-anime_img::after {
  left: 100%;
}
[data-aos=is-animationBox] .is-anime_img:nth-of-type(even)::after {
  transition-delay: 0s;
}
[data-aos=is-animationBox] .is-anime_img:nth-of-type(3n-1)::after {
  transition-delay: 0.15s;
}
[data-aos=is-animationBox] .is-anime_img:nth-of-type(3n)::after {
  transition-delay: 0.3s;
}
[data-aos=is-animationBox] .is-anime_img::after {
  transition-property: left;
  transition-duration: 0.2s;
  transition-delay: 0.1s;
}
[data-aos=is-animationBox].aos-animate .is-anime_img::after {
  left: 100%;
}

@keyframes animeRotation {
  0% {
    rotate: 0;
  }
  100% {
    rotate: 360deg;
  }
}
@keyframes animeScroll {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  50.1% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}
/*=============================================================
  aosCustomize.scss
==============================================================*/
[data-aos=fade-up] {
  transform: translate3d(0, 50px, 0);
}

[data-aos=fade-down] {
  transform: translate3d(0, -50px, 0);
}

[data-aos=fade-left] {
  -webkit-transform: translate3d(50px, 0, 0);
  transform: translate3d(50px, 0, 0);
}

/*=============================================================
  header.scss
=============================================================*/
.l-header {
  display: block;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 900;
}

.l-header_inner {
  padding-inline: 10px;
  height: var(--header_height);
  padding-block: 10px;
  display: grid;
  grid-template-columns: min(35%, 160px) 1fr calc(var(--header_height) - 30px) auto;
  grid-template-areas: "g-logo . g-contact g-btn";
  column-gap: 10px;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .l-header_inner {
    padding-inline: 20px;
    padding-block: 15px;
    height: var(--header_height_md);
    column-gap: 20px;
  }
}
@media screen and (min-width: 1200px) {
  .l-header_inner {
    grid-template-columns: min(20%, 184px) 1fr auto auto;
    grid-template-areas: "g-logo . g-link g-contact";
    padding-block: 20px;
    padding-inline: 30px;
    height: var(--header_height_lg);
    column-gap: 30px;
  }
}

.header-logo {
  grid-area: g-logo;
}

.header-link {
  grid-area: g-link;
}

.header-contact {
  grid-area: g-contact;
}
@media screen and (min-width: 1200px) {
  .header-contact {
    align-self: stretch;
  }
}

.naviBtn {
  grid-area: g-btn;
}

.header-logo {
  display: flex;
  justify-content: center;
  align-items: center;
}
.header-logo a {
  display: block;
  aspect-ratio: 184/55;
}

.header-link {
  display: none;
}
@media screen and (min-width: 1200px) {
  .header-link {
    display: block;
  }
}
.header-link a {
  display: inline-flex;
  align-items: center;
  column-gap: 5px;
  color: var(--color_txt);
  transition: var(--trans_speed) all;
  font-size: clamp(0.8125rem, 0.59rem + 0.463vw, 0.9375rem);
  font-weight: 700;
}
.header-link a::before {
  font-family: "Font Awesome 6 Free";
  content: "\f105";
  font-weight: 900;
  color: var(--color_accent);
  padding-top: 2px;
}
@media (any-hover: hover) {
  .header-link a:hover {
    color: var(--color_accent);
  }
}
#home .header-link a {
  color: #fff;
}
@media (any-hover: hover) {
  #home .header-link a:hover {
    color: var(--color_accent);
  }
}

.header-contact a {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 10px;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  background: var(--color_btn);
  background-size: 200%;
  background-position: right center;
  color: #fff;
  transition: var(--trans_speed) all;
  font-size: clamp(0.9375rem, 0.715rem + 0.463vw, 1.0625rem);
  text-transform: uppercase;
  font-family: "Lato", sans-serif;
  font-weight: 700;
  letter-spacing: 0.01rem;
}
@media screen and (min-width: 1200px) {
  .header-contact a {
    aspect-ratio: unset;
    height: 100%;
    width: 100%;
    padding: 5px 25px;
    border-radius: 9999px;
  }
}
.header-contact a svg {
  fill: #fff;
}
@media (any-hover: hover) {
  .header-contact a:hover {
    background-position: left center;
  }
}
.header-contact svg {
  width: 18px;
  aspect-ratio: 18/13;
}
.header-contact span {
  display: none;
}
@media screen and (min-width: 1200px) {
  .header-contact span {
    display: inline;
  }
}

/**/
.l-header.is-scroll {
  position: fixed;
  z-index: 999;
  background: #fff;
  animation: anime-scrollMenu 0.5s forwards;
}
@keyframes anime-scrollMenu {
  from {
    opacity: 0;
    transform: translateY(-100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.l-header.is-scroll .l-header_inner {
  padding-inline: 10px;
  height: var(--header_height);
  padding-block: 10px;
  grid-template-columns: min(35%, 160px) 1fr calc(var(--header_height) - 30px) auto;
  grid-template-areas: "g-logo . g-contact g-btn";
  column-gap: 10px;
  align-items: center;
}
.l-header.is-scroll .header-link {
  display: none;
}
.l-header.is-scroll .header-contact {
  display: flex;
  align-items: center;
  justify-content: center;
}
.l-header.is-scroll .header-contact a {
  aspect-ratio: 1;
  height: auto;
  width: 100%;
  padding: 0;
  border-radius: 50%;
}
.l-header.is-scroll .header-contact span {
  display: none;
}
.l-header.is-scroll .naviBtn {
  display: block;
}

/*=============================================================
  navi.scss
=============================================================*/
.l-navi {
  background: var(--color_main);
  display: none;
  color: #fff;
}
@media screen and (min-width: 1200px) {
  .l-navi {
    display: block;
  }
}

.navi-menu {
  display: flex;
  justify-content: center;
  padding-inline: min(3vw, 60px);
}
.navi-menu li:not(:last-of-type) a span {
  border-right: 1px solid rgba(255, 255, 255, 0.5);
}
.navi-menu a {
  color: currentColor;
  font-size: 1.0625rem;
  font-weight: bold;
  text-align: center;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
  padding: 20px 10px;
}
@media screen and (min-width: 768px) {
  .navi-menu a {
    font-size: clamp(0.875rem, 0.702rem + 0.361vw, 1.0625rem);
    padding: 25px 0;
    transition: var(--trans_speed) all;
    height: 100%;
  }
}
@media (any-hover: hover) {
  .navi-menu a:hover {
    background: rgba(255, 255, 255, 0.2);
  }
}
.navi-menu a span {
  display: block;
  padding-inline: min(2vw, 40px);
}
.navi-menu a small {
  font-family: "Lato", sans-serif;
  font-weight: 600;
  font-size: 77%;
  padding-top: 5px;
  display: block;
  text-align: center;
  opacity: 0.7;
  letter-spacing: 0.02rem;
}
.navi-menu a[target=_blank] span::after {
  font-family: "Font Awesome 6 Free";
  content: "\f08e";
  font-weight: 900;
  margin-left: 5px;
  opacity: 0.6;
  font-size: 80%;
}

.l-drawer {
  color: #fff;
  width: 100%;
  height: 100dvh;
  position: absolute;
  right: 0;
  top: 0;
  display: none;
  background: rgba(0, 0, 0, 0.5);
  overflow: hidden;
}

.l-drawer_inner {
  background: var(--color_main);
  width: min(80%, 350px);
  margin-left: auto;
  height: 100dvh;
  padding-top: var(--header_height);
  translate: 100%;
  transition: 0.7s translate;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
}
.l-drawer_inner.is-open {
  translate: 0;
}

.drawer-menu li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}
.drawer-menu li:first-of-type {
  border-top: 1px solid rgba(255, 255, 255, 0.5);
}
.drawer-menu a {
  color: currentColor;
  font-size: 1.0625rem;
  font-weight: bold;
  text-align: center;
  display: block;
  padding: 20px 10px;
}
@media screen and (min-width: 1200px) {
  .drawer-menu a {
    font-size: clamp(0.875rem, 0.313rem + 0.75vw, 1.0625rem);
    padding: 25px 0;
    transition: var(--trans_speed) all;
  }
}
@media (any-hover: hover) {
  .drawer-menu a:hover {
    background: rgba(255, 255, 255, 0.2);
  }
}
.drawer-menu a span {
  display: block;
  padding-inline: min(2vw, 40px);
}
.drawer-menu a small {
  font-family: "Lato", sans-serif;
  font-weight: 600;
  font-size: 77%;
  padding-top: 5px;
  display: block;
  text-align: center;
  opacity: 0.7;
  letter-spacing: 0.02rem;
}
.drawer-menu a[target=_blank] span::after {
  font-family: "Font Awesome 6 Free";
  content: "\f08e";
  font-weight: 900;
  margin-left: 5px;
  opacity: 0.6;
  font-size: 80%;
}

.drawer-box {
  padding: 40px;
}

.drawer-link a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  column-gap: 5px;
  transition: var(--trans_speed) all;
  font-size: clamp(0.8125rem, 0.59rem + 0.463vw, 0.9375rem);
  font-weight: 700;
}
.drawer-link a::before {
  font-family: "Font Awesome 6 Free";
  content: "\f105";
  font-weight: 900;
  color: var(--color_accent);
  padding-top: 2px;
}
@media (any-hover: hover) {
  .drawer-link a:hover {
    color: var(--color_accent);
  }
}

.drawer-contact {
  margin-top: 40px;
}
.drawer-contact a {
  display: flex;
  align-content: center;
  justify-content: center;
  column-gap: 10px;
  border-radius: 9999px;
  overflow: hidden;
  background: linear-gradient(to right, rgb(246, 122, 0) 50%, rgb(246, 171, 0) 100%);
  background-size: 200%;
  background-position: right center;
  color: #fff;
  transition: var(--trans_speed) all;
  font-size: 1.0625rem;
  padding: 25px 10px;
  text-transform: uppercase;
  letter-spacing: 0.01rem;
  font-family: "Lato", sans-serif;
  font-weight: 700;
}
.drawer-contact a svg {
  fill: #fff;
}
@media (any-hover: hover) {
  .drawer-contact a:hover {
    background-position: left center;
  }
}
.drawer-contact svg {
  width: 18px;
  aspect-ratio: 18/13;
}

/*=============================================================
  naviBtn.scss
==============================================================*/
.naviBtn {
  display: block;
  z-index: 999;
}
@media screen and (min-width: 1200px) {
  .naviBtn {
    display: none;
  }
}
.naviBtn button {
  border: none;
  height: calc(var(--header_height) - 30px);
  background: var(--color_main);
  position: relative;
  transition: 0.4s all;
  outline: none;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 0;
  margin: 0;
  border-radius: 50%;
  aspect-ratio: 1;
}
.naviBtn p {
  width: calc((var(--header_height) - 30px) / 2);
  aspect-ratio: 1/0.6;
  position: relative;
}
.naviBtn p::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background: #fff;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.5s all;
}
.naviBtn p span::before, .naviBtn p span::after {
  content: "";
  display: block;
  width: 100%;
  position: absolute;
  left: 0;
  transition: 0.5s all;
  height: 2px;
  background: #fff;
}
.naviBtn p span::before {
  top: 0;
}
.naviBtn p span::after {
  bottom: 0;
}
.naviBtn p span.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
}

.is-menuopen button p::after {
  opacity: 0;
}
.is-menuopen button span::before {
  transform: translateY(5px) rotate(-25deg);
}
.is-menuopen button span::after {
  transform: translateY(-5px) rotate(25deg);
  background: #fff;
}
/*=============================================================
  footer.scss
=============================================================*/
.l-grouplink {
  background: var(--color_bg);
}
@media screen and (min-width: 768px) {
  .l-grouplink {
    display: flex;
  }
}

.l-grouplink_heading {
  background: var(--color_main);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(1rem, 0.938rem + 0.278vw, 1.25rem);
  line-height: 1.3;
  font-weight: bold;
  padding: 20px 10px;
}
@media screen and (min-width: 768px) {
  .l-grouplink_heading {
    padding: 30px 10px;
    width: 33%;
    max-width: 360px;
  }
}
@media screen and (min-width: 1200px) {
  .l-grouplink_heading {
    padding: 40px 10px;
    width: 360px;
  }
}

.l-grouplink_list {
  padding-block: 25px;
  padding-inline: 30px;
  width: 100%;
}
@media screen and (min-width: 1200px) {
  .l-grouplink_list {
    align-self: center;
  }
}
.l-grouplink_list ul {
  text-align: center;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  column-gap: min(3%, 40px);
  align-items: center;
  flex-wrap: wrap;
  row-gap: 15px;
}
@media screen and (min-width: 768px) {
  .l-grouplink_list ul {
    grid-template-columns: repeat(3, 1fr);
    justify-content: center;
  }
}
@media screen and (min-width: 1200px) {
  .l-grouplink_list ul {
    grid-template-columns: repeat(3, auto);
    column-gap: 80px;
  }
}
@media screen and (min-width: 1600px) {
  .l-grouplink_list ul {
    grid-template-columns: repeat(6, auto);
    column-gap: 2%;
  }
}
.l-grouplink_list li:first-of-type {
  --bg:#007567;
}
.l-grouplink_list li:nth-of-type(2) {
  --bg:#cd87c9;
}
.l-grouplink_list li:nth-of-type(3) {
  --bg:#f8af48;
}
.l-grouplink_list li:nth-of-type(4) {
  --bg:#3b8cd0;
}
.l-grouplink_list li:nth-of-type(5) {
  --bg:#ffe400;
}
.l-grouplink_list li:nth-of-type(6) {
  --bg:#2fbfc8;
}
.l-grouplink_list a {
  display: flex;
  align-items: center;
  position: relative;
  color: var(--color_txt);
  font-size: clamp(0.875rem, 0.745rem + 0.577vw, 1.25rem);
  font-weight: bold;
  column-gap: 6px;
  transition: var(--trans_speed) color;
}
@media screen and (min-width: 1200px) {
  .l-grouplink_list a {
    column-gap: 10px;
  }
}
@media (any-hover: hover) {
  .l-grouplink_list a:hover {
    color: var(--color_main);
  }
}
.l-grouplink_list span {
  width: 25px;
  aspect-ratio: 1;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--bg);
}
@media screen and (min-width: 768px) {
  .l-grouplink_list span {
    width: 30px;
  }
}
@media screen and (min-width: 1200px) {
  .l-grouplink_list span {
    width: 40px;
  }
}
.l-grouplink_list span svg {
  width: 40%;
  fill: #fff;
}

.l-footer {
  background: #2e3032;
  color: #fff;
}

.l-footer_inner {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 40px;
  grid-template-areas: "f-address" "f-link" "f-copy";
}
@media screen and (min-width: 560px) {
  .l-footer_inner {
    grid-template-columns: 1fr 1fr;
    column-gap: 5%;
    grid-template-areas: "f-address f-link" "f-copy f-copy";
    align-items: start;
  }
}
@media screen and (min-width: 768px) {
  .l-footer_inner {
    grid-template-columns: min(40%, 490px) 20% 1fr;
    grid-template-areas: "f-address f-navi f-link" "f-copy f-navi f-link";
  }
}
@media screen and (min-width: 1200px) {
  .l-footer_inner {
    grid-template-columns: min(31%, 490px) 1fr 25%;
  }
}
@media screen and (min-width: 1600px) {
  .l-footer_inner {
    column-gap: 8%;
  }
}

.footer-address {
  grid-area: f-address;
}

.footer-navi {
  grid-area: f-navi;
}

.footer-link {
  grid-area: f-link;
}

.footer-copyright {
  grid-area: f-copy;
  align-self: end;
}

.footer-address {
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  color: var(--color_txt);
}
@media screen and (min-width: 768px) {
  .footer-address {
    padding: 40px 10%;
  }
}
@media screen and (min-width: 1200px) {
  .footer-address {
    padding: 40px 15%;
  }
}

.footer-address_logo {
  width: 70%;
  max-width: 295px;
}
@media screen and (min-width: 1200px) {
  .footer-address_logo {
    width: 90%;
  }
}

.footer-address_txt {
  margin-top: 20px;
  font-size: clamp(0.8125rem, 0.748rem + 0.288vw, 1rem);
  line-height: 1.8;
}
.footer-address_txt strong {
  font-size: 114.3%;
}

.footer-navi {
  display: none;
}
@media screen and (min-width: 768px) {
  .footer-navi {
    display: block;
  }
}

.footer-navi_list {
  display: grid;
  row-gap: 25px;
}
@media screen and (min-width: 1200px) {
  .footer-navi_list {
    display: grid;
    grid-auto-flow: column;
    grid-template-rows: repeat(5, 1fr);
    column-gap: 30px;
    row-gap: 30px;
  }
}
.footer-navi_list a {
  color: #fff;
  font-size: clamp(0.875rem, 0.81rem + 0.288vw, 1.0625rem);
  line-height: 1.5;
  transition: var(--trans_speed) all;
}
@media (any-hover: hover) {
  .footer-navi_list a:hover {
    color: var(--color_accent);
  }
}
.footer-navi_list a[target=_blank]::after {
  font-family: "Font Awesome 6 Free";
  content: "\f08e";
  font-weight: 900;
  margin-left: 5px;
  opacity: 0.35;
}

.footer-link_txt {
  font-size: clamp(1.25rem, 1.163rem + 0.385vw, 1.5rem);
  font-weight: 800;
  margin-bottom: 15px;
}

@media screen and (min-width: 768px) {
  .footer-link_list {
    column-gap: 5%;
  }
}
.footer-link_list li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
}
.footer-link_list a {
  color: #fff;
  font-size: clamp(0.875rem, 0.839rem + 0.161vw, 1rem);
  font-weight: 500;
  line-height: 1.3;
  padding: 15px 10px;
  position: relative;
  display: flex;
  justify-content: space-between;
  column-gap: 10px;
  transition: var(--trans_speed) all;
}
@media screen and (min-width: 1200px) {
  .footer-link_list a {
    padding: 22px 10px;
  }
}
.footer-link_list a::after {
  font-family: "Font Awesome 6 Free";
  content: "\f08e";
  font-weight: 900;
  opacity: 0.35;
}
@media (any-hover: hover) {
  .footer-link_list a:hover {
    background: rgba(255, 255, 255, 0.1);
  }
}

.footer-copyright {
  text-align: center;
  font-size: clamp(0.625rem, 0.516rem + 0.484vw, 1rem);
  line-height: 1.2;
  font-family: "Lato", sans-serif;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .footer-copyright {
    text-align: left;
  }
}

/*=============================================================
  main.scss
=============================================================*/
#page .l-wrapper {
  padding-top: var(--header_height);
}
@media screen and (min-width: 768px) {
  #page .l-wrapper {
    padding-top: var(--header_height_md);
  }
}
@media screen and (min-width: 1200px) {
  #page .l-wrapper {
    padding-top: var(--header_height_lg);
  }
}

@media screen and (min-width: 768px) {
  .l-column {
    display: flex;
    justify-content: space-between;
  }
}

@media screen and (min-width: 768px) {
  .l-column_main {
    width: 65%;
  }
}
@media screen and (min-width: 1200px) {
  .l-column_main {
    width: 70%;
  }
}

.l-column_side {
  margin-top: 80px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  row-gap: 30px;
  column-gap: 3%;
}
@media screen and (min-width: 768px) {
  .l-column_side {
    display: block;
    width: 30%;
    max-width: 300px;
    margin-top: 0;
  }
}
@media screen and (min-width: 1200px) {
  .l-column_side {
    width: 25%;
  }
}
@media screen and (min-width: 768px) {
  .l-column_side > * + * {
    margin-top: 50px;
  }
}

@media screen and (min-width: 768px) {
  .l-column_sticky {
    position: sticky;
    top: var(--header_height)20px;
  }
}
@media screen and (min-width: 1200px) {
  .l-column_sticky {
    top: var(--header_height_lg)20px;
  }
}

/*=============================================================
  side.scss
==============================================================*/
.side-container {
  background: var(--color_bg03);
  border-radius: 5px 5px 0 0;
  overflow: hidden;
}

.side-heading {
  color: #fff;
  background: var(--color_main);
  font-size: clamp(0.875rem, 0.788rem + 0.385vw, 1.125rem);
  font-weight: 700;
  padding: 15px 20px;
}
@media screen and (min-width: 768px) {
  .side-heading {
    padding: 20px 20px;
  }
}

.side-container_inner {
  padding: 15px 20px;
}

/*=============================================================
  pageHeading.scss
==============================================================*/
.l-pageHeading {
  background: url(../../img/title-bg.png) no-repeat center center var(--color_mizu);
  background-size: contain;
  height: 100px;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex-direction: column;
  row-gap: 10px;
}
@media screen and (min-width: 768px) {
  .l-pageHeading {
    height: 150px;
  }
}
@media screen and (min-width: 1200px) {
  .l-pageHeading {
    height: 190px;
    row-gap: 15px;
  }
}

.l-pageHeading_main {
  font-size: clamp(1.25rem, 0.817rem + 1.923vw, 2.5rem);
  font-weight: 700;
}
.l-pageHeading_main small {
  font-size: clamp(0.875rem, 0.745rem + 0.577vw, 1.25rem);
  font-family: "Lato", sans-serif;
  font-weight: 700;
  display: block;
  text-align: center;
  margin-top: 10px;
  letter-spacing: 0.01rem;
}

.l-pageHeading_sub {
  font-size: clamp(0.875rem, 0.788rem + 0.385vw, 1.125rem);
  font-weight: 700;
}

/*=============================================================
  pagenation.scss
==============================================================*/
.pagination {
  text-align: center;
  margin-top: calc(var(--padding_large) / 2);
}
@media screen and (min-width: 768px) {
  .pagination {
    margin-top: calc(var(--padding_large) / 3 * 2);
  }
}
@media screen and (min-width: 1200px) {
  .pagination {
    margin-top: var(--padding_large);
  }
}
.pagination ul {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 5px;
}
@media screen and (min-width: 768px) {
  .pagination ul {
    column-gap: 10px;
  }
}
@media screen and (min-width: 1200px) {
  .pagination ul {
    column-gap: 15px;
  }
}
.pagination li {
  font-size: clamp(0.875rem, 0.832rem + 0.192vw, 1rem);
  color: #000;
  text-decoration: none;
  line-height: 1;
  font-family: "Lato", sans-serif;
  font-weight: 700;
}
.pagination span, .pagination a {
  transition: all 0.1s;
  width: 36px;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: var(--color_txt);
  background: #fff;
  border-radius: 50%;
  border: 1px solid #ccc;
}
@media screen and (min-width: 768px) {
  .pagination span, .pagination a {
    width: 40px;
  }
}
@media screen and (min-width: 1200px) {
  .pagination span, .pagination a {
    width: 50px;
  }
}
@media (any-hover: hover) {
  .pagination span:not(.dots, .current):hover, .pagination a:not(.dots, .current):hover {
    border-color: var(--color_main);
    color: var(--color_main);
  }
}
.pagination span.current {
  color: #fff;
  background: var(--color_main);
  border-color: var(--color_main);
}
.pagination span.dots {
  border: none;
}
.pagination svg {
  width: 18px;
  fill: currentColor;
}

/* entryNavi
---------------------------------------------*/
.entryNaviWrap {
  border-top: 1px solid var(--color_border);
}

.item-detail_form + .entryNaviWrap {
  border: none;
}

.entryNavi {
  display: grid;
  grid-template-columns: 1fr min(30%, 250px) 1fr;
  grid-template-areas: "p-next p-list p-prev";
  column-gap: 5%;
  align-items: center;
}
.entryNavi p {
  position: relative;
  transition: var(--trans_speed) all;
}
.entryNavi a {
  display: block;
  position: relative;
  text-decoration: none;
  color: var(--color_txt);
  font-size: clamp(0.875rem, 0.832rem + 0.192vw, 1rem);
  font-weight: 500;
  line-height: 1.3;
  padding: 20px 10px;
  text-align: center;
  transition: var(--trans_speed) all;
}
@media screen and (min-width: 768px) {
  .entryNavi a {
    padding: 25px 10px;
  }
}
@media screen and (min-width: 1200px) {
  .entryNavi a {
    padding: 25px 10px;
  }
}
.entryNavi a i {
  transition: var(--trans_speed) all;
}
.entryNavi_prev {
  grid-area: p-prev;
  text-align: right;
}
.entryNavi_next {
  grid-area: p-next;
  text-align: left;
}
@media screen and (min-width: 960px) {
  .entryNavi_prev a:hover, .entryNavi_next a:hover {
    color: var(--color_main);
  }
  .entryNavi_prev a:hover i, .entryNavi_next a:hover i {
    color: var(--color_main);
  }
}
@media screen and (min-width: 960px) {
  .entryNavi_prev:hover {
    margin-right: -5px;
  }
}
@media screen and (min-width: 960px) {
  .entryNavi_next:hover {
    margin-left: -5px;
  }
}
.entryNavi_back {
  grid-area: p-list;
}
.entryNavi_back a {
  background: var(--color_main);
  color: #fff;
  border-radius: 9999px;
}
@media (any-hover: hover) {
  .entryNavi_back a:hover {
    background: color-mix(in srgb, var(--color_main) 60%, #000);
  }
}

/*=============================================================
  top.css
=============================================================*/
.top-mainVisual {
  --height: 350px;
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .top-mainVisual {
    --height: 460px;
  }
}
@media screen and (min-width: 1200px) {
  .top-mainVisual {
    --height: 460px;
  }
}
.top-mainVisual::before {
  content: "";
  background: url(../../img/top/top-promo02.png) no-repeat center center/contain;
  width: 100px;
  aspect-ratio: 302/330;
  position: absolute;
  left: 50%;
  top: 0;
  translate: -50% -35%;
  display: none;
}
@media screen and (min-width: 1200px) {
  .top-mainVisual::before {
    width: 302px;
    display: block;
  }
}
.top-mainVisual::after {
  content: "";
  background: url(../../img/top/top-promo03.png) no-repeat center center/contain;
  width: clamp(12.5rem, 8.108rem + 19.519vw, 25.188rem);
  aspect-ratio: 403/392;
  position: absolute;
  left: 35%;
  bottom: 0;
  translate: 0 10%;
}
@media screen and (min-width: 560px) {
  .top-mainVisual::after {
    left: 25%;
  }
}
@media screen and (min-width: 1200px) {
  .top-mainVisual::after {
    left: 25%;
    translate: -50% 10%;
  }
}

.top-mainVisual_img {
  width: 70%;
  border-bottom-left-radius: calc(var(--height) / 3 * 2);
  overflow: hidden;
  margin-left: auto;
  height: var(--height);
}
@media screen and (min-width: 768px) {
  .top-mainVisual_img {
    width: 60%;
  }
}
@media screen and (min-width: 1200px) {
  .top-mainVisual_img {
    width: 48%;
  }
}
.top-mainVisual_img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.top-mainVisual_inner {
  position: absolute;
  height: var(--height);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 40px;
  padding-left: var(--wrap-padding);
}
@media screen and (min-width: 768px) {
  .top-mainVisual_inner {
    padding-left: var(--wrap-padding_md);
  }
}
@media screen and (min-width: 1200px) {
  .top-mainVisual_inner {
    padding-left: 110px;
  }
}
.top-mainVisual_inner > * {
  position: relative;
  z-index: 10;
}
.top-mainVisual_inner::after {
  content: "";
  background: url(../../img/top/top-promoillust.png) no-repeat center center/contain;
  aspect-ratio: 211/203;
  display: block;
  position: absolute;
  right: 0;
  bottom: 20px;
  translate: 80% 0;
  z-index: 10;
  display: none;
}
@media screen and (min-width: 768px) {
  .top-mainVisual_inner::after {
    display: block;
    width: 180px;
    translate: 90% 0;
  }
}
@media screen and (min-width: 1200px) {
  .top-mainVisual_inner::after {
    width: 211px;
    translate: 80% 0;
  }
}

.top-mainVisual_copy01 {
  color: var(--color_main);
  font-size: clamp(1.75rem, 1.209rem + 2.404vw, 3.3125rem);
  font-weight: 700;
  line-height: 1;
}
.top-mainVisual_copy01 span {
  display: inline-block;
  background: #fff;
  padding: 6px 10px 6px 20px;
  margin-bottom: 1px;
}
@media screen and (min-width: 560px) {
  .top-mainVisual_copy01 span:nth-of-type(2) {
    padding-right: 0;
  }
}
@media screen and (min-width: 560px) {
  .top-mainVisual_copy01 span:nth-of-type(3) {
    padding-left: 0;
  }
}
.top-mainVisual_copy01 em {
  font-style: normal;
  color: var(--color_accent);
}

.top-mainVisual_copy02 {
  margin-top: 20px;
}
.top-mainVisual_copy02 span {
  display: inline-block;
  background: var(--color_bg03);
  font-weight: 700;
  padding: 8px 20px;
  line-height: 1.3;
  font-size: clamp(1rem, 0.87rem + 0.577vw, 1.375rem);
}
@media screen and (min-width: 768px) {
  .top-mainVisual_copy02 span {
    padding: 10px 30px;
  }
}
@media screen and (min-width: 1200px) {
  .top-mainVisual_copy02 span {
    padding: 10px 40px;
  }
}

@media screen and (min-width: 768px) {
  .top-contents {
    background: url(../../img/top/top-bg01.png) no-repeat right center;
    background-size: auto 90%;
  }
}

/*=============================================================
  news.scss
==============================================================*/
.news-list {
  display: grid;
  grid-template-columns: auto 1fr;
}
@media screen and (min-width: 768px) {
  .news-list {
    grid-template-columns: auto auto 1fr;
  }
}

.news-listItem {
  border-bottom: 2px dotted var(--color_border);
  display: inherit;
  grid-template-columns: subgrid;
  grid-column: span 2;
}
@media screen and (min-width: 768px) {
  .news-listItem {
    grid-column: span 3;
  }
}
.news-listItem a {
  display: inherit;
  grid-template-columns: subgrid;
  grid-template-rows: auto auto;
  grid-column: inherit;
  grid-template-areas: "n-date n-cate" "n-title n-title";
  row-gap: 10px;
  font-size: 0.875rem;
  line-height: 1.6;
  padding: 20px 10px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .news-listItem a {
    font-size: 1rem;
    padding: 30px 25px;
    grid-template-rows: auto;
    grid-template-areas: "n-date n-cate n-title";
    align-items: start;
  }
}
@media screen and (min-width: 1200px) {
  .news-listItem a {
    font-size: 1.125rem;
    padding: 40px 30px;
  }
}
.news-listItem_date {
  grid-area: n-date;
}
.news-listItem_category {
  grid-area: n-cate;
}
.news-listItem_title {
  grid-area: n-title;
}
.news-listItem_date {
  position: relative;
}
.news-listItem_date::before {
  content: "";
  width: 5px;
  aspect-ratio: 1;
  border-radius: 50%;
  display: block;
  background: var(--color_main);
  position: absolute;
  left: -10px;
  top: 50%;
  translate: 0 -50%;
}
@media screen and (min-width: 768px) {
  .news-listItem_date::before {
    width: 6px;
    left: -20px;
  }
}
@media screen and (min-width: 1200px) {
  .news-listItem_date::before {
    width: 8px;
    left: -20px;
  }
}
.news-listItem_category {
  margin-left: 1vw;
  padding-left: 1vw;
  position: relative;
}
.news-listItem_category::before {
  content: "";
  width: 1px;
  height: 60%;
  display: block;
  background: var(--color_border);
  position: absolute;
  left: 0;
  top: 50%;
  translate: 0 -40%;
}
.news-listItem_title {
  transition: all 0.1s;
}
@media screen and (min-width: 768px) {
  .news-listItem_title {
    margin-left: 20px;
  }
}
@media screen and (min-width: 1200px) {
  .news-listItem_title {
    margin-left: 40px;
  }
}
@media screen and (min-width: 960px) {
  .news-listItem:hover .news-listItem_title {
    color: var(--color_main);
  }
}

.news-entryData {
  display: flex;
  flex-wrap: wrap;
  row-gap: 10px;
  padding-bottom: 20px;
  border-bottom: 2px dashed var(--color_border);
}
@media screen and (min-width: 768px) {
  .news-entryData {
    row-gap: 15px;
  }
}
@media screen and (min-width: 1200px) {
  .news-entryData {
    row-gap: 20px;
  }
}
.news-entryData_date {
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .news-entryData_date {
    font-size: 1rem;
  }
}
@media screen and (min-width: 1200px) {
  .news-entryData_date {
    font-size: 1.125rem;
  }
}
.news-entryData_category {
  margin-left: 1vw;
  padding-left: 1vw;
  position: relative;
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .news-entryData_category {
    font-size: 1rem;
  }
}
@media screen and (min-width: 1200px) {
  .news-entryData_category {
    font-size: 1.125rem;
  }
}
.news-entryData_category::before {
  content: "";
  width: 1px;
  height: 60%;
  display: block;
  background: var(--color_border);
  position: absolute;
  left: 0;
  top: 50%;
  translate: 0 -40%;
}
.news-entryData_title {
  width: 100%;
  font-size: clamp(1.375rem, 1.159rem + 0.962vw, 2rem);
  line-height: 1.3;
}
/*=============================================================
  item.css
=============================================================*/
.item-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 3%;
  row-gap: 40px;
}
@media screen and (min-width: 768px) {
  .item-list {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 60px;
  }
}
@media screen and (min-width: 1200px) {
  .item-list {
    grid-template-columns: repeat(3, 1fr);
    column-gap: 5%;
    row-gap: 100px;
  }
}

.item-list_card a {
  display: block;
}
@media (any-hover: hover) {
  .item-list_card a:hover .item-list_img {
    opacity: 0.7;
  }
}

.item-list_img {
  overflow: hidden;
  aspect-ratio: 3/2;
  transition: var(--trans_speed) all;
}
.item-list_img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.item-list_cate {
  margin-top: 15px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
@media screen and (min-width: 1200px) {
  .item-list_cate {
    gap: 10px;
  }
}
.item-list_cate span {
  display: inline-block;
  border: 1px solid var(--color_main);
  background: var(--color_bg03);
  font-size: clamp(0.625rem, 0.582rem + 0.192vw, 0.75rem);
  border-radius: 9999px;
  padding: 5px 15px;
  font-weight: bold;
  color: var(--color_main);
}

.item-list_name {
  font-size: clamp(1rem, 0.827rem + 0.769vw, 1.5rem);
  line-height: 1.4;
  font-weight: 600;
  margin-top: 15px;
}

@media screen and (min-width: 768px) {
  .item-entry {
    display: flex;
    align-items: start;
    column-gap: 5%;
  }
}
@media screen and (min-width: 1200px) {
  .item-entry {
    column-gap: 10%;
  }
}

.item-entry_img {
  border: 1px solid var(--color_border);
  width: 100%;
  margin-bottom: 40px;
}
@media screen and (min-width: 768px) {
  .item-entry_img {
    width: 50%;
    margin-bottom: 0;
  }
}
@media screen and (min-width: 1200px) {
  .item-entry_img {
    width: 55%;
  }
}
.item-entry_img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

@media screen and (min-width: 768px) {
  .item-detail {
    flex: 1;
  }
}

.item-detail_cate {
  margin-bottom: 15px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
@media screen and (min-width: 768px) {
  .item-detail_cate {
    margin-bottom: 20px;
  }
}
@media screen and (min-width: 1200px) {
  .item-detail_cate {
    gap: 10px;
  }
}
.item-detail_cate span {
  display: inline-block;
  border: 1px solid var(--color_main);
  background: var(--color_bg03);
  font-size: clamp(0.75rem, 0.707rem + 0.192vw, 0.875rem);
  border-radius: 9999px;
  padding: 5px 15px;
  font-weight: bold;
  color: var(--color_main);
}

.item-detail_name {
  font-size: clamp(1.375rem, 1.23rem + 0.645vw, 1.875rem);
  line-height: 1.4;
  font-weight: 600;
}

.item-detail_maker {
  color: var(--color_accent);
  font-weight: 700;
  font-size: clamp(0.875rem, 0.788rem + 0.385vw, 1.125rem);
  line-height: 1.4;
  margin-top: 10px;
}
@media screen and (min-width: 768px) {
  .item-detail_maker {
    margin-top: 15px;
  }
}

.item-detail_price {
  margin-top: 40px;
  font-size: clamp(1rem, 0.964rem + 0.161vw, 1.125rem);
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .item-detail_price {
    margin-top: 50px;
  }
}
@media screen and (min-width: 1200px) {
  .item-detail_price {
    margin-top: 60px;
  }
}
.item-detail_price strong {
  font-size: clamp(1.875rem, 1.585rem + 1.29vw, 2.875rem);
}

.item-detail_priceNotes {
  margin-top: 10px;
  font-size: clamp(0.75rem, 0.707rem + 0.192vw, 0.875rem);
  line-height: 1.6;
  opacity: 0.7;
}

.item-entry_description {
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .item-entry_description {
    margin-top: 60px;
  }
}
@media screen and (min-width: 1200px) {
  .item-entry_description {
    margin-top: 80px;
  }
}

/*=============================================================
  threads.css
=============================================================*/
.threads-category {
  display: flex;
  flex-wrap: wrap;
  column-gap: 10px;
  row-gap: 10px;
}
.threads-category a {
  font-size: clamp(0.875rem, 0.788rem + 0.385vw, 1.125rem);
  font-weight: 600;
  line-height: 0.75;
  position: relative;
  display: flex;
  align-items: center;
  column-gap: 5px;
  padding: 10px 15px;
  border: 1px solid transparent;
  border-radius: 9999px;
}
.threads-category a::before {
  font-family: "Font Awesome 6 Free";
  content: "\f105";
  font-weight: 900;
  padding-top: 2px;
  color: var(--color_main);
  font-size: 80%;
}
@media (any-hover: hover) {
  .threads-category a:hover {
    color: var(--color_accent);
  }
  .threads-category a:hover::before {
    color: var(--color_accent);
  }
}
.threads-category li.current-cat a {
  color: #fff;
  border: 1px solid var(--color_accent);
  background: var(--color_accent);
}
.threads-category li.current-cat a::before {
  color: #fff;
}

.threads-list_item {
  border: 1px solid var(--color_main);
  border-radius: 5px;
  margin-bottom: 15px;
  background: #fff;
  overflow: hidden;
}
.threads-list_item a {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  column-gap: 15px;
  row-gap: 10px;
  padding: 15px 20px;
  transition: var(--trans_speed) all;
}
@media screen and (min-width: 768px) {
  .threads-list_item a {
    padding: 15px 35px;
  }
}
@media screen and (min-width: 1200px) {
  .threads-list_item a {
    padding: 20px 50px;
  }
}
@media (any-hover: hover) {
  .threads-list_item a:hover {
    background: var(--color_bg03);
  }
}

.threads-list_cate {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
@media screen and (min-width: 1200px) {
  .threads-list_cate {
    gap: 10px;
  }
}
.threads-list_cate span {
  display: inline-block;
  border: 1px solid var(--color_main);
  background: var(--color_bg03);
  font-size: clamp(0.625rem, 0.582rem + 0.192vw, 0.75rem);
  border-radius: 9999px;
  padding: 5px 15px;
  font-weight: bold;
  color: var(--color_main);
}

.threads-list_date {
  color: var(--color_main);
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-size: clamp(0.875rem, 0.832rem + 0.192vw, 1rem);
}

.threads-list_title {
  font-size: clamp(0.9375rem, 0.873rem + 0.288vw, 1.125rem);
  line-height: 1.3;
  font-weight: 700;
  width: 100%;
}

.threads-list + .pagination {
  margin-top: calc(var(--padding_small) / 2);
}
@media screen and (min-width: 768px) {
  .threads-list + .pagination {
    margin-top: calc(var(--padding_small) / 3 * 2);
  }
}
@media screen and (min-width: 1200px) {
  .threads-list + .pagination {
    margin-top: var(--padding_small);
  }
}

.threads-listForm {
  background: var(--color_bg02);
  border-radius: 5px;
  padding: 30px 20px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .threads-listForm {
    padding: 40px 40px;
  }
}
@media screen and (min-width: 1200px) {
  .threads-listForm {
    padding: 60px 40px;
  }
}

.threads-listForm_txt {
  line-height: 1.5;
  font-size: clamp(1rem, 0.913rem + 0.385vw, 1.25rem);
  text-align: center;
  word-break: keep-all;
  font-weight: 700;
}

.threads-listForm_btn {
  margin-top: 30px;
}

.side-threadsList.side-container_inner {
  padding-block: 0;
}

.side-threadsList_item {
  padding-block: 20px;
}
@media screen and (min-width: 768px) {
  .side-threadsList_item {
    padding-block: 25px;
  }
}
@media screen and (min-width: 1200px) {
  .side-threadsList_item {
    padding-block: 30px;
  }
}
.side-threadsList_item + .side-threadsList_item {
  border-top: 1px solid var(--color_main);
}
.side-threadsList_item a {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  column-gap: 15px;
  row-gap: 10px;
}
.side-threadsList_item a span {
  transition: var(--trans_speed) all;
}
@media (any-hover: hover) {
  .side-threadsList_item a:hover span {
    border-bottom: 1px solid currentColor;
  }
}

.side-threadsList_date {
  color: var(--color_main);
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-size: clamp(0.875rem, 0.832rem + 0.192vw, 1rem);
}

.side-threadsList_cate {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
}
@media screen and (min-width: 1200px) {
  .side-threadsList_cate {
    gap: 10px;
  }
}
.side-threadsList_cate span {
  display: inline-block;
  border: 1px solid var(--color_main);
  background: #fff;
  font-size: clamp(0.625rem, 0.582rem + 0.192vw, 0.75rem);
  border-radius: 9999px;
  padding: 5px 15px;
  font-weight: bold;
  color: var(--color_main);
}

.side-threadsList_title {
  width: 100%;
  font-size: clamp(0.75rem, 0.707rem + 0.192vw, 0.875rem);
  line-height: 1.4;
  font-weight: 700;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  padding-bottom: 2px;
}

.side-threadsList_comment {
  width: 100%;
  font-size: clamp(0.875rem, 0.832rem + 0.192vw, 1rem);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-weight: 500;
  color: var(--color_main);
  position: relative;
  padding-bottom: 2px;
  padding-left: 20px;
}
.side-threadsList_comment::before {
  font-family: "Font Awesome 6 Free";
  content: "\f061";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 0;
}

.threads-entryData {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  column-gap: 15px;
  row-gap: 10px;
}

.threads-entryData_date {
  color: var(--color_main);
  font-family: "Lato", sans-serif;
  font-weight: 900;
  font-size: clamp(1rem, 0.913rem + 0.385vw, 1.25rem);
}

.threads-entryData_cate {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
@media screen and (min-width: 1200px) {
  .threads-entryData_cate {
    gap: 10px;
  }
}
.threads-entryData_cate span {
  display: inline-block;
  border: 1px solid var(--color_main);
  background: var(--color_bg03);
  font-size: clamp(0.75rem, 0.707rem + 0.192vw, 0.875rem);
  border-radius: 9999px;
  padding: 5px 15px;
  font-weight: bold;
  color: var(--color_main);
}

.threads-entryData_title {
  font-size: clamp(1.25rem, 1.034rem + 0.962vw, 1.875rem);
  line-height: 1.6;
  margin-top: 15px;
  width: 100%;
}

.entry-commentWrap_heading {
  margin-bottom: 40px;
}
@media screen and (min-width: 768px) {
  .entry-commentWrap_heading {
    margin-bottom: 50px;
  }
}
@media screen and (min-width: 1200px) {
  .entry-commentWrap_heading {
    margin-bottom: 60px;
  }
}

.entry-commentWrap .comment.depth-1 + .comment.depth-1 {
  margin-top: 10px;
}
@media screen and (min-width: 768px) {
  .entry-commentWrap .comment.depth-1 + .comment.depth-1 {
    margin-top: 15px;
  }
}
@media screen and (min-width: 1200px) {
  .entry-commentWrap .comment.depth-1 + .comment.depth-1 {
    margin-top: 20px;
  }
}
.entry-commentWrap .depth-1 {
  border: 2px solid var(--color_border);
  background: #fff;
  padding: 20px;
  border-radius: 10px;
}
@media screen and (min-width: 768px) {
  .entry-commentWrap .depth-1 {
    padding: 40px;
  }
}
@media screen and (min-width: 1200px) {
  .entry-commentWrap .depth-1 {
    padding: 40px 60px;
  }
}
.entry-commentWrap .depth-2 {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--color_border);
  position: relative;
}
@media screen and (min-width: 768px) {
  .entry-commentWrap .depth-2 {
    margin-left: calc(30% + 15px);
    margin-top: 30px;
    padding-top: 30px;
  }
}
@media screen and (min-width: 1200px) {
  .entry-commentWrap .depth-2 {
    margin-top: 40px;
    padding-top: 40px;
    margin-left: calc(25% + 15px);
  }
}

.depth-1 > .entry-comment {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: 1fr auto auto;
  grid-template-areas: "c-name c-date" "c-cmnt c-cmnt" "c-reply c-reply";
  column-gap: 1%;
  row-gap: 10px;
}
@media screen and (min-width: 768px) {
  .depth-1 > .entry-comment {
    grid-template-columns: 30% 1fr;
    grid-template-rows: auto auto auto;
    grid-template-areas: "c-name c-cmnt" "c-date c-cmnt" "c-date c-reply";
    row-gap: 15px;
    column-gap: 15px;
  }
}
@media screen and (min-width: 1200px) {
  .depth-1 > .entry-comment {
    grid-template-columns: 25% 1fr;
  }
}
.depth-2 > .entry-comment {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: 1fr 1fr auto auto;
  grid-template-areas: "c-name c-date" "c-date c-link" "c-cmnt c-cmnt" "c-reply c-reply";
  column-gap: 2%;
  row-gap: 0;
  position: relative;
}
@media screen and (min-width: 768px) {
  .depth-2 > .entry-comment {
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto auto;
    grid-template-areas: "c-name c-date" "c-cmnt c-cmnt" "c-reply c-reply";
    column-gap: 3%;
    align-items: end;
  }
}
.entry-comment_icon {
  grid-area: c-icon;
}
.entry-comment_name {
  grid-area: c-name;
}
.entry-comment_date {
  grid-area: c-date;
}
.entry-comment_link {
  grid-area: c-link;
}
.entry-comment_txt {
  grid-area: c-cmnt;
}
.entry-comment_replybtn {
  grid-area: c-reply;
}

.entry-comment_icon {
  aspect-ratio: 1;
}
.entry-comment_icon img {
  object-fit: contain;
  width: 100%;
  height: 100%;
}

.entry-comment_name {
  font-size: clamp(1rem, 0.957rem + 0.192vw, 1.125rem);
  font-weight: 500;
  line-height: 1.2;
}
.depth-2 .entry-comment_name {
  font-size: clamp(0.875rem, 0.832rem + 0.192vw, 1rem);
}

.entry-comment_date {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-size: clamp(0.75rem, 0.707rem + 0.192vw, 0.875rem);
  line-height: 1;
  opacity: 0.6;
}
.depth-2 .entry-comment_date {
  font-size: clamp(0.75rem, 0.707rem + 0.192vw, 0.875rem);
}

.entry-comment_link a {
  display: inline-block;
  padding: 3px 10px 5px 10px;
  background: var(--color_main);
  color: #fff;
  font-size: clamp(0.625rem, 0.582rem + 0.192vw, 0.75rem);
  font-weight: 500;
  line-height: 1.2;
}
.depth-2 .entry-comment_link a {
  font-size: clamp(0.625rem, 0.582rem + 0.192vw, 0.75rem);
}

.entry-comment_txt {
  font-size: clamp(0.8125rem, 0.748rem + 0.288vw, 1rem);
  line-height: 1.6;
}
.entry-comment_txt p + p {
  margin-top: 15px;
}
@media screen and (min-width: 768px) {
  .entry-comment_txt p + p {
    margin-top: 20px;
  }
}
@media screen and (min-width: 1200px) {
  .entry-comment_txt p + p {
    margin-top: 25px;
  }
}
.depth-2 .entry-comment_txt {
  font-size: clamp(0.8125rem, 0.748rem + 0.288vw, 1rem);
  line-height: 1.6;
  padding: 0;
  background: none;
  border: none;
  margin-top: 15px;
}
@media screen and (min-width: 768px) {
  .depth-2 .entry-comment_txt {
    margin-top: 20px;
    padding: 0;
  }
}
@media screen and (min-width: 1200px) {
  .depth-2 .entry-comment_txt {
    margin-top: 20px;
    padding: 0;
  }
}

.entry-comment_replybtn {
  font-size: clamp(0.75rem, 0.707rem + 0.192vw, 0.875rem);
  text-align: right;
  width: 100%;
}
.entry-comment_replybtn a {
  display: inline-block;
  padding: 5px 20px;
  border-radius: 9999px;
  color: #fff;
  line-height: 1;
  background: var(--color_btn);
  background-size: 200%;
  background-position: right center;
}
@media (any-hover: hover) {
  .entry-comment_replybtn a:hover {
    background-position: left center;
  }
}
.entry-comment_moderation {
  color: var(--color_warning);
  font-size: clamp(0.75rem, 0.707rem + 0.192vw, 0.875rem);
  margin-top: 15px;
  font-weight: 600;
}

.comment-reply-title {
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .comment-reply-title {
    margin-bottom: 30px;
  }
}
@media screen and (min-width: 1200px) {
  .comment-reply-title {
    margin-bottom: 40px;
  }
}
.comment-reply-title span {
  display: block;
  font-weight: bold;
  font-size: clamp(1.5rem, 1.24rem + 1.154vw, 2.25rem);
  font-weight: 700;
  line-height: 1.3;
  width: fit-content;
  margin-inline: auto;
  position: relative;
  padding-top: 40px;
}
@media screen and (min-width: 768px) {
  .comment-reply-title span {
    padding-top: 50px;
  }
}
@media screen and (min-width: 1200px) {
  .comment-reply-title span {
    padding-top: 60px;
    max-width: 90%;
    line-height: 1.6;
  }
}
.comment-reply-title span::before {
  content: "";
  width: 60px;
  aspect-ratio: 84/35;
  position: absolute;
  left: 50%;
  top: 0;
  display: block;
  background: url(../../img/icon-mark.png) no-repeat center center/contain;
  translate: -50% 0;
}
@media screen and (min-width: 768px) {
  .comment-reply-title span::before {
    width: 70px;
  }
}
@media screen and (min-width: 768px) {
  .comment-reply-title span::before {
    width: 84px;
  }
}
.comment-reply-title small {
  margin-left: auto;
  display: block;
  width: fit-content;
  margin-top: 5px;
  font-size: clamp(0.625rem, 0.538rem + 0.385vw, 0.875rem);
}
.comment-reply-title small a {
  display: block;
  border: 1px solid var(--color_border);
  padding: 5px 10px;
  background: var(--color_bg);
}

.comment-reply-title:first-of-type {
  display: none;
}

.comment-reply-title:not(:first-of-type) {
  border-left: 5px solid var(--color_main);
  background: var(--color_bg);
  padding: 10px 15px;
  font-size: clamp(1.125rem, 0.995rem + 0.577vw, 1.5rem);
  line-height: 1.3;
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .comment-reply-title:not(:first-of-type) {
    padding: 10px 15px;
    border-left-width: 7px;
    margin-bottom: 30px;
  }
}
@media screen and (min-width: 1200px) {
  .comment-reply-title:not(:first-of-type) {
    margin-bottom: 40px;
  }
}

.entry-commentformWrap {
  background: var(--color_bg03);
  padding: 20px;
}
@media screen and (min-width: 768px) {
  .entry-commentformWrap {
    padding: 40px;
  }
}
@media screen and (min-width: 1200px) {
  .entry-commentformWrap {
    padding: 60px;
  }
}

.entry-commentform {
  border-radius: 10px;
  background: #fff;
  padding: 20px;
}
@media screen and (min-width: 768px) {
  .entry-commentform {
    padding: 40px;
  }
}
@media screen and (min-width: 1200px) {
  .entry-commentform {
    padding: 40px;
  }
}
.entry-commentform table {
  margin-bottom: 0;
}
.entry-commentform #commentform {
  font-size: clamp(0.875rem, 0.832rem + 0.192vw, 1rem);
  line-height: 1.6;
}
.entry-commentform .logged-in-as {
  margin-bottom: 40px;
}
.entry-commentform .logged-in-as span {
  display: inline-block;
}
.entry-commentform .logged-in-as a {
  text-decoration: underline;
}
@media screen and (min-width: 960px) {
  .entry-commentform .logged-in-as a:hover {
    text-decoration: none;
    opacity: 0.8;
  }
}
.entry-commentform .c-notesList {
  line-height: 1.6;
  margin-bottom: 40px;
}
.entry-commentform p[class*=comment-form] {
  padding: 8px 0;
}
@media screen and (min-width: 560px) {
  .entry-commentform p[class*=comment-form] {
    display: flex;
    align-items: center;
  }
}
.entry-commentform p[class*=comment-form] label {
  padding: 0;
  margin-bottom: 5px;
  font-weight: bold;
  display: flex;
  align-items: center;
  column-gap: 10px;
}
@media screen and (min-width: 560px) {
  .entry-commentform p[class*=comment-form] label {
    width: 25%;
  }
}
.entry-commentform p[class*=comment-form] .required {
  display: inline-block;
  background: var(--color_warning);
  color: #fff;
  font-size: 0.75rem;
  display: inline-block;
  padding: 2px 3px;
  border-radius: 3px;
  margin-right: 5px;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .entry-commentform p[class*=comment-form] .required {
    padding: 2px 3px;
  }
}
@media screen and (min-width: 1200px) {
  .entry-commentform p[class*=comment-form] .required {
    font-size: 0.75rem;
    padding: 2px 8px;
    margin-right: 10px;
  }
}
.entry-commentform p[class*=comment-form] input:not(.comment-form-cookies-consent input),
.entry-commentform p[class*=comment-form] textarea {
  width: 100%;
  padding: 10px 15px;
  font-size: clamp(1rem, 0.957rem + 0.192vw, 1.125rem);
}
@media screen and (min-width: 560px) {
  .entry-commentform p[class*=comment-form] input:not(.comment-form-cookies-consent input),
  .entry-commentform p[class*=comment-form] textarea {
    flex: 1;
  }
}
.entry-commentform p[class*=comment-form]:nth-last-child(1 of p[class*=comment-form]) {
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .entry-commentform p[class*=comment-form]:nth-last-child(1 of p[class*=comment-form]) {
    margin-bottom: 30px;
  }
}
@media screen and (min-width: 1200px) {
  .entry-commentform p[class*=comment-form]:nth-last-child(1 of p[class*=comment-form]) {
    margin-bottom: 40px;
  }
}
.entry-commentform .comment-form-cookies-consent {
  display: flex;
  align-items: center;
  column-gap: 15px;
}
.entry-commentform .comment-form-cookies-consent label {
  flex: 1;
  font-weight: 500 !important;
  font-size: clamp(0.875rem, 0.832rem + 0.192vw, 1rem);
}
.entry-commentform .form-submit {
  align-items: center;
  width: 90%;
  max-width: 340px;
  margin: 30px auto;
}
.entry-commentform .form-submit input {
  display: block;
  width: 100%;
  background: var(--color_btn);
  background-size: 200%;
  background-position: right center;
  border: none;
  border-radius: 9999px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  cursor: pointer;
  font-size: 16px;
  font-weight: bold;
  padding: 15px;
  text-align: center;
  position: relative;
  transition: var(--trans_speed) all;
}
@media screen and (min-width: 768px) {
  .entry-commentform .form-submit input {
    font-size: 18px;
    padding: 20px 15px;
  }
}
@media screen and (min-width: 1200px) {
  .entry-commentform .form-submit input {
    padding: 25px 15px;
    font-size: 20px;
  }
}
@media (any-hover: hover) {
  .entry-commentform .form-submit input:hover {
    background-position: left center;
  }
}

/*=============================================================
  page.scss
==============================================================*/
.contents-listItem {
  width: 100%;
  display: grid;
  grid-template-rows: auto auto;
  row-gap: 40px;
}
@media screen and (min-width: 768px) {
  .contents-listItem {
    grid-template-rows: auto;
    grid-template-columns: 50% 1fr;
    column-gap: 5%;
    justify-content: space-between;
    align-items: end;
  }
}
.contents-listItem + .contents-listItem {
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .contents-listItem + .contents-listItem {
    margin-top: 50px;
  }
}
@media screen and (min-width: 1200px) {
  .contents-listItem + .contents-listItem {
    margin-top: 60px;
  }
}
.contents-listItem .wp-c-heading02 {
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .contents-listItem .wp-c-heading02 {
    margin-bottom: 30px;
  }
}
@media screen and (min-width: 1200px) {
  .contents-listItem .wp-c-heading02 {
    margin-bottom: 40px;
  }
}

@media screen and (min-width: 768px) {
  .contents-listitem_inner {
    align-items: center;
  }
}

.contents-listItem_img {
  overflow: hidden;
}
.contents-listItem_img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.contents-listItem_img a {
  display: block;
}

.contents-listItem_text {
  font-size: clamp(0.75rem, 0.663rem + 0.385vw, 1rem);
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .contents-listItem_text {
    line-height: 1.6;
  }
}

.contents-listItem_link {
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .contents-listItem_link {
    margin-top: 30px;
  }
}
@media screen and (min-width: 1200px) {
  .contents-listItem_link {
    margin-top: 40px;
  }
}
.contents-listItem_link .c-btn01 {
  background: var(--color_btn);
  background-size: 200%;
  background-position: right center;
}
@media (any-hover: hover) {
  .contents-listItem_link .c-btn01:hover {
    background-position: left center;
  }
}

.contents-navi {
  display: grid;
  grid-template-columns: 1fr;
  column-gap: min(3%, 60px);
  row-gap: 40px;
}
@media screen and (min-width: 560px) {
  .contents-navi {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 768px) {
  .contents-navi {
    row-gap: 40px;
  }
}
@media screen and (min-width: 1200px) {
  .contents-navi {
    grid-template-columns: repeat(3, 1fr);
    column-gap: min(3%, 60px);
    row-gap: 70px;
    column-gap: min(5%, 60px);
  }
}

.contents-naviItem {
  aspect-ratio: 360/230;
}
.contents-naviItem a {
  display: block;
  overflow: hidden;
  position: relative;
  color: #fff;
  width: 100%;
  border-top-left-radius: 15px;
}
@media screen and (min-width: 768px) {
  .contents-naviItem a {
    border-top-left-radius: 20px;
  }
}
@media (any-hover: hover) {
  .contents-naviItem a:hover .contents-naviItem_img::after {
    opacity: 0.5;
  }
}
.contents-naviItem a::before, .contents-naviItem a::after {
  content: "";
  width: 30px;
  display: block;
  aspect-ratio: 1;
  position: absolute;
  right: 0;
  bottom: 0;
  background: var(--color_accent);
  z-index: 10;
}
.contents-naviItem a::after {
  background: none;
  font-family: "Font Awesome 6 Free";
  content: "\f105";
  font-weight: 900;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 5px;
  font-size: 0.875rem;
  color: #fff;
  z-index: 20;
}

.contents-naviItem_img {
  overflow: hidden;
  position: relative;
  aspect-ratio: 360/230;
}
.contents-naviItem_img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.contents-naviItem_img::after {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  transition: var(--trans_speed) all;
}

.contents-naviItem_title {
  text-align: center;
  position: absolute;
  inset: 0;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 15px;
}
.contents-naviItem_title span {
  border-bottom: 2px solid var(--color_accent);
  font-size: clamp(1.25rem, 1.163rem + 0.385vw, 1.5rem);
  font-weight: 700;
  line-height: 1.3;
  padding-bottom: 5px;
}
.contents-naviItem_title small {
  font-family: "Lato", sans-serif;
  font-weight: 600;
  font-size: 77%;
  padding-top: 5px;
  display: block;
  text-align: center;
}
.contents-naviItem_title i {
  font-size: 80%;
  margin-left: 3px;
}

/*=============================================================
  notfound.scss
============================================================= */
.notfoundWrap {
  background: var(--color_bg03);
}

.notfoundHeading {
  text-align: center;
  margin-bottom: 40px;
  font-size: 10vw;
}
@media screen and (min-width: 560px) {
  .notfoundHeading {
    font-size: 3.75rem;
    margin-bottom: 50px;
  }
}
@media screen and (min-width: 960px) {
  .notfoundHeading {
    font-size: 5rem;
    margin-bottom: 60px;
  }
}
.notfoundHeading_main {
  color: var(--color_main);
  font-family: "Lato", sans-serif;
  font-weight: 900;
}
.notfoundHeading_sub {
  margin-top: 10px;
  font-weight: bold;
  font-size: 36%;
}

.notfound {
  border-radius: 20px;
  padding: 20px;
  background: #fff;
}
@media screen and (min-width: 560px) {
  .notfound {
    padding: 40px;
  }
}
@media screen and (min-width: 960px) {
  .notfound {
    padding: 60px;
  }
}

/*=============================================================
  privacy.scss
==============================================================*/
.privacyContact {
  border: 1px solid #000;
  padding: 15px;
  display: inline-block;
  margin: 20px;
}

/*=============================================================
  entry.scss
==============================================================*/
/* entryBody
-----------------------------*/
.entryBody {
  overflow: hidden;
  font-size: clamp(0.875rem, 0.788rem + 0.385vw, 1.125rem);
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .entryBody {
    line-height: 1.7;
  }
}
@media screen and (min-width: 1200px) {
  .entryBody {
    line-height: 1.8;
  }
}
.entryBody > *:first-child {
  margin-top: 0 !important;
}
.entryBody > * > *:first-of-type h2, .entryBody > * > *:first-of-type h3, .entryBody > * > *:first-of-type h4, .entryBody > * > *:first-of-type h5, .entryBody > * > *:first-of-type h6 {
  margin-top: 0 !important;
  margin-bottom: 1em;
}
.entryBody h2:not([class]) {
  font-weight: bold;
  font-size: clamp(1.5rem, 1.24rem + 1.154vw, 2.25rem);
  font-weight: 700;
  line-height: 1.3;
  width: fit-content;
  margin-inline: auto;
  position: relative;
  padding-top: 40px;
}
@media screen and (min-width: 768px) {
  .entryBody h2:not([class]) {
    padding-top: 50px;
  }
}
@media screen and (min-width: 1200px) {
  .entryBody h2:not([class]) {
    padding-top: 60px;
    max-width: 90%;
    line-height: 1.6;
  }
}
.entryBody h2:not([class])::before {
  content: "";
  width: 60px;
  aspect-ratio: 84/35;
  position: absolute;
  left: 50%;
  top: 0;
  display: block;
  background: url(../../img/icon-mark.png) no-repeat center center/contain;
  translate: -50% 0;
}
@media screen and (min-width: 768px) {
  .entryBody h2:not([class])::before {
    width: 70px;
  }
}
@media screen and (min-width: 768px) {
  .entryBody h2:not([class])::before {
    width: 84px;
  }
}
.entryBody h2:not([class]) {
  margin-top: 100px;
  margin-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .entryBody h2:not([class]) {
    margin-top: 120px;
    margin-bottom: 40px;
  }
}
@media screen and (min-width: 1200px) {
  .entryBody h2:not([class]) {
    margin-top: 150px;
    margin-bottom: 50px;
  }
}
.entryBody h3:not([class]) {
  background-image: repeating-linear-gradient(315deg, #003c99, #003c99 3px, #004ea2 3px, #004ea2 9px);
  line-height: 1.3;
  border-radius: 5px;
  color: #fff;
  font-size: clamp(1.125rem, 0.952rem + 0.769vw, 1.625rem);
  padding: 10px 15px 10px 30px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .entryBody h3:not([class]) {
    padding: 15px 20px 15px 40px;
  }
}
@media screen and (min-width: 1200px) {
  .entryBody h3:not([class]) {
    padding: 15px 20px 15px 45px;
  }
}
.entryBody h3:not([class])::before {
  content: "";
  display: block;
  background: #fff;
  width: 8px;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 2px solid #5c8ec4;
  position: absolute;
  left: 10px;
  top: 17px;
}
@media screen and (min-width: 768px) {
  .entryBody h3:not([class])::before {
    left: 15px;
    top: 24px;
  }
}
@media screen and (min-width: 1200px) {
  .entryBody h3:not([class])::before {
    left: 18px;
    top: 26px;
  }
}
.entryBody h3:not([class]) {
  margin-top: 80px;
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .entryBody h3:not([class]) {
    margin-top: 100px;
    margin-bottom: 25px;
  }
}
@media screen and (min-width: 1200px) {
  .entryBody h3:not([class]) {
    margin-top: 120px;
    margin-bottom: 30px;
  }
}
.entryBody h4:not([class]) {
  font-size: clamp(1.125rem, 0.952rem + 0.769vw, 1.625rem);
  line-height: 1.3;
  border-top: 2px solid var(--color_main);
  border-bottom: 2px solid var(--color_main);
  padding: 10px 0;
}
@media screen and (min-width: 768px) {
  .entryBody h4:not([class]) {
    padding: 15px 0;
  }
}
.entryBody h4:not([class]) {
  margin-top: 60px;
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .entryBody h4:not([class]) {
    margin-top: 80px;
    margin-bottom: 25px;
  }
}
@media screen and (min-width: 1200px) {
  .entryBody h4:not([class]) {
    margin-top: 100px;
    margin-bottom: 30px;
  }
}
.entryBody h5:not([class]) {
  border-left: 5px solid var(--color_main);
  background: var(--color_bg);
  padding: 10px 15px;
  font-size: clamp(1.125rem, 0.995rem + 0.577vw, 1.5rem);
  line-height: 1.3;
}
@media screen and (min-width: 768px) {
  .entryBody h5:not([class]) {
    padding: 10px 15px;
    border-left-width: 7px;
  }
}
@media screen and (min-width: 1200px) {
  .entryBody h5:not([class]) {
    padding: 15px 20px;
  }
}
.entryBody h5:not([class]) {
  margin-top: 50px;
  margin-bottom: 15px;
}
@media screen and (min-width: 768px) {
  .entryBody h5:not([class]) {
    margin-top: 65px;
    margin-bottom: 20px;
  }
}
@media screen and (min-width: 1200px) {
  .entryBody h5:not([class]) {
    margin-top: 80px;
    margin-bottom: 20px;
  }
}
.entryBody h6:not([class]) {
  font-size: clamp(1.125rem, 1.038rem + 0.385vw, 1.375rem);
  position: relative;
  line-height: 1.3;
  color: var(--color_main);
}
.entryBody h6:not([class]) {
  margin-top: 40px;
  margin-bottom: 15px;
}
@media screen and (min-width: 768px) {
  .entryBody h6:not([class]) {
    margin-top: 50px;
    margin-bottom: 20px;
  }
}
@media screen and (min-width: 1200px) {
  .entryBody h6:not([class]) {
    margin-top: 60px;
    margin-bottom: 20px;
  }
}
.entryBody p:not([class]) + p:not([class]) {
  margin-top: 15px;
}
@media screen and (min-width: 768px) {
  .entryBody p:not([class]) + p:not([class]) {
    margin-top: 20px;
  }
}
.entryBody {
  /*
  &.txtbox p{
    margin-bottom: 0px;
  }
  &.txtbox p + p{
    margin-top:0px;
  }

  p strong{
  }

  p + div{
    margin-top: 30px;
    @include mq-up(xl) {
      margin-top: 40px;
    }
  }
  div{
    margin-bottom: 30px;
    @include mq-up(xl) {
      margin-bottom: 40px;
    }
  }
  */
}
.entryBody a:not([class]):not(.no-entryBody) {
  color: #1530A0;
  text-decoration: underline;
}
@media (any-hover: hover) {
  .entryBody a:not([class]):not(.no-entryBody):hover {
    color: #2b51e6;
    text-decoration: none;
  }
}
@media screen and (min-width: 768px) {
  .entryBody a:not([class]):not(.no-entryBody)[href^=tel] {
    pointer-events: none;
    color: var(--color_txt);
    text-decoration: none;
  }
}
.entryBody a:not([class]):not(.no-entryBody)[href$=".pdf"], .entryBody a:not([class]):not(.no-entryBody)[href$=".doc"], .entryBody a:not([class]):not(.no-entryBody)[href$=".docx"], .entryBody a:not([class]):not(.no-entryBody)[href$=".xls"], .entryBody a:not([class]):not(.no-entryBody)[href$=".xlsx"], .entryBody a:not([class]):not(.no-entryBody)[href$=".txt"] {
  padding-right: 15px;
  position: relative;
  margin-right: 10px;
}
@media screen and (min-width: 768px) {
  .entryBody a:not([class]):not(.no-entryBody)[href$=".pdf"], .entryBody a:not([class]):not(.no-entryBody)[href$=".doc"], .entryBody a:not([class]):not(.no-entryBody)[href$=".docx"], .entryBody a:not([class]):not(.no-entryBody)[href$=".xls"], .entryBody a:not([class]):not(.no-entryBody)[href$=".xlsx"], .entryBody a:not([class]):not(.no-entryBody)[href$=".txt"] {
    padding-right: 18px;
    margin-right: 15px;
  }
}
@media screen and (min-width: 1200px) {
  .entryBody a:not([class]):not(.no-entryBody)[href$=".pdf"], .entryBody a:not([class]):not(.no-entryBody)[href$=".doc"], .entryBody a:not([class]):not(.no-entryBody)[href$=".docx"], .entryBody a:not([class]):not(.no-entryBody)[href$=".xls"], .entryBody a:not([class]):not(.no-entryBody)[href$=".xlsx"], .entryBody a:not([class]):not(.no-entryBody)[href$=".txt"] {
    padding-right: 20px;
  }
}
.entryBody a:not([class]):not(.no-entryBody)[href$=".pdf"]::after, .entryBody a:not([class]):not(.no-entryBody)[href$=".doc"]::after, .entryBody a:not([class]):not(.no-entryBody)[href$=".docx"]::after, .entryBody a:not([class]):not(.no-entryBody)[href$=".xls"]::after, .entryBody a:not([class]):not(.no-entryBody)[href$=".xlsx"]::after, .entryBody a:not([class]):not(.no-entryBody)[href$=".txt"]::after {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: color 0.1s;
}
.entryBody a:not([class]):not(.no-entryBody)[target=_blank]::after {
  font-family: "Font Awesome 6 Free";
  content: "\f35d";
  font-weight: 900;
  color: var(--color_main);
}
.entryBody a:not([class]):not(.no-entryBody)[href$=".pdf"]::after {
  font-family: "Font Awesome 6 Free";
  content: "\f1c1";
  font-weight: 900;
  color: #f20f00;
}
.entryBody a:not([class]):not(.no-entryBody)[href$=".doc"]::after, .entryBody a:not([class]):not(.no-entryBody)[href$=".docx"]::after {
  font-family: "Font Awesome 6 Free";
  content: "\f1c2";
  font-weight: 900;
  color: #144aab;
}
.entryBody a:not([class]):not(.no-entryBody)[href$=".xls"]::after, .entryBody a:not([class]):not(.no-entryBody)[href$=".xlsx"]::after {
  font-family: "Font Awesome 6 Free";
  content: "\f1c3";
  font-weight: 900;
  color: #077d3f;
}
.entryBody a:not([class]):not(.no-entryBody)[href$=".txt"]::after {
  font-family: "Font Awesome 6 Free";
  content: "\f15c";
  font-weight: 900;
  font-weight: 500;
  color: #666;
}
.entryBody table {
  border-top: 1px solid var(--color_border);
  border-bottom: 1px solid var(--color_border);
  width: 100%;
  margin: 30px 0;
  table-layout: fixed;
  background: #fff;
}
@media screen and (min-width: 1200px) {
  .entryBody table {
    margin: 40px 0;
  }
}
.entryBody table th,
.entryBody table td {
  border: 1px solid var(--color_border);
  padding: 10px;
  font-size: inherit;
  line-height: 2;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .entryBody table th,
  .entryBody table td {
    padding: 15px;
  }
}
@media screen and (min-width: 1200px) {
  .entryBody table th,
  .entryBody table td {
    line-height: 180%;
    padding: 15px 20px;
  }
}
.entryBody table th {
  background: var(--color_bg);
}
.entryBody table thead th {
  background: var(--color_main);
  color: #fff;
  text-align: center;
  font-size: 100%;
  padding: 12px 10px;
}
@media screen and (min-width: 768px) {
  .entryBody table thead th {
    padding: 18px 15px;
    font-size: 105%;
  }
}
@media screen and (min-width: 1200px) {
  .entryBody table thead th {
    padding: 20px;
  }
}
.entryBody ul:not(.no-entryBody):not([class]),
.entryBody ol:not(.no-entryBody):not([class]) {
  width: 100%;
  margin: 20px 0;
  padding-left: 30px;
}
@media screen and (min-width: 1200px) {
  .entryBody ul:not(.no-entryBody):not([class]),
  .entryBody ol:not(.no-entryBody):not([class]) {
    padding-left: 25px;
    width: 100%;
  }
}
.entryBody ul:not(.no-entryBody):not([class]) li,
.entryBody ol:not(.no-entryBody):not([class]) li {
  position: relative;
  font-size: inherit;
  line-height: 2;
  padding-top: 5px;
}

/*=============================================================
  wpLayout.scss
==============================================================*/
.wp-l-body > .wp-l-section:first-child {
  margin-top: 0;
}

.wp-l-section {
  container-type: inline-size;
  margin-block: 40px;
}
@media screen and (min-width: 768px) {
  .wp-l-section {
    margin-block: 50px;
  }
}
@media screen and (min-width: 1200px) {
  .wp-l-section {
    margin-block: 80px;
  }
}
.wp-l-section > .wp-l-container:first-of-type {
  margin-top: 0;
}
.wp-l-section {
  /*
  & + &{
    margin-top:40px;
    @include mq-up(md){
      margin-top:50px;
    }
    @include mq-up(xl){
      margin-top:80px;
    }
  }
    */
}

.wp-l-container {
  container-type: inline-size;
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .wp-l-container {
    margin-top: 50px;
  }
}
@media screen and (min-width: 1200px) {
  .wp-l-container {
    margin-top: 80px;
  }
}
[class*=wp-l-] > .wp-l-container:first-child {
  margin-top: 0;
}

.wp_contents .wp-l-section:last-child {
  margin-bottom: 0;
}

.wp-l-bg--mizu {
  background: var(--color_bg03);
}

.wp-l-whiteBox {
  background: #fff;
  border-radius: 20px;
  padding: 20px;
}
@media screen and (min-width: 560px) {
  .wp-l-whiteBox {
    padding: 40px;
  }
}
@media screen and (min-width: 768px) {
  .wp-l-whiteBox {
    padding: 60px;
  }
}
@media screen and (min-width: 1200px) {
  .wp-l-whiteBox {
    padding: 90px min(7.14%, 100px);
  }
}

.wp-c-heading {
  font-size: clamp(1.625rem, 1.409rem + 0.962vw, 2.25rem);
}
.wp-c-heading--small {
  font-size: clamp(1.375rem, 1.202rem + 0.769vw, 1.875rem);
}

.wp-c-heading_title {
  font-weight: 700;
  line-height: 1.6;
  margin-inline: auto;
  position: relative;
  padding-top: 40px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .wp-c-heading_title {
    padding-top: 50px;
  }
}
@media screen and (min-width: 1200px) {
  .wp-c-heading_title {
    padding-top: 60px;
  }
}
.wp-c-heading_title::before {
  content: "";
  width: 60px;
  aspect-ratio: 84/35;
  position: absolute;
  left: 50%;
  top: 0;
  display: block;
  background: url(../../img/icon-mark.png) no-repeat center center/contain;
  translate: -50% 0;
}
@media screen and (min-width: 768px) {
  .wp-c-heading_title::before {
    width: 70px;
  }
}
@media screen and (min-width: 768px) {
  .wp-c-heading_title::before {
    width: 84px;
  }
}

.wp-c-heading_subTitle {
  font-size: 0.57em;
  width: fit-content;
  margin-inline: auto;
  margin-top: 1rem;
  line-height: 1.3;
  color: var(--color_main);
  font-family: "Lato", sans-serif;
  font-weight: 700;
  letter-spacing: 0.1rem;
}
.wp-c-heading_txt {
  font-size: clamp(0.875rem, 0.832rem + 0.192vw, 1rem);
  line-height: 2.2;
  font-weight: 500;
  width: fit-content;
  margin-inline: auto;
  max-width: 80%;
  margin-top: 3rem;
}
@media screen and (max-width: 1199px) {
  .wp-c-heading_txt {
    line-height: 2;
  }
}
@media screen and (max-width: 767px) {
  .wp-c-heading_txt {
    max-width: 100%;
  }
}

.wp-c-heading02 {
  font-size: clamp(1.25rem, 1.12rem + 0.577vw, 1.625rem);
  margin-bottom: 60px;
}
@media screen and (max-width: 1199px) {
  .wp-c-heading02 {
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 767px) {
  .wp-c-heading02 {
    margin-bottom: 40px;
  }
}
.wp-c-heading02--small {
  font-size: clamp(1rem, 0.87rem + 0.577vw, 1.375rem);
}

.wp-c-heading02_title {
  line-height: 1.6;
  position: relative;
  color: var(--color_main);
  font-weight: 800;
}
@media screen and (max-width: 767px) {
  .wp-c-heading02_title {
    line-height: 1.3;
  }
}

.wp-c-heading02_subTitle {
  font-size: 0.57em;
  margin-top: 0.8rem;
  letter-spacing: 0.1rem;
  font-family: "Lato", sans-serif;
  font-weight: 700;
}
.wp-introduction {
  display: grid;
  row-gap: 20px;
  grid-template-rows: auto auto auto;
  grid-template-areas: "a-heading" "a-img" "a-txt";
}
@media screen and (min-width: 768px) {
  .wp-introduction {
    grid-template-rows: auto 1fr;
    align-items: center;
    grid-template-columns: auto min(65%, 1070px);
    grid-template-areas: "a-heading a-img" ". a-txt";
    column-gap: 5%;
    row-gap: 40px;
  }
}
@media screen and (min-width: 1200px) {
  .wp-introduction {
    row-gap: 60px;
  }
}
.wp-introduction_heading {
  grid-area: a-heading;
}
.wp-introduction_img {
  grid-area: a-img;
}
.wp-introduction_txt {
  grid-area: a-txt;
}

.wp-introduction_img figure {
  display: block;
  width: 100%;
  height: 100%;
}
.wp-introduction_img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.wp-introduction_heading.wp-c-heading {
  margin-bottom: 0;
}

.wp-c-grid {
  display: flex;
  justify-content: space-between;
  row-gap: 3em;
  column-gap: 2cqw;
  flex-wrap: wrap;
}
@media screen and (min-width: 768px) {
  .wp-c-grid {
    column-gap: 4cqw;
  }
}
.wp-c-grid figure {
  display: block;
  overflow: hidden;
}
.wp-c-grid.-sp-column .wp-c-gridItem {
  width: 100%;
}
.wp-c-grid.-sp-half .wp-c-gridItem {
  width: calc((100% - 4cqw) / 2);
}
@media screen and (min-width: 768px) {
  .wp-c-grid.-half .wp-c-gridItem {
    width: calc((100% - 4cqw) / 2);
  }
}
@media screen and (min-width: 768px) {
  .wp-c-grid.-trisect .wp-c-gridItem {
    justify-content: center;
    width: calc((100% - 8cqw) / 3);
  }
}
@media screen and (min-width: 768px) {
  .wp-c-grid.-quarter .wp-c-gridItem {
    justify-content: center;
    width: calc((100% - 12cqw) / 4);
  }
}
.wp-c-grid.-reverse {
  flex-direction: row-reverse;
}
@media screen and (min-width: 768px) {
  .wp-c-grid.-ratio4_6 {
    column-gap: 5cqw;
  }
}
.wp-c-grid.-ratio4_6 .wp-c-gridItem:first-of-type {
  width: 100%;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .wp-c-grid.-ratio4_6 .wp-c-gridItem:first-of-type {
    width: 40cqi;
  }
}
.wp-c-grid.-ratio4_6 .wp-c-gridItem:nth-of-type(2) {
  flex: 1;
}
@media screen and (min-width: 768px) {
  .wp-c-grid.-ratio3_7 {
    column-gap: 5cqw;
  }
}
.wp-c-grid.-ratio3_7 .wp-c-gridItem:first-of-type {
  width: 100%;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .wp-c-grid.-ratio3_7 .wp-c-gridItem:first-of-type {
    width: 30cqi;
  }
}
.wp-c-grid.-ratio3_7 .wp-c-gridItem:nth-of-type(2) {
  flex: 1;
}
@media screen and (min-width: 768px) {
  .wp-c-grid.-ratio2_8 {
    column-gap: 5cqw;
  }
}
.wp-c-grid.-ratio2_8 .wp-c-gridItem:first-of-type {
  width: 100%;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .wp-c-grid.-ratio2_8 .wp-c-gridItem:first-of-type {
    width: 20cqi;
  }
}
.wp-c-grid.-ratio2_8 .wp-c-gridItem:nth-of-type(2) {
  flex: 1;
}

.wp-c-gridItem_inner {
  margin-top: 1em;
}
.wp-c-gridItem_inner h2, .wp-c-gridItem_inner h3, .wp-c-gridItem_inner h4, .wp-c-gridItem_inner h5, .wp-c-gridItem_inner h6 {
  margin-top: 0 !important;
  margin-bottom: 1em;
}
.wp-c-gridItem_inner p {
  /*margin-block: calc((1em - 1lh) / 2);*/
}
.wp-c-gridItem_inner .txtbox p {
  /*line-height: 1.6;*/
}

.wp-c-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
}
.wp-c-gallery a {
  display: block;
  position: relative;
}

.wp-c-gallery_img {
  overflow: hidden;
  aspect-ratio: 1;
}
.wp-c-gallery_img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.wp-c-gallery_caption {
  position: absolute;
  inset: 0;
  width: 100%;
  display: flex;
  align-items: flex-end;
  font-size: clamp(0.75rem, 0.663rem + 0.385vw, 1rem);
  font-weight: 500;
  padding: 0.5em;
  color: #fff;
  line-height: 1.2;
  pointer-events: none;
  background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.4) 100%);
}
@media screen and (min-width: 768px) {
  .wp-c-gallery_caption {
    padding: 20px;
  }
}

.wp-c-downloadList {
  width: 100%;
  max-width: var(--contents_base_ss);
  margin-inline: auto;
}
.wp-c-downloadList_item {
  padding: 1em 0;
  font-size: clamp(0.875rem, 0.788rem + 0.385vw, 1.125rem);
  line-height: 1.3;
  display: flex;
  align-items: center;
  column-gap: 2%;
  border-bottom: 1px dotted var(--color_border);
}
@media screen and (min-width: 1200px) {
  .wp-c-downloadList_item {
    padding: 1.5em 0;
  }
}
.wp-c-downloadList_item::before {
  content: "";
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  width: 18px;
  height: auto;
  aspect-ratio: 417/529;
  position: relative;
}
@media screen and (min-width: 1200px) {
  .wp-c-downloadList_item::before {
    width: 20px;
  }
}
.wp-c-downloadList_item:has([href$=".zip"])::before, .wp-c-downloadList_item:has([href$=".lzh"])::before {
  background-image: url(../../img/icon/ico-file.png);
}
.wp-c-downloadList_item:has([href$=".pdf"])::before {
  background-image: url(../../img/icon/ico-pdf.png);
}
.wp-c-downloadList_item:has([href$=".doc"])::before, .wp-c-downloadList_item:has([href$=".docx"])::before {
  background-image: url(../../img/icon/ico-word.png);
}
.wp-c-downloadList_item:has([href$=".xls"])::before, .wp-c-downloadList_item:has([href$=".xlsx"])::before {
  background-image: url(../../img/icon/ico-excel.png);
}
.wp-c-downloadList_item:has([href$=".txt"])::before {
  background-image: url(../../img/icon/ico-text.png);
}
.wp-c-downloadList_item:has([href$=".ppt"])::before, .wp-c-downloadList_item:has([href$=".pptx"])::before {
  background-image: url(../../img/icon/ico-ppt.png);
}
.wp-c-downloadList_item:has([href$=".png"])::before, .wp-c-downloadList_item:has([href$=".jpg"])::before, .wp-c-downloadList_item:has([href$=".jpeg"])::before, .wp-c-downloadList_item:has([href$=".gif"])::before {
  background-image: url(../../img/icon/ico-img.png);
}
.wp-c-downloadList a {
  background: var(--color_main);
  color: #fff;
  display: inline flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.3em 1em;
  line-height: 1;
  column-gap: 5px;
  font-size: clamp(0.75rem, 0.663rem + 0.385vw, 1rem);
  margin-left: auto;
  transition: all 0.1s;
}
@media screen and (min-width: 1200px) {
  .wp-c-downloadList a {
    padding: 1em 2em;
  }
}
.wp-c-downloadList a svg {
  fill: currentcolor;
  width: 18px;
}
@media screen and (min-width: 960px) {
  .wp-c-downloadList a:hover {
    background: var(--color_accent);
  }
}

.wp-c-btnList {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex-wrap: wrap;
  column-gap: 5cqi;
  row-gap: 20px;
}
.wp-c-btnList .wp-c-btn {
  width: 100%;
}
.wp-c-btnList .wp-c-btn a {
  margin-inline: auto;
}
.wp-c-btnList.-column1.-left {
  justify-content: start;
}
.wp-c-btnList.-column1.-right {
  justify-content: flex-end;
}
@media screen and (min-width: 768px) {
  .wp-c-btnList.-column2 {
    flex-direction: row;
  }
}
@media screen and (min-width: 768px) {
  .wp-c-btnList.-column2 .wp-c-btn {
    width: calc((90% - 5cqi) / 2);
  }
}
.wp-c-btnList.-column2 .wp-c-btn a {
  margin-inline: auto;
  max-width: none;
}
@media screen and (min-width: 768px) {
  .wp-c-btnList.-column3 {
    flex-direction: row;
    column-gap: 3cqi;
  }
}
@media screen and (min-width: 768px) {
  .wp-c-btnList.-column3 .wp-c-btn {
    width: calc((100% - 6cqi) / 3);
  }
}
.wp-c-btnList.-column3 .wp-c-btn a {
  margin-inline: auto;
  max-width: none;
}

.wp-c-table {
  width: 100%;
  table-layout: fixed;
}
@media screen and (min-width: 768px) {
  .wp-c-table {
    border-top: 1px solid var(--color_border);
  }
}
.wp-c-table td, .wp-c-table th {
  display: block;
  font-size: clamp(0.875rem, 0.832rem + 0.192vw, 1rem);
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .wp-c-table td, .wp-c-table th {
    vertical-align: top;
    display: table-cell;
    padding: 2em 1em;
    border-bottom: 1px solid var(--color_border);
  }
}
.wp-c-table th {
  line-height: 1.3;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .wp-c-table th {
    border-left: 2px solid var(--color_border);
    padding-left: 1em;
  }
}
@media screen and (min-width: 768px) {
  .wp-c-table th {
    width: 20%;
  }
}
@media screen and (max-width: 767px) {
  .wp-c-table td {
    padding: 1em 1em 2em 1em;
  }
}
.wp-c-table a {
  color: #1530A0;
  text-decoration: underline;
}
@media screen and (min-width: 960px) {
  .wp-c-table a:hover {
    color: #2b51e6;
    text-decoration: none;
  }
}

/*=============================================================
  wpSnippet.scss
==============================================================*/
/***********
box
************/
.e-box {
  --e-box-bg: transparent;
  --e-box-border: transparent;
  padding: 20px;
  border-radius: 10px;
}
.e-box > *:first-child {
  margin-top: 0 !important;
}
@media screen and (min-width: 768px) {
  .e-box {
    padding: 30px;
  }
}
@media screen and (min-width: 1200px) {
  .e-box {
    padding: 40px clamp(40px, 8%, 60px);
  }
}
.e-box:not(.-borderonly) {
  background: var(--e-box-bg);
}
.e-box.-borderonly, .e-box.-border {
  border: 2px solid var(--e-box-border);
}
.e-box.-light {
  background: color-mix(in srgb, var(--e-box-bg) 15%, transparent);
}
.e-box.-dark {
  color: #fff;
}
.e-box.-white {
  --e-box-bg: #fff;
  --e-box-border: #000;
}
.e-box.-main {
  --e-box-bg: var(--color_main);
  --e-box-border: var(--color_main);
}
.e-box.-accent {
  --e-box-bg: var(--color_accent);
  --e-box-border: var(--color_accent);
}
.e-box.-red {
  --e-box-bg: #f9edee;
  --e-box-border: #f799a2;
}
.e-box.-red.-light {
  background: #f9edee;
}
.e-box.-red.-dark {
  background: var(--color_warning);
  border-color: var(--color_warning);
}
.e-box.-red02 {
  --e-box-bg: #f9edee;
  --e-box-border: var(--color_warning);
  background: color-mix(in srgb, var(--e-box-bg) 15%, transparent);
}
.e-box.-gray {
  background: #e9ecef;
  border-color: #adb5bd;
  --e-box-bg: var(--color_bg);
  --e-box-border: var(--color_border);
}
.e-box.-gray.-light {
  background: var(--color_bg);
}
.e-box + * {
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .e-box + * {
    margin-top: 30px;
  }
}
@media screen and (min-width: 1200px) {
  .e-box + * {
    margin-top: 40px;
  }
}
.e-box_title {
  font-size: 1.125rem;
  line-height: 1.5;
  margin-bottom: 5px;
}
@media screen and (min-width: 768px) {
  .e-box_title {
    font-size: 1.1875rem;
  }
}
@media screen and (min-width: 1200px) {
  .e-box_title {
    font-size: 1.25rem;
  }
}

/***********
grid
************/
.e-grid h2:first-child, .e-grid h3:first-child, .e-grid h4:first-child, .e-grid h5:first-child, .e-grid h6:first-child {
  margin-top: 0;
}
.e-grid p:first-child {
  margin-top: 0;
  padding-top: 0;
}
.e-grid .e-gridItem_title {
  background: none;
  color: var(--color_main);
  margin-top: 25px;
  font-size: 1.5rem;
  line-height: 1.3;
}
@media screen and (max-width: 1199px) {
  .e-grid .e-gridItem_title {
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 767px) {
  .e-grid .e-gridItem_title {
    font-size: 1.125rem;
    margin-top: 20px;
  }
}
.e-grid .e-gridItem_img {
  text-align: center;
}
.e-grid p {
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .e-grid p {
    margin-top: 15px;
  }
}
.e-grid p.c-gridItem_txt {
  line-height: 1.5;
}

/***********
greeting
************/
.e-greetingWrap {
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .e-greetingWrap {
    display: flex;
    flex-direction: column-reverse;
  }
}

.e-greeting_photo {
  width: 25%;
  margin: 0 0 40px 40px;
  float: right;
  text-align: center;
}
@media screen and (max-width: 1199px) {
  .e-greeting_photo {
    margin: 0 0 20px 20px;
  }
}
@media screen and (max-width: 767px) {
  .e-greeting_photo {
    float: none;
    margin-inline: auto;
    max-inline-size: max-content;
    width: auto;
  }
}
.e-greeting_photo figcaption {
  margin-top: 20px;
  text-align: left;
}

.txtbox p.e-greeting_post {
  font-size: 0.875rem;
  line-height: 1.3;
  margin-bottom: 5px;
}
@media screen and (max-width: 1199px) {
  .txtbox p.e-greeting_post {
    font-size: 0.8125rem;
  }
}
@media screen and (max-width: 767px) {
  .txtbox p.e-greeting_post {
    font-size: 0.75rem;
  }
}

.txtbox p.e-greeting_name {
  font-weight: bold;
  font-size: 1.125rem;
  line-height: 1.3;
  margin-bottom: 20px;
  margin-top: 0;
}
@media screen and (max-width: 1199px) {
  .txtbox p.e-greeting_name {
    font-size: 1.0625rem;
  }
}
@media screen and (max-width: 767px) {
  .txtbox p.e-greeting_name {
    font-size: 0.9375rem;
  }
}

.txtbox p.e-greeting_txt {
  font-size: 0.875rem;
  line-height: 1.3;
  margin-top: 0;
}
@media screen and (max-width: 1199px) {
  .txtbox p.e-greeting_txt {
    font-size: 0.8125rem;
  }
}
@media screen and (max-width: 767px) {
  .txtbox p.e-greeting_txt {
    font-size: 0.75rem;
  }
}

/***********
btn
************/
.e-btn {
  width: 100%;
  margin: 40px auto;
}
@media screen and (max-width: 1199px) {
  .e-btn {
    margin: 30px auto;
  }
}
@media screen and (max-width: 767px) {
  .e-btn {
    margin: 20px auto;
  }
}
.e-btn a {
  background: var(--color_main);
  width: 100%;
  min-width: 200px;
  max-width: 400px;
  padding: 20px 10px;
  color: #fff;
  border-radius: 9999px;
  display: block;
  text-align: center;
  font-size: clamp(1rem, 0.957rem + 0.192vw, 1.125rem);
  font-weight: 700;
  transition: var(--trans_speed) all;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .e-btn a {
    padding: 20px 10px;
  }
}
@media (any-hover: hover) {
  .e-btn a:hover {
    background: color-mix(in srgb, var(--color_main) 60%, #000);
  }
}
@media screen and (min-width: 1200px) {
  .e-btn a[href^=tel] {
    pointer-events: none;
    border: 1px solid var(--color_main);
    background: #fff;
    color: var(--color_txt);
  }
}
@media screen and (min-width: 960px) {
  .e-btn a[href^=tel]:hover {
    background: #fff;
  }
}
.e-btn a[href^=tel]:after {
  display: none;
}
.e-btn--center {
  text-align: center;
}

.e-btnWrap {
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .e-btnWrap {
    display: block;
  }
}
.e-btnWrap .e-btn {
  margin: 0 10px;
  width: auto;
}
@media screen and (max-width: 767px) {
  .e-btnWrap .e-btn {
    width: 100%;
    margin: 10px 0;
    text-align: center;
  }
}

.e-btn02 {
  display: inline-block;
  margin: 0 10px;
}
.e-btn02_inner {
  display: inline-block;
  color: #fff;
  border-radius: 3px;
  text-align: center;
  font-weight: bold;
  margin: 0;
  background: var(--color_main);
  padding: 5px 20px 5px 20px;
  font-size: 93%;
}
@media screen and (max-width: 767px) {
  .e-btn02_inner {
    padding: 3px 10px;
  }
}
@media screen and (min-width: 960px) {
  .e-btn02_inner:hover {
    opacity: 0.8;
  }
}

/***********
table
************/
@media screen and (max-width: 767px) {
  table.e-table--sp {
    border-bottom: 0 !important;
  }
}
@media screen and (max-width: 767px) {
  table.e-table--sp th,
  table.e-table--sp td {
    display: block;
    width: 100% !important;
  }
}

.e-table_cell25 {
  width: 25%;
}
.e-table_cell33 {
  width: 33%;
}
.e-table_cell50 {
  width: 50%;
}
.e-table_cell50 {
  width: 50%;
}

@media screen and (max-width: 767px) {
  .entryBody table.e-table--sp th {
    border-bottom: none;
    border-top: none;
  }
}

/***********
linkList
**********.**/
.e-linkList {
  width: 100%;
}
.e-linkList li {
  list-style: none;
  padding-left: 15px;
  position: relative;
  font-size: calc(var(--fontSize_sm) / 16)rem;
  line-height: 1.8;
}
@media screen and (min-width: 768px) {
  .e-linkList li {
    font-size: calc(var(--fontSize_md) / 16)rem;
  }
}
@media screen and (min-width: 1200px) {
  .e-linkList li {
    font-size: calc(var(--fontSize_lg) / 16)rem;
    line-height: 1.8;
  }
}
.e-linkList li::before {
  font-family: "Font Awesome 6 Free";
  content: "\f105";
  font-weight: 900;
  position: absolute;
  left: 0;
}
.e-linkList a[target=_blank], .e-linkList a[href$=".pdf"], .e-linkList a[href$=".doc"], .e-linkList a[href$=".docx"], .e-linkList a[href$=".xls"], .e-linkList a[href$=".xlsx"], .e-linkList a[href$=".txt"] {
  padding-right: 15px;
  position: relative;
  margin-right: 10px;
}
@media screen and (min-width: 768px) {
  .e-linkList a[target=_blank], .e-linkList a[href$=".pdf"], .e-linkList a[href$=".doc"], .e-linkList a[href$=".docx"], .e-linkList a[href$=".xls"], .e-linkList a[href$=".xlsx"], .e-linkList a[href$=".txt"] {
    padding-right: 18px;
    margin-right: 15px;
  }
}
@media screen and (min-width: 1200px) {
  .e-linkList a[target=_blank], .e-linkList a[href$=".pdf"], .e-linkList a[href$=".doc"], .e-linkList a[href$=".docx"], .e-linkList a[href$=".xls"], .e-linkList a[href$=".xlsx"], .e-linkList a[href$=".txt"] {
    padding-right: 20px;
  }
}
.e-linkList a[target=_blank]::after, .e-linkList a[href$=".pdf"]::after, .e-linkList a[href$=".doc"]::after, .e-linkList a[href$=".docx"]::after, .e-linkList a[href$=".xls"]::after, .e-linkList a[href$=".xlsx"]::after, .e-linkList a[href$=".txt"]::after {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: color 0.1s;
}
.e-linkList a[target=_blank]::after {
  font-family: "Font Awesome 6 Free";
  content: "\f35d";
  font-weight: 900;
  color: var(--color_main);
}
.e-linkList a[href$=".pdf"]::after {
  font-family: "Font Awesome 6 Free";
  content: "\f1c1";
  font-weight: 900;
  color: #f20f00;
}
.e-linkList a[href$=".doc"]::after, .e-linkList a[href$=".docx"]::after {
  font-family: "Font Awesome 6 Free";
  content: "\f1c2";
  font-weight: 900;
  color: #144aab;
}
.e-linkList a[href$=".xls"]::after, .e-linkList a[href$=".xlsx"]::after {
  font-family: "Font Awesome 6 Free";
  content: "\f1c3";
  font-weight: 900;
  color: #077d3f;
}
.e-linkList a[href$=".txt"]::after {
  font-family: "Font Awesome 6 Free";
  content: "\f15c";
  font-weight: 900;
  font-weight: 500;
  color: #666;
}
.e-linkList a:hover {
  text-decoration: none !important;
}

/***********
googleMap
************/
.e-googleMap {
  width: 100%;
  margin: 30px 0;
}
@media screen and (max-width: 1199px) {
  .e-googleMap {
    margin: 25px 0;
  }
}
@media screen and (max-width: 767px) {
  .e-googleMap {
    margin: 20px 0;
  }
}
.e-googleMap iframe {
  width: 100%;
  height: 400px;
}
@media screen and (max-width: 1199px) {
  .e-googleMap iframe {
    height: 350px;
  }
}
@media screen and (max-width: 767px) {
  .e-googleMap iframe {
    height: 300px;
  }
}

/***********
youtube
************/
.e-youtube {
  position: relative;
  width: 100%;
}
.e-youtube::before {
  content: "";
  display: block;
  padding-top: 56.25%;
}
.e-youtube div {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.e-youtube iframe {
  width: 100%;
  height: 100%;
}

/***********
imgList
************/
.e-imgList {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  list-style: none;
}
.e-imgList li {
  margin-bottom: 30px;
  text-align: center;
}
@media screen and (max-width: 1199px) {
  .e-imgList li {
    margin-bottom: 25px;
  }
}
@media screen and (max-width: 767px) {
  .e-imgList li {
    margin-bottom: 20px;
  }
}
.e-imgList figcaption {
  font-weight: bold;
  text-align: center;
  margin-top: 10px;
  font-size: 1rem;
  line-height: 1.3;
}
@media screen and (max-width: 1199px) {
  .e-imgList figcaption {
    font-size: 0.9375rem;
  }
}
@media screen and (max-width: 767px) {
  .e-imgList figcaption {
    font-size: 0.875rem;
  }
}
.e-imgList--row3::after {
  content: "";
  display: block;
  width: 31.5%;
}
.e-imgList--row3 li {
  width: 31.5%;
}
.e-imgList--row4::before {
  content: "";
  display: block;
  width: 23.5%;
  order: 1;
}
.e-imgList--row4::after {
  content: "";
  display: block;
  width: 23.5%;
}
.e-imgList--row4 li {
  width: 23.5%;
}

.aligncenter {
  display: block;
  text-align: center;
  margin: 0px auto;
}

.alignright {
  display: block;
  text-align: right;
  margin-left: auto;
  margin-right: 0;
}

/***********
download
************/
.e-downloadList {
  max-inline-size: max-content;
  margin: 20px 0;
}
@media screen and (min-width: 1200px) {
  .e-downloadList {
    margin: 40px 0;
  }
}
@media screen and (max-width: 1199px) {
  .e-downloadList {
    max-inline-size: none;
  }
}
.e-downloadList_item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 20px;
  border-bottom: 1px solid var(--color_border);
  padding: 15px 0;
  position: relative;
}
.e-downloadList a {
  padding: 15px 0;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 150px;
}
@media screen and (max-width: 767px) {
  .e-downloadList a {
    width: 40px;
    padding: 0;
  }
}
@media screen and (max-width: 1199px) {
  .e-downloadList a::after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    pointer-events: auto;
    content: "";
    background-color: rgba(0, 0, 0, 0);
  }
}
.e-downloadList p + p {
  margin-top: 0;
}
.e-downloadList p {
  line-height: 1.3;
}
.e-downloadList_file {
  flex: 1;
}
.e-downloadList_btn {
  color: #fff;
  border-radius: 3px;
  text-align: center;
  font-weight: bold;
  margin: 0;
  background: var(--color_main);
  padding: 5px 20px;
}
@media screen and (max-width: 767px) {
  .e-downloadList_btn {
    background: none;
    padding: 0;
  }
}
@media screen and (min-width: 960px) {
  .e-downloadList_btn:hover {
    opacity: 0.8;
  }
}
.e-downloadList_btn span {
  font-size: inherit;
  font-size: 0.875rem;
}
@media screen and (max-width: 767px) {
  .e-downloadList_btn span {
    display: none;
  }
}
.e-downloadList_btn i {
  margin-right: 5px;
}
@media screen and (max-width: 767px) {
  .e-downloadList_btn i {
    font-size: 1.625rem;
    color: var(--color_main);
    margin-right: 0;
  }
}

/***********
picture
************/
.e-picture_pc {
  display: none;
}
@media screen and (min-width: 768px) {
  .e-picture_pc {
    display: block;
  }
}
.e-picture_sp {
  display: block;
}
@media screen and (min-width: 768px) {
  .e-picture_sp {
    display: none;
  }
}

/***********
list
************/
.e-list {
  display: grid;
  width: fit-content;
  margin: 0 auto;
  grid-template-columns: 1fr;
  list-style: none;
  gap: 20px 40px;
}
@media screen and (max-width: 767px) {
  .e-list {
    gap: 20px;
  }
}
.e-list li {
  font-size: inherit;
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
}
@media screen and (max-width: 1199px) {
  .e-list li {
    line-height: 1.5;
  }
}
@media screen and (max-width: 767px) {
  .e-list li {
    line-height: 1.5;
  }
}
.e-list li::before {
  content: "";
  width: 12px;
  aspect-ratio: 1;
  background: var(--color_main);
  position: absolute;
  left: 0;
  top: 8px;
  border-radius: 50%;
}
@media screen and (max-width: 767px) {
  .e-list li::before {
    width: 10px;
    top: 6px;
  }
}

.e-list--row2 {
  width: 100%;
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (max-width: 767px) {
  .e-list--row2 {
    grid-template-columns: 1fr;
    row-gap: 15px;
  }
}

.e-list--row3 {
  width: 100%;
  grid-template-columns: repeat(3, 1fr);
}
@media screen and (max-width: 767px) {
  .e-list--row3 {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
}

.e-list--check li {
  padding-left: 30px;
}
@media screen and (max-width: 767px) {
  .e-list--check li {
    padding-left: 25px;
  }
}
.e-list--check li::before {
  font-family: "Font Awesome 6 Free";
  content: "\f14a";
  font-weight: 900;
  width: auto;
  aspect-ratio: 1;
  top: 0;
  border-radius: 0;
  background: none;
  color: var(--color_main);
  font-weight: 500;
  font-size: 118%;
}
@media screen and (max-width: 767px) {
  .e-list--check li::before {
    width: auto;
    top: 0;
  }
}

.material-icons {
  display: inline-flex;
  vertical-align: middle;
  font-size: inherit;
}

.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
}

@media screen and (min-width: 960px) {
  .c-pcCenter {
    text-align: center;
  }
}

.clear {
  clear: both;
  width: 0px;
  height: 0px;
  display: block;
  overflow: hidden;
}

.clearfix:after {
  content: " ";
  display: block;
  clear: both;
}

.cen {
  text-align: center !important;
}

.rgt {
  text-align: right !important;
}

.lft {
  text-align: left !important;
}

.opa a:hover {
  opacity: 0.8;
}

.bold {
  font-weight: bold;
}

.redtxt {
  color: var(--color_warning);
}

.pt0 {
  padding-top: 0px !important;
}

.pt05 {
  padding-top: 5px !important;
}

.pt10 {
  padding-top: 10px !important;
}

.pt15 {
  padding-top: 10px !important;
}

.pt20 {
  padding-top: 15px !important;
}

.pt30 {
  padding-top: 20px !important;
}

.pt40 {
  padding-top: 25px !important;
}

.pt50 {
  padding-top: 30px !important;
}

.pt60 {
  padding-top: 40px !important;
}

.pb0 {
  padding-bottom: 0px !important;
}

.pb05 {
  padding-bottom: 5px !important;
}

.pb10 {
  padding-bottom: 10px !important;
}

.pb15 {
  padding-bottom: 10px !important;
}

.pb20 {
  padding-bottom: 15px !important;
}

.pb30 {
  padding-bottom: 20px !important;
}

.pb40 {
  padding-bottom: 25px !important;
}

.pb50 {
  padding-bottom: 30px !important;
}

.pb60 {
  padding-bottom: 40px !important;
}

.mt0 {
  margin-top: 0px !important;
}

.mt05 {
  margin-top: 5px !important;
}

.mt10 {
  margin-top: 10px !important;
}

.mt15 {
  margin-top: 10px !important;
}

.mt20 {
  margin-top: 15px !important;
}

.mt30 {
  margin-top: 20px !important;
}

.mt40 {
  margin-top: 25px !important;
}

.mt50 {
  margin-top: 30px !important;
}

.mt60 {
  margin-top: 40px !important;
}

.mb0 {
  margin-bottom: 0px !important;
}

.mb05 {
  margin-bottom: 5px !important;
}

.mb10 {
  margin-bottom: 10px !important;
}

.mb15 {
  margin-bottom: 10px !important;
}

.mb20 {
  margin-bottom: 15px !important;
}

.mb30 {
  margin-bottom: 20px !important;
}

.mb40 {
  margin-bottom: 25px !important;
}

.mb50 {
  margin-bottom: 30px !important;
}

.mb60 {
  margin-bottom: 40px !important;
}

@media screen and (min-width: 960px) {
  .pt0 {
    padding-top: 0px !important;
  }
  .pt05 {
    padding-top: 5px !important;
  }
  .pt10 {
    padding-top: 10px !important;
  }
  .pt15 {
    padding-top: 15px !important;
  }
  .pt20 {
    padding-top: 20px !important;
  }
  .pt30 {
    padding-top: 30px !important;
  }
  .pt40 {
    padding-top: 40px !important;
  }
  .pt50 {
    padding-top: 50px !important;
  }
  .pt60 {
    padding-top: 60px !important;
  }
  .pb0 {
    padding-bottom: 0px !important;
  }
  .pb05 {
    padding-bottom: 5px !important;
  }
  .pb10 {
    padding-bottom: 10px !important;
  }
  .pb15 {
    padding-bottom: 15px !important;
  }
  .pb20 {
    padding-bottom: 20px !important;
  }
  .pb30 {
    padding-bottom: 30px !important;
  }
  .pb40 {
    padding-bottom: 40px !important;
  }
  .pb50 {
    padding-bottom: 50px !important;
  }
  .pb60 {
    padding-bottom: 60px !important;
  }
  .mt0 {
    margin-top: 5px !important;
  }
  .mt05 {
    margin-top: 5px !important;
  }
  .mt10 {
    margin-top: 10px !important;
  }
  .mt15 {
    margin-top: 15px !important;
  }
  .mt20 {
    margin-top: 20px !important;
  }
  .mt30 {
    margin-top: 30px !important;
  }
  .mt40 {
    margin-top: 40px !important;
  }
  .mt50 {
    margin-top: 50px !important;
  }
  .mt60 {
    margin-top: 60px !important;
  }
  .mb0 {
    margin-bottom: 5px !important;
  }
  .mb05 {
    margin-bottom: 5px !important;
  }
  .mb10 {
    margin-bottom: 10px !important;
  }
  .mb15 {
    margin-bottom: 15px !important;
  }
  .mb20 {
    margin-bottom: 20px !important;
  }
  .mb30 {
    margin-bottom: 30px !important;
  }
  .mb40 {
    margin-bottom: 40px !important;
  }
  .mb50 {
    margin-bottom: 50px !important;
  }
  .mb60 {
    margin-bottom: 60px !important;
  }
}/*# sourceMappingURL=style.css.map */