@charset "UTF-8";
/*改善点

・768pxまではPC（タブレットも含む）
・767pxからSP


追加ルール
/*==================
 ▼ブレイクポイントのルール▼
 -スマホを基本設計にする-
 *〜479px：SP縦
 *480px〜：SP横
 *600px〜タブレット
 *960px〜小型PC
 *1280px〜大型PC
==================

*/
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Philosopher:ital,wght@0,400;0,700;1,400;1,700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@200;300;400;500;600;700&family=Zen+Kaku+Gothic+Antique:wght@300;400;500;700;900?family=Zen+Maru+Gothic:wght@300;400;500;700;900&display=swap");
:root {
  --mainColor: #258b8b;
  --subColor: #003b62;
}

.mainColor {
  color: var(--mainColor);
}

.bgMainColor {
  background-color: var(--mainColor);
}

.mainColorDeep {
  color: #1a1a1a;
}

.bgMainColorDeep {
  background-color: #1a1a1a;
}

.mainColorExDeep {
  color: #03312e;
}

.mainColorLight {
  color: #808080;
}

.bgMainColorLight {
  background-color: #808080;
}

.mainColorExLight {
  color: #f2f2f2;
}

.bgMainColorExLight {
  background-color: #f2f2f2;
}

.mainColorUlLight {
  color: #f6f7f9;
}

.bgMainColorUlLight {
  background-color: #f6f7f9;
}

.subColor {
  color: var(--subColor);
}

.bgSubColor {
  background-color: #0098a9;
}

.subColorDeep {
  color: #e3e3fb;
}

.bgSubColorDeep {
  background-color: #e3e3fb;
}

.bgSubColorLight {
  background-color: #ff6f00;
}

.compColor {
  color: #ecfe02;
}

.bgCompColor {
  background-color: #ecfe02;
}

.grayColor {
  color: #a9a9a9;
}

.bgGrayColor {
  background-color: #a9a9a9;
}

.grayColorLight {
  color: #dcdcdc;
}

.bgGrayColorLight {
  background-color: #dcdcdc;
}

.bgGrayColorExLight {
  background-color: #ececec;
}

.bgWhiteTrans {
  background-color: rgba(255, 255, 255, 0.5);
}

.bgBlackTrans {
  background-color: rgba(0, 0, 0, 0.3);
}

.bgBlack {
  background: #000;
}

.bgGrad {
  background: rgb(255, 178, 90);
  background: linear-gradient(90deg, rgb(255, 178, 90) 0%, rgb(255, 143, 90) 100%);
}

.bgTexture {
  background-image: url(../img/bg_texture_light.gif);
}

.grayLight {
  color: #9a9a9a;
}

/*フォント系*/
:root {
  --fontEn: "Poppins", sans-serif;
}

.fontEn {
  font-family: var(--fontEn);
}

:root {
  --fontNum: "Inter", sans-serif;
}

.fontNum {
  font-family: var(--fontNum);
}

.fontEnSub {
  font-family: "Philosopher", sans-serif;
}

:root {
  --fontJp: "Noto Sans JP", sans-serif;
}

.fontJp {
  font-family: var(--fontJp);
}

.gothic {
  font-family: "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

.serif {
  font-family: "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
}

body {
  font-family: var(--fontJp);
  color: #1f1f1f;
}

/*==================================================
 * リセットcss
 *================================================*/
/* a modern css reset*/
/* 
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;
}

body {
  line-height: 1;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

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;
}

li {
  list-style-type: none;
}

/*==================================================
 * フォント
 *================================================*/
.italic {
  font-style: italic;
}

html {
  font-size: 10px;
}

html,
h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 400;
  line-height: 1.8;
}

h1,
h2,
h3,
h4,
h5,
h6,
h7,
p,
span,
div {
  line-height: 1.8;
}

.lh_xxl {
  line-height: 2.5;
}
.lh_xxl * {
  line-height: 2.5;
}

.lh_xl {
  line-height: 2;
}
.lh_xl * {
  line-height: 2;
}

.lh_l {
  line-height: 1.8;
}
.lh_l * {
  line-height: 1.8;
}

.lh_m {
  line-height: 1.5;
}
.lh_m * {
  line-height: 1.5;
}

.lh_s {
  line-height: 1.1;
}
.lh_s * {
  line-height: 1.1;
}

.lh_xs {
  line-height: 0.7;
}
.lh_xs * {
  line-height: 0.7;
}

.ls_xl {
  letter-spacing: 0.3em;
}

.ls_l {
  letter-spacing: 0.2em;
}

.ls_m {
  letter-spacing: 0.1em;
}

.ls_s {
  letter-spacing: 0.05em;
}

.ls_xs {
  letter-spacing: 0.01em;
}

