@charset "UTF-8";
/* Scss Document */
:root {
  --color_txt: #202020;
  --color_bg: #f0f0f0;
  --color_warning: #CF1212;
  --color_main: #373737;
  --color_border: #646464;
  --color_accent: #13764c;
  --color_green:#13764c;
  --color_red:#b71e29;
  --color_light_green:#ebf3ef;
  --color_twitter: #1DA1F2;
  --color_facebook: #1877f2;
  --color_line: #00b900;
  --color_youtube: #DA1725;
  --color_x: #0f1419;
  --color_insta: #e1306c;
  --contents_max: 1800px;
  --contents_wide: 1600px;
  --contents_lg: 1400px;
  --contents_base: 1200px;
  --contents_sm: 1000px;
  --contents_ss: 800px;
  --padding_large: 180px;
  --padding_medium: 130px;
  --padding_small: 90px;
  --padding_ss: 50px;
  --fontSize_sm: 14;
  --fontSize_md: 16;
  --fontSize_lg: 18;
  --header_height: 70px;
  --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_height_lg);
}
@media screen and (min-width: 1200px) {
  html {
    scroll-padding-top: calc(var(--header_height_lg) + 60px);
  }
}

body {
  line-height: 1;
  font-family: "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", YuGothic, "Yu Gothic", Meiryo, sans-serif;
  font-weight: 500;
  color: var(--color_txt);
  position: relative;
}
body.is-menuopen {
  overflow: hidden;
  height: 100%;
}

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

/*=============================================================
  parts/base.scss
==============================================================*/
/* base style
---------------------------------------------*/
.base--ss, .base--small, .base, .base--large, .base--wide, .base--max {
  width: 100%;
  padding-left: 20px;
  padding-right: 20px;
  box-sizing: border-box;
  margin: 0px auto;
}

.base--full {
  padding-inline: 5%;
}
@media screen and (min-width: 560px) {
  .base--full {
    padding-inline: 5%;
  }
}
@media screen and (min-width: 768px) {
  .base--full {
    padding-inline: 60px;
  }
}
.base--full [class*=base] {
  padding-left: 0px !important;
  padding-right: 0px !important;
}

.base--max {
  max-width: var(--contents_max);
}
@media screen and (min-width: 560px) {
  .base--max {
    max-width: calc(var(--contents_max) + 10%);
    padding-inline: 5%;
  }
}
@media screen and (min-width: 768px) {
  .base--max {
    max-width: calc(var(--contents_max) + 120px);
    padding-inline: 60px;
  }
}
.base--max [class*=base] {
  padding-left: 0px !important;
  padding-right: 0px !important;
}

.base--wide {
  max-width: var(--contents_wide);
}
@media screen and (min-width: 560px) {
  .base--wide {
    max-width: calc(var(--contents_wide) + 10%);
    padding-inline: 5%;
  }
}
@media screen and (min-width: 768px) {
  .base--wide {
    max-width: calc(var(--contents_wide) + 120px);
    padding-inline: 60px;
  }
}
@media screen and (min-width: 560px) {
  .base--max .base--wide {
    max-width: var(--contents_lg);
  }
}
@media screen and (min-width: 768px) {
  .base--max .base--wide {
    max-width: var(--contents_lg);
  }
}
.base--wide [class*=base] {
  padding-left: 0px !important;
  padding-right: 0px !important;
}

.base--large {
  max-width: var(--contents_lg);
}
@media screen and (min-width: 560px) {
  .base--large {
    max-width: calc(var(--contents_lg) + 10%);
    padding-inline: 5%;
  }
}
@media screen and (min-width: 768px) {
  .base--large {
    max-width: calc(var(--contents_lg) + 120px);
    padding-inline: 60px;
  }
}
@media screen and (min-width: 560px) {
  .base--max .base--large, .base--wide .base--large {
    max-width: var(--contents_lg);
  }
}
@media screen and (min-width: 768px) {
  .base--max .base--large, .base--wide .base--large {
    max-width: var(--contents_lg);
  }
}
.base--large [class*=base] {
  padding-left: 0px !important;
  padding-right: 0px !important;
}

.base {
  max-width: var(--contents_base);
}
@media screen and (min-width: 560px) {
  .base {
    max-width: calc(var(--contents_base) + 10%);
    padding-inline: 5%;
  }
}
@media screen and (min-width: 768px) {
  .base {
    max-width: calc(var(--contents_base) + 120px);
    padding-inline: 60px;
  }
}
@media screen and (min-width: 560px) {
  .base--max .base, .base--large .base, .base--wide .base {
    max-width: var(--contents_base);
  }
}
@media screen and (min-width: 768px) {
  .base--max .base, .base--large .base, .base--wide .base {
    max-width: var(--contents_base);
  }
}
.base [class*=base] {
  padding-left: 0px !important;
  padding-right: 0px !important;
}

.base--small {
  max-width: var(--contents_sm);
}
@media screen and (min-width: 560px) {
  .base--small {
    max-width: calc(var(--contents_sm) + 10%);
    padding-inline: 5%;
  }
}
@media screen and (min-width: 768px) {
  .base--small {
    max-width: calc(var(--contents_sm) + 120px);
    padding-inline: 60px;
  }
}
@media screen and (min-width: 560px) {
  .base--max .base--small, .base--wide .base--small, .base--large .base--small, .base .base--small {
    max-width: var(--contents_sm);
  }
}
@media screen and (min-width: 768px) {
  .base--max .base--small, .base--wide .base--small, .base--large .base--small, .base .base--small {
    max-width: var(--contents_sm);
  }
}
.base--small [class*=base] {
  padding-left: 0px !important;
  padding-right: 0px !important;
}

.base--ss {
  max-width: var(--contents_ss);
}
@media screen and (min-width: 560px) {
  .base--ss {
    max-width: calc(var(--contents_ss) + 10%);
    padding-inline: 5%;
  }
}
@media screen and (min-width: 768px) {
  .base--ss {
    max-width: calc(var(--contents_ss) + 120px);
    padding-inline: 60px;
  }
}
@media screen and (min-width: 560px) {
  .base--max .base--ss, .base--wide .base--ss, .base--large .base--ss, .base .base--ss, .base--small .base--ss {
    max-width: var(--contents_ss);
  }
}
@media screen and (min-width: 768px) {
  .base--max .base--ss, .base--wide .base--ss, .base--large .base--ss, .base .base--ss, .base--small .base--ss {
    max-width: var(--contents_ss);
  }
}

/*=============================================================
  space.scss
==============================================================*/
.space--large {
  padding-top: calc(var(--padding_large) / 3);
  padding-bottom: calc(var(--padding_large) / 3);
}
@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) / 3);
  padding-bottom: calc(var(--padding_medium) / 3);
}
@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) / 3);
  padding-bottom: calc(var(--padding_small) / 3);
}
@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) / 3 * 2);
    padding-bottom: calc(var(--padding_ss) / 3 * 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: 959px) {
  .c-grid {
    row-gap: 50px;
  }
}
@media screen and (max-width: 559px) {
  .c-grid {
    row-gap: 40px;
  }
}
.c-grid--reverse {
  flex-direction: row-reverse;
}
@media screen and (max-width: 559px) {
  .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: 559px) {
  .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.788rem + 0.385vw, 1.125rem);
  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.663rem + 0.385vw, 1rem);
  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.913rem + 0.385vw, 1.25rem);
  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;
  }
}

.color-green {
  color: var(--color_green);
}

.color-red {
  color: var(--color_red);
}

.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 {
  font-size: clamp(1.75rem, 1.361rem + 1.731vw, 2.875rem);
  line-height: 1.3;
  letter-spacing: 5%;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 600;
  margin-bottom: 30px;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .c-heading01 {
    margin-bottom: 40px;
  }
}
@media screen and (min-width: 1200px) {
  .c-heading01 {
    margin-bottom: 50px;
  }
}

.c-heading02 {
  background: var(--color_light_green);
  border-left: 5px solid var(--color_green);
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 600;
  font-size: clamp(1.375rem, 1.245rem + 0.577vw, 1.75rem);
  padding: 15px;
  line-height: 1.3;
  margin-bottom: 25px;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .c-heading02 {
    padding: 20px 25px;
    margin-bottom: 30px;
  }
}
@media screen and (min-width: 1200px) {
  .c-heading02 {
    padding: 20px 35px;
    border-left-width: 8px;
    margin-bottom: 35px;
  }
}

.c-heading03 {
  font-size: clamp(1.125rem, 0.995rem + 0.577vw, 1.5rem);
  line-height: 1.3;
  margin-bottom: 25px;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .c-heading03 {
    margin-bottom: 30px;
  }
}
@media screen and (min-width: 1200px) {
  .c-heading03 {
    margin-bottom: 35px;
  }
}

.c-headingGroup {
  width: fit-content;
  border-bottom: 2px dashed var(--color_main);
  padding-bottom: 10px;
  display: inline flex;
  column-gap: 20px;
  align-items: center;
  margin-bottom: 50px;
  position: relative;
  margin-left: 45px;
}
@media screen and (min-width: 768px) {
  .c-headingGroup {
    padding-bottom: 15px;
    column-gap: 30px;
    margin-left: 60px;
  }
}
@media screen and (min-width: 1200px) {
  .c-headingGroup {
    column-gap: 40px;
    margin-bottom: 100px;
    margin-left: 70px;
  }
}
.c-headingGroup::before {
  content: "";
  width: 24px;
  aspect-ratio: 40/47;
  display: block;
  background: url(../../img/mark.png) no-repeat center center/contain;
  position: absolute;
  left: -45px;
  top: 2px;
}
@media screen and (min-width: 768px) {
  .c-headingGroup::before {
    width: 34px;
    left: -60px;
  }
}
@media screen and (min-width: 1200px) {
  .c-headingGroup::before {
    width: 40px;
    left: -70px;
    top: 2px;
  }
}

.c-headingGroup_main {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 600;
  font-size: clamp(1.625rem, 1.236rem + 1.731vw, 2.75rem);
  line-height: 1;
}

.c-headingGroup_sub {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: clamp(0.75rem, 0.62rem + 0.577vw, 1.125rem);
  font-weight: 600;
  padding-top: 3px;
}

