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

【コーディングガイドライン補足】

▼サポートブラウザ
確認ブラウザ：
▼スマートフォン
確認デバイス：
▼解像度
基準モニター解像度（PC）：
基準モニター解像度（SP）：
ブレイクポイント：

▼コーディングガイドライン
・コーディングはPUG、CSSはSASS
・CSS設計手法はRSCSS
・リンクURL：ルート相対。index.htmlは記入しない
・外部サイトへのリンクは基本的に新規ウインドウ（_blank）での展開
・IDはJSのみで使い、スタイルはクラスで指定す
・フォントはremの62.50%（10px）
・余白はmargin-bottomで設定（余白でmargin-topを使わない）
・articleの中にsectionを入れる、その逆はNG
・縦や横の並びはULを使う

▼ベースSCSS
・base/_base.scss
　→他のプロジェクトでも使う汎用的な設定
　他プロジェクトでも絶対に使うというレベルでなくても良い。
・base/_generic.scss
　→変数やmixinなどの設定
・base/_global.scss
　→汎用的に使うクラス（主にElements）
・base/_ress.scss
　→リセットCSS

#########################################################*/
/*#########################################################

読み込み

#########################################################*/
/*!
 * ress.css v2.0.2
 * MIT License
 * github.com/filipelinhares/ress
 */
/* # =================================================================
   # Global selectors
   # ================================================================= */
@import url("https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@700&family=Noto+Sans+JP:wght@300;400;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@300;400&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@700&display=swap");

html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-text-size-adjust: 100%;
  /* Prevent adjustments of font size after orientation changes in iOS */
  word-break: break-word;
  -moz-tab-size: 4;
  -o-tab-size: 4;
  tab-size: 4;
  scroll-behavior: smooth;
}

*,
::before,
::after {
  background-repeat: no-repeat;
  /* Set `background-repeat: no-repeat` to all elements and pseudo elements */
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

::before,
::after {
  text-decoration: inherit;
  /* Inherit text-decoration and vertical align to ::before and ::after pseudo elements */
  vertical-align: inherit;
}

* {
  padding: 0;
  /* Reset `padding` and `margin` of all elements */
  margin: 0;
}

/* # =================================================================
   # General elements
   # ================================================================= */
hr {
  overflow: visible;
  /* Show the overflow in Edge and IE */
  height: 0;
  /* Add the correct box sizing in Firefox */
}

details,
main {
  display: block;
  /* Render the `main` element consistently in IE. */
}

summary {
  display: list-item;
  /* Add the correct display in all browsers */
}

small {
  font-size: 80%;
  /* Set font-size to 80% in `small` elements */
}

[hidden] {
  display: none;
  /* Add the correct display in IE */
}

abbr[title] {
  border-bottom: none;
  /* Remove the bottom border in Chrome 57 */
  /* Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari */
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
}

a {
  background-color: transparent;
  /* Remove the gray background on active links in IE 10 */
}

a:active,
a:hover {
  outline-width: 0;
  /* Remove the outline when hovering in all browsers */
}

code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  /* Specify the font family of code elements */
}

pre {
  font-size: 1em;
  /* Correct the odd `em` font sizing in all browsers */
}

b,
strong {
  font-weight: bolder;
  /* Add the correct font weight in Chrome, Edge, and Safari */
}

/* https://gist.github.com/unruthless/413930 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* # =================================================================
   # Forms
   # ================================================================= */
input {
  display: block;
  width: 100%;
  height: 40px;
  line-height: 40px;
  padding: 0 15px;
  margin-right: 8px;
  border: 1px solid #c87872;
  border-radius: 3px;
  margin-bottom: 20px;
}

/* Replace pointer cursor in disabled elements */
[disabled] {
  cursor: default;
}

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
  /* Correct the cursor style of increment and decrement buttons in Chrome */
}

[type="search"] {
  -webkit-appearance: textfield;
  /* Correct the odd appearance in Chrome and Safari */
  outline-offset: -2px;
}

[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
  /* Remove the inner padding in Chrome and Safari on macOS */
}

textarea {
  overflow: auto;
  /* Internet Explorer 11+ */
  resize: vertical;
  /* Specify textarea resizability */
}

button,
input,
optgroup,
select,
textarea {
  font: inherit;
  /* Specify font inheritance of form elements */
}

optgroup {
  font-weight: bold;
  /* Restore the font weight unset by the previous rule */
}

button {
  overflow: visible;
  /* Address `overflow` set to `hidden` in IE 8/9/10/11 */
}

button,
select {
  text-transform: none;
  /* Firefox 40+, Internet Explorer 11- */
}

/* Apply cursor pointer to button elements */
button,
[type="button"],
[type="reset"],
[type="submit"],
[role="button"] {
  cursor: pointer;
  color: inherit;
}

/* Remove inner padding and border in Firefox 4+ */
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/* Replace focus style removed in the border reset above */
button:-moz-focusring,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  outline: 1px dotted ButtonText;
}

button,
html [type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
  /* Correct the inability to style clickable types in iOS */
}

/* Remove the default button styling in all browsers */
button,
input,
select,
textarea {
  background-color: transparent;
  border-style: none;
}