.ls_0 {
  letter-spacing: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

.bold {
  font-weight: 500 !important;
}

.bold700 {
  font-weight: 700 !important;
}

.bold900 {
  font-weight: 900 !important;
}

.thin {
  font-weight: 100;
}

.fwNormal {
  font-weight: normal;
}

.nowrap {
  white-space: nowrap;
}

.white {
  color: #fff;
}

.black {
  color: #000;
}

.gray {
  color: #686868;
}

.red {
  color: #ff4501 !important;
}

@media only screen and (max-width: 767px) {
  .fwSpBold {
    font-weight: bold;
  }
}

.fsL {
  font-size: 100px;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .fsL {
    font-size: 64px;
  }
}
@media only screen and (max-width: 767px) {
  .fsL {
    font-size: 42px;
  }
}

.fsL2 {
  font-size: 64px;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .fsL2 {
    font-size: 42px;
  }
}
@media only screen and (max-width: 767px) {
  .fsL2 {
    font-size: 36px;
  }
}

.fsL3 {
  font-size: 56px;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .fsL3 {
    font-size: 42px;
  }
}
@media only screen and (max-width: 767px) {
  .fsL3 {
    font-size: 36px;
  }
}

.fsL4 {
  font-size: 42px;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .fsL4 {
    font-size: 32px;
  }
}
@media only screen and (max-width: 767px) {
  .fsL4 {
    font-size: 24px;
  }
}

.fsM {
  font-size: 34px;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .fsM {
    font-size: 24px;
  }
}
@media only screen and (max-width: 767px) {
  .fsM {
    font-size: 21px;
  }
}

.fsM2 {
  font-size: 28px;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .fsM2 {
    font-size: 24px;
  }
}
@media only screen and (max-width: 767px) {
  .fsM2 {
    font-size: 20px;
  }
}

.fsM3 {
  font-size: 24px;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .fsM3 {
    font-size: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .fsM3 {
    font-size: 17px;
  }
}

.fsM35 {
  font-size: 21px;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .fsM35 {
    font-size: 18px;
  }
}
@media only screen and (max-width: 767px) {
  .fsM35 {
    font-size: 16px;
  }
}

.fsM4 {
  font-size: 18px;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .fsM4 {
    font-size: 16px;
  }
}
@media only screen and (max-width: 767px) {
  .fsM4 {
    font-size: 16px;
  }
}

.fsM5 {
  font-size: 16px;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .fsM5 {
    font-size: 14px;
  }
}
@media only screen and (max-width: 767px) {
  .fsM5 {
    font-size: 14px;
  }
}

.fsM56 {
  font-size: 15px;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .fsM56 {
    font-size: 14px;
  }
}
@media only screen and (max-width: 767px) {
  .fsM56 {
    font-size: 14px;
  }
}

.fsS {
  font-size: 14px;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .fsS {
    font-size: 13px;
  }
}
@media only screen and (max-width: 767px) {
  .fsS {
    font-size: 13px;
  }
}

.fsS2 {
  font-size: 13px;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .fsS2 {
    font-size: 12px;
  }
}
@media only screen and (max-width: 767px) {
  .fsS2 {
    font-size: 12px;
  }
}

.fsS3 {
  font-size: 12px;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .fsS3 {
    font-size: 11px;
  }
}
@media only screen and (max-width: 767px) {
  .fsS3 {
    font-size: 11px;
  }
}

.fsS3 {
  font-size: 10px;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .fsS3 {
    font-size: 9px;
  }
}
@media only screen and (max-width: 767px) {
  .fsS3 {
    font-size: 9px;
  }
}

.h000 {
  font-size: 100px;
}

.h00 {
  font-size: 64px;
}

.h0 {
  font-size: 42px;
}

.h1 {
  font-size: 32px;
}

.h2 {
  font-size: 28px;
}

.h3 {
  font-size: 24px;
}

.h4 {
  font-size: 18px;
}

.h5 {
  font-size: 16px;
}

.text_m {
  font-size: 14px;
}

.text_sm {
  font-size: 13px;
}

.text_s {
  font-size: 12px;
}

.text_ss {
  font-size: 10px;
}

@media screen and (min-width: 768px) and (max-width: 959px) {
  body {
    font-size: 14px;
  }
  .h000 {
    font-size: 64px;
  }
  .h00 {
    font-size: 36px;
  }
  .h0 {
    font-size: 25px;
  }
  .h1 {
    font-size: 24px;
  }
  .h2 {
    font-size: 24px;
  }
  .h3 {
    font-size: 20px;
  }
  .h4 {
    font-size: 15px;
  }
  .h5 {
    font-size: 14px;
  }
  .text_m {
    font-size: 13px;
  }
  .text_s {
    font-size: 11px;
  }
}
@media screen and (max-width: 767px) {
  body {
    font-size: 14px;
  }
  .h000 {
    font-size: 42px;
  }
  .h00 {
    font-size: 36px;
  }
  .h0 {
    font-size: 24px;
  }
  .h1 {
    font-size: 22px;
  }
  .h2 {
    font-size: 20px;
  }
  .h3 {
    font-size: 17px;
  }
  .h4 {
    font-size: 15px;
  }
  .h5 {
    font-size: 15px;
  }
  .text_m {
    font-size: 13px;
  }
  .text_s {
    font-size: 11px;
  }
  .fsSpL4 {
    font-size: 24px;
  }
  .fsSp12 {
    font-size: 12px;
  }
  .fsSp20 {
    font-size: 20px;
  }
  .lhSp_m {
    line-height: 1.5;
  }
  .lhSp_m * {
    line-height: 1.5;
  }
}
/*==================================================
 * 独自リセット
 *================================================*/
/*リセット関係*/
*,
*:before,
*:after {
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

html,
body {
  width: 100%;
}

ul {
  padding: 0;
  list-style-type: none;
  margin: 0;
}

/*
a:hover{
	opacity: 0.8;
	transition:0.3s;
}
*/
label {
  display: inline-block;
  max-width: 100%;
  margin-bottom: 0;
  font-weight: 100;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}

hr {
  margin: 10px auto;
}

a:hover {
  text-decoration: none;
  color: inherit;
}

/*==================================================
 * 独自クラス（どのサイトでも）
 *================================================*/
.clearfix:after {
  content: "";
  clear: both;
  display: block;
}

.remove {
  text-indent: -9999px;
  overflow: hidden;
  display: block;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  height: 0;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.fixed {
  position: fixed;
}

.relapadding {
  padding-right: 80px;
}

.inline {
  display: inline;
}

.block {
  display: block;
}

.blockI {
  display: block !important;
}

.inlineBlock {
  display: inline-block;
}

.inlineBlockUl li {
  display: inline-block;
}

.disNone {
  display: none !important;
}

.bgCenter {
  background-position: center center;
  background-size: cover;
}

.opa {
  transition: 0.3s;
  opacity: 1;
}

a:hover .opa {
  transition: 0.3s;
  opacity: 0.7;
}

.tra,
.tra:hover {
  transition: 0.3s;
}

.verticalMiddle {
  vertical-align: middle;
}

.verticalBottom {
  vertical-align: bottom;
}

.text-center {
  text-align: center;
}
.text-center-all {
  text-align: center;
}
.text-center-all * {
  text-align: center;
}

.text-right {
  text-align: right;
}

.text-left {
  text-align: left;
}

@media only screen and (max-width: 767px) {
  .text-center-sp {
    text-align: center;
  }
}

@media only screen and (max-width: 767px) {
  .text-right-sp {
    text-align: right;
  }
}

@media only screen and (max-width: 767px) {
  .text-left-sp {
    text-align: left;
  }
}

/*
p {
    margin-bottom: 10px;
}
*/
.linkA {
  text-decoration: underline;
  transition: 0.3s;
  color: #666666;
}
.linkA:hover {
  color: #666666;
  text-decoration: underline;
}

@media screen and (min-width: 768px) {
  .sp {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  .pc {
    display: none !important;
  }
}
@media screen and (min-width: 768px) and (max-width: 959px) {
  .notTab {
    display: none !important;
  }
  .tab {
    display: block !important;
  }
}
/*余白*/
.m0 {
  margin: 0;
}

.p0 {
  padding: 0;
}

.mb0 {
  margin-bottom: 0;
}

.mb10 {
  margin-bottom: 10px;
}

.mb20 {
  margin-bottom: 20px;
}

.mb30 {
  margin-bottom: 30px;
}
@media only screen and (max-width: 767px) {
  .mb30 {
    margin-bottom: 20px;
  }
}

.mb40 {
  margin-bottom: 40px;
}
@media only screen and (max-width: 767px) {
  .mb40 {
    margin-bottom: 30px;
  }
}

.mb50 {
  margin-bottom: 50px;
}
@media only screen and (max-width: 767px) {
  .mb50 {
    margin-bottom: 30px;
  }
}

.mb60 {
  margin-bottom: 60px;
}
@media only screen and (max-width: 767px) {
  .mb60 {
    margin-bottom: 40px;
  }
}

.mb70 {
  margin-bottom: 70px;
}
@media only screen and (max-width: 767px) {
  .mb70 {
    margin-bottom: 40px;
  }
}

.mb80 {
  margin-bottom: 80px;
}
@media only screen and (max-width: 767px) {
  .mb80 {
    margin-bottom: 40px;
  }
}

.mb80 {
  margin-bottom: 90px;
}
@media only screen and (max-width: 767px) {
  .mb80 {
    margin-bottom: 50px;
  }
}

.mb100 {
  margin-bottom: 100px;
}
@media only screen and (max-width: 767px) {
  .mb100 {
    margin-bottom: 50px;
  }
}

.mb200 {
  margin-bottom: 200px;
}
@media only screen and (max-width: 767px) {
  .mb200 {
    margin-bottom: 70px;
  }
}

.ml0 {
  margin-left: 0;
}

.mbL {
  margin-bottom: 30%;
}

.mbL2 {
  margin-bottom: 25%;
}

.mbL3 {
  margin-bottom: 20%;
}

.mbL4 {
  margin-bottom: 15%;
}

.mbM {
  margin-bottom: 10%;
}

.mbM2 {
  margin-bottom: 7.5%;
}

.mbM3 {
  margin-bottom: 5%;
}

.mbS {
  margin-bottom: 3.5%;
}

.mbS2 {
  margin-bottom: 2%;
}

.mbS3 {
  margin-bottom: 1%;
}

@media only screen and (max-width: 767px) {
  .mbSpL {
    margin-bottom: 30%;
  }
  .mbSpL2 {
    margin-bottom: 25%;
  }
  .mbSpL3 {
    margin-bottom: 20%;
  }
  .mbSpL4 {
    margin-bottom: 15%;
  }
  .mbSpM {
    margin-bottom: 10%;
  }
  .mbSpM2 {
    margin-bottom: 7.5%;
  }
  .mbSpM3 {
    margin-bottom: 5%;
  }
  .mbSpM4 {
    margin-bottom: 2.5%;
  }
  .mbSpS {
    margin-bottom: 3.5%;
  }
  .mbSpS2 {
    margin-bottom: 2%;
  }
  .mbSpS3 {
    margin-bottom: 1%;
  }
  .mbSp0 {
    margin-bottom: 0 !important;
  }
}
.mbOm {
  margin-bottom: 80px;
}

.mbOm2 {
  margin-bottom: 60px;
}
.mbOm2Sp {
  margin-bottom: 40px;
}

.mbOs {
  margin-bottom: 30px;
}
.mbOsSp {
  margin-bottom: 20px;
}

.mbOs2 {
  margin-bottom: 20px;
}
.mbOs2Sp {
  margin-bottom: 10px;
}

/*flex・グリッド系*/
.flex {
  display: flex;
}

.justCenter {
  justify-content: center;
}

.justEnd {
  justify-content: flex-end;
}

.justBetween {
  justify-content: space-between;
}

.alignCenter {
  align-items: center;
}

.alignStart {
  align-items: flex-start;
}

.alignEnd {
  align-items: flex-end;
}

.flexReverse {
  flex-flow: row-reverse;
}

.flexWrap {
  flex-wrap: wrap;
}

.col {
  padding-left: 15px;
  padding-right: 15px;
}

.flexCol {
  width: 100%;
}

.col1 {
  width: 100%;
}

.col2 {
  width: 50%;
}

.col3 {
  width: 33.3333%;
}

.col-3 {
  width: 66.6666%;
}

.col4 {
  width: 25%;
}

.col-4 {
  width: 75%;
}

.col5 {
  width: 20%;
}

.col-5 {
  width: 80%;
}

.col6 {
  width: 16.666%;
}

.col-6 {
  width: 83.333%;
}

.col3-2 {
  width: 60%;
}

.col-3-2 {
  width: 40%;
}

.col1em {
  -moz-column-gap: 1em;
       column-gap: 1em;
}

@media screen and (max-width: 767px) {
  .flexSplit {
    width: 100%;
  }
  .flexPc {
    display: block;
  }
  .flexWrapSp {
    flex-wrap: wrap;
  }
  .bgFixed {
    background-attachment: unset;
  }
  .flexReverse {
    flex-flow: row;
  }
  .flexSp {
    display: flex;
  }
  .alignCenterSp {
    align-items: center;
  }
  .flexSpRev {
    flex-direction: column-reverse;
  }
  .colSp1 {
    width: 100%;
  }
  .colSp2 {
    width: 50%;
  }
  .colSp3 {
    width: 33.3333%;
  }
  .colSp-3 {
    width: 66.6666%;
  }
  .colSp4 {
    width: 25%;
  }
  .colSp-4 {
    width: 75%;
  }
  .colSp5 {
    width: 20%;
  }
  .colSp-5 {
    width: 80%;
  }
  .colSp6 {
    width: 16.666%;
  }
  .colSp-6 {
    width: 83.333%;
  }
  .colSp3-2 {
    width: 60%;
  }
  .colSp-3-2 {
    width: 40%;
  }
}
@media screen and (min-width: 768px) and (max-width: 959px) {
  .colMd1 {
    width: 100%;
  }
  .colMd2 {
    width: 50%;
  }
  .colMd3 {
    width: 33.3333%;
  }
  .colMd-3 {
    width: 66.6666%;
  }
  .colMd4 {
    width: 25%;
  }
  .colMd-4 {
    width: 75%;
  }
  .colMd5 {
    width: 20%;
  }
  .colMd-5 {
    width: 80%;
  }
  .colMd6 {
    width: 16.666%;
  }
  .colMd-6 {
    width: 83.333%;
  }
  .colMd3-2 {
    width: 60%;
  }
  .colMd-3-2 {
    width: 40%;
  }
}
/*横幅*/
.cnt {
  width: 100%;
  max-width: 1180px;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media only screen and (max-width: 767px) {
  .cnt {
    padding-left: 30px;
    padding-right: 30px;
  }
}

.w100 {
  width: 100%;
}

.cntS2 {
  max-width: 690px;
  margin-right: auto;
  margin-left: auto;
}

.cntS {
  max-width: 720px;
  margin-right: auto;
  margin-left: auto;
}

.cntM {
  max-width: 840px;
  margin-right: auto;
  margin-left: auto;
}

.cntL {
  max-width: 1050px;
  margin-right: auto;
  margin-left: auto;
}

.cntXl {
  max-width: 1740px;
  margin-right: 2%;
  margin-left: 2%;
}
@media screen and (min-width: 1740px) {
  .cntXl {
    margin-right: auto;
    margin-left: auto;
  }
}

.cntWide {
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
}

.rw {
  margin-left: -15px;
  margin-right: -15px;
}

:root {
  --spaceSize: clamp(80px, 10vw, 160px);
  --spaceSizeWide: clamp(160px, 20vw, 240px);
}

.padding {
  padding-top: var(--spaceSize);
  padding-bottom: var(--spaceSize);
  padding-top: 125px;
  padding-bottom: 125px;
}
@media only screen and (max-width: 767px) {
  .padding {
    padding-top: 70px;
    padding-bottom: 70px;
  }
}

.paddingS {
  padding-top: 60px;
  padding-bottom: 60px;
}
.paddingSBottom {
  padding-bottom: 60px;
}
@media only screen and (max-width: 767px) {
  .paddingSBottom {
    padding-bottom: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .paddingSSp {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .paddingSSpTop {
    padding-top: 30px;
  }
  .paddingSSpBottom {
    padding-top: 30px;
  }
}

.paddingS2 {
  padding-top: 30px;
  padding-bottom: 30px;
}
.paddingS2Bottom {
  padding-bottom: 30px;
}
@media only screen and (max-width: 767px) {
  .paddingS2Sp {
    padding-top: 15px;
    padding-bottom: 15px;
  }
  .paddingS2SpTop {
    padding-top: 15px;
  }
  .paddingS2SpBottom {
    padding-top: 15px;
  }
}

.paddingW {
  padding-top: var(--spaceSizeWide);
  padding-bottom: var(--spaceSizeWide);
}

.pb0 {
  padding-bottom: 0;
}
@media only screen and (max-width: 767px) {
  .pb0Sp {
    padding-bottom: 0;
  }
}

.pt0 {
  padding-top: 0;
}
@media only screen and (max-width: 767px) {
  .pt0Sp {
    padding-top: 0;
  }
}

.margin {
  margin-top: var(--spaceSize);
  margin-bottom: var(--spaceSize);
}

.marginW {
  margin-top: var(--spaceSizeWide);
  margin-bottom: var(--spaceSizeWide);
}

/*背景系*/
.bgImg {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.bgImgHeight {
  padding-bottom: 67%;
}

.bgImgParallax {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}

.bgFixed {
  background-attachment: fixed;
}
@media only screen and (max-width: 767px) {
  .bgFixed {
    background-attachment: inherit;
  }
}

.bgImgCircle {
  border-radius: 50%;
  padding-bottom: 100%;
}

.bgBlur {
  position: relative;
  z-index: 0;
  overflow: hidden;
}

.bgBlur:before {
  content: "";
  background: inherit;
  -moz-filter: blur(5px);
  -o-filter: blur(5px);
  -ms-filter: blur(5px);
  filter: blur(5px);
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  z-index: -1;
}

.bgWhite {
  background-color: #ffffff;
}

.bgZoom {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.bgZoomImg {
  position: absolute;
  width: 100%;
  transition: all 0.5s ease-out;
  transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  will-change: transform;
  height: 100%;
  top: 0;
  left: 0;
}

a:hover .bgZoomImg {
  transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0.9);
}

.bgZoomText {
  position: relative;
  pointer-events: none;
  width: 100%;
  z-index: 1;
}

/*テーブルboostrap*/
table {
  border-collapse: collapse;
}

.table {
  width: 100%;
  margin-bottom: 1rem;
  color: #212529;
}
.table th {
  text-align: inherit;
  font-weight: normal;
}
.table td,
.table th {
  padding: 1.2rem;
  vertical-align: top;
  border-top: 1px solid #dee2e6;
}
.table thead th {
  vertical-align: bottom;
  border-bottom: 2px solid #dee2e6;
}

.table-striped tbody tr:nth-of-type(odd) {
  background-color: #e8edf0;
}

.table-bordered {
  border: 1px solid #dee2e6;
}
.table-bordered td,
.table-bordered th {
  border: 1px solid #dee2e6;
}

/*マスクアニメーション*/
.maskCenter .maskWrap {
  margin-left: auto;
  margin-right: auto;
}

.maskWrap {
  display: table;
  overflow: hidden;
}

.maskWrap .mask {
  display: table;
  position: relative;
  margin-bottom: 0.25em;
  left: -100%;
  overflow: hidden;
}

.maskWrap .maskBg {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #ae9373;
}

/*角丸*/
.radiusS {
  border-radius: 5px;
}

.radiusM {
  border-radius: 10px;
}

.radiusL {
  border-radius: 20px;
}

.radiusXl {
  border-radius: 30px;
}

/*影*/
.shadowS {
  box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 50px;
}
@media only screen and (max-width: 767px) {
  .shadowS {
    box-shadow: rgba(0, 0, 0, 0.2) 0px 18px 50px -10px;
  }
}

.shadowM {
  box-shadow: rgba(0, 0, 0, 0.2) 0px 18px 50px -10px;
}
@media only screen and (max-width: 767px) {
  .shadowM {
    box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
  }
}

.shadowL {
  box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
}
@media only screen and (max-width: 767px) {
  .shadowL {
    box-shadow: rgba(0, 0, 0, 0.2) 0px 30px 90px;
  }
}

.shadowLL {
  box-shadow: rgba(0, 0, 0, 0.4) 0px 30px 90px;
}

/*FVスライダー(CSS)*/
.mainImgBox,
.mainImg {
  padding-bottom: 65vw;
}
@media only screen and (max-width: 767px) {
  .mainImgBox,
  .mainImg {
    padding-bottom: 120vw;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .mainImgBox,
  .mainImg {
    padding-bottom: 95vw;
  }
}

.mainImgBox {
  overflow: hidden;
  position: relative;
  z-index: -1;
}

.mainImg {
  z-index: 10;
  opacity: 0;
  width: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  left: 0;
  top: 0;
  /*1枚6秒で×枚数*/
  animation: anime 18s 0s infinite;
}

/*2枚目以降6秒遅れてアニメーションスタート*/
.mainImg:nth-of-type(2) {
  animation-delay: 6s;
}

.mainImg:nth-of-type(3) {
  animation-delay: 12s;
}

/*
.mainImg:nth-of-type(4) {
    animation-delay: 18s;
}
.mainImg:nth-of-type(5) {
    animation-delay: 24s;
}

.mainImg:nth-of-type(6) {
    animation-delay: 30s;
}
*/
@keyframes anime {
  0% {
    opacity: 0;
  }
  /*3秒：フェードイン.3/alls*/
  16% {
    opacity: 1;
  }
  /*6秒：次のスライド再生.6/alls*/
  33% {
    opacity: 1;
  }
  /*9秒：フェードアウト&次のスライドフェードイン*/
  50% {
    opacity: 0;
    transform: scale(1.2);
    z-index: 9;
  }
  100% {
    opacity: 0;
  }
}
/*FVスライダー(CSS)ここまで*/
/*==================================================
 * 独自クラス（このサイトだけ）
 *================================================*/
/*線系*/
.titleLine {
  /*
  background: linear-gradient(transparent 50%, #f4d862 0%);
  display: inline;
  */
  position: relative;
  display: inline-block;
  z-index: 10;
  /*
  &.white{
      background: linear-gradient(transparent 70%, $subColorDeep 0%);
  }
  */
}
.titleLine:after {
  content: "";
  display: inline-block;
  background-color: #ecfe02;
  position: absolute;
  bottom: 0;
  left: -2.5%;
  width: 105%;
  height: 0.3em;
  z-index: 0;
}
.titleLine.sub {
  background: linear-gradient(transparent 70%, #0098a9 0%);
}

.titleBd {
  position: relative;
  margin-bottom: 7rem;
  display: inline-block;
}
.titleBd:before {
  position: absolute;
  content: " ";
  display: block;
  width: 5rem;
  margin: 0 auto;
  text-align: center;
  left: 0;
  right: 0;
  bottom: -1.5rem;
  height: 2px;
  background-color: #666666;
  border-radius: 50px;
}
.titleBd.compColor:before {
  background-color: #ecfe02;
}
.titleBd.white:before {
  background-color: #fff;
}
.titleBd.sub {
  display: block;
}
.titleBd.sub:before {
  width: 23rem;
  height: 2px;
  bottom: -7px;
}
@media only screen and (max-width: 767px) {
  .titleBd {
    margin-bottom: 3rem;
  }
  .titleBd:before {
    width: 2.5rem;
  }
}

.titleBdCenter {
  position: relative;
  display: inline-block;
  margin-bottom: 1em;
}
.titleBdCenter:after {
  content: "";
  position: absolute;
  bottom: -10px;
  display: inline-block;
  width: 80px;
  height: 4px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #666666;
  border-radius: 2px;
}
.titleBdCenter.mini:after {
  bottom: -15px;
  width: 40px;
  height: 1.5px;
  border-radius: 0px;
}

.titleBdLeft {
  display: flex;
  align-items: center;
}
.titleBdLeft:before {
  content: "";
  flex-grow: 1;
  height: 1px;
  background: #666666;
  display: block;
  margin-right: 1.5rem;
  max-width: 3rem;
}
.titleBdLeft.white:before {
  background: #fff;
}

.titleBdLight {
  border-bottom: 1px solid #666666;
  display: inline-block;
}

.bdBox {
  border: 2px solid #666666;
}

/*==================================================
 * header
 *================================================*/
/*------------モーダルウィンドウ------------*/
/*オーバーレイメニュー*/
.overRayBox {
  position: fixed;
  display: table;
  top: 0;
  right: 0;
  width: 400px;
  height: 100%;
  transition: all 0.5s;
  visibility: hidden;
  opacity: 0;
  z-index: 999;
}
@media only screen and (max-width: 767px) {
  .overRayBox {
    width: 100%;
    max-width: 500px;
    margin-top: 67px;
  }
}
.overRayBox > ul {
  vertical-align: middle;
  width: 100%;
  display: block;
}
.open .overRayBox {
  cursor: url(../images/cross.svg), auto;
  visibility: visible;
  opacity: 1;
}

html.open {
  overflow-y: hidden;
}

/*ハンバーガーメニュー*/
.menu-btn {
  cursor: pointer;
  position: relative;
  z-index: 1000;
  background: transparent;
  border: none;
}

.menu-trigger,
.menu-trigger span {
  display: inline-block;
  transition: all 0.4s;
  box-sizing: border-box;
}

:root {
  --menuTrigeHeight: 28px;
}

.menu-trigger {
  position: relative;
  width: 34px;
  height: var(--menuTrigeHeight);
}
@media only screen and (max-width: 767px) {
  .menu-trigger {
    width: 18px;
    height: 14px;
  }
}
.menu-trigger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #000000;
}
.menu-trigger span:nth-of-type(1) {
  top: 0;
}
.menu-trigger span:nth-of-type(2) {
  top: calc(var(--menuTrigeHeight) / 2);
}
@media only screen and (max-width: 767px) {
  .menu-trigger span:nth-of-type(2) {
    top: 7px;
  }
}
.menu-trigger span:nth-of-type(3) {
  bottom: 0;
}
.menu-trigger.active span {
  background-color: #000;
}
.menu-trigger.active span:nth-of-type(1) {
  transform: translateY(10px) rotate(-45deg);
}
@media only screen and (max-width: 767px) {
  .menu-trigger.active span:nth-of-type(1) {
    transform: translateY(4px) rotate(-45deg);
  }
}
.menu-trigger.active span:nth-of-type(2) {
  left: 50%;
  opacity: 0;
  animation: active-menu-bar02 0.8s forwards;
}
.menu-trigger.active span:nth-of-type(3) {
  transform: translateY(-16px) rotate(45deg);
}
@media only screen and (max-width: 767px) {
  .menu-trigger.active span:nth-of-type(3) {
    transform: translateY(-9px) rotate(45deg);
  }
}
.menu-trigger.active span:nth-of-type(4) {
  background: none !important;
}

@keyframes active-menu-bar02 {
  100% {
    height: 0;
  }
}
/*------------モーダルウィンドウ終わり------------*/
/*==================================================
 * footer
 *================================================*/
/*スマホfooter追従問い合わせ*/
.footerTelSpFlexLi {
  width: 50%;
  border-right: 1px solid #fff;
  border-top: 1px solid #fff;
  background-color: #a9946c;
}
.footerTelSpFlexLi:last-child {
  border-right: none;
  background-color: #666666;
}
.footerTelSpFlexLi a {
  display: block;
  padding: 9px 0;
}
.footerTelSpFlexLi a i {
  font-size: 16px;
}

.footerTelSpText {
  font-size: 16px;
  line-height: 1.5;
}

.footerTelSp {
  width: 100%;
  position: fixed;
  bottom: 0;
  z-index: 100;
}

/*フッター追従コンタクト*/
.fixBarContact {
  padding: 1rem 2rem;
}

.fixBar {
  position: fixed;
  z-index: 10;
  right: 2%;
  bottom: 2%;
}
.fixBar .button {
  padding: 0.7rem 3rem;
  border: 1px solid #666666;
}

.fixBarA {
  margin-right: 10px;
}
.fixBarA:hover {
  background-color: #fff;
  color: #666666;
}

.fixBarTop {
  height: 44px;
  width: 44px;
  cursor: pointer;
  border: 1px solid #666666;
  border-radius: 50px;
}
.fixBarTop:hover {
  background-color: #fff;
  border: 1px solid #666666;
  color: #666666;
}

.fixBar i,
.fixBar span {
  vertical-align: middle;
}

.fixBarTop i {
  margin-top: 14px;
}

/*==================================================
 * トップページ
 *================================================*/
/*Q&Aここから*/
.topQaBoxUl li:nth-child(2) hr {
  border-top: 1px solid #dadada;
}

.topQaBoxUl li {
  display: inline-block;
  vertical-align: middle;
}

.topQaBoxDl {
  width: 48%;
  display: inline-block;
  margin-right: 1%;
  vertical-align: top;
}

.topQaBoxDl dd {
  display: none;
  margin-top: 3%;
}

.topQaBoxDl dt {
  font-weight: normal;
}

.topQaBoxDl dt:hover {
  background: rgba(242, 203, 149, 0.3);
  border-radius: 5px;
  cursor: pointer;
}

.topQaBoxUl li:nth-child(3) {
  width: 74%;
}

.topQaBoxUl li:nth-child(1) {
  margin-right: 2%;
}

.topQaBoxUl li:nth-child(2) {
  width: 8%;
  margin-right: 2%;
}

/*Q&Aここまで*/
@media screen and (max-width: 767px) {
  /*Q&Aのスマホここから*/
  .topQaBoxDl {
    width: 100%;
  }
  /*Q&Aのスマホここまで*/
}
/*==================================================
 * 下層ページ
 *================================================*/
/*共通部分------------------------------------*/
/*パンくず*/
/*パンくず終わり*/
/*about-us------------------------------------*/
/*残す--ここから*/
.pageAboutCompanyUl ul {
  display: flex;
}
.pageAboutCompanyUl li {
  padding: 0.5em 0;
}
@media only screen and (max-width: 767px) {
  .pageAboutCompanyUl li {
    padding: 0.8em 0;
    font-size: 13px;
  }
}
.pageAboutCompanyUl li:nth-child(1) {
  width: 30%;
  text-align: left;
  font-weight: bold;
}
@media only screen and (max-width: 767px) {
  .pageAboutCompanyUl li:nth-child(1) {
    font-size: 15px;
  }
}
.pageAboutCompanyUl li:nth-child(2) {
  width: 70%;
}
.fa-map-marker {
  color: #d9534f;
  font-size: 20px;
  margin-left: 1%;
}

/*残す--ここまで*/
/*お問い合わせページ------------------------------------*/
.cform {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.cform tr {
  margin-bottom: 1.5em;
  display: block;
}
.cform tr th,
.cform tr td {
  letter-spacing: 0.01em;
  display: block;
  width: 100%;
  text-align: left;
}
.cform tr th {
  margin-bottom: 0.5em;
}
.cform label {
  margin-right: 1.5em;
}
.cform label span {
  vertical-align: middle;
  line-height: 1;
  display: inline-block;
}
.cform option,
.cform textarea,
.cform input[type=text],
.cform input[type=email],
.cform input[type=search],
.cform input[type=url] {
  width: 100%;
  border: 1px solid transparent;
  border-radius: 2px;
  padding: 1em;
  font-size: 15px;
  letter-spacing: 0.07em;
  line-height: 1.4;
}
.cform option::-moz-placeholder, .cform textarea::-moz-placeholder, .cform input[type=text]::-moz-placeholder, .cform input[type=email]::-moz-placeholder, .cform input[type=search]::-moz-placeholder, .cform input[type=url]::-moz-placeholder {
  color: #c1c1c1;
}
.cform option::placeholder,
.cform textarea::placeholder,
.cform input[type=text]::placeholder,
.cform input[type=email]::placeholder,
.cform input[type=search]::placeholder,
.cform input[type=url]::placeholder {
  color: #c1c1c1;
}
@media only screen and (max-width: 767px) {
  .cform tr {
    margin-bottom: 2em;
  }
}

.mwform-radio-field input {
  margin: 0;
  margin-right: 0 !important;
  display: inline-block;
  vertical-align: middle;
}

.required-srt {
  color: #f04876;
  margin-left: 0.7em;
}

.cform [type=submit] {
  display: inline-block;
  font-size: 20px;
  padding: 10px 30px;
  text-decoration: none;
  background: #ff8f00;
  color: #fff;
  border-bottom: solid 4px #b17c00;
  border-radius: 3px;
}

.mw_wp_form .horizontal-item + .horizontal-item {
  margin-left: 0 !important;
}

.contactAlertBox {
  border: 1px solid #dcdcdc;
  padding: 8% 5%;
  margin: 10% 0;
}
@media only screen and (max-width: 767px) {
  .contactAlertBox {
    padding: 12% 5%;
    margin: 13% 0;
  }
}

.contactAlertTitle {
  font-size: 16px;
  text-align: center;
  margin-bottom: 1.5em;
}

.submit-btn {
  text-align: center;
  margin-top: 4%;
}
.submit-btn input {
  transition: 0.3s;
  font-size: 16px;
  letter-spacing: 0.07em;
  padding: 1.25em 2em;
  background-color: #2c2c2c;
  color: #fff;
  cursor: pointer;
  border: 1px solid #2c2c2c;
  width: 100%;
}
.submit-btn input:hover {
  color: #2c2c2c;
  background-color: #fff;
}
@media only screen and (max-width: 767px) {
  .submit-btn input {
    font-size: 14px;
  }
}

.contactHr {
  margin: 7% 0;
}
@media only screen and (max-width: 767px) {
  .contactHr {
    margin: 12% 0;
  }
}

/*下層ページ共通------------------------------------*/
/*投稿詳細ページ------------------------------------*/
li.widget {
  list-style-type: none;
  margin-bottom: 20%;
}

.widgettitle {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 3%;
}

li.widget li {
  color: #a7a7a7;
  margin-bottom: 3%;
}

/*タグクラウド*/
.tagCloud li {
  list-style: none;
  background: #db4a39;
  display: inline-block;
  color: #fff;
  padding: 0.5% 2%;
  font-size: 12px;
}

.tagCloud li .glyphicon {
  right: 5px;
}

.tagCloud li a {
  color: #fff;
  font-weight: 100;
  text-decoration: none;
}

.tagcloud a {
  color: #808080;
  border: 1px solid #808080;
  border-radius: 25px;
  padding: 2%;
  margin-bottom: 5%;
  display: inline-block;
}

.entry {
  line-height: 1.8;
  letter-spacing: 0.15em;
  float: none;
  max-width: 870px;
  margin-left: auto;
  margin-right: auto;
}
.entry figcaption {
  font-size: 13px;
  color: gray;
}
.entry a {
  display: inline;
  text-decoration: underline;
  word-break: break-all;
  word-wrap: break-word;
  color: #33bad4;
}
.entry blockquote {
  padding: 2em 4em;
  box-sizing: border-box;
  border: 1px solid #e6e6e6;
  color: #7b7b7b;
  background-color: #f6f7f9;
  font-style: italic;
  margin-bottom: 1.5em;
}
.entry blockquote p {
  font-size: 14px;
}
.entry strong {
  font-style: normal;
  font-weight: bold;
  background: linear-gradient(transparent 40%, #fff7c0 40%);
}
.entry p {
  margin: 0.5em 0 1.3em 0;
  line-height: 2;
  letter-spacing: 0.2em;
  font-size: 16px;
}
@media only screen and (max-width: 767px) {
  .entry p {
    font-size: 14px;
    line-height: 1.9;
  }
}
.entry h2 span,
.entry h3 span,
.entry h4 span,
.entry h5 span {
  font-weight: bold;
}
.entry h2 {
  font-size: 21px;
  margin: 8% auto 3%;
  background-color: #f2f2f2;
  padding: 0.5em 1em;
  border-radius: 3px;
  font-weight: bold;
}
@media only screen and (max-width: 767px) {
  .entry h2 {
    font-size: 18px;
    margin: 12% auto 6%;
  }
}
.entry h3 {
  position: relative;
  padding-bottom: 0.3em;
  border-bottom: 1.5px solid #ccc;
  font-size: 18px;
  margin: 4% auto 3%;
  color: #666666;
  font-weight: bold;
  padding-left: 0.5em;
}
@media only screen and (max-width: 767px) {
  .entry h3 {
    font-size: 16px;
    padding-bottom: 0.5em;
    margin: 12% auto 6%;
  }
}
.entry h3::after {
  position: absolute;
  bottom: -2px;
  left: 0;
  z-index: 2;
  content: "";
  width: 20%;
  height: 3px;
  background-color: #666666;
}
.entry h4 {
  margin: 3% auto 3%;
  border-bottom: 1px solid #666666;
  padding-bottom: 0.4em;
  color: #666666;
  font-weight: bold;
  font-size: 18px;
  padding-left: 0.5em;
}
@media only screen and (max-width: 767px) {
  .entry h4 {
    margin: 15% auto 8%;
  }
}
.entry table td:nth-child(1) {
  background-color: #f7f6f9;
  font-weight: bold;
  color: #515151;
}
.entry table th,
.entry table td {
  padding: 2rem 3rem;
}
@media only screen and (max-width: 767px) {
  .entry table th,
  .entry table td {
    padding: 1rem 2rem;
    width: 100%;
    display: block;
    border-bottom: 1px solid #dad8de;
  }
}
.entry table tr {
  border-bottom: 1px solid #dad8de;
}
@media only screen and (max-width: 767px) {
  .entry table tr {
    border-bottom: none;
  }
}
.entry table tr:first-child {
  border-top: 1px solid #dad8de;
}
.entry ul {
  margin-bottom: 2%;
}
.entry li {
  list-style-type: none;
  line-height: 1.7;
  font-weight: normal;
  margin-bottom: 0.3em;
  position: relative;
  padding-left: 1.5em;
  font-weight: bold;
}
.entry li:before {
  font-family: "Font Awesome 5 Pro";
  content: "\f14a";
  color: #666666;
  position: absolute;
  left: 0;
  font-weight: 400;
}

.entry h5 {
  font-weight: bold;
  margin-bottom: 10px;
}

/*目次*/
.toc_number {
  font-family: var(--fontNum);
  font-size: 18px;
  line-height: 1;
  color: #cacaca;
  font-weight: normal;
}

#toc_container {
  background: #ececec;
  border: none !important;
  margin: 0 auto;
  padding: 4% 6%;
  border-radius: 10px;
}
#toc_container a {
  color: #666666;
}

.toc_list li:before {
  display: none;
}

.toc_title {
  border-bottom: 1px solid #666666;
  font-size: 21px;
  font-weight: bold;
  padding-bottom: 0.3em;
}

.toc_toggle {
  font-size: 14px;
}

.wp-caption {
  max-width: 100% !important;
  padding: 2%;
  margin: auto auto 3% auto;
}

.wp-caption-text {
  background: rgba(195, 184, 177, 0.67);
  width: 100%;
  text-align: left;
  padding: 1% 3%;
  word-wrap: break-word;
  font-size: 10px;
  color: white !important;
  position: relative !important;
  z-index: 1;
  top: -35px;
  display: block;
  left: 5%;
}

.wp-caption-text a {
  color: white;
}

@media screen and (max-width: 767px) {
  .wp-caption-text {
    background: hsla(330, 50%, 60%, 0.48);
    width: 100%;
    text-align: left;
    padding: 1% 3%;
    word-wrap: break-word;
    font-size: 10px;
    color: white !important;
    position: relative !important;
    z-index: 1;
    top: -50px;
    display: block;
    left: 5%;
  }
}
.entry img {
  margin: 2% auto 5%;
}

/*リンクカードプラグイン*/
.lkc-title-text {
  font-weight: normal;
  letter-spacing: 0.15em;
  transition: 0.3s;
}
a:hover .lkc-title-text {
  color: #666666;
  text-decoration: none;
}
@media only screen and (max-width: 767px) {
  .lkc-title-text {
    font-size: 14px;
    line-height: 1.5;
  }
}

.lkc-excerpt {
  display: none;
}

.lkc-url {
  display: none;
}

.lkc-external-wrap,
.lkc-internal-wrap {
  box-shadow: none;
  border: 2px solid #666666;
  border-radius: 10px;
  background-color: #808080;
}

.lkc-external-wrap,
.lkc-internal-wrap,
.lkc-this-wrap {
  max-width: none;
}

.lkc-thumbnail-img {
  border: none;
  box-shadow: none;
  border-radius: 10px;
  transition: 0.3s;
}
a:hover .lkc-thumbnail-img {
  opacity: 0.7;
}

.lkc-thumbnail {
  margin-right: 3%;
}

.lkc-date {
  position: absolute;
  bottom: 10%;
  right: 3%;
  color: #666666;
  font-family: var(--fontNum);
  font-size: 14px;
  display: none !important;
}

.lkc-info {
  background-color: #666666;
  display: inline-block !important;
  position: absolute;
  right: 3%;
  top: -5%;
  padding: 0.5em 1em;
  border-radius: 5px;
  z-index: 1;
}
@media only screen and (max-width: 767px) {
  .lkc-info {
    top: -11%;
  }
}

.lkc-domain {
  color: #fff;
}

.lkc-card {
  padding: 2rem 1rem 1rem;
}
.lkc-card img {
  vertical-align: middle;
}

.lkc-content {
  overflow: auto !important;
  height: inherit !important;
}

.lkc-sns-fb {
  padding: 1%;
}

/*コメント*/
div#respond textarea,
div#respond input {
  width: 100%;
  border-radius: 5px;
  border: 1px solid #cacaca;
  padding: 10px;
}

#respond input#submit {
  background: #0a0a0a;
  color: #fff;
  border-radius: 0;
  font-size: 12px;
  transition: 0.3s;
}

#respond input#submit:hover {
  background: #cc6699;
  transition: 0.3s;
}

/*記事詳細-----------------------------------*/
/*記事コンテンツ周り*/
.singleColumnArticle {
  margin-bottom: 10%;
}

.singleColumnArticleContent {
  margin-top: 5%;
}

.singleColumnTitle {
  border-bottom: 1px solid #666666;
  padding-bottom: 0.4em;
  margin-bottom: 0.8em;
  font-size: 21px;
  line-height: 1.5;
  letter-spacing: 0.15em;
}
@media only screen and (max-width: 767px) {
  .singleColumnTitle {
    font-size: 18px;
  }
}

.singleColumnInfoUl .date {
  margin-right: 1em;
  font-family: var(--fontNum);
  font-size: 12px;
  color: #b3b3b3;
}
.singleColumnInfoUl .cateUl {
  display: inline-block;
}
.singleColumnInfoUl .cateUl li {
  display: inline-block;
  font-size: 12px;
  background-color: var(--mainColor);
  color: #fff;
  border-radius: 5px;
  padding: 0.6em 0.8em;
  line-height: 1;
}
@media only screen and (max-width: 767px) {
  .singleColumnInfoUl .cateUl li {
    font-size: 11px;
  }
}
@media only screen and (max-width: 767px) {
  .singleColumnInfoUl .cateUl li {
    font-size: 12px;
  }
}

/*この記事をシェアするボタン*/
.singleColumnShare {
  padding: 3% 6%;
}
@media only screen and (max-width: 767px) {
  .singleColumnShare {
    padding: 6% 9%;
  }
}

.singleColumnShareButton {
  padding: 0.7rem 1rem;
  width: 20%;
  margin-right: 3%;
  text-align: center;
  transition: 0.3s;
}
@media only screen and (max-width: 959px) {
  .singleColumnShareButton {
    width: 45%;
    margin-right: 2.5%;
  }
}
.singleColumnShareButton > * {
  vertical-align: middle;
}
@media only screen and (max-width: 767px) {
  .singleColumnShareButton > * {
    font-size: 12px;
  }
}
.singleColumnShareButton i {
  font-size: 22px;
  margin-right: 0.5rem;
}
@media only screen and (max-width: 767px) {
  .singleColumnShareButton i {
    font-size: 16px;
  }
}
.singleColumnShareButton.twitter {
  background: #1da1f2;
  border: 1px solid #1da1f2;
}
.singleColumnShareButton.twitter:hover {
  background: #fff;
  color: #1da1f2;
}
.singleColumnShareButton.facebook {
  background: #1877f2;
  border: 1px solid #1877f2;
}
.singleColumnShareButton.facebook:hover {
  background: #fff;
  color: #1877f2;
}

.singleColumnShareTitle {
  width: 50%;
}
@media only screen and (max-width: 959px) {
  .singleColumnShareTitle {
    width: 100%;
    margin-bottom: 6% !important;
  }
}

/*この記事を書いた人*/
.singleColumnWriterImg {
  padding-bottom: 100%;
  border-radius: 50%;
}

@media only screen and (max-width: 767px) {
  .singleColumnWriterImgBox {
    max-width: 140px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 4%;
  }
}

.singleColumnWriter {
  padding: 3% 3%;
  margin: 6% 0 6% 0;
  border: 1px solid #666666;
}
@media only screen and (max-width: 767px) {
  .singleColumnWriter {
    padding: 8%;
    margin: 12% 0 6% 0;
  }
}

.singleColumnWriterTitle {
  border-bottom: 1px solid #666666;
}

.singleColumnWriterButton {
  background: #fff;
  border: 1px solid #666666;
  border-radius: 25px;
  padding: 0.25em;
  max-width: 280px;
  display: block;
  transition: 0.3s;
  color: #666666;
}
.singleColumnWriterButton:hover {
  background: #666666;
  color: #fff;
}

.sidebarWriterSns li {
  display: inline-block;
  margin-right: 3%;
  margin-bottom: 4%;
}
.sidebarWriterSns li a {
  border: 1px solid #d2d2d2;
  padding: 0.4em 1em;
  border-radius: 35px;
  background: #fff;
  letter-spacing: 0.05em;
}
.sidebarWriterSns li a:hover {
  background-color: #f1f1f1;
}
.sidebarWriterSns li a .fa-instagram {
  color: #fd1d1d;
}
.sidebarWriterSns li a .fa-twitter {
  color: #00acee;
}
.sidebarWriterSns li a .fa-facebook {
  color: #3b5998;
}
.sidebarWriterSns li a .fa-comment {
  color: #00b900;
}

/*次のページを見る*/
.singleColumnPreNextBox {
  padding: 5%;
  position: relative;
  transition: 0.3s;
  background-color: #ececec;
  border-radius: 10px;
}
.singleColumnPreNextBox.pre {
  margin-right: 1.5%;
}
.singleColumnPreNextBox.next {
  margin-left: 1.5%;
}

.singleClumnPreNextDescri {
  color: #727171;
}

.singleColumnPrevNextArrow {
  position: absolute;
  top: 20px;
  right: 15px;
  width: 33px;
  height: 1px;
  background: #727171;
}
.singleColumnPrevNextArrow::after {
  content: "";
  position: absolute;
  top: -4px;
  left: 2px;
  width: 1px;
  height: 5px;
  border-top: 1px solid #727171;
  border-left: 1px solid #727171;
  transform: rotate(45deg);
}
.next .singleColumnPrevNextArrow {
  transform: scale(-1, 1);
  left: 15px;
  right: auto;
}

/*アーカイブページ------------------------------------*/
.cmNewsListUl {
  display: flex;
  flex-wrap: wrap;
}
.cmNewsListUl > li {
  width: 46%;
  margin: 0 2%;
  margin-bottom: 6%;
}
@media only screen and (max-width: 767px) {
  .cmNewsListUl > li {
    width: 100%;
    margin: 0 2%;
    margin-bottom: 10%;
  }
}

.cmNewsListCard {
  transition: 0.3s;
}
a:hover .cmNewsListCard {
  opacity: 0.7;
}

.cmNewsTitle {
  font-size: 16px;
  line-height: 1.4;
  border-bottom: 1px solid #808080;
  padding-bottom: 0.5em;
  margin-bottom: 0.5em;
}
@media only screen and (max-width: 767px) {
  .cmNewsTitle {
    font-size: 16px;
    padding-bottom: 0.5em;
    margin-bottom: 0.5em;
  }
}

.cmNewsDescri {
  font-size: 13px;
  margin-bottom: 3%;
  color: #a0a0a0;
}
@media only screen and (max-width: 767px) {
  .cmNewsDescri {
    font-size: 12px;
    line-height: 1.5;
  }
}

.cmNewsListImg {
  transition: 0.3s;
  padding-bottom: 70%;
}
a:hover .cmNewsListImg {
  transform: scale(1.1);
}

.cmNewsListImgWrap {
  overflow: hidden;
  margin-bottom: 6%;
}

.cmNewsListInfoUl li {
  margin-right: 0.5em;
  display: inline-block;
  font-size: 12px;
  background-color: var(--mainColor);
  color: #fff;
  border-radius: 5px;
  padding: 0.6em 0.8em;
  line-height: 1;
}
@media only screen and (max-width: 767px) {
  .cmNewsListInfoUl li {
    font-size: 11px;
  }
}

/*Pagenation*/
.pagenation {
  margin: 1em 0;
}
.pagenation ul {
  display: flex;
  justify-content: center;
}
.pagenation li {
  font-family: var(--fontEn);
  font-size: 18px;
  margin: 0 1%;
  color: #fff;
  background: #666666;
}
.pagenation li.active {
  cursor: not-allowed;
  color: #000;
  background: #f2f2f2;
  padding: 0.5em 1em;
}
.pagenation li.prev {
  display: none;
}
.pagenation li.next {
  display: none;
}
.pagenation li a {
  display: block;
  padding: 0.5em 1em;
  transition: 0.3s;
}
.pagenation li a:hover {
  background: #808080;
}
@media only screen and (max-width: 767px) {
  .pagenation li {
    font-size: 1.5rem;
  }
  .pagenation li.active {
    padding: 7px 12px;
  }
  .pagenation li a {
    padding: 7px 12px;
  }
}

/*ページャー、ページネーション------------------------------------*/
.page-numbers {
  padding: 0.7% 1%;
}

span.page-numbers {
  color: #666666;
  font-weight: bold;
}

a.page-numbers {
  color: #c5c5c5;
}

/*==================================================
 * サイドバー
 *================================================*/
@media only screen and (max-width: 767px) {
  #sidebar {
    margin-top: 15%;
  }
}

.sidebarBox {
  margin-bottom: 15%;
  margin-left: 5%;
}
@media only screen and (max-width: 767px) {
  .sidebarBox {
    margin-left: 0;
    margin-bottom: 8%;
  }
}

.sidebarNewsUl .cat-item {
  border-bottom: 1px solid #dcdcdc;
  padding-bottom: 0.5em;
  margin-bottom: 0.5em;
}
.sidebarNewsUl .cat-item a {
  transition: 0.3s;
}
.sidebarNewsUl .cat-item a:hover {
  opacity: 0.7;
}
.sidebarNewsUl .cat-item .date {
  font-family: var(--fontNum);
  font-size: 12px;
  color: #b3b3b3;
}
.sidebarNewsUl .cat-item .title {
  font-size: 14px;
}
@media only screen and (max-width: 767px) {
  .sidebarNewsUl .cat-item {
    padding-bottom: 0.25em;
    margin-bottom: 0.25em;
  }
}

.sidebarCategoryBlock li {
  display: inline-block;
  margin-bottom: 1em;
}
.sidebarCategoryBlock li a {
  display: inline-block;
  font-size: 12px;
  background-color: var(--mainColor);
  color: #fff;
  border-radius: 5px;
  padding: 0.6em 0.8em;
  line-height: 1;
  transition: 0.3s;
}
@media only screen and (max-width: 767px) {
  .sidebarCategoryBlock li a {
    font-size: 11px;
  }
}
.sidebarCategoryBlock li a:hover {
  opacity: 0.7;
}
@media only screen and (max-width: 767px) {
  .sidebarCategoryBlock li {
    font-size: 12px;
  }
}

.sidebarTitle {
  font-size: 24px;
  font-family: var(--fontEn);
  font-weight: 600;
  color: var(--mainColor);
  font-style: italic;
  border-bottom: 1px solid;
  padding-bottom: 0.5em;
  margin-bottom: 1.5em;
  line-height: 1;
  padding-left: 0.5em;
}
@media only screen and (max-width: 767px) {
  .sidebarTitle {
    padding-bottom: 0.25em;
    margin-bottom: 1em;
  }
}

.sidebarRankingImg {
  width: 30%;
  padding-bottom: 30%;
  margin-right: 5%;
  border-radius: 5px;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .sidebarRankingImg {
    display: none;
  }
}

.sidebarRankingText {
  width: 65%;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .sidebarRankingText {
    width: 100%;
  }
}

.sidebarRankingNum {
  background: #fff;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  text-align: center;
  line-height: 30px;
  color: #666666;
  right: 10px;
  top: 10px;
  position: absolute;
  font-size: 14px;
}

#sidebar select {
  width: 100%;
  padding: 0.7em;
}

.sidebarTagWrap a {
  font-size: 14px !important;
  color: #666666;
}
.sidebarTagWrap a:before {
  content: "#";
}
.sidebarTagWrap a:after {
  content: "/";
  display: inline-block;
  margin-left: 0.5em;
  margin-right: 0.5em;
  color: #a9a9a9;
}
@media only screen and (max-width: 767px) {
  .sidebarTagWrap a {
    font-size: 12px !important;
  }
}

/* ==========================================================================
   Author's custom styles
========================================================================== */
/*==================================================
 * 全サイト共通
 *================================================*/
/*共通部分*/
.oswald {
  font-family: "Oswald", sans-serif;
}

.zenkaku {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
}

.zenmaru {
  font-family: "Zen Maru Gothic", serif;
}

html {
  scroll-padding-top: 95px;
}
@media only screen and (max-width: 767px) {
  html {
    scroll-padding-top: 68px;
  }
}

body {
  font-feature-settings: "palt";
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 500;
}

body {
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.1em;
}
@media only screen and (max-width: 767px) {
  body {
    font-size: 14px;
  }
}

.commonUl li {
  position: relative;
  padding: 1em 0;
  border-bottom: 1px solid #d1d1d1;
}
.commonUl li:before {
  content: "\f058";
  font-family: "Font Awesome 5 Pro";
  font-weight: 300;
  color: #666666;
  font-size: 24px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
@media only screen and (max-width: 959px) {
  .commonUl li:before {
    font-size: 18px;
  }
}
.commonUl li span {
  font-size: 18px;
  margin-left: 45px;
  display: inline-block;
  line-height: 1.5;
  letter-spacing: 0.03em;
}
@media only screen and (max-width: 959px) {
  .commonUl li span {
    font-size: 14px;
    margin-left: 30px;
  }
}
.commonUl.white li:before {
  color: #fff;
}

.bgTransBlack {
  background-color: rgba(0, 0, 0, 0.3);
}

.telA i {
  margin-right: 0.15em;
}
.telA.white:hover {
  color: #fff;
}

.externalLink {
  border-bottom: 1px solid;
  padding-bottom: 0.1em;
  transition: 0.3s;
}
.externalLink:hover {
  color: #666666;
}
.externalLink:after {
  content: "\f08e";
  font-family: "Font Awesome 5 Pro";
  font-weight: 300;
  margin-left: 0.5em;
}

.vertical {
  writing-mode: vertical-rl;
  font-feature-settings: normal;
  white-space: nowrap;
}

.verticalReverse {
  writing-mode: vertical-lr;
}

@media only screen and (max-width: 767px) {
  .verticalPc {
    writing-mode: horizontal-tb;
  }
}

a[href] {
  transition: 0.3s;
}
a[href]:hover {
  opacity: 0.7;
}

/*==================================================
 * 当サイト共通
 *================================================*/
body {
  background-color: #fff;
}

main {
  overflow: hidden;
}

:root {
  --gridLinePadding: calc((100vw - 1180px) / 2);
  --gridLineInner: calc(1180px / 4);
}

.img-fit {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.ttlWrap {
  text-align: center;
}
.ttlWrap .en {
  font-size: 30px;
  line-height: 1.5;
  letter-spacing: 0.2em;
}
.ttlWrap .ja {
  font-size: 18px;
  font-weight: 500;
}
.ttlWrap .ja.large {
  font-size: 23px;
}
@media only screen and (max-width: 767px) {
  .ttlWrap .ja.large {
    font-size: 16px;
  }
}
@media only screen and (max-width: 767px) {
  .ttlWrap .ja {
    font-size: 16px;
  }
}

.maruBtn {
  font-family: "Zen Maru Gothic", serif;
  background-color: #65c5d7;
  color: #fff;
  padding: 0.5em;
  max-width: 600px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: block;
  text-align: center;
  border-radius: 100px;
  font-size: 28px;
  font-weight: bold;
  position: relative;
  line-height: 1.3;
}
.maruBtn::before {
  content: "";
  display: block;
  position: absolute;
  width: 64px;
  aspect-ratio: 64/20;
  background: url(../../img/mtproject2025/top/ic-marubtn-arw.svg) no-repeat center/contain;
  right: 1em;
  top: 50%;
  transform: translateY(-50%);
}
@media only screen and (max-width: 767px) {
  .maruBtn::before {
    width: 32px;
  }
}
.maruBtn:hover {
  color: #fff;
}
@media only screen and (max-width: 767px) {
  .maruBtn {
    font-size: 20px;
    padding-right: 60px;
  }
}

.btnOrg {
  border: solid 1px #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  width: 450px;
  height: 72px;
  position: relative;
  transition: 0.3s;
}
@media only screen and (max-width: 767px) {
  .btnOrg {
    width: 320px;
    font-size: 16px;
    height: 54px;
    max-width: 100%;
  }
}
.btnOrg.center {
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (max-width: 767px) {
  .btnOrg.left-sp {
    text-align: left;
    justify-content: left;
    padding-left: 30px;
  }
}
.btnOrg::before {
  content: "";
  display: block;
  position: absolute;
  width: 54px;
  height: 15px;
  background: url(../../img/mtproject2025/common/btnArw.svg) no-repeat center/contain;
  right: 30px;
  top: 50%;
  transform: translateY(-47%);
}
@media only screen and (max-width: 767px) {
  .btnOrg::before {
    width: 40px;
  }
}
.btnOrg:not(.nohover):hover {
  opacity: 1;
  color: #fff;
  background-color: #000;
}
.btnOrg:not(.nohover):hover::before {
  background-image: url(../../img/mtproject2025/common/btnArw-fff.svg);
}

@media print, screen and (min-width: 768px) {
  [data-sp] {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  [data-pc] {
    display: none;
  }
}
.pc {
  display: block;
}

.pc-inline {
  display: inline;
}

.sp,
.sp-inline {
  display: none;
}

@media only screen and (max-width: 767px) {
  .pc,
  .pc-inline {
    display: none;
  }
  .sp {
    display: block;
  }
  .sp-inline {
    display: inline;
  }
}
.fv,
.page-nav {
  margin-top: 94px;
}
@media only screen and (max-width: 767px) {
  .fv,
  .page-nav {
    margin-top: 68px;
  }
}

.page-nav .fvBottomItem:last-of-type {
  letter-spacing: 0.2em;
}

/*==================================================
 * ヘッダー
 *================================================*/
header {
  position: fixed;
  width: 100%;
  z-index: 999;
  height: 95px;
  background-color: #fff;
  display: flex;
  align-items: center;
  padding: 0 40px;
  box-shadow: 3px 3px 3px 3px rgba(0, 0, 0, 0.1);
}
@media only screen and (max-width: 767px) {
  header {
    height: 68px;
    padding: 0 15px;
  }
}

.logo {
  width: 130px;
}
@media only screen and (max-width: 767px) {
  .logo {
    width: 70px;
  }
}

.logo-mt {
  width: 60px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
@media only screen and (max-width: 767px) {
  .logo-mt {
    width: 55px;
  }
}

.headerInfoCard {
  position: absolute;
  right: 30px;
  top: 30px;
}
@media only screen and (max-width: 767px) {
  .headerInfoCard {
    top: 25px;
  }
}

.overRayMenuUl {
  margin-bottom: 30px;
}
.overRayMenuUl > li {
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  text-align: left;
}
.overRayMenuUl > li:first-of-type {
  background-color: #000;
  color: #fff;
  text-align: center;
  padding: 5px;
}
.overRayMenuUl > li a {
  display: block;
  width: 100%;
  padding: 15px 0;
}
.overRayMenuUl > li a span {
  transition: 0.3s;
}
.overRayMenuUl > li a span.en {
  font-size: 14px;
  margin-left: 0.5em;
  font-weight: 600;
  line-height: 0.7;
}
.overRayMenuUl > li a span.jp {
  font-size: 18px;
  font-weight: 500;
}
.overRayMenuUl > li a span.ja.and {
  padding: 0 0.2em;
}
.overRayMenuUl > li .child {
  padding-top: 5px;
  display: none;
}
.overRayMenuUl > li .child * {
  font-size: 16px;
}
.overRayMenuUl > li .child .fsS3 {
  font-size: 12px;
}
.overRayMenuUl > li .child li a {
  padding: 8px 0;
  line-height: 1.4;
  padding-left: 28px;
  position: relative;
}
.overRayMenuUl > li .child li a::before {
  content: "";
  display: block;
  position: absolute;
  height: 2px;
  background-color: #a5a5a5;
  width: 13px;
  left: 5px;
  top: 50%;
  transform: translateY(-50%);
}
.overRayMenuUl > li .hasChildTtl {
  position: relative;
  border-bottom: solid 1px #333333;
}
.overRayMenuUl > li .hasChildTtl > a {
  width: calc(100% - 45px);
}
.overRayMenuUl > li .bar {
  width: 45px;
  height: 45px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.overRayMenuUl > li .bar::before, .overRayMenuUl > li .bar::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 3px;
  background-color: #000000;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: 0.3s;
}
.overRayMenuUl > li .bar::before {
  width: 20px;
  height: 2px;
}
.overRayMenuUl > li .bar::after {
  width: 2px;
  height: 20px;
}
.overRayMenuUl > li .bar:hover {
  cursor: pointer;
}
.overRayMenuUl > li .bar.open::after {
  opacity: 0;
}
@media only screen and (max-width: 767px) {
  .overRayMenuUl > li a span.en {
    font-size: 12px;
  }
  .overRayMenuUl > li a span.jp {
    font-size: 22px;
  }
}

.overRayBlock {
  display: flex;
  width: 100%;
  height: 100%;
  overflow-y: scroll;
  padding: 100px 30px;
  background-color: #fff;
}
@media only screen and (max-width: 767px) {
  .overRayBlock {
    padding: 40px 25px;
  }
}

.overRayTextCard {
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .overRayTextCard {
    height: 140%;
  }
}

.snsIcoUl {
  color: #fff;
}
.snsIcoUl li {
  display: inline-block;
  margin-right: 0.25em;
  margin-left: 0.25em;
}
.snsIcoUl li a {
  display: inline-block;
}
.snsIcoUl li a i {
  font-size: 24px;
  display: inline-block;
}

/*==================================================
 * フッター
 *================================================*/
.footerWrap {
  border-bottom: solid 60px #000;
}

footer {
  font-size: 0.7em;
}

@media only screen and (max-width: 767px) {
  .footerBtnBlock {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media only screen and (max-width: 767px) {
  .footerBtnBlock img {
    max-width: 95%;
    width: 290px;
  }
}

/*==================================================
 * トップページ
 *================================================*/
main {
  min-height: 100vh;
}

.fv {
  position: relative;
  height: 720px;
}
@media only screen and (max-width: 767px) {
  .fv {
    height: auto;
  }
}
.fv__logo {
  width: 265px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
@media only screen and (max-width: 767px) {
  .fv__logo {
    width: 187px;
  }
}

.fvBottomWrap {
  display: flex;
  justify-content: space-between;
  border-bottom: solid 1px #000;
  height: 77px;
}
@media only screen and (max-width: 959px) {
  .fvBottomWrap {
    height: 60px;
  }
}
@media screen and (max-width: 830px) {
  .fvBottomWrap {
    display: none;
  }
}

.fvBottom {
  display: flex;
  justify-content: center;
  padding: 12px 0;
  width: 100%;
}
@media only screen and (max-width: 959px) {
  .fvBottom {
    padding: 8px 0;
  }
}
.fvBottom > * {
  width: 50%;
}

.fvBottomItem {
  padding: 8px 40px;
  border-right: solid 1px #000;
  font-size: clamp(12px, 1.4vw, 21px);
  display: flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  .fvBottomItem {
    padding: 8px 12px;
    font-size: 16px;
  }
}
@media only screen and (max-width: 959px) {
  .fvBottomItem {
    padding: 6px 12px;
  }
}
.fvBottomItem:last-of-type {
  border: none;
}
.fvBottomItem .ja {
  letter-spacing: 0.46em;
}
.fvBottomItem .en {
  font-size: 13px;
  padding-left: 10px;
  letter-spacing: 0.38em;
}
@media screen and (max-width: 1350px) {
  .fvBottomItem .en {
    font-size: 12px;
  }
}
@media screen and (max-width: 1110px) {
  .fvBottomItem .en {
    padding-left: 10px;
  }
}
@media only screen and (max-width: 959px) {
  .fvBottomItem .en {
    font-size: 11px;
    display: none;
  }
}
.fvBottomItem .and {
  font-size: 18px;
  padding: 0 7px;
}
@media screen and (max-width: 1110px) {
  .fvBottomItem .and {
    font-size: 14px;
    padding: 0 8px;
  }
}
.fvBottomItem.first {
  background-color: #000;
  color: #fff;
  padding: 0 1em 0 2em;
  margin-right: 50px;
  position: relative;
  line-height: 1.5;
  letter-spacing: 0.25em;
  text-align: center;
  flex-shrink: 0;
  width: -moz-fit-content;
  width: fit-content;
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  .fvBottomItem.first {
    padding: 0 20px 0 0;
    margin-right: 30px;
  }
}
@media only screen and (max-width: 959px) {
  .fvBottomItem.first {
    padding-left: 0;
    margin-right: 40px;
  }
}
.fvBottomItem.first::before {
  content: "";
  display: block;
  position: absolute;
  width: 100vw;
  height: 100%;
  right: 0;
  top: 0;
  background-color: #000;
  z-index: -1;
}
.fvBottomItem.first::after {
  content: "";
  display: block;
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 77px 52px 0 0;
  border-color: #000 transparent transparent transparent;
  right: 0;
  top: 0;
  transform: translateX(100%);
}
@media screen and (max-width: 1110px) {
  .fvBottomItem.first::after {
    border-width: 77px 40px 0 0;
  }
}
@media only screen and (max-width: 959px) {
  .fvBottomItem.first::after {
    border-width: 60px 40px 0 0;
  }
}
.fvBottomItem.second {
  display: block;
}
.fvBottomItem.second .ja {
  line-height: 1.2;
}
.fvBottomItem.second .en {
  padding-left: 0;
}
.fvBottomItem.second * {
  display: block;
  text-align: center;
}

.fvUnd {
  display: flex;
  justify-content: center;
  padding: 1em 15px;
  border-bottom: solid 1px #808080;
}
@media only screen and (max-width: 767px) {
  .fvUnd {
    display: none;
  }
}
.fvUnd a {
  padding: 0 70px;
  border-right: solid 1px #808080;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1.4;
}
.fvUnd a:first-of-type {
  border-left: solid 1px #808080;
}

.fvBottomWrapPage .fvBottomInner {
  width: -moz-fit-content;
  width: fit-content;
}
.fvBottomWrapPage .fvBottomInner .fvBottomInnerRight .fvBottomItem:first-of-type::before {
  border-left: solid 1px #000;
}
.fvBottomWrapPage .fvBottomInner .fvBottomInnerRight .fvBottomItem:last-of-type::before {
  border-right: solid 1px #000;
}

.fvBottomItemFukiya .en {
  padding-left: 0;
}

.fvBottomItemFukiyaBox .ja,
.fvBottomItemFukiyaBox .en {
  display: block;
}
.fvBottomItemFukiyaBox .ja {
  line-height: 1.2;
}

.fvBottomItemStamp {
  font-size: 17px;
  text-align: center;
  flex-direction: column;
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  .fvBottomItemStamp {
    font-size: 15px;
  }
}
@media only screen and (max-width: 959px) {
  .fvBottomItemStamp {
    font-size: 12px;
  }
}
.fvBottomItemStamp * {
  line-height: 1.4;
}

/* topIntro */
.topIntroTtl {
  letter-spacing: 0.18em;
}
@media only screen and (max-width: 767px) {
  .topIntroTtl {
    font-size: 30px;
    letter-spacing: 0;
  }
}

.topIntroTxt {
  font-size: 18px;
  line-height: 2.9;
  letter-spacing: 0.15em;
}
@media only screen and (max-width: 767px) {
  .topIntroTxt {
    font-size: 16px;
    line-height: 2;
  }
}

.topIntroPh,
.topIntroPh2 {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 150px;
  transform: translate(80%, 80%);
}
@media only screen and (max-width: 767px) {
  .topIntroPh,
  .topIntroPh2 {
    position: relative;
    transform: none;
    width: 140px;
  }
}

.topIntroPh2 {
  right: auto;
  left: 0;
  transform: translate(-80%, 80%);
}

@media only screen and (max-width: 767px) {
  .topIntroPh {
    margin-top: 40px;
  }
  .topIntroPh2 {
    margin-left: auto;
    margin-right: 0;
    transform: unset;
    margin-top: -60px;
  }
}
.introMap {
  max-width: 480px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

/* topArea */
.topAreaBlock {
  display: flex;
  flex-direction: row-reverse;
}
@media only screen and (max-width: 767px) {
  .topAreaBlock {
    flex-direction: column;
  }
}
.topAreaBlock .topAreaTxt {
  width: 30.4761904762%;
  min-width: 320px;
  flex-shrink: 0;
}
@media only screen and (max-width: 767px) {
  .topAreaBlock .topAreaTxt {
    width: 100%;
  }
}
.topAreaBlock .topAreaTxt > .topAreaBlockTxtbox {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.topAreaBlock .topAreaTxt .btnOrg {
  max-width: 100%;
  height: 50px;
  flex-shrink: 0;
}

.topAreaPh {
  height: 100%;
}
.topAreaPh img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.topAreaBlockTtl {
  background-color: #000;
  color: #fff;
  padding: 12px;
}

.topAreaTxt {
  background-color: #ebebeb;
  padding: 28px;
}
@media only screen and (max-width: 767px) {
  .topAreaTxt {
    padding: 20px 30px 30px;
  }
}

.topAreaTxtTtl {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 72.3404255319%;
}
@media only screen and (max-width: 767px) {
  .topAreaTxtTtl {
    flex-direction: row;
  }
}
.topAreaTxtTtl * {
  line-height: 1;
}
.topAreaTxtTtl .ja {
  font-size: 30px;
}
.topAreaTxtTtl .en {
  font-size: 20px;
}
@media only screen and (max-width: 767px) {
  .topAreaTxtTtl .en {
    font-size: 16px;
    padding-left: 1em;
  }
}

.topAreaBlockTtl {
  font-size: 21px;
}

.topAreaTxtTerm {
  background-color: #fff;
  padding: 10px;
  margin-top: 20px;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .topAreaTxtTerm {
    margin-top: 10px;
    letter-spacing: -0.05em;
  }
}
.topAreaTxtTerm + .topAreaTxtTtl {
  margin-top: 30px;
}
@media only screen and (max-width: 767px) {
  .topAreaTxtTerm.--kurashiki {
    display: flex;
    text-align: left;
  }
}

.topAreaBnr {
  margin-top: 20px;
  padding: 40px 15px 30px;
  background-color: #ffff46;
}
@media only screen and (max-width: 767px) {
  .topAreaBnr {
    padding: 25px;
  }
}
.topAreaBnr.second {
  background-color: #ffdee5;
}
.topAreaBnr img {
  width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.target:target::before {
  content: "";
  display: block;
  height: 60px; /* ずらしたい高さ */
  margin-top: -60px; /* heightに対するネガティブマージン */
  visibility: hidden;
}

/*==================================================
 * 下層
 *================================================*/
.pageFv {
  height: 560px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width: 767px) {
  .pageFv {
    height: auto;
  }
}

.fvBottomWrapPage a {
  font-size: 14px;
  text-align: center;
  line-height: 1.3;
  padding: 8px 60px;
}
@media screen and (max-width: 1110px) {
  .fvBottomWrapPage a {
    padding: 8px 30px;
  }
}

.spotBlockTtl * {
  text-align: center;
  line-height: 1.5;
}
@media only screen and (max-width: 767px) {
  .spotBlockTtl *.text-left-sp {
    text-align: left;
    padding-left: 30px;
  }
}
.spotBlockTtl .en {
  font-size: 33px;
}
.spotBlockTtl .en span:not(.not):not(.pc-inline) {
  display: block;
  font-size: 18px;
  width: 115px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  padding: 2px;
  border: solid 1px #000000;
  margin-bottom: 0.5em;
  letter-spacing: 0.5em;
}
@media only screen and (max-width: 767px) {
  .spotBlockTtl .en span:not(.not):not(.pc-inline) {
    font-size: 22px;
    line-height: 1;
  }
}
@media only screen and (max-width: 767px) {
  .spotBlockTtl .en {
    font-size: 24px;
  }
}
.spotBlockTtl .ja {
  font-size: 25px;
}
@media only screen and (max-width: 767px) {
  .spotBlockTtl .ja {
    font-size: 16px;
  }
}

.accessMapWrap {
  background-color: #ebebeb;
}
.accessMapWrap .inner {
  max-width: 1050px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (max-width: 959px) {
  .accessMapWrap .inner {
    overflow-x: scroll;
  }
  .accessMapWrap .inner img {
    width: 1000px;
    max-width: 1320px;
  }
}

.fukiyaAccessMapWrap {
  background-color: #e9e9e9;
}

.accessMapTargetTtlPh {
  width: 310px;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (max-width: 767px) {
  .accessMapTargetTtlPh {
    width: 260px;
  }
}

.accessMapTargetTtlPhFukiya {
  width: 64px;
}
@media only screen and (max-width: 767px) {
  .accessMapTargetTtlPhFukiya {
    width: 50px;
  }
}

.accessMapTargetTtlPhFukiya02 {
  width: 154px;
}
@media only screen and (max-width: 767px) {
  .accessMapTargetTtlPhFukiya02 {
    width: 120px;
  }
}

.accessTargetItemWrap {
  margin-left: -25px;
  margin-right: -25px;
}
@media only screen and (max-width: 959px) {
  .accessTargetItemWrap {
    margin-left: -15px;
    margin-right: -15px;
  }
}
@media only screen and (max-width: 767px) {
  .accessTargetItemWrap {
    margin-left: auto;
    margin-right: auto;
  }
}

.accessTargetItem {
  width: calc(33.3333333333% - 50px);
  margin-left: 25px;
  margin-right: 25px;
  padding-top: 70px;
  padding-bottom: 70px;
  position: relative;
}
.accessTargetItem::before {
  content: "";
  display: block;
  position: absolute;
  width: calc(100% + 50px);
  height: 1px;
  border-bottom: dashed 1px #000;
  left: 0;
  bottom: 0;
}
@media only screen and (max-width: 767px) {
  .accessTargetItem::before {
    display: none;
  }
}
.accessTargetItem:nth-of-type(3n)::before {
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .accessTargetItem:nth-of-type(3n)::before {
    display: none;
  }
}
@media only screen and (max-width: 959px) {
  .accessTargetItem {
    width: calc(33.3333333333% - 30px);
    margin-left: 15px;
    margin-right: 15px;
  }
}
@media only screen and (max-width: 767px) {
  .accessTargetItem {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-top: 20px;
    padding-bottom: 0;
  }
}
.accessTargetItem.border::before {
  content: "";
  display: block;
  position: absolute;
  width: calc(100% + 50px);
  height: 1px;
  border-bottom: dashed 1px #000;
  left: 0;
  bottom: 0;
}
@media only screen and (max-width: 767px) {
  .accessTargetItem.border::before {
    display: none;
  }
}
.accessTargetItem.border100::before {
  width: 100%;
}
.accessTargetItem.borderNone::before {
  content: none;
}
@media print, screen and (min-width: 768px) {
  .accessTargetItem.--wide {
    width: 40%;
  }
}

@media only screen and (max-width: 767px) {
  .accessTargetItemSpnone {
    display: none;
    padding-top: 15px;
  }
}
.accessTargetItemSpnone > p {
  font-size: 15px;
  letter-spacing: 0.05em;
}
.accessTargetItemSpnone table th {
  width: 52px;
  font-weight: inherit;
  text-align: left;
}
.accessTargetItemSpnone table.large th {
  width: 65px;
}
.accessTargetItemSpnone .colFlex {
  -moz-column-gap: 2em;
       column-gap: 2em;
}

.accessTargetItemTtl {
  position: relative;
}
@media only screen and (max-width: 767px) {
  .accessTargetItemTtl {
    padding-bottom: 20px;
    border-bottom: solid 1px #000;
    transition: 0.3s;
  }
}
.accessTargetItemTtl .num {
  width: 44px;
  height: 44px;
  background-color: #000;
  border-radius: 100%;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: clamp(18px, 1.6vw, 20px);
  font-weight: bold;
  flex-shrink: 0;
  letter-spacing: -0.08em;
}
.accessTargetItemTtl .plus {
  display: none;
  width: 20px;
  height: 20px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.accessTargetItemTtl .plus::before, .accessTargetItemTtl .plus::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #000;
  border-radius: 4px;
  transition: 0.3s;
}
.accessTargetItemTtl .plus::before {
  height: 3px;
  width: 100%;
}
.accessTargetItemTtl .plus::after {
  width: 3px;
  height: 100%;
}
@media only screen and (max-width: 767px) {
  .accessTargetItemTtl .plus {
    display: block;
  }
}
.accessTargetItemTtl.open .plus::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(45deg);
}
.accessTargetItemTtl .reserve {
  background-color: #000;
  border-radius: 0.2em;
  font-size: 0.8em;
  color: #fff;
  padding: 0 0.4em;
  margin-right: 0.5em;
}

.accessTargetItemTtlInner {
  margin-left: 0.5em;
  font-size: 20px;
}
@media print, screen and (min-width: 768px) {
  .accessTargetItemTtlInner {
    min-height: 3em;
  }
}
@media only screen and (max-width: 767px) {
  .accessTargetItemTtlInner {
    width: 100%;
    padding-right: 30px;
  }
}

.accessMapTargetTtl02 {
  background-color: #e5e5e5;
  padding: 0 10px;
}

.accessTargetInfo {
  letter-spacing: 0;
}
.accessTargetInfo * {
  font-size: 13px;
  line-height: 2;
}

.accessTargetLink {
  width: 80px;
  display: block;
}
@media only screen and (max-width: 767px) {
  .accessTargetLink {
    margin-left: auto;
    margin-right: auto;
  }
}

@media only screen and (max-width: 767px) {
  .lastKome {
    padding-top: 0;
  }
  .accessTargetItem {
    padding-top: 3em;
  }
  .accessTargetItemSpnone {
    display: block;
    border-bottom: dashed 1px #000;
    padding-bottom: 3em;
    padding-top: 0;
  }
  .accessTargetItemTtl {
    border-bottom: none;
  }
  .accessTargetItemTtlInner {
    padding-right: 0;
  }
  .accessTargetItemTtlInner .plus {
    display: none;
  }
}
.grayBlock {
  background-color: #f2f2f2;
  padding: 85px 115px 55px;
}
@media only screen and (max-width: 959px) {
  .grayBlock {
    padding: 45px 30px 50px;
  }
}
.grayBlock .ttl {
  background-color: #000;
  color: #fff;
  font-size: 21px;
  text-align: center;
  margin-bottom: 35px;
  padding: 5px;
  line-height: 1.5;
}
@media only screen and (max-width: 767px) {
  .grayBlock .ttl {
    margin-bottom: 10px;
  }
}

.grayBlockPh {
  width: 50%;
}
@media only screen and (max-width: 767px) {
  .grayBlockPh {
    width: 100%;
    margin-bottom: 20px;
  }
}

.grayBlockWrap {
  margin-bottom: 40px;
}

.grayBlockTxt {
  width: calc(50% - 45px);
  font-size: 15px;
}
@media only screen and (max-width: 767px) {
  .grayBlockTxt {
    width: 100%;
  }
}
.grayBlockTxt p {
  margin-bottom: 30px;
}

.grayBlockTxtTtl {
  font-size: 25px;
  margin-bottom: 25px;
  line-height: 1.2;
}
@media only screen and (max-width: 767px) {
  .grayBlockTxtTtl {
    margin-bottom: 20px;
  }
}
.grayBlockTxtTtl .red {
  color: #e20000;
  background-color: #fff;
  font-size: 15px;
  padding: 2px 5px;
  margin-right: 12px;
}
@media only screen and (max-width: 767px) {
  .grayBlockTxtTtl .red {
    font-size: 13px;
  }
}

.commonTable {
  width: 100%;
  background-color: #fff;
}
.commonTable th.bgGray,
.commonTable td.bgGray {
  background-color: #cccccc;
}
.commonTable th,
.commonTable td {
  border: solid 1px #b2b2b2;
  vertical-align: middle;
  text-align: center;
  padding: 15px;
}
@media only screen and (max-width: 959px) {
  .commonTable th,
  .commonTable td {
    padding: 10px;
  }
}
@media only screen and (max-width: 767px) {
  .commonTable th,
  .commonTable td {
    display: block;
    width: 100%;
  }
}
.commonTable th *,
.commonTable td * {
  line-height: 1.4;
  font-size: 15px;
}
@media only screen and (max-width: 959px) {
  .commonTable th *,
  .commonTable td * {
    font-size: 14px;
  }
}
.commonTable .flex {
  align-items: center;
  justify-content: center;
}
.commonTable .flex .shop {
  width: 210px;
}
@media only screen and (max-width: 1059px) {
  .commonTable .flex .shop {
    width: 200px;
  }
}
@media only screen and (max-width: 767px) {
  .commonTable .flex .shop {
    width: 100%;
  }
}
.commonTable .flex .num {
  width: 130px;
  text-align: left;
  margin-left: 5%;
  flex-shrink: 0;
}
@media only screen and (max-width: 959px) {
  .commonTable .flex .num {
    width: 110px;
  }
}
@media only screen and (max-width: 767px) {
  .commonTable .flex .num {
    width: 100%;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
}
.commonTable.text-left * {
  text-align: left;
}

@media only screen and (max-width: 767px) {
  .spColumn span {
    display: block;
    text-align: center !important;
  }
  .spColumn span:nth-of-type(even) {
    transform: rotate(90deg);
  }
}

.spotBlockInner {
  display: flex;
}
@media only screen and (max-width: 767px) {
  .spotBlockInner {
    flex-direction: column;
  }
}
.spotBlockInner > * {
  width: 50%;
}
@media only screen and (max-width: 767px) {
  .spotBlockInner > * {
    width: 100%;
  }
}

.spotBlockPh {
  overflow: hidden;
  min-height: 550px;
  position: relative;
}
.spotBlockPh.--past {
  overflow: unset;
}
.spotBlockPh.--past::before {
  content: "※写真は過去の様子です。";
  position: absolute;
  text-align: center;
  width: 100%;
  left: 0;
  bottom: 0;
  transform: translateY(calc(100% + 10px));
  font-size: 14px;
}
@media only screen and (max-width: 767px) {
  .spotBlockPh {
    min-height: auto;
  }
}
.spotBlockPh * {
  height: 100%;
}
.spotBlockPh .swiper-pagination {
  height: 12px;
  bottom: 30px;
}
.spotBlockPh .swiper-pagination span {
  width: 12px;
  margin: 0 10px !important;
}
.spotBlockPh .swiper-pagination .swiper-pagination-bullet {
  background-color: #fff;
  opacity: 1;
}
.spotBlockPh .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #000;
}

.fig {
  font-size: 10px;
  text-align: center;
  width: 50%;
  padding-top: 1em;
}

.spotBlockTxt {
  padding: 7% 5% 5% 3%;
  background-color: #ebebeb;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.spotBlockTxt.large {
  padding-bottom: 7%;
}
@media only screen and (max-width: 767px) {
  .spotBlockTxt {
    padding: 40px 25px;
  }
}
.spotBlockTxt p {
  font-size: 15px;
  line-height: 2.2;
}
.spotBlockTxt p:not(.notMb) {
  margin-bottom: 15%;
}
@media only screen and (max-width: 767px) {
  .spotBlockTxt p:not(.notMb) {
    margin-bottom: 5%;
  }
}

.spotBlockTxtInfo {
  font-size: 13px;
  position: relative;
}
.spotBlockTxtInfo .strong {
  font-size: 17px;
  margin-bottom: 0.6em;
}
.spotBlockTxtInfo .pink {
  font-size: 15px;
  color: #f35e83;
  margin-bottom: 0.6em;
}
.spotBlockTxtInfo * {
  line-height: 2.1;
}

.spotBlockFlex {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .spotBlockFlex {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}
.spotBlockFlex .spotBlockTxtInfo {
  margin-right: 1em;
}
@media only screen and (max-width: 767px) {
  .spotBlockFlex .spotBlockTxtInfo {
    margin-right: 0;
  }
}
.spotBlockFlex .accessMapBtn {
  margin-top: 1em;
}

.spotBlockInner.--past {
  padding-bottom: 30px;
}
.spotBlockInner.--past .spotBlockPh {
  overflow: unset;
}
.spotBlockInner.--past .spotBlockPh::before {
  content: "※写真は過去の様子です。";
  position: absolute;
  text-align: center;
  width: 100%;
  left: 0;
  bottom: 0;
  transform: translateY(calc(100% + 10px));
  font-size: 14px;
  z-index: 1;
}
@media only screen and (max-width: 767px) {
  .spotBlockInner.--past .spotBlockPh::before {
    transform: translateY(calc(100% + 5px));
    font-size: 12px;
  }
}
@media only screen and (max-width: 767px) {
  .spotBlockInner.--past .spotBlockTxt {
    padding-top: 14%;
  }
}

.accessMapBtn {
  position: absolute;
  width: 82px;
  height: 82px;
  border: solid 1px #000;
  border-radius: 1000px;
  bottom: 2vw;
  right: 7vw;
  display: block;
}
@media only screen and (max-width: 767px) {
  .accessMapBtn {
    position: relative;
    bottom: auto;
    right: auto;
    width: 125px;
    height: 125px;
    margin-top: 30px;
    margin-left: auto;
    margin-right: auto;
  }
}
.accessMapBtn.--relative {
  position: relative;
  bottom: auto;
  right: auto;
}

.pageFv {
  padding-top: 95px;
}
@media only screen and (max-width: 767px) {
  .pageFv {
    padding-top: 68px;
  }
}

/*==================================================
 * jersey
 *================================================*/
#hiruzenJersery {
  background: url(../../img/mtproject2023/hiruzen/hiruzenJerseryBg--pc.jpg) no-repeat center/cover;
}
@media only screen and (max-width: 767px) {
  #hiruzenJersery {
    background-image: url(../../img/mtproject2023/hiruzen/hiruzenJerseryBg--sp.jpg);
  }
}

.hiruzenJerseryTxt {
  padding: 60px;
  position: relative;
  background-color: rgba(255, 255, 255, 0.8);
  width: 40%;
}
@media only screen and (max-width: 767px) {
  .hiruzenJerseryTxt {
    width: 100%;
    padding: 35px;
  }
}
.hiruzenJerseryTxt::before {
  content: "";
  display: block;
  position: absolute;
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  border: solid 1px #000;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.hiruzenJerseryTxt .ttl {
  font-size: 22px;
  margin-bottom: 22px;
}
@media only screen and (max-width: 767px) {
  .hiruzenJerseryTxt .ttl {
    margin-bottom: 15px;
  }
}

#hiruzenBus .commonTable {
  background-color: transparent;
}
@media print, screen and (min-width: 768px) {
  #hiruzenBus .commonTable {
    width: calc(100% - 50px);
    margin-left: 50px;
  }
}
@media only screen and (max-width: 767px) {
  #hiruzenBus .commonTable + p {
    font-size: 12px;
  }
}
#hiruzenBus .commonTable th,
#hiruzenBus .commonTable td {
  background-color: #fff;
}
#hiruzenBus .commonTable td:first-of-type {
  width: 184px;
  text-align: center;
  position: relative;
  padding-left: 3.5em;
}
@media only screen and (max-width: 767px) {
  #hiruzenBus .commonTable td:first-of-type {
    width: 100%;
    padding-left: 0;
    margin-bottom: 10px;
  }
}
#hiruzenBus .commonTable td:first-of-type::before {
  content: "";
  display: block;
  position: absolute;
  width: 100px;
  height: 100px;
  background: url(../../img/mtproject2023/hiruzen/IcjunkaiBus.svg) no-repeat center/contain;
  left: 0;
  top: 50%;
  transform: translate(-50%, -50%);
}
@media only screen and (max-width: 767px) {
  #hiruzenBus .commonTable td:first-of-type::before {
    width: 80px;
    height: 80px;
    transform: translateX(0) translateY(-50%);
  }
}

.kagaminoSlide .swiper-slide {
  position: relative;
}
.kagaminoSlide .swiper-slide .kome {
  position: absolute;
  font-size: 0.7em;
  color: #fff;
  left: 1em;
  top: 1em;
}

#stamp {
  background-color: #ffff46;
}
#stamp .ttl {
  margin-bottom: 50px;
  width: 640px;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (max-width: 767px) {
  #stamp .ttl {
    max-width: 100%;
    width: 310px;
  }
}
#stamp .fsMid {
  font-size: 23px;
}
#stamp .fsSmall {
  font-size: 13px;
}
@media only screen and (max-width: 767px) {
  #stamp .fsSp22 {
    font-size: 22px;
  }
}
@media only screen and (max-width: 767px) {
  #stamp .fsSp21 {
    font-size: 21px;
  }
}
#stamp.fukiyaKurashikiStamp {
  background-color: #ffdee5;
}
#stamp.fukiyaKurashikiStamp .ttl {
  width: 650px;
  margin-bottom: 40px;
}
@media only screen and (max-width: 767px) {
  #stamp.fukiyaKurashikiStamp .ttl {
    width: 312px;
    margin-bottom: 50px;
  }
}

