@charset "UTF-8";
/*--------------------------------------------------------------

reset.css
リセット関係・clearfixなど
https://coliss.com/articles/build-websites/operation/css/my-css-reset-by-ire.html
https://qiita.com/Moris_Mk-II/items/17e9a725aada8f96f23e

common.css
上記cssのimport、レイアウト（大枠）を記載したcss

sub.css
下層のレイアウト（大枠）を記載したcss

--------------------------------------------------------------*/
/* ------------------------------------------------------------ */
/* margin, padding, borderのCSSリセット*/
/* ------------------------------------------------------------ */
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;
  vertical-align: baseline;
  background: transparent;
}

/* ------------------------------------------------------------ */
/* フォントのCSSリセット*/
/* ------------------------------------------------------------ */

* {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

a,
a:visited {
  color: inherit;
}

/* ------------------------------------------------------------ */
/* レイアウトとbox-sizingのCSSリセット */
/* ------------------------------------------------------------ */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
main {
  display: block;
}

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

/* ------------------------------------------------------------ */
/* 特定要素のCSSリセット */
/* ------------------------------------------------------------ */
/* a要素のフォントサイズなどをリセットし
フォントの縦方向の揃え位置を親要素のベースラインに揃える */

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

/* 隣接するセルのボーダーを重ねて表示し間隔を0に指定 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

ol,
ul {
  list-style: none;
}

/* 画像を縦に並べた時に余白が出ないように */
img {
  border-style: none;
  vertical-align: top;
  font-size: 0;
  line-height: 0;
}

img,
video {
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}

/* 引用符の表示が出ないように */
blockquote,
q {
  quotes: none;
}

/* blockquote要素、q要素の前後にコンテンツを追加しないように指定 */
blockquote:after,
blockquote:before,
q:after,
q:before {
  content: "";
  content: none;
}

/* ins要素のデフォルトをセットし色を変える場合はここで変更 */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* mark要素のデフォルトをセットし、色やフォントスタイルを変える場合はここで変更できるように
mark要素とは、文書内の検索結果で該当するフレーズをハイライトして、目立たせる際に使用する*/
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

/* テキストに打ち消し線をつける */
del {
  text-decoration: line-through;
}

/* IEではデフォルトで点線を下線表示する設定ではないので下線がつくように
マウスオーバー時にヘルプカーソルの表示が出るように */
abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

/* 水平罫線のデフォルトである立体的な罫線を見えなくする */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

/* ------------------------------------------------------------ */
/* 属性と状態のCSSリセット */
/* ------------------------------------------------------------ */
[hidden] {
  display: none !important;
}

[disabled] {
  cursor: not-allowed;
}

:focus:not(:focus-visible) {
  outline: none;
}

/* ------------------------------------------------------------ */
/* Clearfix */
/* ------------------------------------------------------------ */
.clearfix:after {
  content: ".";
  display: block;
  clear: both;
  height: 0;
  visibility: hidden;
}

.clearfix {
  min-height: 1px;
}

* html .clearfix {
  height: 1px;
  /*¥*/
  /*/
  height: 1%;
  display:block;
  overflow: hidden;
  /**/
}

/* ------------------------------------------------------------ */
/* Form default reset */
/* https://qiita.com/torosalmon/items/455170b613f0e117dbf8 */
/* ------------------------------------------------------------ */
input[type="text"],
input[type="search"],
input[type="tel"],
input[type="url"],
input[type="email"],
input[type="password"],
input[type="datetime"],
input[type="datetime-local"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="number"],
input[type="file"],
input[type="submit"],
input[type="reset"],
input[type="button"],
input[type="image"],
button,
textarea,
select {
  -webkit-appearance: none;
  /* 主にスマホのデフォルトスタイルを無効化 */
  appearance: none;
  font-size: 16px;
  /* 実寸16px以下の場合、iOSでフォーカス時にページズームが掛かってしまう */
  vertical-align: top;
  cursor: pointer;
}

/* type="text"系に対してwidth/heightを指定 */
input[type="text"],
input[type="search"],
input[type="tel"],
input[type="url"],
input[type="email"],
input[type="password"],
input[type="datetime"],
input[type="datetime-local"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="number"],
input[type="file"],
textarea,
select {
  width: 100%;
  min-height: 2.4em;
}

input[type="submit"],
input[type="reset"],
input[type="button"],
button {
  min-height: 2.4em;
}

/* type="image"のみ実寸以上に拡大してしまわないように専用指定 */
input[type="image"] {
  max-width: 100%;
}

/* textareaには右下をドラッグすることでユーザー側でリサイズできる機能があります。
リサイズの利便性を確保しつつレイアウトへ干渉しないように縦リサイズのみ許可する制御を入れました。
必要以上に縮めてしまう事も可能な為、min-heightで最小値を確保 */
textarea {
  height: auto;
  min-height: 3em;
  resize: vertical;
}

/* 主に見栄えに関する指定。内側がキツキツなのでpaddingを設けましたが、rightに掛かるとselectの右矢印が内側に寄ってしまうのでleftのみとしました。
cursor: pointer;はtype="image"のみカーソルがpointerに変わるので、他のボタンも挙動を揃える目的です。 */
input[type="text"],
input[type="search"],
input[type="tel"],
input[type="url"],
input[type="email"],
input[type="password"],
input[type="datetime"],
input[type="datetime-local"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="number"],
textarea,
select {
  padding-left: 0.4em;
  background: none;
  border: none;
  border-radius: 0;
}

input[type="submit"],
input[type="reset"],
input[type="button"],
button {
  cursor: pointer;
  background: none;
  border: none;
  border-radius: 0;
}

/*IEでselectの矢印非表示（IE10以降対応）*/
select::-ms-expand {
  display: none;
}

/*input, button, select, textarea {
	-webkit-appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
	-o-appearance: none;
	appearance: none;
	outline: none;
	margin: 0;
	padding: 0;
	background: none;
	border: none;
	border-radius: 0;
	font-family: inherit;
	vertical-align: middle;
}*/

/* noto-sans-jp-regular - japanese */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/noto-sans-jp-v55-japanese-regular.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* noto-sans-jp-500 - japanese */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/noto-sans-jp-v55-japanese-500.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* noto-sans-jp-600 - japanese */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 600;
  src: url("../fonts/noto-sans-jp-v55-japanese-600.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* noto-sans-jp-700 - japanese */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/noto-sans-jp-v55-japanese-700.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* noto-sans-jp-800 - japanese */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 800;
  src: url("../fonts/noto-sans-jp-v55-japanese-800.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* noto-sans-jp-900 - japanese */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 900;
  src: url("../fonts/noto-sans-jp-v55-japanese-900.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

@font-face {
  font-family: "icomoon";
  src:
    url("../fonts/icomoon.ttf?msboy1") format("truetype"),
    url("../fonts/icomoon.woff?msboy1") format("woff"),
    url("../fonts/icomoon.svg?msboy1#icomoon") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
i {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "icomoon" !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

:root {
  --fa-facebook: "\f09a";
  --fa-angles-left: "\f100";
  --fa-angles-right: "\f101";
  --fa-angles-up: "\f102";
  --fa-angle-down: "\f107";
  --fa-angle-left: "\f104";
  --fa-angle-right: "\f105";
  --fa-angle-up: "\f106";
  --fa-angles-down: "\f103";
  --fa-arrow-down: "\f063";
  --fa-arrow-left: "\f060";
  --fa-arrow-right: "\f061";
  --fa-arrow-up-right-from-square: "\f08e";
  --fa-arrow-up: "\f062";
  --fa-calendar-days: "\f073";
  --fa-check: "\f00c";
  --fa-chevron-down: "\f078";
  --fa-chevron-left: "\f053";
  --fa-chevron-right: "\f054";
  --fa-chevron-up: "\f077";
  --fa-circle-check: "\f058";
  --fa-circle-info: "\f05a";
  --fa-circle-xmark: "\f057";
  --fa-facebook-f: "\f39e";
  --fa-hand-pointer-regular: "\f25b";
  --fa-hand-pointer: "\f25a";
  --fa-instagram: "\f16d";
  --fa-line: "\f3c0";
  --fa-location-dot: "\f3c2";
  --fa-magnifying-glass-plus: "\f00e";
  --fa-magnifying-glass: "\f002";
  --fa-map-pin: "\f276";
  --fa-spinner: "\f110";
  --fa-x-twitter: "\e61b";
  --fa-xmark: "\f00d";
  --fa-youtube: "\f167";
}

/* 各クラスへの適用 */
.fa-facebook:before {
  content: var(--fa-facebook);
}

.fa-angles-left:before {
  content: var(--fa-angles-left);
}

.fa-angles-right:before {
  content: var(--fa-angles-right);
}

.fa-angles-up:before {
  content: var(--fa-angles-up);
}

.fa-angle-down:before {
  content: var(--fa-angle-down);
}

.fa-angle-left:before {
  content: var(--fa-angle-left);
}

.fa-angle-right:before {
  content: var(--fa-angle-right);
}

.fa-angle-up:before {
  content: var(--fa-angle-up);
}

.fa-angles-down:before {
  content: var(--fa-angles-down);
}

.fa-arrow-down:before {
  content: var(--fa-arrow-down);
}

.fa-arrow-left:before {
  content: var(--fa-arrow-left);
}

.fa-arrow-right:before {
  content: var(--fa-arrow-right);
}

.fa-arrow-up-right-from-square:before {
  content: var(--fa-arrow-up-right-from-square);
}

.fa-arrow-up:before {
  content: var(--fa-arrow-up);
}

.fa-calendar-days:before {
  content: var(--fa-calendar-days);
}

.fa-check:before {
  content: var(--fa-check);
}

.fa-chevron-down:before {
  content: var(--fa-chevron-down);
}

.fa-chevron-left:before {
  content: var(--fa-chevron-left);
}

.fa-chevron-right:before {
  content: var(--fa-chevron-right);
}

.fa-chevron-up:before {
  content: var(--fa-chevron-up);
}

.fa-circle-check:before {
  content: var(--fa-circle-check);
}

.fa-circle-info:before {
  content: var(--fa-circle-info);
}

.fa-circle-xmark:before {
  content: var(--fa-circle-xmark);
}

.fa-facebook-f:before {
  content: var(--fa-facebook-f);
}

.fa-hand-pointer-regular:before {
  content: var(--fa-hand-pointer-regular);
}

.fa-hand-pointer:before {
  content: var(--fa-hand-pointer);
}

.fa-instagram:before {
  content: var(--fa-instagram);
}

.fa-line:before {
  content: var(--fa-line);
}

.fa-location-dot:before {
  content: var(--fa-location-dot);
}

.fa-magnifying-glass-plus:before {
  content: var(--fa-magnifying-glass-plus);
}

.fa-magnifying-glass:before {
  content: var(--fa-magnifying-glass);
}

.fa-map-pin:before {
  content: var(--fa-map-pin);
}

.fa-spinner:before {
  content: var(--fa-spinner);
}

.fa-x-twitter:before {
  content: var(--fa-x-twitter);
}

.fa-xmark:before {
  content: var(--fa-xmark);
}

.fa-youtube:before {
  content: var(--fa-youtube);
}

a {
  text-decoration: none;
}

@media (min-width: 751px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}

address {
  font-style: normal;
}

img {
  max-width: 100%;
  height: auto;
}
#svg {
  display: none;
  visibility: hidden;
  position: absolute;
  top: 0;
  left: 0;
}

.icon {
  width: 1em;
  height: 1em;
  display: inline-grid;
  place-items: center;
  vertical-align: text-bottom;
}

.icon svg {
  max-width: 100%;
  max-height: 100%;
  fill: currentColor;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

@media print {
  * {
    -webkit-print-color-adjust: exact !important;
    print-color-adjust: exact !important;
  }
  .main-header {
    display: none !important;
  }
  .wrapper {
    padding-left: 0 !important;
  }
  body {
    min-width: 1025px !important;
    zoom: 0.8;
  }
  .inview {
    opacity: 1 !important;
    -webkit-transform: translateY(0) !important;
    transform: translateY(0) !important;
  }
  .cta-fixed {
    display: none !important;
  }
}

.inview {
  opacity: 0;
  -webkit-transition: opacity 1.2s ease-out;
  transition: opacity 1.2s ease-out;
}
.inview.is-in {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.inviewUp {
  -webkit-transform: translate(0, 1em);
  transform: translate(0, 1em);
}

.inviewfadeInUp {
  -webkit-transform: translate(0, 60px);
  transform: translate(0, 60px);
}

.inviewfadeInLeft {
  -webkit-transform: translate(60px, 0);
  transform: translate(60px, 0);
}

.inviewfadeInRight {
  -webkit-transform: translate(-60px, 0);
  transform: translate(-60px, 0);
}

.inviewUp,
.inviewzoomIn,
.inviewfadeInUp,
.inviewfadeInLeft,
.inviewfadeInRight,
.inviewfadeIn {
  opacity: 0;
  -webkit-transition:
    opacity 0.2s ease 0s,
    -webkit-transform 0.6s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
  transition:
    opacity 0.2s ease 0s,
    -webkit-transform 0.6s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
  transition:
    opacity 0.2s ease 0s,
    transform 0.6s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
  transition:
    opacity 0.2s ease 0s,
    transform 0.6s cubic-bezier(0.215, 0.61, 0.355, 1) 0s,
    -webkit-transform 0.6s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
}
.inviewUp.is-in,
.inviewzoomIn.is-in,
.inviewfadeInUp.is-in,
.inviewfadeInLeft.is-in,
.inviewfadeInRight.is-in,
.inviewfadeIn.is-in {
  opacity: 1;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}

:root {
  --p: clamp(1.6rem, 0.511rem + 3.404vw, 4rem);
  --header_h: 60px;

  --color-primary: #248a66;
  --color-secondary: #ee7800;
  --color-point: #f8ec58;
  --color-base: #f3eed8;
  --color-wht: #fff;
  --color-blk: #000;
  --color-text: #333;
  --color-gray: #808080;
  --color-gray-dark: #404040;
  --color-gray-light: #ccc;
}
@media screen and (min-width: 1025px), print {
  :root {
    --header_h: 80px;
  }
}
html {
  font-size: 62.5%;
}
.color-primary {
  color: var(--color-primary);
}
.color-secondary {
  color: var(--color-secondary);
}
.color-point {
  color: var(--color-point);
}
.color-wht {
  color: var(--color-wht);
}
.color-blk {
  color: var(--color-blk);
}
.color-gray-dark {
  color: var(--color-gray-dark);
}
.color-gray {
  color: var(--color-gray);
}
.bg-orange {
  background-color: var(--color-secondary);
}
.bg-primary {
  background-color: var(--color-primary);
}
.bg-gray-dark {
  background-color: var(--color-gray-dark);
}
* html body {
  background: url(null) fixed;
}

body {
  width: 100%;
  margin: 0;
  padding: 0;
  color: var(--color-text);
  background-color: var(--color-base);
  font-style: normal;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.025em;
  overflow-wrap: break-word;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
}
@media screen and (min-width: 768px), print {
  body {
    font-size: 15px;
  }
}
@media screen and (min-width: 1025px), print {
  body {
    font-size: 16px;
  }
}
.wrapper {
  width: 100%;
  height: auto;
  overflow: clip;
  position: relative;
}
@media screen and (min-width: 480px), print {
  .wrapper {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    min-height: 100vh;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}
.content {
  width: 100%;
  height: auto;
  position: relative;
  margin: 0 auto;
  position: relative;
}
.base {
  width: 100%;
  height: auto;
  position: relative;
  margin: 0 auto;
  padding-block: clamp(4rem, 3.092rem + 2.837vw, 6rem);
}

.inner {
  width: 100%;
  height: auto;
  padding-inline: var(--p);
  margin: 0 auto;
  clear: both;
  max-width: calc(800px + var(--p) * 2);
}
@media screen and (min-width: 480px), print {
}
@media screen and (min-width: 768px), print {
}

@media screen and (min-width: 1025px), print {
}