/*=============================================================
  button.scss
==============================================================*/
.c-btn01 {
  background: #191919;
  overflow: hidden;
  display: block;
  position: relative;
  text-align: center;
  padding: 1.5em 1em;
  border-radius: 7px;
  max-width: 343px;
  color: #fff;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 600;
  font-size: clamp(1rem, 0.957rem + 0.192vw, 1.125rem);
  line-height: 1.3;
  max-width: 300px;
}
.c-btn01::before {
  content: "";
  background: #fff;
  opacity: 0.13;
  width: 100%;
  aspect-ratio: 458/341;
  position: absolute;
  top: -10%;
  left: -35%;
  border-radius: 50%;
  transition: all 0.3s;
}
.c-btn01::after {
  content: "";
  display: block;
  width: 9px;
  aspect-ratio: 9/15;
  background: #fff;
  clip-path: polygon(30% 0, 100% 50%, 30% 100%, 0% 100%, 70% 50%, 0% 0%);
  position: absolute;
  right: 10px;
  top: 50%;
  translate: 0 -50%;
}
@media screen and (min-width: 768px) {
  .c-btn01::after {
    right: 15px;
  }
}
@media screen and (min-width: 960px) {
  .c-btn01:hover::before {
    scale: 2;
  }
}
.c-btn01--center {
  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: 12px 16px;
  border-radius: 3px;
  box-sizing: border-box;
  font-size: 1rem;
}
@media screen and (min-width: 960px) {
  input[type=text],
  input[type=tel],
  input[type=email],
  textarea {
    padding: 14px 18px;
  }
}
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: 12px 16px;
  background: #fff;
  font-size: 1rem;
}
@media screen and (min-width: 960px) {
  select {
    padding: 14px 18px;
  }
}

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%;
  max-width: 800px;
  margin-inline: auto;
}

.formTable {
  width: 100%;
  border-bottom: 1px solid var(--color_border);
  margin-bottom: 40px;
}
.formTable th,
.formTable td {
  display: block;
  width: 100%;
  text-align: left;
  padding-left: 15px;
  padding-right: 15px;
}
@media screen and (min-width: 560px) {
  .formTable th,
  .formTable td {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media screen and (min-width: 960px) {
  .formTable th,
  .formTable td {
    padding-left: 30px;
    padding-right: 30px;
  }
}
.formTable th {
  font-size: 0.9375rem;
  padding-top: 30px;
  border-top: 1px solid var(--color_border);
}
@media screen and (min-width: 560px) {
  .formTable th {
    padding-top: 35px;
    font-size: 1rem;
  }
}
@media screen and (min-width: 960px) {
  .formTable th {
    font-size: 1.125rem;
    padding-top: 40px;
  }
}
.formTable 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: 560px) {
  .formTable th span {
    padding: 2px 3px;
  }
}
@media screen and (min-width: 960px) {
  .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: 560px) {
  .formTable td {
    padding-top: 15px;
    padding-bottom: 35px;
  }
}
@media screen and (min-width: 960px) {
  .formTable td {
    font-size: 1rem;
    padding-bottom: 40px;
  }
}

.confirmTable {
  width: 100%;
  border-bottom: 1px solid var(--color_border);
  margin: 40px 0 60px 0;
}
@media screen and (min-width: 560px) {
  .confirmTable {
    table-layout: fixed;
  }
}
.confirmTable th,
.confirmTable td {
  text-align: left;
  line-height: 1.5;
}
@media screen and (max-width: 559px) {
  .confirmTable th,
  .confirmTable td {
    display: block;
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media screen and (min-width: 560px) {
  .confirmTable th,
  .confirmTable td {
    padding: 30px 20px;
  }
}
@media screen and (min-width: 960px) {
  .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: 559px) {
  .confirmTable th {
    padding-top: 30px;
  }
}
@media screen and (min-width: 560px) {
  .confirmTable th {
    font-size: 1rem;
    width: 33%;
  }
}
@media screen and (min-width: 960px) {
  .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: 560px) {
  .confirmTable th span {
    padding: 2px 3px;
  }
}
@media screen and (min-width: 960px) {
  .confirmTable th span {
    font-size: 0.8125rem;
    padding: 5px 8px;
    margin-right: 10px;
  }
}
.confirmTable td {
  font-size: 0.9375rem;
}
@media screen and (max-width: 559px) {
  .confirmTable td {
    padding-top: 20px;
    padding-bottom: 30px;
  }
}
@media screen and (min-width: 560px) {
  .confirmTable td {
    border-top: 1px solid var(--color_border);
  }
}
@media screen and (min-width: 960px) {
  .confirmTable td {
    font-size: 1rem;
  }
}

.formList_row {
  display: flex;
  flex-wrap: wrap;
  column-gap: 20px;
  row-gap: 5px;
}
@media screen and (min-width: 560px) {
  .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: 960px) {
  .formPrivacy_txt {
    font-size: 0.875rem;
  }
}
.formPrivacy_check {
  font-size: 1.125rem;
  font-weight: bold;
}
@media screen and (min-width: 560px) {
  .formPrivacy_check {
    font-size: 1.1875rem;
  }
}
@media screen and (min-width: 960px) {
  .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-color: var(--color_main);
  border: none;
  border-radius: 3px;
  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: all 0.3s;
}
@media screen and (min-width: 560px) {
  .submit_btn button[type=submit] {
    font-size: 18px;
    padding: 20px 15px;
  }
}
@media screen and (min-width: 960px) {
  .submit_btn button[type=submit] {
    padding: 25px 15px;
    font-size: 20px;
  }
}
@media screen and (min-width: 960px) {
  .submit_btn button[type=submit]:hover {
    opacity: 0.7;
  }
}
.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: 560px) {
  .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);
}

/*=============================================================
  group.scss
==============================================================*/
.c-groupicon {
  display: flex;
  justify-content: space-between;
  column-gap: 3%;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .c-groupicon {
    column-gap: 5%;
  }
}
@media screen and (min-width: 1200px) {
  .c-groupicon {
    column-gap: 6%;
  }
}
.c-groupicon--mono {
  filter: grayscale(100%);
}
.c-groupicon li {
  flex: 1;
  aspect-ratio: 1;
}
.c-groupicon img {
  object-fit: container;
  width: 100%;
  height: 100%;
}

/*=============================================================
  navi.scss
==============================================================*/
.c-navi {
  display: flex;
  justify-content: center;
  align-items: center;
}
.c-navi li:not(:last-of-type) {
  border-right: 1px solid #333;
  margin-right: 5px;
  padding-right: 5px;
  position: relative;
}
@media screen and (min-width: 1200px) {
  .c-navi li:not(:last-of-type) {
    margin-right: 10px;
    padding-right: 10px;
  }
}
.c-navi a {
  display: inline-block;
  font-size: clamp(0.875rem, 0.839rem + 0.161vw, 1rem);
  font-weight: bold;
  padding: 0 5px;
  line-height: 1;
}
@media screen and (min-width: 1200px) {
  .c-navi a {
    padding: 0 10px;
  }
}

/*=============================================================
  header.scss
=============================================================*/
.l-header {
  height: var(--header_height);
  width: 100%;
  padding: 0 min(5%, 60px) 0 min(5%, 30px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 999;
}
@media screen and (min-width: 768px) {
  .l-header {
    height: var(--header_height_lg);
  }
}

.l-header_logo {
  width: min(60%, 300px);
}
@media screen and (min-width: 768px) {
  .l-header_logo {
    width: 33%;
    max-width: 300px;
  }
}
@media screen and (min-width: 1200px) {
  .l-header_logo {
    width: 394px;
  }
}
.l-header_logo a {
  display: flex;
  align-items: center;
  column-gap: 5%;
  transition: all 0.3s;
}

.header-logo_90th {
  width: min(21.1%, 83px);
}

.header-logo_main {
  width: min(73.6%, 290px);
}

.l-headerNavi {
  width: auto;
  display: none;
}
@media screen and (min-width: 768px) {
  .l-headerNavi {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex: 1;
  }
}
.l-headerNavi a {
  transition: all 0.3s;
}
@media screen and (min-width: 960px) {
  .l-headerNavi li:nth-of-type(odd) a:hover {
    color: var(--color_green);
  }
}
@media screen and (min-width: 960px) {
  .l-headerNavi li:nth-of-type(even) a:hover {
    color: var(--color_red);
  }
}

.logoimg {
  max-width: none;
  height: auto;
  max-height: 100%;
}

.l-header {
  transition: all 0.3s;
}

.l-header.is-scroll {
  background: rgba(255, 255, 255, 0.95);
}

/*
.l-header.is-scroll{
	position: fixed;
  z-index: 999;
	animation: anime-scrollMenu 0.5s forwards;

  @include mq-up(lg){		
  }

}

@keyframes anime-scrollMenu{
  from {
		opacity: 0;
		transform: translateY(-100px);
  }
  to {
		opacity: 1;
		transform: translateY(0);
  }
}
*/
/*=============================================================
  drawer.scss
=============================================================*/
.l-drawer {
  width: 100%;
  height: 100vh;
  position: absolute;
  left: 0;
  top: 0;
  background: url(../../img/bg02.png) repeat center center;
  display: none;
}
.l-drawer_inner {
  height: 100%;
  padding: var(--header_height_lg) 10%;
  overflow-y: scroll;
  display: grid;
  grid-template-rows: 1fr auto auto auto 1fr;
  grid-template-areas: "." "d-logo" "d-group" "d-navi" ".";
}

.drawer-logo {
  grid-area: d-logo;
  width: 60%;
  max-width: 340px;
  margin: 0 auto 30px auto;
}

.drawer-group {
  grid-area: d-group;
  width: 300px;
  margin: 0 auto;
}

.drawer-navi {
  grid-area: d-navi;
  margin: 40px auto 0 auto;
}
.drawer-navi ul {
  width: fit-content;
  margin: 0 auto;
}
.drawer-navi li {
  border-bottom: 2px dashed #333;
  padding: 5px 0;
}
.drawer-navi a {
  display: block;
  padding: 20px 0;
  text-align: center;
  font-size: 1rem;
  line-height: 1.3;
}

/* 
// スマホでメニューが表示されたときに背景のコンテンツがスクロールしないように
html{
  overflow: auto;
  height: 100%;
}
body.is-menuopen{
  overflow: hidden;
  height: 100%;
}


// スマホで表示されたメニューのスクロール
.navi_menu{
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  height: 100%;
}
*/
/*=============================================================
  naviBtn.scss
==============================================================*/
.naviBtn {
  display: block;
  width: var(--header_height);
  height: var(--header_height);
  margin-left: auto;
  z-index: 999;
  position: absolute;
  top: 0;
  right: 0;
}
@media screen and (min-width: 768px) {
  .naviBtn {
    display: none;
  }
}
@media screen and (min-width: 1200px) {
  .naviBtn {
    display: none;
  }
}
.naviBtn button {
  border: none;
  width: 100%;
  height: 100%;
  background: none;
  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;
}
.naviBtn p {
  width: calc(var(--header_height) / 2);
  aspect-ratio: 1/0.6;
  position: relative;
}
.naviBtn p::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color_green);
  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: var(--color_txt);
}
.naviBtn p span::before {
  top: 0;
}
.naviBtn p span::after {
  bottom: 0;
  background: var(--color_red);
}
.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(9px) rotate(-45deg);
}
.is-menuopen button span::after {
  transform: translateY(-9px) rotate(45deg);
  background: var(--color_txt);
}