.mt-text {
  padding-inline: 30px;
}
@media only screen and (max-width: 767px) {
  .mt-text {
    max-width: 384px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}

.stampCS {
  width: 460px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 10px;
}
@media only screen and (max-width: 767px) {
  .stampCS {
    width: 310px;
  }
}

.fukiyaKurashikiStampCS {
  width: 320px;
}
@media only screen and (max-width: 767px) {
  .fukiyaKurashikiStampCS {
    width: 315px;
  }
}

.stampCSFK {
  width: 325px;
}
@media only screen and (max-width: 767px) {
  .stampCSFK {
    width: 315px;
  }
}

@media only screen and (max-width: 767px) {
  #present .ttl {
    background-color: #f2f2f2;
    padding-top: 3em;
    position: relative;
    margin-bottom: 0;
  }
  #present .ttl::before {
    content: "";
    display: block;
    position: absolute;
    width: 100vw;
    height: 100%;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
    background-color: #f2f2f2;
  }
}
#present .ttl span {
  background: linear-gradient(transparent 60%, #f9d2e2 0%);
  display: inline;
  padding: 0 1px 0px;
}
#present .bus {
  background-color: #f2f2f2;
  position: relative;
}
@media only screen and (max-width: 767px) {
  #present .bus::before {
    content: "";
    display: block;
    position: absolute;
    width: 100vw;
    height: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: #f2f2f2;
    z-index: -1;
  }
}
@media only screen and (max-width: 767px) {
  #present .bus .busTtl {
    width: 324px;
  }
}
#present .bus .in {
  max-width: 852px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 3em 15px;
}
@media only screen and (max-width: 767px) {
  #present .bus .in {
    padding-inline: 0;
  }
}
#present .bus .content {
  display: flex;
  -moz-column-gap: 2em;
       column-gap: 2em;
}
@media only screen and (max-width: 767px) {
  #present .bus .content {
    flex-direction: column;
    row-gap: 2em;
  }
  #present .bus .content .contentTtl {
    font-size: 19px;
  }
}
#present .bus .content .img {
  width: 40.243902439%;
  flex-shrink: 0;
}
@media only screen and (max-width: 767px) {
  #present .bus .content .img {
    width: 100%;
  }
}
#present .bus .content .sub {
  background-color: #e8528d;
  padding: 0.2em 1em;
  color: #fff;
  width: -moz-fit-content;
  width: fit-content;
}
#present .bus .info {
  font-size: 15px;
  display: flex;
  border: solid 1px #b2b2b2;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  #present .bus .info {
    font-size: 14px;
  }
}
@media only screen and (max-width: 767px) {
  #present .bus .info {
    font-size: 14px;
    flex-direction: column;
  }
}
#present .bus .info .left,
#present .bus .info .right {
  background-color: #fff;
  padding: 1em;
}
#present .bus .info .left {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  padding-inline: 2em;
  border-right: solid 1px #b2b2b2;
}
@media only screen and (max-width: 767px) {
  #present .bus .info .left {
    border-right: none;
    border-bottom: solid 1px #b2b2b2;
    text-align: center;
    justify-content: center;
  }
}
#present .bus .info .right {
  width: 100%;
}
@media only screen and (max-width: 767px) {
  #present .bus .info .term {
    font-size: 13px;
  }
}