/* Style select like a standard input */
select {
  -moz-appearance: none;
  /* Firefox 36+ */
  -webkit-appearance: none;
  /* Chrome 41+ */
}

select::-ms-expand {
  display: none;
  /* Internet Explorer 11+ */
}

select::-ms-value {
  color: currentColor;
  /* Internet Explorer 11+ */
}

legend {
  border: 0;
  /* Correct `color` not being inherited in IE 8/9/10/11 */
  color: inherit;
  /* Correct the color inheritance from `fieldset` elements in IE */
  display: table;
  /* Correct the text wrapping in Edge and IE */
  max-width: 100%;
  /* Correct the text wrapping in Edge and IE */
  white-space: normal;
  /* Correct the text wrapping in Edge and IE */
  max-width: 100%;
  /* Correct the text wrapping in Edge 18- and IE */
}

::-webkit-file-upload-button {
  /* Correct the inability to style clickable types in iOS and Safari */
  -webkit-appearance: button;
  color: inherit;
  font: inherit;
  /* Change font properties to `inherit` in Chrome and Safari */
}

/* # =================================================================
   # Specify media element style
   # ================================================================= */
img {
  border-style: none;
  /* Remove border when inside `a` element in IE 8/9/10 */
}

/* Add the correct vertical alignment in Chrome, Firefox, and Opera */
progress {
  vertical-align: baseline;
}

svg:not([fill]) {
  fill: currentColor;
}

/* # =================================================================
   # Accessibility
   # ================================================================= */
/* Hide content from screens but not screenreaders */
@media screen {
  [hidden~="screen"] {
    display: inherit;
  }

  [hidden~="screen"]:not(:active):not(:focus):not(:target) {
    position: absolute !important;
    clip: rect(0 0 0 0) !important;
  }
}

/* Specify the progress cursor of updating elements */
[aria-busy="true"] {
  cursor: progress;
}

/* Specify the pointer cursor of trigger elements */
[aria-controls] {
  cursor: pointer;
}

/* Specify the unstyled cursor of disabled, not-editable, or otherwise inoperable elements */
[aria-disabled] {
  cursor: default;
}

/*#########################################################

基本設定

#########################################################*/
/* ========================================================
単位用設定
=========================================================*/
/* ========================================================
色用設定
=========================================================*/
/* ========================================================
フォント用設定
=========================================================*/
/*#########################################################

レイアウト用設定

#########################################################*/
/* ========================================================
mixin mq用の変数設定
=========================================================*/
/*
▼iOSデバイス
iPhone5: 320 × 568
iPhone 6-8: 375 × 667（1334x750）
iPhone 6-8 plus: 414 × 736（1920x1080）
iPhone X,XS,11Pro: 375 × 812（1125x2436）
iPhone XR,11: 414 × 896（828x1792）

iPad/iPad Mini: 768 × 1024
iPad Pro: 1024 × 1366
https://www.paintcodeapp.com/news/ultimate-guide-to-iphone-resolutions

▼ブートストラップ
xs： ～767px
sm： 768～991px
md： 992～1119px
lg： 1120px～
*/
/* ========================================================
メディアクエリ用Mixin
=========================================================*/
/*
ステップ1.モバイルファーストかデスクトップファーストかを選ぶ
ステップ2.該当する設定を有効化、その他をコメントアウトする。
ステップ3.選択したタイプにより、「▼モバイルファーストの例」、「▼デスクトップファーストの例」のどちらかを参考にブレイクポイントを設定する。
→実際の設定は_base.scssではなく、インポート元で行う。
*/
/*
// ステップ2：モバイルファースト用（デスクトップファーストの場合はコメントアウト）
$breakpoints: (
	// タブレット
	'md': 'screen and (min-width: ' + ($screen-sm-max + 1) + ') and (max-width: ' + ($screen-md-max) + ')',
	// デスクトップ
	'lg': 'screen and (min-width: ' + ($screen-sm-max + 1) + ')',
) !default;
*/
/*
// ステップ3：▼モバイルファーストの例
// メディアクエリのブロック外にベースになるCSSを書く。
// モバイルファーストでは小さい画面サイズから順々に指定。
main{
	// デフォルト
	background: yellow;
	// タブレット
	@include mq(md){
		background: orange;
	}
	// デスクトップ
	@include mq(lg){
		background: red;
	}
}
//------------------------------
*/
/*
// ステップ3：▼デスクトップファーストの例
// メディアクエリのブロック外にベースになるCSSを書く。
// デスクトップファーストでは大きい画面サイズから順々に指定。
main{
	// デフォルト
	background: red;
	// タブレット
	@include mq(md){
		background: orange;
	}
	// スマートフォン
	@include mq(sm){
		background: yellow;
	}
}
//------------------------------
*/
/*#########################################################

要素関連（リセットCSSの種類によっては不要）

#########################################################*/
html {
  height: 100%;
  font-size: 62.5%;
}

body {
  height: 100%;
  font-size: 1.6rem;
  font-family: "Manrope", "Noto Sans JP", sans-serif;
  line-height: 2.4;
  color: #333;
  background-color: #fff;
}

@media screen and (max-width: 1024px) {
  body {
    font-size: 14px;
  }
}