/*=============================================================
  footer.scss
=============================================================*/
.l-footer {
  background: url(../../img/bg03.png) repeat center center;
}

.footer-logo {
  width: 50%;
  max-width: 270px;
  margin: 0 auto 20px auto;
}
@media screen and (min-width: 768px) {
  .footer-logo {
    margin-bottom: 30px;
  }
}

.footer-group {
  width: 70%;
  max-width: 376px;
  margin: 0 auto;
}

.footer-navi {
  margin: 30px auto;
  flex-wrap: wrap;
}
@media screen and (min-width: 768px) {
  .footer-navi {
    margin: 40px auto;
  }
}
@media screen and (min-width: 1200px) {
  .footer-navi {
    margin: 50px auto;
  }
}
.footer-navi li {
  margin-block: 5px;
}
.footer-navi a {
  font-size: clamp(0.75rem, 0.677rem + 0.323vw, 1rem);
  transition: all 0.3s;
}
@media screen and (min-width: 960px) {
  .footer-navi li:nth-of-type(odd) a:hover {
    color: var(--color_green);
  }
}
@media screen and (min-width: 960px) {
  .footer-navi li:nth-of-type(even) a:hover {
    color: var(--color_red);
  }
}

.footer-grouplink {
  background: #fff;
  box-shadow: 0px 0px 14.91px 6.09px rgba(0, 0, 0, 0.05);
  border-radius: 10px;
  padding: 20px 5%;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 10px;
}
@media screen and (min-width: 768px) {
  .footer-grouplink {
    padding: 30px 5%;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
  }
}
@media screen and (min-width: 1200px) {
  .footer-grouplink {
    padding: 40px 10%;
  }
}
@media screen and (min-width: 768px) {
  .footer-grouplink li {
    width: 50%;
  }
}
@media screen and (min-width: 1200px) {
  .footer-grouplink li {
    width: auto;
  }
}
.footer-grouplink a {
  padding: 5px;
  display: flex;
  justify-content: center;
  column-gap: 10px;
  font-size: clamp(0.875rem, 0.832rem + 0.192vw, 1rem);
  line-height: 1.3;
  transition: all 0.3s;
}
@media screen and (min-width: 768px) {
  .footer-grouplink a {
    column-gap: 15px;
  }
}
@media screen and (min-width: 1200px) {
  .footer-grouplink a {
    column-gap: 20px;
  }
}
@media screen and (min-width: 768px) {
  .footer-grouplink a:hover {
    opacity: 0.7;
  }
}
.footer-grouplink span {
  display: block;
  width: 16px;
}
@media screen and (min-width: 768px) {
  .footer-grouplink span {
    width: 18px;
  }
}
@media screen and (min-width: 1200px) {
  .footer-grouplink span {
    width: 20px;
  }
}
.footer-grouplink span svg {
  fill: var(--color_red);
}

.l-copyright {
  position: relative;
  padding-top: 15px;
}
@media screen and (min-width: 768px) {
  .l-copyright {
    padding-top: 25px;
  }
}
@media screen and (min-width: 1200px) {
  .l-copyright {
    padding-top: 35px;
  }
}
.l-copyright::before {
  content: "";
  width: 100%;
  height: 10px;
  background: var(--color_red);
  display: block;
  position: absolute;
  left: 0;
  top: 0;
}
@media screen and (min-width: 768px) {
  .l-copyright::before {
    height: 15px;
  }
}
@media screen and (min-width: 1200px) {
  .l-copyright::before {
    height: 20px;
  }
}
.l-copyright small {
  display: block;
  background: var(--color_green);
  color: #fff;
  text-align: center;
  font-size: clamp(0.625rem, 0.538rem + 0.385vw, 0.875rem);
  padding: 20px;
}
@media screen and (min-width: 768px) {
  .l-copyright small {
    padding: 25px;
  }
}
@media screen and (min-width: 1200px) {
  .l-copyright small {
    padding: 30px;
  }
}

/*=============================================================
  main.scss
=============================================================*/
#page .l-contents {
  padding-top: var(--header_height);
}
@media screen and (min-width: 768px) {
  #page .l-contents {
    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: 70%;
    max-width: 960px;
  }
}
.l-column_side {
  margin-top: 80px;
}
@media screen and (min-width: 768px) {
  .l-column_side {
    width: 25%;
    max-width: 300px;
    margin-top: 0;
  }
}
@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;
  }
}

/*=============================================================
  pageHeading.scss
==============================================================*/
.l-pageHeadingWrap {
  height: 25vh;
  min-height: 250px;
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .l-pageHeadingWrap {
    height: 350px;
  }
}
@media screen and (min-width: 1200px) {
  .l-pageHeadingWrap {
    height: 470px;
  }
}

.l-pageHeading {
  align-content: center;
  color: #fff;
  font-size: clamp(1.875rem, 1.442rem + 1.923vw, 3.125rem);
  position: absolute;
  inset: 0;
  z-index: 100;
}

.l-pageHeading_main {
  line-height: 1;
  letter-spacing: 5%;
  font-weight: 700;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 600;
}

.l-pageHeading_sub {
  font-size: 50%;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-weight: 600;
  margin-top: 15px;
  letter-spacing: 5%;
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  .l-pageHeading_sub {
    margin-top: 20px;
  }
}
@media screen and (min-width: 1200px) {
  .l-pageHeading_sub {
    margin-top: 25px;
    font-size: 52%;
  }
}

.l-pageHeading_img {
  width: 100%;
  height: 100%;
}
.l-pageHeading_img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

/*=============================================================
  pagenation.scss
==============================================================*/
.pagination {
  width: 100%;
  text-align: center;
  padding: 40px 0 0 0;
}
@media screen and (min-width: 560px) {
  .pagination {
    padding: 50px 0;
  }
}
@media screen and (min-width: 960px) {
  .pagination {
    padding: 70px 0;
  }
}
.pagination ul {
  display: flex;
  justify-content: center;
  align-items: center;
}
.pagination li {
  font-size: 0.875rem;
  color: #000;
  text-decoration: none;
  border: 1px solid #ccc;
  line-height: 1;
  margin-right: -1px;
}
.pagination li:first-of-type {
  border-radius: 10px 0 0 10px;
  overflow: hidden;
}
.pagination li:last-of-type {
  border-radius: 0 10px 10px 0;
  overflow: hidden;
}
.pagination span, .pagination a {
  transition: all 0.3s;
  padding: 15px 17px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: var(--color_txt);
  background: #fff;
}
@media screen and (min-width: 960px) {
  .pagination span:hover, .pagination a:hover {
    background: var(--color_bg);
  }
}
.pagination span.current {
  color: #fff;
  background: var(--color_main);
}

/* entryNavi
---------------------------------------------*/
/* entryNavi
---------------------------------------------*/
.entryNavi {
  display: grid;
  grid-template-columns: 1fr 25% 25% 25% 1fr;
  grid-template-areas: ". p-prev p-list p-next .";
  column-gap: 5%;
}
.entryNavi p {
  position: relative;
}
.entryNavi a {
  display: block;
  position: relative;
  text-decoration: none;
  color: var(--color_txt);
  font-size: clamp(0.875rem, 0.832rem + 0.192vw, 1rem);
  line-height: 1.3;
  padding: 20px 10px;
  text-align: center;
  border-radius: 10px;
  transition: all 0.3s;
}
@media screen and (min-width: 768px) {
  .entryNavi a {
    padding: 25px 10px;
  }
}
@media screen and (min-width: 1200px) {
  .entryNavi a {
    padding: 30px 10px;
  }
}
.entryNavi_prev {
  grid-area: p-prev;
}
.entryNavi_next {
  grid-area: p-next;
}
.entryNavi_back {
  grid-area: p-list;
}
.entryNavi_back a {
  border: 2px solid var(--color_main);
  color: var(--color_main);
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 600;
}
@media screen and (min-width: 960px) {
  .entryNavi_back a:hover {
    background: var(--color_main);
    color: #fff;
  }
}

/*=============================================================
  top.css
=============================================================*/
.top-contents {
  overflow: hidden;
}

.top-heading {
  display: flex;
  flex-direction: column-reverse;
}
.top-heading_main {
  font-size: clamp(1.375rem, 1.219rem + 0.694vw, 2rem);
  padding: 10px 0;
  width: fit-content;
  border-bottom: 2px dashed #252525;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 600;
  letter-spacing: 5%;
}
@media screen and (min-width: 1200px) {
  .top-heading_main {
    padding: 15px 0;
  }
}
.top-heading--center {
  align-items: center;
}