#busTour {
  border-bottom: solid 14px #f35e83;
}

.busTourTtl {
  text-align: center;
}
.busTourTtl .inner {
  display: inline-block;
  padding: 0 50px;
  border-left: solid 5px #f35e83;
  border-right: solid 5px #f35e83;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .busTourTtl .inner {
    padding: 0 30px;
  }
}
.busTourTtl .inner::before, .busTourTtl .inner::after {
  content: "";
  display: block;
  position: absolute;
  width: 100vw;
  height: 14px;
  background-color: #f35e83;
  top: 50%;
}
.busTourTtl .inner::before {
  left: 0;
  transform: translate(-100%, -50%);
}
.busTourTtl .inner::after {
  right: 0;
  transform: translate(100%, -50%);
}
.busTourTtl .inner * {
  text-align: center;
}
.busTourTtl .inner .en {
  font-family: "Oswald", sans-serif;
  font-size: 30px;
  font-weight: 400;
  line-height: 1.2;
}
.busTourTtl .inner .ja {
  font-size: 18px;
  font-weight: bold;
}
@media only screen and (max-width: 767px) {
  .busTourTtl .inner .ja {
    font-size: 16px;
  }
}

@media only screen and (max-width: 767px) {
  .busTourTtlFukiyaKurashiki .inner {
    padding: 0 15px;
  }
}