p {
  margin-bottom: 1rem;
  line-height: 2.4;
}

dt,
dd {
  line-height: 2.4;
}

li {
  list-style: none;
  line-height: 2.4;
}

@media screen and (max-width: 1024px) {
  p,
  dt,
  dd,
  li {
    font-size: 14px;
  }
}

.caption {
  font-weight: bold;
  margin-bottom: 12px;
}

a {
  color: #333;
  text-decoration: none;
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

a:visited {
  color: #333;
}

a:focus {
  color: #959595;
}

a:hover {
  color: #959595;
  opacity: 0.6;
}

a:active {
  color: #00a0e9;
}

h1 {
  font-size: 4rem;
}

h2 {
  font-size: 3.2rem;
}

h3 {
  font-size: 2.8rem;
}

h4 {
  font-size: 2.4rem;
}

h5 {
  font-size: 2rem;
}

h6 {
  font-size: 1.6rem;
}

textarea {
  border: 1px solid #504343;
}

input {
  border: 1px solid #504343;
}

table {
  border-collapse: collapse;
}

.pc {
  display: block;
}

@media screen and (min-width: 1025px) and (max-width: 1400px) {
  .pc {
    display: none;
  }
}

@media screen and (max-width: 1024px) {
  .pc {
    display: none;
  }
}

.md {
  display: none;
}

@media screen and (min-width: 1025px) and (max-width: 1400px) {
  .md {
    display: block;
  }
}

@media screen and (max-width: 1024px) {
  .md {
    display: none;
  }
}

.sp {
  display: none;
}

@media screen and (min-width: 1025px) and (max-width: 1400px) {
  .sp {
    display: none;
  }
}

@media screen and (max-width: 1024px) {
  .sp {
    display: inline-block;
  }
}

.notsp {
  display: block;
}

.bnr-pic a .notsp {
  display: inline;
}

@media screen and (min-width: 1025px) and (max-width: 1400px) {
  .notsp {
    display: block;
  }
}

@media screen and (max-width: 1024px) {
  .notsp {
    display: none !important;
  }
}

/*#########################################################

アニメーション

#########################################################*/
@-webkit-keyframes fade {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes fade {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

/*#########################################################

余白（なるべく使わない）

#########################################################*/
/* ========================================================
下余白
=========================================================*/
/*
.mb1{
	margin-bottom: $mg*1;
}
.mb2{
	margin-bottom: $mg*2;
}
.mb3{
	margin-bottom: $mg*3;
}
.mb4{
	margin-bottom: $mg*4;
}
.mb5{
	margin-bottom: $mg*5;
}
*/
/* ========================================================
右余白
=========================================================*/
/*
.mr1{
	margin-right: $mg*1;
}
.mr2{
	margin-right: $mg*2;
}
.mr3{
	margin-right: $mg*3;
}
.mr4{
	margin-right: $mg*4;
}
.mr5{
	margin-right: $mg*5;
}
*/
/*#########################################################

共通アイコン・共通設定

#########################################################*/
/* ========================================================
PC版・SP版専用設定(モバイルファースト用)
=========================================================*/
/*
.pc{
	display: none !important;
	@include mq(lg){
		display: inherit !important;
	}
}
.sp{
	display: inherit !important;
	@include mq(lg){
		display: none !important;
	}
}
*/
/* ========================================================
PC版・SP版専用設定(PCファースト用)
=========================================================*/
/*
.pc{
	@include mq(md){
		display: none !important;
	}
}
.sp{
	display: none !important;
	@include mq(md){
		display: inherit !important;
	}
}
*/
/* ========================================================
矢印
=========================================================*/
/*
$arrow-width: 1px;
%arrow-o-before{
	width: $arrow-len;
	height: $arrow-len;
	border-top: $arrow-width solid #000;
	border-right: $arrow-width solid #000;
}
%arrow-after{
	width: $arrow-len;
	height: $arrow-len;
	border-top: $arrow-width solid #000;
	border-right: $arrow-width solid #000;
}
.arrow {
	position: relative;
	display: inline-block;
	vertical-align: middle;
	text-decoration: none;
	text-indent: -10000px;
	width: $arrow-len;
	height: $arrow-len;
	&::after,
	&::before {
		top: 0;
		bottom: 0;
		left: 0;
		position: absolute;
		content: "";
		margin: auto;
		vertical-align: middle;
	}
	// 上下オープン矢印
	&.-opendown::before,
	&.-openup::before {
		@extend %arrow-o-before;
		transform: rotate(-45deg);
	}
	&.-opendown::before{
		transform: rotate(135deg);
	}
	// 左右オープン矢印
	&.-openleft::before,
	&.-openright::before {
		@extend %arrow-o-before;
		transform: rotate(45deg);
	}
	&.-openleft::before{
		transform: rotate(-135deg);
	}

	// 上下矢印
	&.-up,
	&.-down{
		width: $arrow-len;
		&::before{
			right: 0;
			width: $arrow-width;
			height: $arrow-len;
			background: #000;
		}
		&::after{
			@extend %arrow-after;
			transform: rotate(-45deg);
		}
	}
	&.-down{
		&::after{
			transform: rotate(135deg);
		}
	}

	// 左右矢印
	&.-left,
	&.-right{
		&::before{
			width: $arrow-len;
			height: $arrow-width;
			background: #000;
		}
		&::after{
			@extend %arrow-after;
			transform: rotate(45deg);
		}
	}
	&.-left::after{
		transform: rotate(-135deg);
	}
}
*/
/* ========================================================
外部スタイル
=========================================================*/
/* ========================================================
JSライブラリ用
=========================================================*/
/* ========================================================
Components
=========================================================*/
/* ========================================================
サイトのヘッダ
=========================================================*/
.site-header {
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

.site-header.is-hide {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
}

.site-header .tel-box {
  margin-bottom: 1px;
  margin-right: 10px;
}

.site-header .tel-box,
.site-header .tel-box a {
  color: #fff;
  font-size: max(2rem, 1.458vw);
  line-height: 1.2;
}

.site-header .tel-box span {
  display: block;
}

.site-header .tel-box .tit {
  padding: 2px;
  margin-bottom: 2px;
  width: 96px;
  text-align: center;
  font-size: 1rem;
  border: 1px solid #fff;
}

.site-header .tel-box .tel {
  font-size: 2.35rem;
}

@media screen and (max-width: 1024px) {
  .site-header .tel-box {
    margin: 0 0 3px 10px;
    font-size: min(2.4rem, 4.8vw);
  }

  .site-header .tel-box .tel {
    font-size: 21.5px;
  }
}

.site-header .tel-box .time {
  font-size: 1.1rem;
}

@media screen and (max-width: 1024px) {
  .site-header .tel-box .time {
    font-size: min(1.3rem, 2.4vw);
  }
}

.site-header .header-top {
  padding-left: 2.5%;
  height: 29px;
  line-height: 29px;
  background: #000;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

@media screen and (max-width: 1024px) {
  .site-header .header-top {
    padding-left: 16px;
  }
}

.site-header .header-top.is-hide {
  display: none;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

.site-header .header-top h1.catch {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 400;
}

.site-header .header-bottom {
  padding: 0 2.5%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  height: 87.25px;
  z-index: 100;
  background: #0033cc;
}

@media screen and (max-width: 1024px) {
  .site-header .header-bottom {
    padding: 0 20px 1px 16px;
    height: 48.58px;
    line-height: 0;
  }
}

.site-header .header-bottom .sitelogo {
  margin-right: 34px;
  padding-top: 12px;
}

.site-header .header-bottom .sitelogo a:hover {
  opacity: 1;
}

@media screen and (max-width: 1024px) {
  .site-header .header-bottom .sitelogo {
    padding: 0;
  }
}

.site-header .header-bottom .sitelogo img {
  max-width: 158px;
  width: 100%;
}

@media screen and (max-width: 1024px) {
  .site-header .header-bottom .sitelogo img {
    width: 26.667vw;
    height: auto;
  }
}

.site-header .header-bottom .header-menu {
  position: relative;
  width: 22px;
  height: 21px;
  cursor: pointer;
  z-index: 200;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.site-header .header-bottom .header-menu span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: #fff;
  border-radius: 4px;
  display: inline-block;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.site-header .header-bottom .header-menu span:nth-of-type(1) {
  top: 0;
}

.site-header .header-bottom .header-menu span:nth-of-type(2) {
  top: 10px;
}

.site-header .header-bottom .header-menu span:nth-of-type(3) {
  bottom: 0;
}

.site-header .header-bottom .header-menu.on span:nth-of-type(1) {
  -webkit-transform: translateY(10px) rotate(-45deg);
  transform: translateY(10px) rotate(-45deg);
}

.site-header .header-bottom .header-menu.on span:nth-of-type(2) {
  opacity: 0;
}

.site-header .header-bottom .header-menu.on span:nth-of-type(3) {
  -webkit-transform: translateY(-9px) rotate(45deg);
  transform: translateY(-9px) rotate(45deg);
}

@media screen and (max-width: 1024px) {
  .site-header .header-bottom .nav {
    position: fixed;
    z-index: 999;
    padding-top: 21px;
    top: 77px;
    right: -133.333vw;
    width: 70%;
    height: 100vh;
    background: #333;
    -webkit-transition: all 0.2s linear;
    transition: all 0.2s linear;
  }

  .site-header .header-bottom .nav.is-hide {
    top: 48px;
  }

  .site-header .header-bottom .nav.active {
    right: 0;
  }
}

.site-header .header-bottom .nav .inr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media screen and (max-width: 1024px) {
  .site-header .header-bottom .nav .inr {
    display: block;
  }
}

.site-header .header-bottom .nav .nav-main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-right: 24px;
  margin-left: 30px;
  padding-top: 3px;
}

@media screen and (max-width: 1024px) {
  .site-header .header-bottom .nav .nav-main {
    display: block;
    margin-right: 0;
    margin-bottom: 20px;
    padding-top: 0;
  }
}

.site-header .header-bottom .nav .nav-main li {
  margin-right: 2.232vw;
  line-height: 1.2;
}

@media screen and (max-width: 1024px) {
  .site-header .header-bottom .nav .nav-main li.sp {
    display: block;
  }
}

.site-header .header-bottom .nav .nav-main li:last-of-type {
  margin-right: 0;
}

.site-header .header-bottom .nav .nav-main li a {
  color: #fff;
  font-size: clamp(1.4rem, 0.933vw, 1.6rem);
  font-weight: bold;
}

@media screen and (max-width: 1024px) {
  .site-header .header-bottom .nav .nav-main li a {
    display: block;
    padding: 12px 0 12px 24px;
    font-size: 1.4rem;
  }
}

.site-header .header-bottom .nav .header-btn-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-right: calc(2.606vw - 10px);
}

@media screen and (max-width: 1024px) {
  .site-header .header-bottom .nav .header-btn-box {
    display: block;
    margin-right: 0;
    padding: 0 24px;
  }
}

@media screen and (max-width: 1024px) {
  .site-header .header-bottom .nav .header-btn-box li {
    margin-bottom: 14px;
  }

  .site-header .header-bottom .nav .header-btn-box li:last-of-type {
    margin-bottom: 30px;
  }
}

.site-header .header-bottom .nav .header-btn-box li:first-of-type {
  margin-right: 13px;
}

@media screen and (max-width: 1024px) {
  .site-header .header-bottom .nav .header-btn-box li:first-of-type {
    margin-right: 0;
  }
}

.site-header .header-bottom .nav .header-btn-box li a {
  position: relative;
  display: block;
  width: 150px;
  height: 48px;
  color: #fff;
  font-size: 1.4rem;
  font-weight: bold;
  text-align: center;
  background: transparent linear-gradient(260deg, #ed4c4c 0%, #ff9d00 100%) 0%
    0% no-repeat padding-box;
  border-radius: 48px;
}

@media screen and (max-width: 1024px) {
  .site-header .header-bottom .nav .header-btn-box li a {
    width: 100%;
  }
}

.site-header .header-bottom .nav .header-btn-box li a:hover {
  -webkit-transform: translateY(5px);
  transform: translateY(5px);
}

.site-header .header-bottom .nav .header-btn-box li a span {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  display: block;
  width: 142px;
  height: 40px;
  line-height: 38px;
  border: 1px solid #fff;
  border-radius: 46px;
}

@media screen and (max-width: 1024px) {
  .site-header .header-bottom .nav .header-btn-box li a span {
    width: 96%;
  }
}

.site-header .header-bottom .nav .header-btn-box li a.sp {
  display: none;
}

@media screen and (max-width: 1024px) {
  .site-header .header-bottom .nav .header-btn-box li a.sp {
    display: block;
  }
}

.site-header .header-bottom .nav .btn-close {
  display: none;
}

@media screen and (max-width: 1024px) {
  .site-header .header-bottom .nav .btn-close {
    display: block;
    text-align: center;
  }

  .site-header .header-bottom .nav .btn-close a {
    position: relative;
    padding: 1px 0 0 24px;
    color: #fff;
    font-size: 1.4rem;
  }

  .site-header .header-bottom .nav .btn-close span {
    position: relative;
    padding: 1px 0 0 24px;
    color: #fff;
    font-size: 1.4rem;
  }

  .site-header .header-bottom .nav .btn-close span:hover {
    cursor: pointer;
  }

  .site-header .header-bottom .nav .btn-close a::before {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    display: inline-block;
    width: 20px;
    height: 2px;
    background: #fff;
    -webkit-transform: translateY(10px) rotate(-45deg);
    transform: translateY(10px) rotate(-45deg);
  }

  .site-header .header-bottom .nav .btn-close span::before {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    display: inline-block;
    width: 20px;
    height: 2px;
    background: #fff;
    -webkit-transform: translateY(10px) rotate(-45deg);
    transform: translateY(10px) rotate(-45deg);
  }

  .site-header .header-bottom .nav .btn-close a::after {
    position: absolute;
    bottom: 0;
    left: 0;
    content: "";
    display: inline-block;
    width: 20px;
    height: 2px;
    background: #fff;
    -webkit-transform: translateY(-8px) rotate(45deg);
    transform: translateY(-8px) rotate(45deg);
  }

  .site-header .header-bottom .nav .btn-close span::after {
    position: absolute;
    bottom: 0;
    left: 0;
    content: "";
    display: inline-block;
    width: 20px;
    height: 2px;
    background: #fff;
    -webkit-transform: translateY(-8px) rotate(45deg);
    transform: translateY(-8px) rotate(45deg);
  }
}

/* ========================================================
サイトのフッタ
=========================================================*/

footer.site-footer {
  line-height: 1;
}

.site-footer .foot-contact {
  padding: 90px 0 82px;
  background: #fff;
  text-align: center;
}

@media screen and (max-width: 1024px) {
  .site-footer .foot-contact {
    padding: 42px 0 25px;
    height: auto;
  }
}

.site-footer .foot-contact .inr {
  position: relative;
  width: 90.625%;
  max-width: 1276px;
  height: 100%;
  margin: 0 auto;
}

@media screen and (max-width: 1024px) {
  .site-footer .foot-contact .inr {
    width: 90.4vw;
  }
}

.site-footer .foot-contact .inr > .txt {
  margin-bottom: 46px;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.5;
}

@media screen and (max-width: 1024px) {
  .site-footer .foot-contact .inr > .txt {
    margin-bottom: 4px;
    font-size: 1.8rem;
  }

  .site-footer .foot-contact .inr > .txt.sp {
    line-height: 1.8;
  }
}

.site-footer .foot-contact .inr .contact-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 148px;
}

@media screen and (max-width: 1024px) {
  .site-footer .foot-contact .inr .contact-list {
    display: block;
    margin: 0 auto;
    width: 81.334vw;
    height: auto;
  }
}

.site-footer .foot-contact .inr .contact-list li {
  width: 23.512%;
  border-right: solid 1px rgba(0, 16, 14, 0.1);
}

@media screen and (max-width: 1024px) {
  .site-footer .foot-contact .inr .contact-list li {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    padding: 31px 0 25px 15px;
    width: 100%;
    border-right: none;
    border-bottom: solid 1px rgba(0, 16, 14, 0.1);
  }
}

.site-footer .foot-contact .inr .contact-list li:last-of-type {
  border: none;
}

.site-footer .foot-contact .inr .contact-list li .icon {
  margin: 0 auto 30px;
  width: 35px;
  text-align: center;
  line-height: 0;
}

@media screen and (max-width: 1024px) {
  .site-footer .foot-contact .inr .contact-list li .icon {
    margin: auto 0;
    margin-right: 3.4667vw;
    width: 30px;
    height: 35px;
    padding-top: 4px;
  }
}

.site-footer .foot-contact .inr .contact-list li .icon img {
  width: 100%;
}

@media screen and (max-width: 1024px) {
  .site-footer .foot-contact .inr .contact-list li .icon img {
    width: 88%;
    height: auto;
  }
}

.site-footer .foot-contact .inr .contact-list li .txt {
  margin-bottom: 13px;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 2;
}

@media screen and (max-width: 1024px) {
  .site-footer .foot-contact .inr .contact-list li .txt {
    font-size: 1.4rem;
    margin: auto 0;
  }
}

.site-footer .foot-contact .inr .contact-list li .btn-box {
  height: 38px;
}

.site-footer .foot-contact .inr .contact-list li .btn-box a {
  position: relative;
  top: 1px;
  display: inline-block;
  width: 100px;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 32px;
  border-radius: 4px;
  background-color: #f95239;
  text-align: center;
}

@media screen and (max-width: 1024px) {
  .site-footer .foot-contact .inr .contact-list li .btn-box {
    position: absolute;
    right: 15px;
    top: 29px;
  }
}

.site-footer .foot-nav-top {
  background-color: #354341;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 181px;
}

@media screen and (max-width: 1024px) {
  .site-footer .foot-nav-top {
    padding: 28px 0;
    height: auto;
  }
}

.site-footer .foot-nav-top .inr {
  position: relative;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

@media screen and (max-width: 1024px) {
  .site-footer .foot-nav-top .inr {
    width: 85%;
  }
}

.site-footer .foot-nav-top .inr nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  padding: 28px 0 38px;
  height: 100%;
  line-height: 2.8;
}

@media screen and (max-width: 1024px) {
  .site-footer .foot-nav-top .inr nav {
    padding: 0;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

.site-footer .foot-nav-top .inr nav ul {
  margin-right: 120px;
}

.site-footer .foot-nav-top .inr nav ul li {
  height: 38px;
}

@media screen and (max-width: 1024px) {
  .site-footer .foot-nav-top .inr nav ul {
    margin-right: 24px;
    line-height: 1.6;
  }

  .site-footer .foot-nav-top .inr nav ul li {
    height: auto;
    margin-bottom: 14px;
  }

  .site-footer .foot-nav-top .inr nav ul li:last-child {
    margin-bottom: 0;
  }
}

@media screen and (max-width: 400px) {
  .site-footer .foot-nav-top .inr nav ul:first-child li:last-child {
    margin-bottom: 14px;
  }
}

.site-footer .foot-nav-top .inr nav ul:last-of-type {
  margin-right: 0;
}

@media screen and (max-width: 1024px) {
  .site-footer .foot-nav-top .inr nav ul:nth-of-type(2) {
    margin-right: 0;
  }

  .site-footer .foot-nav-top .inr nav ul:last-of-type {
    margin-bottom: 0;
  }
}

.site-footer .foot-nav-top .inr nav ul a {
  color: #fff;
  font-size: 1.4rem;
  display: inline-block;
  line-height: 1;
}

@media screen and (max-width: 1024px) {
  .site-footer .foot-nav-top .inr nav ul a {
    font-size: 1.3rem;
    line-height: 1.4;
  }
}

.site-footer .foot-nav-bottom {
  padding: 48px 0;
  background-color: #fff;
  height: 228px;
}

@media screen and (max-width: 1024px) {
  .site-footer .foot-nav-bottom {
    padding: 28px 0 30px;
    height: auto;
  }
}

.site-footer .foot-nav-bottom .inr {
  position: relative;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  height: 100%;
}

@media screen and (max-width: 1024px) {
  .site-footer .foot-nav-bottom .inr {
    width: 82%;
  }
}

.site-footer .foot-nav-bottom nav {
  height: 48px;
  margin-bottom: 40px;
}

@media screen and (max-width: 1024px) {
  .site-footer .foot-nav-bottom nav {
    height: auto;
  }
}

.site-footer .foot-nav-bottom nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  height: 100%;
}

@media screen and (max-width: 1024px) {
  .site-footer .foot-nav-bottom nav ul {
    display: block;
  }
}

.site-footer .foot-nav-bottom nav ul li {
  height: 38px;
  margin-bottom: 10px;
}

@media screen and (max-width: 1024px) {
  .site-footer .foot-nav-bottom nav ul li {
    height: auto;
    margin-bottom: 14px;
  }
}

.site-footer .foot-nav-bottom nav ul a {
  margin-right: 40px;
  color: #333;
  font-size: 1.4rem;
}

@media screen and (max-width: 1024px) {
  .site-footer .foot-nav-bottom nav ul a {
    margin: 0;
    font-size: 1.3rem;
  }
}

.site-footer .foot-nav-bottom .copy {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 42px;
}

@media screen and (max-width: 1024px) {
  .site-footer .foot-nav-bottom .copy {
    display: block;
    height: auto;
  }
}

.site-footer .foot-nav-bottom .copy .logo {
  width: 142px;
  height: auto;
  margin-right: 36px;
  margin-bottom: 6px;
}

.site-footer .foot-nav-bottom .copy .logo a {
  display: inline-block;
  height: 29px;
}

.site-footer .foot-nav-bottom .copy .logo a:hover {
  opacity: 1;
}

@media screen and (max-width: 1024px) {
  .site-footer .foot-nav-bottom .copy .logo {
    margin-right: 0;
    margin-bottom: 5px;
    width: 135px;
  }
}

.site-footer .foot-nav-bottom .copy .logo img {
  width: 100%;
}

.site-footer .foot-nav-bottom .copy p {
  color: #333;
  font-size: 1.4rem;
  height: 33px;
}

.site-footer .foot-nav-bottom .copy span {
  display: inline-block;
  margin-left: auto;
  margin-bottom: 1rem;
  font-size: 1.2rem;
  text-align: right;
}

@media screen and (max-width: 1024px) {
  .site-footer .foot-nav-bottom .copy p {
    font-size: 1.3rem;
    line-height: 2.2rem;
    margin-bottom: 12px;
    height: auto;
  }

  .site-footer .foot-nav-bottom .copy span {
    font-size: 1.1rem;
  }
}

.site-footer .foot-nav-bottom .copy .copyright {
  margin-left: auto;
}

.btn-top {
  position: fixed;
  right: 2rem;
  bottom: 2rem;
  opacity: 0;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  cursor: pointer;
}

@media screen and (max-width: 1024px) {
  .btn-top {
    right: 5.333vw;
    bottom: 5.333vw;
  }
}

.btn-top span {
  width: 4.6rem;
  height: 4.6rem;
  background: #cccccc;
  display: block;
  color: #fff;
  line-height: 6rem;
  font-size: 1.6rem;
  letter-spacing: 0;
  text-align: center;
  border-radius: 0.3rem;
  position: relative;
}

@media screen and (max-width: 1024px) {
  .btn-top span {
    width: 12.267vw;
    height: 12.267vw;
    line-height: 16vw;
    font-size: 4.267vw;
    border-radius: 0.8vw;
  }
}

.btn-top span::before {
  position: absolute;
  top: 45%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transform-origin: left top;
  transform-origin: left top;
  content: "";
  display: inline-block;
  width: 0.7rem;
  height: 0.7rem;
  border-top: 0.2rem solid #fff;
  border-left: 0.2rem solid #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

@media screen and (max-width: 1024px) {
  .btn-top span::before {
    width: 1.867vw;
    height: 1.867vw;
    border-top: 0.553vw solid #fff;
    border-left: 0.553vw solid #fff;
  }
}

/* ========================================================
下層共通パーツ
=========================================================*/
.maintit-box {
  position: relative;
  z-index: 1;
  padding: 45px 10px 40px 4%;
  min-height: 170px;
  text-align: left;
  background: url(../img/nagoyaback.jpg) no-repeat center/cover;
}

@media screen and (max-width: 1024px) {
  .maintit-box {
    padding: 30px 10px 30px 5%;
    min-height: 135px;
  }
}

.maintit-box::before {
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  content: "";
}

.maintit-box h2.tit {
  font-size: 1.6rem;
  line-height: 1.3;
  color: #fff;
  letter-spacing: 1px;
  padding-top: 10px;
}

@media screen and (max-width: 1024px) {
  .maintit-box h2.tit {
    font-size: 1.3rem;
    padding-top: 14px;
  }
}

.maintit-box h2.tit .en {
  padding-bottom: 8px;
  display: block;
  font-size: 3.1rem;
  line-height: 1.2;
  color: #fff;
}

@media screen and (max-width: 1024px) {
  .maintit-box h2.tit .en {
    font-size: 2rem;
  }
}

.breadcrumb {
  margin-bottom: 29px;
  padding: 8px 0 15px 4%;
  width: 100%;
  text-align: left;
}

@media screen and (max-width: 1024px) {
  .breadcrumb {
    margin-bottom: 20px;
    padding: 10px 3% 8px;
  }
}

@media screen and (max-width: 1024px) {
  .breadcrumb ul {
    overflow: hidden;
    display: -webkit-inline-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    height: 20px;
    /* 1行分の高さに設定 */
    line-height: 20px;
  }
}

.breadcrumb ul li {
  display: inline;
  font-size: 1.2rem;
}

.breadcrumb ul li:after {
  content: ">";
  padding-left: 0.3rem;
  color: #1766dd;
  margin: 0 5px;
}

.breadcrumb ul li a {
  text-decoration: underline;
}

.breadcrumb ul li:last-of-type::after {
  content: none;
}

.lower {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin: 0 auto;
  width: 100%;
  max-width: 1200px;
  gap: 60px;
}

@media screen and (max-width: 1024px) {
  .lower {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    width: 100%;
    padding: 0 5.333vw;
    gap: 15px;
  }
}

.lower .column-main {
  width: 100%;
  max-width: 900px;
}

@media screen and (max-width: 599px) {
  .lower .column-main {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    padding: 0;
    width: 100%;
  }
}

.lower .column-side {
  width: 240px;
  margin-top: -3px;
}

@media screen and (max-width: 1024px) {
  .lower .column-side {
    margin: 0 auto;
    padding: 0;
    width: 100%;
    max-width: 500px;
  }
}

@media screen and (max-width: 599px) {
  .lower .column-side .bnr-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}

.lower .column-side .bnr-box li {
  line-height: 0;
}

@media screen and (max-width: 599px) {
  .lower .column-side .bnr-box li {
    width: 48%;
  }
  .lower .column-side .bnr-box li img {
    width: 100%;
    height: auto;
  }
}

.lower .column-side .bnr-box li:first-of-type {
  margin-bottom: 20px;
}

.lower .column-side .bnr-box li a {
  display: block;
}

/* .lower .column-side .bnr-box img {
  width: 100%;
  height: auto;
} */

.side-menu-box {
  border-top: 1px solid #c2c2c2;
  margin-top: 60px;
}

.side-menu-box li {
  font-weight: 500;
  border-bottom: 1px solid #c2c2c2;
  position: relative;
}

.side-menu-box li a {
  display: block;
  padding: 12px 10px 12px 34px;
}

.side-menu-box li span {
  display: inline-block;
  position: absolute;
  left: 10px;
  top: 13px;
}

.bnr-pic {
  padding-top: 85px;
  text-align: center;
  height: 295px;
}

@media screen and (max-width: 1024px) {
  .bnr-pic {
    padding-top: 60px;
    height: auto;
  }
}

.bnr-pic a {
  display: inline-block;
  height: 100%;
}

@media screen and (max-width: 1024px) {
  .bnr-pic img {
    width: 100%;
    height: auto;
  }
}

.toplink {
  margin: 37px 0 70px;
  text-align: center;
}

.toplink.notsp {
  height: 38px;
}

@media screen and (max-width: 1024px) {
  .toplink {
    margin: 2.667vw 0 0;
    padding: 0 5.333vw;
    width: 100%;
  }
}

.toplink a {
  text-decoration: underline;
}

@media screen and (max-width: 1024px) {
  .toplink a {
    font-size: 1.3rem;
  }
}

.btn-box .btn-radius-solid {
  display: block;
  position: relative;
  height: 52.4px;
  padding: 11px 35px 11px 15px;
  border: 1px solid #ccc;
  background: #f1e767;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(#fdfbfb),
    to(#ebedee)
  );
  background: linear-gradient(to bottom, #fdfbfb 0%, #ebedee 100%);
  -webkit-box-shadow: inset 1px 1px 1px #fff;
  box-shadow: inset 1px 1px 1px #fff;
  border-radius: 4px;
  text-align: center;
  line-height: 28px;
}

@media screen and (max-width: 1024px) {
  .btn-box .btn-radius-solid {
    font-size: 13px;
  }
}

.btn-box .btn-radius-solid::before {
  position: absolute;
  top: 45%;
  right: 3%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  content: "";
  display: inline-block;
  width: 0.7rem;
  height: 0.7rem;
  border-top: 0.2rem solid #333;
  border-left: 0.2rem solid #333;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}

.btn-box .btn-radius-solid:hover {
  background: -webkit-gradient(
    linear,
    left bottom,
    left top,
    from(#fdfbfb),
    to(#ebedee)
  );
  background: linear-gradient(to top, #fdfbfb 0%, #ebedee 100%);
}

.tax {
  text-align: right;
  font-size: 15px;
  margin-top: 20px;
  margin-bottom: 0;
}

/* 404 */
.error h2 {
  font-size: 30px;
  font-weight: 700;
}

.error p {
  font-size: 20px;
}

/* キャンペーンバナー */
.bnrcam-wrap {
  padding-top: 2px;
  padding-bottom: 40px;
  margin: 0 auto;
}

.bnrcam-img {
  text-align: center;
}

.bnrcam-img:hover {
  opacity: 0.6;
}

.bnrcam-txt {
  text-align: center;
  padding-top: 20px;
}

.bnrcam-txt:hover {
  opacity: 0.6;
}

.bnrcam-txt a {
  text-decoration: underline;
}