.top-mainVisualWrap {
  position: relative;
  margin-top: calc(var(--header_height) + 3vw);
  overflow: hidden;
  z-index: 100;
  /*
    right:min(5%,20px);
    @include mq-up(md){
      width:29.5%;
      right:min(5%,40px);
      top:80%;
    }
    @include mq-up(xl){
      right:min(5%,60px);
    }
  */
}
@media screen and (min-width: 960px) {
  .top-mainVisualWrap {
    height: 95vh;
    margin-top: 0;
  }
}
@media screen and (min-width: 1200px) {
  .top-mainVisualWrap {
    height: 100vh;
    min-height: 900px;
  }
}
@media screen and (max-width: 959px) {
  .top-mainVisualWrap {
    --space: min(5%);
    display: grid;
    grid-template-columns: var(--space) 50% var(--space) 1fr var(--space);
    align-items: start;
    row-gap: 15px;
    grid-template-areas: ". m-img01 . m-img02 ." ". . . m-img02 ." "m-img07 m-img07 . m-img03 m-img03" ". m-center m-center m-center ." ". . m-img04 m-img04 ." ". m-img06 m-img04 m-img04 ." ". m-img05 m-img05 m-img05 .";
  }
}
.top-mainVisualWrap .mainVisual01 {
  grid-area: m-img01;
}
.top-mainVisualWrap .mainVisual02 {
  grid-area: m-img02;
  align-self: end;
}
.top-mainVisualWrap .mainVisual03 {
  grid-area: m-img03;
}
.top-mainVisualWrap .mainVisual04 {
  grid-area: m-img04;
}
.top-mainVisualWrap .mainVisual05 {
  grid-area: m-img05;
}
.top-mainVisualWrap .mainVisual06 {
  grid-area: m-img06;
}
.top-mainVisualWrap .mainVisual07 {
  grid-area: m-img07;
}
.top-mainVisualWrap .top-mainVisual_center {
  grid-area: m-center;
}
.top-mainVisualWrap [class*=js-slide] {
  opacity: 0;
  transition: opacity 0.8s ease;
}
.top-mainVisualWrap [class*=js-slide].slick-initialized {
  opacity: 1;
}

.top-mainVisual {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0px 0px 14.91px 6.09px rgba(0, 0, 0, 0.05);
}
@media screen and (min-width: 768px) {
  .top-mainVisual {
    border-radius: 20px;
  }
}
@media screen and (min-width: 960px) {
  .top-mainVisual {
    position: absolute;
  }
}
.top-mainVisual_img {
  height: 100%;
}
.top-mainVisual img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.mainVisual01 {
  aspect-ratio: 558/310;
  max-width: 558px;
}
@media screen and (min-width: 960px) {
  .mainVisual01 {
    width: 30%;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    top: 0;
    left: 50%;
    translate: -90%;
  }
}
.mainVisual01 .mainVisual_img {
  aspect-ratio: 558/310;
}

.mainVisual02 {
  aspect-ratio: 330/210;
  max-width: 330px;
}
@media screen and (min-width: 960px) {
  .mainVisual02 {
    width: 18%;
    left: 60%;
    translate: 0;
    top: var(--header_height_lg);
  }
}
.mainVisual02 .mainVisual_img {
  aspect-ratio: 330/210;
}

.mainVisual03 {
  aspect-ratio: 348/248;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  max-width: 348px;
}
@media screen and (min-width: 768px) {
  .mainVisual03 {
    margin-left: auto;
  }
}
@media screen and (min-width: 960px) {
  .mainVisual03 {
    width: 19%;
    top: 28%;
    right: 0;
  }
}
.mainVisual03 .mainVisual_img {
  aspect-ratio: 348/248;
}

.mainVisual04 {
  aspect-ratio: 560/330;
  max-width: 560px;
}
@media screen and (min-width: 960px) {
  .mainVisual04 {
    width: 29.5%;
    right: min(5%, 40px);
    top: 100%;
    translate: 0 -110%;
  }
}
@media screen and (min-width: 1200px) {
  .mainVisual04 {
    right: min(5%, 60px);
  }
}
.mainVisual04 .mainVisual_img {
  aspect-ratio: 560/330;
}

.mainVisual05 {
  aspect-ratio: 370/236;
  width: 50%;
  max-width: 370px;
  margin: 0 auto;
}
@media screen and (min-width: 960px) {
  .mainVisual05 {
    width: 20%;
    top: 100%;
    left: 50%;
    translate: -60% -100%;
    margin: 0;
  }
}
.mainVisual05 .mainVisual_img {
  aspect-ratio: 370/236;
}

.mainVisual06 {
  aspect-ratio: 482/307;
  width: 80%;
  max-width: 482px;
}
@media screen and (min-width: 960px) {
  .mainVisual06 {
    width: 26%;
    left: 5%;
    top: 100%;
    translate: 0 -110%;
  }
}
.mainVisual06 .mainVisual_img {
  aspect-ratio: 482/307;
}

.mainVisual07 {
  aspect-ratio: 376/257;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  width: 70%;
  max-width: 376px;
}
@media screen and (min-width: 960px) {
  .mainVisual07 {
    width: 19.6%;
    left: 0;
    top: 30%;
  }
}
.mainVisual07 .mainVisual_img {
  aspect-ratio: 376/257;
}

.top-mainVisual_center {
  padding: 20px 0;
}
@media screen and (min-width: 960px) {
  .top-mainVisual_center {
    position: absolute;
    left: 50%;
    top: 50%;
    translate: -50% -40%;
    width: 100%;
    padding: 0 3%;
  }
}

.top-mainVisual_copy {
  text-align: center;
  font-size: clamp(1.75rem, 1.447rem + 1.346vw, 2.625rem);
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  line-height: 1.3;
}

.mainVisual-copy_main {
  color: #313131;
}

.mainVisual-copy_en {
  font-size: 47.6%;
  font-weight: 600;
  letter-spacing: 0.05em;
  width: fit-content;
  padding: 15px 0;
  border-bottom: 2px dashed #646464;
  margin-inline: auto;
}
@media screen and (min-width: 1200px) {
  .mainVisual-copy_en {
    padding: 20px 0;
  }
}

.top-mainVisual_group {
  margin-top: 20px;
  width: 95%;
  max-width: 426px;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .top-mainVisual_group {
    margin-top: 30px;
  }
}
.top-aboutWrap {
  background: url(../../img/bg01.png) no-repeat center center/cover;
  position: relative;
  margin-top: calc(var(--padding_medium) / 3 * -1);
  container-type: inline-size;
}
@media screen and (min-width: 768px) {
  .top-aboutWrap {
    margin-top: calc(var(--padding_medium) / 3 * 2 * -1);
  }
}
@media screen and (min-width: 1200px) {
  .top-aboutWrap {
    margin-top: calc(var(--padding_medium) * -1);
  }
}
.top-aboutWrap::before {
  content: "";
  background: url(../../img/top/bg_hand.png) no-repeat center center/contain;
  display: block;
  width: 70%;
  max-width: 1094px;
  aspect-ratio: 1094/465;
  position: absolute;
  left: 0;
  top: 0;
}

.top-about {
  display: grid;
  row-gap: 30px;
  grid-template-rows: auto auto auto auto auto;
  grid-template-areas: "ta-heading01" "ta-heading02" "ta-txt" "ta-btn" "ta-img";
}
@media screen and (min-width: 768px) {
  .top-about {
    row-gap: 40px;
  }
}
@media screen and (min-width: 960px) {
  .top-about {
    margin-right: calc(50% - 50cqi);
    position: relative;
    z-index: 100;
    display: grid;
    grid-template-columns: 3% auto 8% 1fr 60px;
    grid-template-rows: auto auto auto auto;
    align-items: center;
    grid-template-areas: ". ta-heading01 . ta-img" ". ta-heading02 . ta-img" ". ta-txt . ta-img" ". ta-btn . ta-img";
  }
}
@media screen and (min-width: 1200px) {
  .top-about {
    row-gap: 50px;
  }
}
.top-about_heading {
  grid-area: ta-heading01;
}
.top-about_heading02 {
  grid-area: ta-heading02;
}
.top-about_txt {
  grid-area: ta-txt;
}
.top-about_btn {
  grid-area: ta-btn;
}
.top-about_img {
  grid-area: ta-img;
}

.top-about_heading02 {
  text-align: center;
  font-size: clamp(1.75rem, 1.531rem + 0.972vw, 2.625rem);
  line-height: 1.5;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 600;
  letter-spacing: 5%;
}

.top-about_img {
  text-align: center;
}
.top-about_img img {
  box-shadow: 0px 0px 14.91px 6.09px rgba(0, 0, 0, 0.05);
}

.top-features {
  display: block grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(5px, 1.5cqi, 27px);
}
@media screen and (min-width: 960px) {
  .top-features {
    grid-template-columns: repeat(6, 1fr);
  }
}

.top-features_item {
  aspect-ratio: 1;
  position: relative;
  color: #fff;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 600;
  container-type: inline-size;
  padding: 10px 5%;
  display: grid;
  grid-template-rows: 1fr auto;
}
.top-features_item:first-of-type {
  background: #373737;
}
.top-features_item:first-of-type .top-features_group {
  color: #373737;
}
.top-features_item:nth-of-type(2n) {
  background: var(--color_green);
}
.top-features_item:nth-of-type(2n) .top-features_group {
  color: var(--color_green);
}
.top-features_item:nth-of-type(2n + 1):not(:first-of-type) {
  background: var(--color_red);
}
.top-features_item:nth-of-type(2n + 1):not(:first-of-type) .top-features_group {
  color: var(--color_red);
}
.top-features_item[data-aos] {
  transition-delay: 0s;
}
@media screen and (min-width: 560px) {
  .top-features_item[data-aos]:nth-of-type(even) {
    transition-delay: 0.2s;
  }
}
@media screen and (min-width: 960px) {
  .top-features_item[data-aos]:nth-of-type(1) {
    transition-delay: 0s;
  }
  .top-features_item[data-aos]:nth-of-type(2) {
    transition-delay: 0.1s;
  }
  .top-features_item[data-aos]:nth-of-type(3) {
    transition-delay: 0.2s;
  }
  .top-features_item[data-aos]:nth-of-type(4) {
    transition-delay: 0.3s;
  }
  .top-features_item[data-aos]:nth-of-type(5) {
    transition-delay: 0.4s;
  }
  .top-features_item[data-aos]:nth-of-type(6) {
    transition-delay: 0.5s;
  }
}