.busTourTop {
  margin-top: 20px;
}
@media only screen and (max-width: 767px) {
  .busTourTop {
    margin-top: 50px;
  }
}

.busTourTopLeftTtl {
  font-size: 25px;
  position: relative;
  padding-bottom: 0.15em;
  display: inline-block;
  margin-bottom: 35px;
}
@media only screen and (max-width: 767px) {
  .busTourTopLeftTtl {
    font-size: 22px;
    display: block;
    text-align: center;
    padding-bottom: 0.6em;
    margin-bottom: 25px;
  }
}
.busTourTopLeftTtl::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: #000;
  left: 0;
  bottom: 0;
}

.busTourTopLeft {
  width: 60%;
}
@media only screen and (max-width: 767px) {
  .busTourTopLeft {
    width: 100%;
    font-size: 16px;
  }
}

.busTourTopRight {
  width: 35%;
}
@media only screen and (max-width: 767px) {
  .busTourTopRight {
    width: 100%;
    margin-top: 20px;
  }
  .busTourTopRight img {
    max-width: 330px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media only screen and (max-width: 767px) and (max-width: 767px) {
  .busTourTopRight img {
    max-width: 100%;
  }
}

@media only screen and (max-width: 767px) {
  .busTourTopFukiyaKurashiki {
    margin-top: 10px;
  }
}
.busTourTopFukiyaKurashiki .busTourTopLeft {
  width: 58%;
}
@media only screen and (max-width: 767px) {
  .busTourTopFukiyaKurashiki .busTourTopLeft {
    width: 100%;
  }
}
.busTourTopFukiyaKurashiki .busTourTopRight {
  width: 40%;
}
@media only screen and (max-width: 767px) {
  .busTourTopFukiyaKurashiki .busTourTopRight {
    width: 100%;
  }
}

@media only screen and (max-width: 1050px) {
  .busTourTableWrap {
    width: 100%;
    overflow-x: scroll;
  }
}

.busTourTable {
  width: 100%;
  margin-top: 35px;
  margin-bottom: 5px;
}
@media only screen and (max-width: 1050px) {
  .busTourTable {
    width: 1050px;
  }
  .busTourTable + p {
    width: 1050px;
  }
}
.busTourTable th,
.busTourTable td {
  border-top: solid 1px #b2b2b2;
  border-right: solid 1px #b2b2b2;
  padding: 10px 20px;
  width: 30%;
  vertical-align: middle;
}
.busTourTable th:first-of-type,
.busTourTable td:first-of-type {
  border-left: none;
  width: 40%;
}
.busTourTable th:last-of-type,
.busTourTable td:last-of-type {
  border-right: none;
}
.busTourTable th {
  font-size: 14px;
  background-color: #f2f2f2;
  text-align: left;
}
.busTourTable td {
  font-size: 18px;
}
.busTourTable tr.stripe {
  background: url(../../img/mtproject2023/common/stripeBg.png);
}
.busTourTable .yoyaku {
  font-size: 14px;
  border: solid 1px #000;
  display: inline-block;
  padding: 1px 5px;
}
.busTourTable .small {
  font-size: 14px;
}
.busTourTable .small * {
  font-size: 14px;
}
.busTourTable tr.dashed th,
.busTourTable tr.dashed td {
  border-top: dashed 1px #b2b2b2;
}
.busTourTable tr:last-of-type {
  border-bottom: solid 1px #b2b2b2;
}

.tableBottom {
  margin-top: 25px;
  margin-bottom: 20px;
}
.tableBottom .flex + .flex {
  margin-top: 12px;
}
.tableBottom .tableBottomTtl {
  flex-shrink: 0;
}
@media only screen and (max-width: 767px) {
  .tableBottom .tableBottomTxt {
    font-size: 14px;
  }
}
@media only screen and (max-width: 767px) {
  .tableBottom .flex:last-of-type {
    flex-direction: column;
    align-items: center;
    margin-top: 50px;
  }
  .tableBottom .flex:last-of-type .tableBottomTtl {
    font-size: 30px;
    font-weight: bold;
  }
  .tableBottom .flex:last-of-type .tableBottomTxt {
    text-align: center;
  }
}

.processImg {
  margin-bottom: 60px;
}
@media only screen and (max-width: 767px) {
  .processImg {
    margin-bottom: 20px;
  }
}

.processLinkWrap a {
  margin-top: 10px;
}
@media only screen and (max-width: 767px) {
  .processLinkWrap a {
    margin-top: 20px;
  }
}

.busTourMap {
  width: 100%;
  max-width: 660px;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (max-width: 767px) {
  .busTourMap {
    max-width: 315px;
  }
}

@media only screen and (max-width: 767px) {
  .spScroll {
    overflow: scroll;
    margin-right: -30px;
    padding-right: 30px;
  }
}

.busTourMapTableWrap {
  margin-left: -5px;
  margin-right: -5px;
}
@media only screen and (max-width: 767px) {
  .busTourMapTableWrap {
    margin-left: auto;
    margin-right: auto;
    width: 490px;
  }
}
.busTourMapTableWrap > * {
  margin-left: 5px;
  margin-right: 5px;
  width: calc(50% - 10px);
}
@media only screen and (max-width: 767px) {
  .busTourMapTableWrap > * {
    margin-left: auto;
    margin-right: auto;
    width: 100%;
  }
}

.busTourMapTable {
  border-collapse: collapse;
}
.busTourMapTable th,
.busTourMapTable td {
  border: solid 1px #b2b2b2;
  text-align: center;
  vertical-align: middle;
  padding: 6px;
  line-height: 1.4;
  font-size: 15px;
}
.busTourMapTable th {
  background-color: #000;
  color: #fff;
  padding: 10px;
}
.busTourMapTable .gray td {
  background-color: #cccccc;
  color: #000;
}

/*==================================================
 * fukiya kurashiki
 *================================================*/
.fukiyaKurashikiFv .fv__logo {
  width: 433px;
}
@media only screen and (max-width: 767px) {
  .fukiyaKurashikiFv .fv__logo {
    width: 188px;
  }
}

/*==================================================
 * stampRally_hiruzen
 *================================================*/
.stampRally_hiruzenFv {
  background-color: #ffff46;
}
@media only screen and (max-width: 767px) {
  .stampRally_hiruzenFv {
    height: 472px;
  }
}
.stampRally_hiruzenFv .fv__logo {
  width: 730px;
}
@media only screen and (max-width: 767px) {
  .stampRally_hiruzenFv .fv__logo {
    width: 290px;
  }
}

.stampRally_hiruzenfvBottom .fvBottom,
.stampRally_hiruzenfvBottom .fvBottomInner,
.stampRally_hiruzenfvBottom .fvBottomInnerRight {
  width: 100%;
}
.stampRally_hiruzenfvBottom .fvBottomItem {
  font-size: 14px;
  padding: 8px 10px;
  width: 100%;
}
@media only screen and (max-width: 959px) {
  .stampRally_hiruzenfvBottom .fvBottomItem {
    font-size: 12px;
  }
}
.stampRally_hiruzenfvBottom .fvBottomItem.long {
  width: 130%;
}

#stampRally_hiruzenIntro p {
  font-size: 21px;
}
@media only screen and (max-width: 767px) {
  #stampRally_hiruzenIntro p {
    font-size: 16px;
  }
}

.sRhIntroBottom .swiper-wrapper {
  transition-timing-function: linear;
}
@media print, screen and (min-width: 768px) {
  .sRhIntroBottom .swiper-wrapper {
    gap: 3px;
  }
  .sRhIntroBottom .swiper-wrapper .swiper-slide {
    width: auto;
    height: auto;
    flex-shrink: unset;
  }
}

.sRhAbout .ttlWrap {
  margin-bottom: 30px;
}

.sRhTerm {
  background-color: #ffff46;
}
@media only screen and (max-width: 767px) {
  .sRhTerm {
    flex-direction: column;
    align-items: center;
  }
}
.sRhTerm img {
  width: 132px;
  margin-left: 0;
  margin-right: 30px;
}
.sRhTerm p {
  font-size: 20px;
}
@media only screen and (max-width: 767px) {
  .sRhTerm p {
    text-align: center;
    margin-top: 15px;
  }
}

.sRhTermFK {
  background-color: #ffdee5;
}

.sRhPresent .ttl {
  font-size: 30px;
  margin-bottom: 40px;
  border-bottom: dashed 1px #000;
  padding-bottom: 0.3em;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (max-width: 767px) {
  .sRhPresent .ttl {
    font-size: 24px;
    width: 100%;
    padding-bottom: 0.5em;
  }
}
.sRhPresent p:not(.not) {
  font-size: 23px;
  margin-top: 20px;
}
.sRhPresent p.not {
  margin-top: 10px;
}

.otherCs {
  width: 660px;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (max-width: 767px) {
  .otherCs {
    width: 315px;
  }
}

.stampVenueTtl {
  font-size: 30px;
  border-bottom: dotted 1px #000;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (max-width: 767px) {
  .stampVenueTtl {
    font-size: 24px;
    width: 100%;
    padding-bottom: 0.5em;
  }
}
.stampVenueTtl + p {
  font-size: 23px;
  margin-top: 30px;
}
@media only screen and (max-width: 767px) {
  .stampVenueTtl + p {
    font-size: 15px;
    margin-top: 25px;
  }
}

.stampVenueSpotTtl {
  font-size: 27px;
  background-color: #ffff46;
  margin-top: 60px;
  padding: 10px;
}
@media only screen and (max-width: 767px) {
  .stampVenueSpotTtl {
    font-size: 22px;
    padding: 20px 0;
  }
}
.stampVenueSpotTtl + p {
  margin-top: 20px;
}
.stampVenueSpotTtl + p + p {
  font-size: 15px;
}
@media only screen and (max-width: 767px) {
  .stampVenueSpotTtl + p + p {
    font-size: 13px;
  }
}

.stampVenueSpotTtlFK {
  background-color: #ffdee5;
  position: relative;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .stampVenueSpotTtlFK {
    font-size: 18px;
  }
}
@media only screen and (max-width: 767px) {
  .stampVenueSpotTtlFK {
    padding-top: 0;
  }
}

.areaTtl {
  background-color: #000;
  color: #fff;
  position: absolute;
  left: 0;
  top: 0;
  padding: 10px 20px;
  height: 100%;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .areaTtl {
    padding: 10px;
  }
}
@media only screen and (max-width: 767px) {
  .areaTtl {
    width: 100%;
    height: auto;
    text-align: center;
    position: relative;
    display: block;
    margin-bottom: 10px;
  }
}

@media only screen and (max-width: 767px) {
  .areaTtlBottom {
    display: block;
  }
}

.stampVenueItemWrap {
  margin-top: 40px;
}
@media print, screen and (min-width: 768px) {
  .stampVenueItemWrap .swiper-wrapper {
    gap: 60px;
    flex-wrap: wrap;
  }
  .stampVenueItemWrap .swiper-wrapper .swiper-slide {
    width: auto;
    height: auto;
    flex-shrink: unset;
  }
}
@media only screen and (max-width: 767px) {
  .stampVenueItemWrap {
    margin-top: 20px;
  }
}

.stampVenueItem {
  padding-bottom: 14%;
  position: relative;
}
@media print, screen and (min-width: 768px) {
  .stampVenueItem {
    width: calc(50% - 30px) !important;
  }
}
@media only screen and (max-width: 767px) {
  .stampVenueItem {
    padding: 0 8px;
  }
}
.stampVenueItem .ttl {
  font-size: 33px;
  margin-top: 30px;
}
@media only screen and (max-width: 767px) {
  .stampVenueItem .ttl {
    font-size: 22px;
    text-align: center;
  }
}
.stampVenueItem .ttl .small {
  font-size: 24px;
}
@media only screen and (max-width: 767px) {
  .stampVenueItem .ttl .small {
    font-size: 16px;
  }
}
.stampVenueItem .info {
  font-size: 13px;
  margin-top: 30px;
}

.stampVenueItemFK {
  width: 100% !important;
  padding-bottom: 0;
}
.stampVenueItemFK .stampVenueItemPh {
  width: 50%;
  padding-right: 45px;
}
@media only screen and (max-width: 767px) {
  .stampVenueItemFK .stampVenueItemPh {
    margin-left: -8px;
    margin-right: -8px;
    width: calc(100% + 16px) !important;
    padding-right: 0;
    margin-bottom: 30px;
  }
}
.stampVenueItemFK .ttl {
  margin-top: 0;
}
.stampVenueItemFK .toGoogleMap {
  position: relative;
  margin-left: auto;
  margin-right: 0;
  margin-top: 3em;
}
@media only screen and (max-width: 767px) {
  .stampVenueItemFK .toGoogleMap {
    margin-right: auto;
    margin-top: 1.5em;
  }
}
@media only screen and (max-width: 767px) {
  .stampVenueItemFK .info {
    padding: 0 22px;
  }
}

.toGoogleMap {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 82px;
  display: block;
}
@media only screen and (max-width: 767px) {
  .toGoogleMap {
    position: relative;
    width: 125px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 70px;
  }
}

#sRhSecond {
  height: 530px;
  position: relative;
  background-color: #ffdee5;
  padding: 10%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 767px) {
  #sRhSecond {
    height: 475px;
    padding: 0;
  }
}
#sRhSecond img {
  width: 700px;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (max-width: 767px) {
  #sRhSecond img {
    width: 345px;
  }
}

/* howto */
@media only screen and (max-width: 767px) {
  .ptlrSp0 {
    padding-left: 0;
    padding-right: 0;
  }
}

.howtoTtl {
  font-size: 30px;
  border-bottom: dotted 1px #000;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (max-width: 767px) {
  .howtoTtl {
    font-size: 24px;
    width: 100%;
    padding-bottom: 0.5em;
  }
}

.howtoStepTtl {
  font-size: 24px;
  font-weight: 500;
}

.howtoStepPh {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (max-width: 767px) {
  .howtoStepPh {
    max-width: 270px;
  }
}

.howtoCaution {
  font-size: 15px;
}
@media only screen and (max-width: 767px) {
  .howtoCaution {
    font-size: 14px;
  }
}

#presentPlace {
  background-color: #ebebeb;
}

.presentPlacePh {
  width: 51.497005988%;
  margin-right: 40px;
}
@media only screen and (max-width: 767px) {
  .presentPlacePh {
    width: 100%;
  }
}

.presentPlaceTxt {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.presentPlaceTtl {
  font-size: 25px;
}
@media only screen and (max-width: 767px) {
  .presentPlaceTtl {
    font-size: 22px;
  }
}

.presentPlaceTxtArea {
  background-color: #000;
  color: #fff;
  font-size: 25px;
  padding: 0 10px;
  display: inline-block;
}
@media only screen and (max-width: 767px) {
  .presentPlaceTxtArea {
    margin-left: auto;
    margin-right: auto;
    display: block;
    width: -moz-fit-content;
    width: fit-content;
  }
}

.presentPlaceTxtBottom p:last-of-type {
  font-size: 18px;
}

@media only screen and (max-width: 767px) {
  #accessMapTarget.sRh .accessTargetItem {
    padding-top: 25px;
  }
}
#accessMapTarget.sRh .accessMapTargetTtl {
  background-color: #ffff00;
  padding: 10px;
}
#accessMapTarget.sRh .accessMapTargetTtlFK {
  background-color: #ffdee5;
  padding-left: 10%;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  #accessMapTarget.sRh .accessMapTargetTtlFK {
    font-size: 18px;
  }
}
@media only screen and (max-width: 767px) {
  #accessMapTarget.sRh .accessMapTargetTtlFK {
    padding-left: 0;
    padding-right: 0;
    margin-left: -30px;
    margin-right: -30px;
    width: calc(100% + 60px);
    padding-top: 0;
    font-size: 22px;
  }
  #accessMapTarget.sRh .accessMapTargetTtlFK .areaTtl {
    font-size: 22px;
  }
}
@media only screen and (max-width: 767px) and (min-width: 767px) and (max-width: 959px) {
  #accessMapTarget.sRh .accessMapTargetTtlFK .areaTtl {
    font-size: 20px;
  }
}
@media only screen and (max-width: 767px) {
  #accessMapTarget.sRh .accessMapTargetTtlFK .toggleBtnArw {
    line-height: 1.5;
    display: block;
  }
}
#accessMapTarget.sRh .accessMapTargetTtlFK .toggleBtnArw::before {
  border-color: #000;
}
#accessMapTarget.sRh .accessMapTargetTtl02 {
  background-color: #fff;
}
@media only screen and (max-width: 767px) {
  #accessMapTarget.sRh .accessTargetItemTtl {
    padding-bottom: 25px;
  }
}
#accessMapTarget.sRh .accessTargetItemTtl .num {
  display: none;
}
#accessMapTarget.sRh .accessTargetItemTtlInner {
  width: 100%;
  display: flex;
  align-items: center;
  margin-left: auto;
  border-left: solid 14px #cbcbcb;
  padding-left: 10px;
}
@media only screen and (max-width: 767px) {
  #accessMapTarget.sRh .accessTargetItemTtlInner {
    min-height: 3em;
  }
}