.top-features_txt {
  display: grid;
  place-content: center;
  text-align: center;
}
.top-features_txt p {
  font-size: 12cqi;
  line-height: 1.2;
}
.top-features_txt em {
  font-style: normal;
  font-size: 166%;
  display: inline-block;
}
.top-features_txt strong {
  font-size: 200%;
  display: inline-block;
}
.top-features_txt span {
  font-size: 60%;
  display: inline-block;
}

.top-features_group {
  background: #fff;
  font-size: 8cqi;
  border-radius: 9999px;
  text-align: center;
  padding: 3px 5px;
  line-height: 1;
}

.top-features_coming {
  aspect-ratio: 1;
  background: #e3e3e3;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #949494;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 600;
  font-size: clamp(0.75rem, 0.663rem + 0.385vw, 1rem);
  font-weight: bold;
  border: 2px solid #d4d4d4;
}

.top-section {
  display: flex;
}
.top-section div {
  flex: 1;
}

.top-businessWrap {
  background: url(../../img/bg02.png) repeat center center;
}

@media screen and (min-width: 768px) {
  .top-businessWrap_box {
    display: flex;
    justify-content: space-between;
    column-gap: 10%;
  }
}

.top-businessWrap_heading {
  align-items: center;
}
@media screen and (min-width: 768px) {
  .top-businessWrap_heading {
    align-items: start;
  }
}

.top-business_group {
  width: 68%;
  max-width: 806px;
  margin-inline: auto;
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  .top-business_group {
    width: auto;
    flex: 1;
  }
}
.top-business_group a {
  transition: all 0.3s;
}
@media screen and (min-width: 960px) {
  .top-business_group a:hover {
    opacity: 0.8;
  }
}

.top-business {
  display: grid;
  grid-template-rows: auto auto;
  padding: 20px 5%;
  margin-top: 40px;
  position: relative;
  grid-template-areas: "b-inner" "b-ph";
  row-gap: 40px;
}
@media screen and (min-width: 768px) {
  .top-business {
    margin-top: 50px;
  }
}
@media screen and (min-width: 960px) {
  .top-business {
    grid-template-columns: 48% 1fr 43.5% 1fr;
    grid-template-rows: auto;
    grid-template-areas: "b-ph . b-inner .";
    padding: 60px 0;
    align-items: center;
  }
}
@media screen and (min-width: 1200px) {
  .top-business {
    margin-top: 60px;
  }
}
.top-business::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #fff;
  box-shadow: 0px 0px 14.91px 6.09px rgba(0, 0, 0, 0.05);
  border-radius: 15px;
}
@media screen and (min-width: 960px) {
  .top-business::before {
    width: 72%;
    max-width: 1010px;
    right: 0;
    left: auto;
  }
}
.top-business .top-business_ph {
  grid-area: b-ph;
}
.top-business .top-business_inner {
  grid-area: b-inner;
}
.top-business .slick-slide {
  min-width: 0;
}
.top-business > * {
  position: relative;
  z-index: 100;
  min-height: 0;
  min-width: 0;
}
.top-business--green .top-business_copy {
  color: var(--color_green);
}
.top-business--green .top-business_link li:not(.link-youtube) a {
  background: var(--color_green);
}
.top-business--red .top-business_copy {
  color: var(--color_red);
}
.top-business--red .top-business_link li:not(.link-youtube) a {
  background: var(--color_red);
}
@media screen and (min-width: 960px) {
  .top-business--revers {
    grid-template-columns: 1fr 43.5% 1fr 48%;
    grid-template-areas: ". b-inner . b-ph";
  }
}
@media screen and (min-width: 960px) {
  .top-business--revers::before {
    right: auto;
    left: 0;
  }
}

.top-business_inner {
  border-radius: 15px;
}
@media screen and (min-width: 768px) {
  .top-business_inner {
    border-radius: 20px;
  }
}
.top-business_heading {
  display: grid;
  align-items: center;
  grid-template-columns: min(20%, 150px) 1fr;
  grid-template-rows: 1fr auto auto 1fr;
  grid-template-areas: "b-logo ." "b-logo b-name" "b-logo b-honsya" "b-logo .";
  column-gap: min(5%, 50px);
  row-gap: 5px;
  margin-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .top-business_heading {
    margin-bottom: 35px;
  }
}
@media screen and (min-width: 1200px) {
  .top-business_heading {
    grid-template-columns: min(25%, 150px) 1fr;
    margin-bottom: 40px;
  }
}

.top-business_logo {
  grid-area: b-logo;
  aspect-ratio: 1;
  border: 1px solid #d6d6d6;
  padding: 0 clamp(10px, 10%, 35px);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
}

.top-business_name {
  grid-area: b-name;
  font-size: clamp(1.125rem, 0.98rem + 0.645vw, 1.625rem);
  line-height: 1.3;
  font-weight: bold;
}

.top-business_honsya {
  grid-area: b-honsya;
  font-size: clamp(0.875rem, 0.802rem + 0.323vw, 1.125rem);
  line-height: 1.6;
}

.top-business_copy {
  font-size: clamp(1.125rem, 0.907rem + 0.968vw, 1.875rem);
  line-height: 1.3;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 600;
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .top-business_copy {
    margin-bottom: 25px;
  }
}
@media screen and (min-width: 1200px) {
  .top-business_copy {
    margin-bottom: 30px;
  }
}

.top-business_link {
  display: flex;
  justify-content: space-between;
  column-gap: 5px;
  margin-top: 15px;
}
@media screen and (min-width: 768px) {
  .top-business_link {
    column-gap: 8px;
    margin-top: 20px;
  }
}
@media screen and (min-width: 1200px) {
  .top-business_link {
    margin-top: 25px;
  }
}
.top-business_link li {
  flex: 1;
}
.top-business_link a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  border-radius: 7px;
  font-size: clamp(0.75rem, 0.663rem + 0.385vw, 1rem);
  text-align: center;
  padding: 1.3em 5%;
  position: relative;
  transition: all 0.3s;
}
@media screen and (min-width: 768px) {
  .top-business_link a {
    padding: 1.3em 1em;
  }
}
@media screen and (min-width: 960px) {
  .top-business_link a {
    padding: 1.3em 5%;
  }
}
@media screen and (min-width: 1200px) {
  .top-business_link a {
    padding: 1.3em 1em;
  }
}
@media screen and (min-width: 960px) {
  .top-business_link a:hover {
    opacity: 0.8;
  }
}
.top-business_link :not(.link-youtube) a {
  color: #fff;
  display: grid;
  grid-template-columns: 1fr 8px;
  column-gap: 3%;
  grid-template-areas: "l-txt l-svg";
}
@media screen and (min-width: 768px) {
  .top-business_link :not(.link-youtube) a {
    grid-template-columns: 10px 1fr 10px;
    grid-template-areas: ". l-txt l-svg";
  }
}
.top-business_link :not(.link-youtube) span {
  grid-area: l-txt;
}
.top-business_link :not(.link-youtube) svg {
  fill: #fff;
  aspect-ratio: 1;
  grid-area: l-svg;
}

.link-youtube a {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  border: 1px solid #646464;
}
.link-youtube a i {
  color: var(--color_youtube);
  font-size: 150%;
  margin-right: 3%;
}

.top-business_ph img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.top-business_ph .slick-list {
  border-radius: 15px;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .top-business_ph .slick-list {
    border-radius: 20px;
  }
}

.business_img {
  width: 100%;
}

.top-business02 {
  padding: 20px 5%;
  margin-top: 40px;
  background: #fff;
  box-shadow: 0px 0px 14.91px 6.09px rgba(0, 0, 0, 0.05);
  border-radius: 15px;
}
@media screen and (min-width: 768px) {
  .top-business02 {
    margin-top: 50px;
    padding: 40px 3%;
  }
}
@media screen and (min-width: 1200px) {
  .top-business02 {
    margin-top: 60px;
  }
}

@media screen and (min-width: 960px) {
  .top-business02_inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
}

.top-business02_heading {
  display: grid;
  align-items: center;
  grid-template-columns: min(20%, 150px) 1fr;
  grid-template-areas: "b-logo b-name";
  column-gap: min(5%, 50px);
  row-gap: 5px;
  margin-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .top-business02_heading {
    margin-bottom: 35px;
  }
}
@media screen and (min-width: 960px) {
  .top-business02_heading {
    margin-bottom: 0;
  }
}
@media screen and (min-width: 1200px) {
  .top-business02_heading {
    grid-template-columns: min(25%, 150px) 1fr;
  }
}

.top-news {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto auto auto;
  grid-template-areas: "tn-heading" "tn-list" "tn-btn";
  row-gap: 30px;
}
@media screen and (min-width: 960px) {
  .top-news {
    grid-template-columns: 200px 1fr;
    grid-template-rows: auto 1fr;
    justify-content: space-between;
    grid-template-areas: "tn-heading tn-list" "tn-btn tn-list";
    row-gap: 50px;
    column-gap: 10%;
  }
}
@media screen and (min-width: 1200px) {
  .top-news {
    row-gap: 90px;
    grid-template-columns: 200px 77%;
    column-gap: 0;
  }
}

.top-news_heading {
  grid-area: tn-heading;
  align-items: center;
}
@media screen and (min-width: 960px) {
  .top-news_heading {
    align-items: start;
  }
}

.top-news-list {
  grid-area: tn-list;
}

.top-news_btn {
  grid-area: tn-btn;
}
.top-news_btn .c-btn01 {
  margin-inline: auto;
}
@media screen and (min-width: 960px) {
  .top-news_btn .c-btn01 {
    margin-inline: 0;
  }
}

.top-information {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(10px, 1.5cqi, 27px);
}
@media screen and (min-width: 768px) {
  .top-information {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (min-width: 1200px) {
  .top-information {
    grid-template-columns: repeat(5, 1fr);
  }
}
.top-information li:first-of-type {
  grid-column: 1/3;
}
@media screen and (min-width: 768px) {
  .top-information li:first-of-type {
    grid-column: 1/1;
    grid-row: 1/3;
  }
}
@media screen and (min-width: 1200px) {
  .top-information li:first-of-type {
    grid-row: 1/1;
  }
}
.top-information li:first-of-type a {
  background: #373737;
  padding: 40px 15px;
  text-align: center;
  font-size: clamp(1rem, 0.913rem + 0.385vw, 1.25rem);
  font-weight: 700;
  line-height: 1.3;
}
@media screen and (min-width: 768px) {
  .top-information li:first-of-type a {
    display: flex;
    justify-content: center;
    flex-direction: column;
  }
}
.top-information li:first-of-type span {
  font-size: 70%;
  display: block;
  margin-top: 5px;
  font-weight: normal;
}
.top-information a {
  container-type: inline-size;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  padding: 15px;
  color: #fff;
  position: relative;
  background: var(--color);
  transition: all 0.3s;
}
@media screen and (min-width: 960px) {
  .top-information a:hover {
    opacity: 0.8;
  }
}
.top-information svg {
  width: 8px;
  position: absolute;
  right: 8px;
  bottom: 8px;
  fill: currentColor;
}
@media screen and (min-width: 768px) {
  .top-information svg {
    width: 10px;
  }
}

.top-information_group {
  border-bottom: 1px solid #fff;
  font-size: clamp(0.625rem, 0.56rem + 0.288vw, 0.8125rem);
  line-height: 1.2;
  font-weight: 700;
  padding-bottom: 10px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.top-information_title {
  line-height: 1.3;
  font-size: clamp(0.9375rem, 0.873rem + 0.288vw, 1.125rem);
  padding-bottom: 10px;
}
@media screen and (min-width: 768px) {
  .top-information_title {
    padding-bottom: 20px;
  }
}

.information--nishino,
.information--credo {
  --color:var(--color_green);
}

.information--npo,
.information--heartful {
  --color:var(--color_red);
}

/*=============================================================
  about.scss
==============================================================*/
.about-introWrap {
  overflow: hidden;
  container-type: inline-size;
}

@media screen and (min-width: 768px) {
  .about-intro_inner {
    display: grid;
    grid-template-columns: 50cqw 1fr;
    grid-template-rows: 20px 1fr 1fr 20px;
    grid-template-areas: "i-img ." "i-img i-heading" "i-img i-txt" "i-img .";
    margin-left: calc(50% - 50vw);
    column-gap: 5%;
    padding-left: 0;
  }
}
.about-intro_inner .c-heading01 {
  word-break: keep-all;
}

.about-intro_heading {
  grid-area: i-heading;
  align-self: end;
}

.about-intro_txt {
  grid-area: i-txt;
  text-align: center;
}

.about-intro_img {
  grid-area: i-img;
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .about-intro_img {
    margin-top: 0;
  }
}
@media screen and (min-width: 768px) {
  .about-intro_img img {
    object-fit: cover;
    width: 100%;
    height: 100%;
  }
}

.about-box {
  background: var(--color_bg);
  padding: 30px 8%;
}
@media screen and (min-width: 768px) {
  .about-box {
    padding: 40px 40px;
  }
}
@media screen and (min-width: 1200px) {
  .about-box {
    padding: 60px 50px;
  }
}

.about-rinen {
  text-align: center;
  font-size: clamp(1.125rem, 0.995rem + 0.577vw, 1.5rem);
  line-height: 1.8;
  font-weight: 700;
  word-break: keep-all;
}
@media screen and (min-width: 768px) {
  .about-rinen {
    padding: 20px 0;
  }
}
.about-rinen span {
  color: var(--color_green);
}

.about-policy li + li {
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  .about-policy li + li {
    margin-top: 40px;
  }
}
@media screen and (min-width: 1200px) {
  .about-policy li + li {
    margin-top: 60px;
  }
}
.about-policy h4 {
  font-size: clamp(1.125rem, 0.995rem + 0.577vw, 1.5rem);
  line-height: 1.3;
  margin-bottom: 10px;
}

.about-message {
  position: relative;
}

@media screen and (min-width: 1200px) {
  .about-message_inner {
    background: url(../../img/about/about-img03.jpg) no-repeat center center/cover;
    padding-block: 60px;
  }
}

.about-message_img {
  width: 100%;
  overflow: hidden;
}
@media screen and (min-width: 1200px) {
  .about-message_img {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .about-message_img img {
    object-fit: cover;
    object-position: bottom right;
    width: 100%;
    height: 100%;
  }
}

.about-message_txt {
  position: relative;
  z-index: 100;
  background: #fff;
  padding: 20px;
  font-size: clamp(0.875rem, 0.813rem + 0.278vw, 1.125rem);
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .about-message_txt {
    padding: 40px;
  }
}
@media screen and (min-width: 1200px) {
  .about-message_txt {
    width: 60%;
    line-height: 1.8;
    padding: 60px;
  }
}
@media screen and (min-width: 1600px) {
  .about-message_txt {
    width: 53%;
    padding: 70px;
  }
}
.about-message_txt p + p {
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .about-message_txt p + p {
    margin-top: 30px;
  }
}
@media screen and (min-width: 1600px) {
  .about-message_txt p + p {
    margin-top: 40px;
  }
}
.about-message_txt .about-message_sign {
  width: 70%;
  margin-left: auto;
  text-align: right;
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .about-message_txt .about-message_sign {
    margin-top: 50px;
  }
}
@media screen and (min-width: 1600px) {
  .about-message_txt .about-message_sign {
    margin-top: 60px;
  }
}

.about-historyWrap + .about-historyWrap {
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .about-historyWrap + .about-historyWrap {
    margin-top: 50px;
  }
}
@media screen and (min-width: 1200px) {
  .about-historyWrap + .about-historyWrap {
    margin-top: 60px;
  }
}

.about-history {
  width: 100%;
  border-bottom: 1px solid #6a6a6a;
  padding: 15px 0;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .about-history {
    display: grid;
    grid-template-columns: 80px 1fr;
    column-gap: 10px;
    padding: 20px 0;
  }
}
@media screen and (min-width: 1200px) {
  .about-history {
    padding: 30px 0;
  }
}
.about-history:first-of-type {
  border-top: 1px solid #6a6a6a;
}

.about-history_year {
  font-size: clamp(1rem, 0.957rem + 0.192vw, 1.125rem);
}

.about-history_inner {
  margin-top: 10px;
}
@media screen and (min-width: 768px) {
  .about-history_inner {
    margin-top: 0;
  }
}
.about-history_inner li {
  display: flex;
  column-gap: 15px;
  font-size: clamp(0.875rem, 0.788rem + 0.385vw, 1.125rem);
}
@media screen and (min-width: 768px) {
  .about-history_inner li {
    column-gap: 25px;
  }
}
@media screen and (min-width: 1200px) {
  .about-history_inner li {
    column-gap: 30px;
  }
}
.about-history_inner li + li {
  margin-top: 10px;
}
@media screen and (min-width: 768px) {
  .about-history_inner li + li {
    margin-top: 15px;
  }
}

.about-history_group {
  width: 80px;
}
.about-history_group span {
  font-size: 80%;
  width: 100%;
  text-align: center;
  border-radius: 5px;
  display: block;
  padding: 3px 10px;
  color: #fff;
  background: var(--color);
}
.about-history_group.-group {
  --color:var(--color_main);
}
.about-history_group.-nishino span, .about-history_group.-credo span {
  --color:var(--color_green);
}
.about-history_group.-tobu span, .about-history_group.-npo span, .about-history_group.-heartful span {
  --color:var(--color_red);
}

.about-history_txt {
  flex: 1;
}

/*=============================================================
  news.scss
==============================================================*/
.news-listItem {
  border-bottom: 2px dotted #252525;
}
.news-listItem a {
  display: grid;
  grid-template-columns: 35% 1fr;
  grid-template-rows: auto auto 1fr auto;
  grid-template-areas: "n-img n-date" "n-img n-cate" "n-img n-title" "n-txt n-txt";
  row-gap: 10px;
  column-gap: 15px;
  line-height: 1.6;
  padding: 20px 0;
  position: relative;
  transition: all 0.3s;
}
@media screen and (min-width: 560px) {
  .news-listItem a {
    grid-template-columns: min(30%, 240px) auto 1fr;
    grid-template-rows: auto auto 1fr;
    grid-template-areas: "n-img n-date n-cate" "n-img n-title n-title" "n-img n-txt n-txt";
    column-gap: 5%;
  }
}
@media screen and (min-width: 768px) {
  .news-listItem a {
    padding: 30px 10px;
    row-gap: 15px;
  }
}
@media screen and (min-width: 1200px) {
  .news-listItem a {
    padding: 35px 15px;
    row-gap: 20px;
  }
}
@media screen and (min-width: 768px) {
  .news-listItem a:hover {
    background: #f5f5f5;
  }
}
.news-listItem_img {
  grid-area: n-img;
}
.news-listItem_date {
  grid-area: n-date;
}
.news-listItem_category {
  grid-area: n-cate;
}
.news-listItem_title {
  grid-area: n-title;
}
.news-listItem_txt {
  grid-area: n-txt;
}
.news-listItem_img span {
  display: block;
  overflow: hidden;
  aspect-ratio: 1.414/1;
}
.news-listItem_img span img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.news-listItem_date {
  font-size: clamp(0.9375rem, 0.873rem + 0.288vw, 1.125rem);
  line-height: 1.3;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
}
.news-listItem_category {
  font-size: clamp(0.6875rem, 0.623rem + 0.288vw, 0.875rem);
  line-height: 1;
}
.news-listItem_category span {
  color: var(--color);
  display: inline-block;
  border-radius: 9999px;
  border: 1px solid currentColor;
  padding: 0.5em 2em;
}
.news-listItem_title {
  color: var(--color);
  font-weight: 700;
  font-size: clamp(0.9375rem, 0.873rem + 0.288vw, 1.125rem);
  line-height: 1.6;
}
.news-listItem_txt {
  font-size: clamp(0.875rem, 0.844rem + 0.139vw, 1rem);
  line-height: 1.6;
}

.news--nishino,
.news--credo {
  --color:var(--color_green);
}

.news--npo,
.news--heartful {
  --color:var(--color_red);
}

.news-entryData {
  display: flex;
  flex-wrap: wrap;
  row-gap: 10px;
  padding-bottom: 20px;
  border-bottom: 2px dashed var(--color_border);
  align-items: center;
}
@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.75rem;
  line-height: 1;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .news-entryData_category {
    font-size: 0.8125rem;
  }
}
@media screen and (min-width: 1200px) {
  .news-entryData_category {
    font-size: 0.875rem;
  }
}
.news-entryData_category span {
  color: var(--color);
  display: inline-block;
  border-radius: 9999px;
  border: 1px solid currentColor;
  padding: 0.5em 2em;
}
.news-entryData_category.-nishino, .news-entryData_category.-credo {
  --color:var(--color_green);
}
.news-entryData_category.-npo, .news-entryData_category.-heartful {
  --color:var(--color_red);
}
.news-entryData_title {
  width: 100%;
  font-size: clamp(1.375rem, 1.159rem + 0.962vw, 2rem);
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  line-height: 1.3;
}
/*=============================================================
  page.scss
==============================================================*/
.page-listItem {
  width: 100%;
  display: grid;
  grid-template-rows: auto auto;
  row-gap: 40px;
}
@media screen and (min-width: 768px) {
  .page-listItem {
    grid-template-rows: auto;
    grid-template-columns: 50% 1fr;
    column-gap: 5%;
    justify-content: space-between;
    align-items: end;
  }
}
.page-listItem + .page-listItem {
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .page-listItem + .page-listItem {
    margin-top: 50px;
  }
}
@media screen and (min-width: 1200px) {
  .page-listItem + .page-listItem {
    margin-top: 60px;
  }
}
.page-listItem .wp-c-heading02 {
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .page-listItem .wp-c-heading02 {
    margin-bottom: 30px;
  }
}
@media screen and (min-width: 1200px) {
  .page-listItem .wp-c-heading02 {
    margin-bottom: 40px;
  }
}

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

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

.page-listItem_text {
  font-size: clamp(0.75rem, 0.62rem + 0.577vw, 1.125rem);
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .page-listItem_text {
    line-height: 1.6;
  }
}

.page-listItem_link {
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .page-listItem_link {
    margin-top: 30px;
  }
}
@media screen and (min-width: 1200px) {
  .page-listItem_link {
    margin-top: 40px;
  }
}

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

.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);
}
.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 {
  font-size: clamp(0.875rem, 0.788rem + 0.385vw, 1.125rem);
  line-height: 1.8;
  overflow: hidden;
  /*
  div{
    margin-bottom: 30px;
    @include mq-up(xl) {
      margin-bottom: 40px;
    }
  }
  */
}
.entryBody > *:first-child {
  margin-top: 0 !important;
}
.entryBody h2:not([class]) {
  margin-inline: auto;
  width: fit-content;
  padding-bottom: 1rem;
  position: relative;
  margin-top: 100px;
  margin-bottom: 30px;
  padding-top: 70px;
  line-height: 1.3;
  font-size: clamp(1.5rem, 1.154rem + 1.538vw, 2.5rem);
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .entryBody h2:not([class]) {
    padding-top: 60px;
    margin-top: 120px;
    margin-bottom: 40px;
  }
}
@media screen and (min-width: 1200px) {
  .entryBody h2:not([class]) {
    padding-top: 50px;
    margin-top: 150px;
    margin-bottom: 50px;
  }
}
.entryBody h2:not([class])::before {
  content: "";
  width: 40px;
  aspect-ratio: 40/47;
  display: block;
  background: url(../../img/mark.png) no-repeat center center/contain;
  position: absolute;
  top: 0;
  left: 50%;
  translate: -50%;
}
@media screen and (max-width: 1199px) {
  .entryBody h2:not([class])::before {
    width: 34px;
  }
}
@media screen and (max-width: 767px) {
  .entryBody h2:not([class])::before {
    width: 24px;
  }
}
.entryBody h3:not([class]) {
  background: var(--color_light_green);
  border-left: 5px solid var(--color_green);
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 600;
  font-size: clamp(1.375rem, 1.245rem + 0.577vw, 1.75rem);
  padding: 15px;
  line-height: 1.3;
  margin-bottom: 25px;
  font-weight: 700;
  margin-top: 80px;
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .entryBody h3:not([class]) {
    padding: 15px 25px;
    margin-bottom: 30px;
    margin-top: 100px;
    margin-bottom: 25px;
  }
}
@media screen and (min-width: 1200px) {
  .entryBody h3:not([class]) {
    padding: 15px 35px;
    border-left-width: 8px;
    margin-bottom: 35px;
    margin-top: 120px;
    margin-bottom: 30px;
  }
}
.entryBody h4:not([class]) {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 600;
  font-size: clamp(1.25rem, 1.12rem + 0.577vw, 1.625rem);
  margin-top: 60px;
  margin-bottom: 20px;
  line-height: 1.3;
}
@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 h4:not([class]):first-letter {
  color: var(--color_red);
}
.entryBody h5:not([class]) {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 600;
  font-size: clamp(1.125rem, 0.995rem + 0.577vw, 1.5rem);
  margin-top: 50px;
  margin-bottom: 15px;
  line-height: 1.3;
  color: var(--color_green);
}
@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-family: "Zen Maru Gothic", sans-serif;
  font-weight: 600;
  font-size: clamp(1rem, 0.87rem + 0.577vw, 1.375rem);
  margin-top: 40px;
  margin-bottom: 15px;
  line-height: 1.3;
}
@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: 20px;
}
@media screen and (min-width: 768px) {
  .entryBody p:not([class]) + p:not([class]) {
    margin-top: 40px;
  }
}
.entryBody p {
  margin-bottom: 0px;
}
.entryBody p + p {
  margin-top: 0px;
}
.entryBody p + div {
  margin-top: 30px;
}
@media screen and (min-width: 1200px) {
  .entryBody p + div {
    margin-top: 40px;
  }
}
.entryBody a:not([class]):not(.no-entryBody) {
  color: #1530A0;
  text-decoration: underline;
}
@media screen and (min-width: 1200px) {
  .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.3s;
}
.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: calc(var(--fontSize_sm) / 16)rem;
  line-height: 1.8;
  line-height: 2;
  vertical-align: top;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .entryBody table th,
  .entryBody table td {
    font-size: calc(var(--fontSize_md) / 16)rem;
    padding: 15px;
  }
}
@media screen and (min-width: 1200px) {
  .entryBody table th,
  .entryBody table td {
    font-size: calc(var(--fontSize_lg) / 16)rem;
    line-height: 1.8;
    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: 25px;
}
@media screen and (min-width: 1200px) {
  .entryBody ul:not(.no-entryBody):not([class]),
  .entryBody ol:not(.no-entryBody):not([class]) {
    padding-left: 20px;
    width: 100%;
  }
}
.entryBody ul:not(.no-entryBody):not([class]) li,
.entryBody ol:not(.no-entryBody):not([class]) li {
  position: relative;
  font-size: calc(var(--fontSize_sm) / 16)rem;
  line-height: 1.8;
  line-height: 2;
  padding-top: 5px;
}
@media screen and (min-width: 768px) {
  .entryBody ul:not(.no-entryBody):not([class]) li,
  .entryBody ol:not(.no-entryBody):not([class]) li {
    font-size: calc(var(--fontSize_md) / 16)rem;
  }
}
@media screen and (min-width: 1200px) {
  .entryBody ul:not(.no-entryBody):not([class]) li,
  .entryBody ol:not(.no-entryBody):not([class]) li {
    font-size: calc(var(--fontSize_lg) / 16)rem;
    line-height: 1.8;
  }
}

/*=============================================================
  wpLayout.scss
==============================================================*/
.wp-l-container + .wp-l-container {
  margin-top: var(--padding_medium);
}
@media screen and (max-width: 959px) {
  .wp-l-container + .wp-l-container {
    margin-top: calc(var(--padding_medium) / 3 * 2);
  }
}
@media screen and (max-width: 559px) {
  .wp-l-container + .wp-l-container {
    margin-top: calc(var(--padding_medium) / 3);
  }
}
.wp-l-container > *:first-child {
  margin-top: 0 !important;
}

.wp-l-section {
  container-type: inline-size;
  margin-block: 40px;
  /*
  & + &{
    margin-top:40px;
    @include mq-up(md){
      margin-top:50px;
    }
    @include mq-up(xl){
      margin-top:80px;
    }
  }
    */
}
@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_contents .wp-l-section:last-child {
  margin-bottom: 0;
}

.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.25rem, 1.12rem + 0.577vw, 1.625rem);
  margin-bottom: 80px;
}
@media screen and (max-width: 1199px) {
  .wp-c-heading {
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 767px) {
  .wp-c-heading {
    margin-bottom: 40px;
  }
}
.wp-c-heading--small {
  font-size: clamp(1rem, 0.87rem + 0.577vw, 1.375rem);
}

.wp-c-heading_title {
  font-weight: 600;
  line-height: 1.3;
  position: relative;
  padding-top: 70px;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 600;
  font-size: clamp(1.5rem, 1.154rem + 1.538vw, 2.5rem);
  margin-inline: auto;
  width: fit-content;
}
@media screen and (max-width: 1199px) {
  .wp-c-heading_title {
    padding-top: 60px;
  }
}
@media screen and (max-width: 767px) {
  .wp-c-heading_title {
    padding-top: 50px;
  }
}
.wp-c-heading_title::before {
  content: "";
  width: 40px;
  aspect-ratio: 40/47;
  display: block;
  background: url(../../img/mark.png) no-repeat center center/contain;
  position: absolute;
  top: 0;
  left: 50%;
  translate: -50%;
}
@media screen and (max-width: 1199px) {
  .wp-c-heading_title::before {
    width: 34px;
  }
}
@media screen and (max-width: 767px) {
  .wp-c-heading_title::before {
    width: 24px;
  }
}

.wp-c-heading_subTitle {
  font-size: 0.57em;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  width: fit-content;
  margin-inline: auto;
  margin-top: 1rem;
  line-height: 1.3;
  border-bottom: 2px dashed var(--color_main);
  padding-bottom: 1rem;
}
.wp-c-heading_txt {
  font-size: clamp(0.875rem, 0.788rem + 0.385vw, 1.125rem);
  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.375rem, 1.202rem + 0.769vw, 1.875rem);
  margin-bottom: 60px;
  margin-left: 70px;
  position: relative;
}
@media screen and (max-width: 1199px) {
  .wp-c-heading02 {
    margin-bottom: 50px;
    margin-left: 60px;
  }
}
@media screen and (max-width: 767px) {
  .wp-c-heading02 {
    margin-bottom: 40px;
    margin-left: 45px;
  }
}
.wp-c-heading02::before {
  content: "";
  width: 24px;
  aspect-ratio: 40/47;
  display: block;
  background: url(../../img/mark.png) no-repeat center center/contain;
  position: absolute;
  left: -45px;
  top: 2px;
}
@media screen and (min-width: 768px) {
  .wp-c-heading02::before {
    width: 34px;
    left: -60px;
  }
}
@media screen and (min-width: 1200px) {
  .wp-c-heading02::before {
    width: 40px;
    left: -70px;
    top: 2px;
  }
}
.wp-c-heading02--small {
  font-size: clamp(1.25rem, 1.077rem + 0.769vw, 1.75rem);
  margin-left: 0;
}
@media screen and (max-width: 1199px) {
  .wp-c-heading02--small {
    margin-left: 0;
  }
}
@media screen and (max-width: 767px) {
  .wp-c-heading02--small {
    margin-left: 0;
  }
}
.wp-c-heading02--small::before {
  display: none;
}