.accessMapTargetToggle {
  background-color: #000000;
  color: #fff;
  padding: 10px;
}
@media only screen and (max-width: 767px) {
  .accessMapTargetToggle {
    background-color: transparent;
    color: #000;
    padding: 0;
  }
}
.accessMapTargetToggle .accessMapTargetTtl02 {
  background-color: #fff;
  color: #000;
}
@media only screen and (max-width: 767px) {
  .accessMapTargetToggle .accessMapTargetTtl02 {
    background-color: #e5e5e5;
  }
}

.toggleBtn:hover {
  cursor: pointer;
}
.toggleBtn > div,
.toggleBtn .toggleBtnArw {
  position: relative;
}
.toggleBtn > div::before,
.toggleBtn .toggleBtnArw::before {
  content: "";
  display: block;
  position: absolute;
  width: 20px;
  height: 20px;
  border-left: solid 2px #fff;
  border-top: solid 2px #fff;
  right: 0;
  top: 50%;
  transform: translateX(calc(100% + 30px)) translateY(-80%) rotate(-135deg);
  transition: 0.3s;
}
@media only screen and (max-width: 767px) {
  .toggleBtn > div::before,
  .toggleBtn .toggleBtnArw::before {
    content: none;
  }
}
.toggleBtn.open > div::before,
.toggleBtn.open .toggleBtnArw::before {
  transform: translateX(calc(100% + 30px)) translateY(-30%) rotate(45deg);
}
@media print, screen and (min-width: 768px) {
  .toggleBtn + * {
    display: none;
  }
}

.tableCenter {
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (max-width: 767px) {
  .tableCenter {
    text-align: center;
  }
}

@media only screen and (max-width: 767px) {
  .tableArea {
    width: calc(100% + 30px);
    margin-left: -15px;
    margin-right: -15px;
  }
  .tableArea th,
  .tableArea td {
    display: block;
  }
  .tableArea td {
    font-size: 15px;
  }
  .tableArea table {
    width: 100%;
  }
}
.tableArea .bold {
  font-weight: bold !important;
}

.tableAreaTtl {
  padding-right: 1em;
  margin-top: 10px;
}
@media only screen and (max-width: 767px) {
  .tableAreaTtl {
    padding-right: 0;
  }
}

@media print, screen and (min-width: 768px) {
  .pt15 {
    padding-top: 15px;
  }
}

@media print, screen and (min-width: 768px) {
  .pt10 {
    padding-top: 10px;
  }
}

@media only screen and (max-width: 767px) {
  .spInline {
    display: inline !important;
  }
}

.mtContent {
  display: flex;
  -moz-column-gap: 45px;
       column-gap: 45px;
}
@media only screen and (max-width: 767px) {
  .mtContent {
    flex-direction: column-reverse;
    padding-left: 30px;
    padding-right: 30px;
    row-gap: 30px;
  }
}
.mtContent > * {
  width: calc(50% - 22.5px);
}
@media only screen and (max-width: 767px) {
  .mtContent > * {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}
.mtContent .mtContentTop {
  width: 70%;
  max-width: 550px;
}
@media only screen and (max-width: 767px) {
  .mtContent .mtContentTop {
    width: 100%;
  }
}

.stampTerm {
  background-color: #ffff46;
  padding: 1em;
  font-weight: bold;
}

.secTtl {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 0.6em 1em;
}
@media only screen and (max-width: 767px) {
  .secTtl {
    justify-content: center;
    align-items: center;
    padding: 1em 0.5em;
  }
}
.secTtl * {
  font-weight: 500;
  color: #fff;
  line-height: 1.4;
}
.secTtl .first {
  font-size: 27px;
}
.secTtl .large {
  font-weight: 900;
  font-size: 1.3em;
  padding-left: 0.3em;
  line-height: 1;
}
.secTtl .last {
  font-size: 20px;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .secTtl .last {
    padding-top: 0.5em;
    margin-top: 0.5em;
  }
}
.secTtl .last.flex {
  display: flex;
  -moz-column-gap: 0.8em;
       column-gap: 0.8em;
}
@media only screen and (max-width: 767px) {
  .secTtl .last.flex {
    -moz-column-gap: 0;
         column-gap: 0;
  }
}
.secTtl .last.flex * {
  display: flex;
  font-size: 15px;
  text-align: left;
  line-height: 1.2;
  align-items: center;
  -moz-column-gap: 0.3em;
       column-gap: 0.3em;
}
@media only screen and (max-width: 767px) {
  .secTtl .last.flex * {
    font-size: 14px;
  }
}
.secTtl .last.flex img {
  width: 32px;
}
@media only screen and (max-width: 767px) {
  .secTtl .last.flex img {
    width: 30px;
  }
}
.secTtl.--orange {
  background-color: #e95504;
}
.secTtl.--blue {
  background-color: #0068b6;
}
.secTtl.--yellow {
  background-color: #fccf00;
}
.secTtl.--yellow * {
  color: #000;
}
.secTtl.--sky {
  background-color: #3db8ff;
}
.secTtl.--yellow2 {
  background-color: #dadf00;
}
.secTtl.--yellow2 * {
  color: #000;
}
.secTtl.--pink {
  background-color: #ff81b0;
}

.accessTargetItemWrap.--orange .num {
  background-color: #e95504;
}
.accessTargetItemWrap.--blue .num {
  background-color: #0068b6;
}
.accessTargetItemWrap.--yellow .num {
  background-color: #fccf00;
  color: #000;
}
.accessTargetItemWrap.--yellow2 .num {
  background-color: #dadf00;
  color: #000;
}
.accessTargetItemWrap.--sky .num {
  background-color: #3db8ff;
}
.accessTargetItemWrap.--pink .num {
  background-color: #ff81b0;
}

.tenpoWrap .last.--sp {
  display: none !important;
}
@media only screen and (max-width: 767px) {
  .tenpoWrap .last {
    display: flex !important;
    margin-top: 1em;
  }
  .tenpoWrap .last.flex > * {
    width: 25%;
    text-align: center;
    font-size: 12px;
    line-height: 1.4;
    flex-direction: column;
  }
  .tenpoWrap .last.flex > * img {
    width: 50%;
    margin-bottom: 0.2em;
    min-width: 35px;
  }
  .tenpoWrap .last.sp {
    text-align: center;
    width: 100%;
    margin-top: 1em;
    justify-content: center;
  }
  .tenpoWrap .last.sp.--red {
    color: #e95504;
  }
  .tenpoWrap .last.pc {
    display: none !important;
  }
}

.lastKome {
  border-top: dashed 1px #000;
  padding-top: 1em;
}
@media only screen and (max-width: 767px) {
  .lastKome {
    border-top: none;
  }
}

.accessBottom {
  display: flex;
  -moz-column-gap: 1em;
       column-gap: 1em;
}
@media only screen and (max-width: 767px) {
  .accessBottom {
    flex-direction: column-reverse;
    row-gap: 1em;
  }
}
.accessBottom .ic-s {
  display: flex;
  -moz-column-gap: 0.5em;
       column-gap: 0.5em;
}
.accessBottom .ic-s li {
  width: 38px;
}

.tenpoTtl {
  background-color: #000;
  color: #fff;
  padding: 0.5em;
  font-size: 27px;
  transition: 0.3s;
  cursor: pointer;
}
@media only screen and (max-width: 767px) {
  .tenpoTtl {
    font-size: 27px;
    padding: 0.6em 0.5em;
  }
  .tenpoTtl * {
    line-height: 1.4;
  }
}
.tenpoTtl:hover {
  opacity: 0.7;
}
.tenpoTtl .inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-right: 45px;
}
@media only screen and (max-width: 767px) {
  .tenpoTtl .inner {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding-right: 0;
    row-gap: 0.5em;
    text-align: left;
  }
}
.tenpoTtl .inner::before {
  content: "";
  display: block;
  position: absolute;
  width: 30px;
  aspect-ratio: 31/17;
  right: 30px;
  background: url(../../img/mtproject2025/common/ic-ku.svg) no-repeat center/contain;
  transition: 0.3s;
}
@media only screen and (max-width: 767px) {
  .tenpoTtl .inner::before {
    width: 20px;
    right: 15px;
    top: 0.5em;
  }
}
.tenpoTtl.open .inner::before {
  transform: rotate(180deg);
}
.tenpoTtl .kasho {
  background-color: #fff;
  color: #000;
  font-size: 25px;
  line-height: 1;
  padding: 0.2em 0.5em;
}
@media only screen and (max-width: 767px) {
  .tenpoTtl .kasho {
    font-size: 16px;
    width: 100%;
    text-align: center;
    font-size: 25px;
  }
}

@media only screen and (max-width: 767px) {
  .mtpin {
    width: 115px;
  }
}

/* ==========================================================================
   印刷用
   ========================================================================== */
/* -------------------------------------------------------------- 
 
 Hartija CSS Print Framework -MIT License
   * Version:   1.0
 
-------------------------------------------------------------- */
@media print {
  body {
    -webkit-print-color-adjust: exact;
    /*chrome用*/
    zoom: 0.8;
    border-top: none;
  }
  .bgImg {
    display: list-item; /* 該当箇所の表示方法をlist-itemに */
    list-style-image: url(print_bg.png); /* 表示させたい画像 */
    list-style-position: inside; /* マーカーの位置を内側に */
  }
  header {
    display: none;
  }
  footer {
    display: none;
  }
  .footerTelSp {
    display: none;
  }
  .menu-btn {
    display: none;
  }
  .fixBar {
    display: none !important;
  }
  .parallax-mirror {
    display: none;
    height: 0 !important;
  }
  .rellax {
    transform: none !important;
  }
  .PrintHidden {
    display: none;
  }
  .printArea {
    margin: 0;
    padding: 0;
  }
}