.wp-c-heading02_title {
  line-height: 1.6;
  position: relative;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .wp-c-heading02_title {
    line-height: 1.3;
  }
}

.wp-c-heading02_subTitle {
  font-size: 0.57em;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  margin-top: 0.5rem;
}
.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-visualSection {
  position: relative;
  display: grid;
  column-gap: 5%;
  grid-template-columns: 45% 1fr 40%;
  grid-template-rows: auto auto;
  grid-template-areas: "img01 . img03" "img02 img02 img03";
  row-gap: 20px;
}
@media screen and (min-width: 768px) {
  .wp-visualSection {
    grid-template-columns: 40% 1fr 30%;
    grid-template-rows: auto auto;
    row-gap: 0;
    grid-template-areas: "img01 . img03" ". img02 img03";
  }
}
.wp-visualSection.-reverse {
  direction: rtl;
}
.wp-visualSection_img01 {
  grid-area: img01;
}
.wp-visualSection_img01 div {
  aspect-ratio: 465/314;
  max-width: 465px;
}
.wp-visualSection_img02 {
  grid-area: img02;
}
.wp-visualSection_img02 div {
  width: 60%;
  aspect-ratio: 238/358;
  max-width: 238px;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .wp-visualSection_img02 div {
    width: 100%;
    translate: 0 -5%;
    margin-left: 0;
  }
}
.wp-visualSection_img03 {
  grid-area: img03;
}
.wp-visualSection_img03 div {
  margin-top: 40px;
  aspect-ratio: 1;
  max-width: 360px;
}
@media screen and (min-width: 768px) {
  .wp-visualSection_img03 div {
    margin-top: 60px;
  }
}
@media screen and (min-width: 1200px) {
  .wp-visualSection_img03 div {
    margin-top: 100px;
  }
}
.wp-visualSection img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.wp-c-grid {
  display: flex;
  justify-content: space-between;
  row-gap: 3em;
  column-gap: 2cqw;
  flex-wrap: wrap;
}
.wp-c-grid figure {
  display: block;
  overflow: hidden;
}
.wp-c-grid.-half .wp-c-gridItem {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .wp-c-grid.-half .wp-c-gridItem {
    width: calc((100% - 4cqw) / 2);
  }
}
.wp-c-grid.-trisect .wp-c-gridItem {
  justify-content: center;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .wp-c-grid.-trisect .wp-c-gridItem {
    width: calc((100% - 8cqw) / 3);
  }
}
.wp-c-grid.-quarter .wp-c-gridItem {
  justify-content: center;
  width: calc((100% - 2cqw) / 2);
}
@media screen and (min-width: 768px) {
  .wp-c-grid.-quarter .wp-c-gridItem {
    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;
  /*p{
    margin-block: calc((1em - 1lh) / 2);
  }
  .txtbox p{
    line-height: 1.6;
  }
    */
}
.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-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.62rem + 0.577vw, 1.125rem);
  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_ss);
  margin-inline: auto;
}
.wp-c-downloadList_item {
  padding: 1em 0;
  font-size: clamp(0.875rem, 0.745rem + 0.577vw, 1.25rem);
  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.62rem + 0.577vw, 1.125rem);
  margin-left: auto;
  transition: all 0.3s;
}
@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;
}
@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.788rem + 0.385vw, 1.125rem);
  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 {
  padding: 20px;
  border: 2px solid #000;
  border-radius: 10px;
  background: #fff;
}
.e-box > *:first-child {
  margin-top: 0 !important;
}
@media screen and (min-width: 560px) {
  .e-box {
    padding: 30px 40px;
  }
}
@media screen and (min-width: 960px) {
  .e-box {
    padding: 40px clamp(40px, 8%, 100px);
  }
}
.e-box + * {
  margin-top: 20px;
}
@media screen and (min-width: 560px) {
  .e-box + * {
    margin-top: 30px;
  }
}
@media screen and (min-width: 960px) {
  .e-box + * {
    margin-top: 40px;
  }
}
.e-box_title {
  font-size: 1.125rem;
  line-height: 1.5;
  margin-bottom: 5px;
}
@media screen and (min-width: 560px) {
  .e-box_title {
    font-size: 1.1875rem;
  }
}
@media screen and (min-width: 960px) {
  .e-box_title {
    font-size: 1.25rem;
  }
}
.e-box--red {
  background: #f9edee;
  border-color: #f1aeb5;
}
.e-box--default {
  background: var(--color_bg);
  border-color: var(--color_border);
}
.e-box--gray {
  background: #e9ecef;
  border-color: #adb5bd;
}

/***********
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: 959px) {
  .e-grid .e-gridItem_title {
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 559px) {
  .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: 559px) {
  .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: 559px) {
  .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: 959px) {
  .e-greeting_photo {
    margin: 0 0 20px 20px;
  }
}
@media screen and (max-width: 559px) {
  .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: 959px) {
  .txtbox p.e-greeting_post {
    font-size: 0.8125rem;
  }
}
@media screen and (max-width: 559px) {
  .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: 959px) {
  .txtbox p.e-greeting_name {
    font-size: 1.0625rem;
  }
}
@media screen and (max-width: 559px) {
  .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: 959px) {
  .txtbox p.e-greeting_txt {
    font-size: 0.8125rem;
  }
}
@media screen and (max-width: 559px) {
  .txtbox p.e-greeting_txt {
    font-size: 0.75rem;
  }
}

/***********
btn
************/
.e-btn {
  width: 100%;
  margin: 40px auto;
}
@media screen and (max-width: 959px) {
  .e-btn {
    margin: 30px auto;
  }
}
@media screen and (max-width: 559px) {
  .e-btn {
    margin: 20px auto;
  }
}
.e-btn a {
  display: inline-block;
  border-radius: 5px;
  background: var(--color_main);
  text-align: center;
  color: #fff;
  font-size: 1.375rem;
  transition: all 0.3s;
  position: relative;
  padding: 25px 50px;
  line-height: 1.5;
}
@media screen and (max-width: 959px) {
  .e-btn a {
    font-size: 1.25rem;
    padding: 20px 40px;
  }
}
@media screen and (max-width: 559px) {
  .e-btn a {
    font-size: 1.125rem;
    padding: 20px 20px;
    width: 80%;
    max-width: 360px;
  }
}
.e-btn a:after {
  font-family: "Font Awesome 6 Free";
  content: "\f105";
  font-weight: 900;
  position: absolute;
  right: 10px;
  line-height: 1.8;
}
@media screen and (min-width: 960px) {
  .e-btn a:hover {
    opacity: 0.7;
  }
}
@media screen and (min-width: 960px) {
  .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: 559px) {
  .e-btnWrap {
    display: block;
  }
}
.e-btnWrap .e-btn {
  margin: 0 10px;
  width: auto;
}
@media screen and (max-width: 559px) {
  .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: 559px) {
  .e-btn02_inner {
    padding: 3px 10px;
  }
}
@media screen and (min-width: 960px) {
  .e-btn02_inner:hover {
    opacity: 0.7;
  }
}

/***********
table
************/
@media screen and (max-width: 559px) {
  table.e-table--sp {
    border-bottom: 0 !important;
  }
}
@media screen and (max-width: 559px) {
  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: 559px) {
  .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: 560px) {
  .e-linkList li {
    font-size: calc(var(--fontSize_md) / 16)rem;
  }
}
@media screen and (min-width: 960px) {
  .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: 560px) {
  .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: 960px) {
  .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.3s;
}
.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: 959px) {
  .e-googleMap {
    margin: 25px 0;
  }
}
@media screen and (max-width: 559px) {
  .e-googleMap {
    margin: 20px 0;
  }
}
.e-googleMap iframe {
  width: 100%;
  height: 400px;
}
@media screen and (max-width: 959px) {
  .e-googleMap iframe {
    height: 350px;
  }
}
@media screen and (max-width: 559px) {
  .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: 959px) {
  .e-imgList li {
    margin-bottom: 25px;
  }
}
@media screen and (max-width: 559px) {
  .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: 959px) {
  .e-imgList figcaption {
    font-size: 0.9375rem;
  }
}
@media screen and (max-width: 559px) {
  .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: 559px) {
  .e-downloadList a {
    width: 40px;
    padding: 0;
  }
}
@media screen and (max-width: 959px) {
  .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: 559px) {
  .e-downloadList_btn {
    background: none;
    padding: 0;
  }
}
@media screen and (min-width: 960px) {
  .e-downloadList_btn:hover {
    opacity: 0.7;
  }
}
.e-downloadList_btn span {
  font-size: inherit;
  font-size: 0.875rem;
}
@media screen and (max-width: 559px) {
  .e-downloadList_btn span {
    display: none;
  }
}
.e-downloadList_btn i {
  margin-right: 5px;
}
@media screen and (max-width: 559px) {
  .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: 560px) {
  .e-picture_pc {
    display: block;
  }
}
.e-picture_sp {
  display: block;
}
@media screen and (min-width: 560px) {
  .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 */