@charset "UTF-8";
/*改善点

・768pxまではPC（タブレットも含む）
・767pxからSP


追加ルール
/*==================
 ▼ブレイクポイントのルール▼
 -スマホを基本設計にする-
 *〜479px：SP縦
 *480px〜：SP横
 *600px〜タブレット
 *960px〜小型PC
 *1280px〜大型PC
==================

*/
:root {
  --mainColor: #1e8c63;
  --subColor: #ffa318;
  --subColor2: #ffec35;
}

.mainColor {
  color: var(--mainColor);
}

.bgMainColor {
  background-color: var(--mainColor);
}

.subColor {
  color: var(--subColor);
}

.subColor2 {
  color: var(--subColor2);
}

/*フォント系*/
.serif {
  font-family: "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
}

.f-black {
  font-weight: 900;
}

.f-bold {
  font-weight: 700;
}

.f-bold-all {
  font-weight: 700;
}
.f-bold-all * {
  font-weight: 700;
}

.f-medium {
  font-weight: 500;
}
.f-medium-imp {
  font-weight: 500 !important;
}

.f-medium-all {
  font-weight: 500;
}
.f-medium-all * {
  font-weight: 500;
}

.f-regular {
  font-weight: 400;
}

/*==================================================
 * リセット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;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media print, screen and (min-width: 768px) {
  a:hover {
    opacity: 0.7;
  }
}
a.notOp:hover {
  opacity: 1;
}

/* 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,
h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  margin-top: 0;
  margin-bottom: 0;
  line-height: 1.8;
}

h1,
h2,
h3,
h4,
h5,
h6,
h7,
p,
span,
div {
  line-height: 2;
}

.lh_xxl {
  line-height: 2.5;
}
.lh_xxl * {
  line-height: 2.5;
}

.lh_xl {
  line-height: 2.2;
}
.lh_xl * {
  line-height: 2.2;
}

.lh_xl2 {
  line-height: 2;
}
.lh_xl2 * {
  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_s2 {
  line-height: 1;
}
.lh_s2 * {
  line-height: 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;
}

.bold900 {
  font-weight: 900 !important;
}

.thin {
  font-weight: 100;
}

.nowrap {
  white-space: nowrap;
}

.white {
  color: #fff;
}
.white-all * {
  color: #fff;
}

.black {
  color: #000;
}

.gray {
  color: #686868;
}

.red {
  color: #ff4501 !important;
}

.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;
  }
}

.fsL15 {
  font-size: 80px;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .fsL15 {
    font-size: 55px;
  }
}
@media only screen and (max-width: 767px) {
  .fsL15 {
    font-size: 48px;
  }
}

.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;
  }
}

.fsL35 {
  font-size: 48px;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .fsL35 {
    font-size: 36px;
  }
}
@media only screen and (max-width: 767px) {
  .fsL35 {
    font-size: 28px;
  }
}

.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;
  }
}

.fsL5 {
  font-size: 40px;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .fsL5 {
    font-size: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .fsL5 {
    font-size: 22px;
  }
}

.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;
  }
}

.fsM15 {
  font-size: 32px;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .fsM15 {
    font-size: 24px;
  }
}
@media only screen and (max-width: 767px) {
  .fsM15 {
    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;
  }
}

.fsM32 {
  font-size: 20px;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .fsM32 {
    font-size: 18px;
  }
}
@media only screen and (max-width: 767px) {
  .fsM32 {
    font-size: 16px;
  }
}

.fsM38 {
  font-size: 19px;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .fsM38 {
    font-size: 17px;
  }
}
@media only screen and (max-width: 767px) {
  .fsM38 {
    font-size: 17px;
  }
}

.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;
  }
}

.fsM6 {
  font-size: 15px;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .fsM6 {
    font-size: 14px;
  }
}
@media only screen and (max-width: 767px) {
  .fsM6 {
    font-size: 13px;
  }
}

.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;
  }
}

.fsS4 {
  font-size: 10px;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .fsS4 {
    font-size: 9px;
  }
}
@media only screen and (max-width: 767px) {
  .fsS4 {
    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;
  }
}
/*==================================================
 * 独自リセット
 *================================================*/
/*リセット関係*/
*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -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;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}

hr {
  margin: 2em auto;
}

@media print, screen and (min-width: 768px) {
  a:hover {
    text-decoration: none;
  }
}
/*==================================================
 * 独自クラス（どのサイトでも）
 *================================================*/
.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;
}

.relapadding {
  padding-right: 80px;
}

.inline {
  display: inline;
}

.block {
  display: block;
}

.inlineBlock {
  display: inline-block;
}

.inlineBlockUl li {
  display: inline-block;
}

.disNone {
  display: none !important;
}

.bgCenter {
  background-position: center center;
  background-size: cover;
}

.opa {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  opacity: 1;
}

@media print, screen and (min-width: 768px) {
  a:hover .opa {
    -webkit-transition: 0.3s;
    transition: 0.3s;
    opacity: 0.7;
  }
}
@media print, screen and (min-width: 768px) {
  .tra,
  .tra:hover {
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
}
.verticalMiddle {
  vertical-align: middle;
}

.verticalBottom {
  vertical-align: bottom;
}

.text-center {
  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;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  color: var(--mainColor);
}
@media print, screen and (min-width: 768px) {
  .linkA:hover {
    color: var(--mainColor);
    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;
}

.mr0 {
  margin-right: 0 !important;
}

.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%;
}

.mbS4 {
  margin-bottom: 0.5%;
}

@media print, screen and (min-width: 768px) {
  .mbPcL {
    margin-bottom: 30%;
  }
  .mbPcL2 {
    margin-bottom: 25%;
  }
  .mbPcL3 {
    margin-bottom: 20%;
  }
  .mbPcL4 {
    margin-bottom: 15%;
  }
  .mbPcM {
    margin-bottom: 10%;
  }
  .mbPcM2 {
    margin-bottom: 7.5%;
  }
  .mbPcM3 {
    margin-bottom: 5%;
  }
  .mbPcS {
    margin-bottom: 3.5%;
  }
  .mbPcS2 {
    margin-bottom: 2%;
  }
  .mbPcS3 {
    margin-bottom: 1%;
  }
  .mbPc0 {
    margin-bottom: 0;
  }
}
/*flex・グリッド系*/
.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.justCenter {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.justEnd {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.justBetween {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.alignCenter {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.alignStart {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.alignEnd {
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.flexReverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-flow: row-reverse;
  flex-flow: row-reverse;
}

.flexWrap {
  -ms-flex-wrap: wrap;
  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%;
}

@media screen and (max-width: 767px) {
  .flexSplit {
    width: 100%;
  }
  .flexPc {
    display: block;
  }
  .flexWrapSp {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .bgFixed {
    background-attachment: unset;
  }
  .flexReverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row;
    flex-flow: row;
  }
  .flexSp {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .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: 100%;
  padding-left: 3.8167938931vw;
  padding-right: 3.8167938931vw;
  margin-right: auto;
  margin-left: auto;
}
@media only screen and (max-width: 767px) {
  .cnt {
    max-width: 100%;
  }
}
@media print, screen and (min-width: 768px) {
  .cnt {
    max-width: 1030px;
    padding-left: 15px;
    padding-right: 15px;
  }
}
.cnt.pLarge {
  padding-left: 30px;
  padding-right: 30px;
}
@media only screen and (max-width: 767px) {
  .cnt.pLarge {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .cnt.spLR {
    padding-left: 0;
    padding-right: 0;
  }
}
@media print, screen and (min-width: 768px) {
  .cnt.--max {
    max-width: 100%;
  }
}

@media only screen and (max-width: 767px) {
  .nolr {
    margin-left: -3.8167938931vw;
    margin-right: -3.8167938931vw;
  }
}

.w100 {
  width: 100%;
}

.cntMin {
  max-width: 600px;
  margin-right: auto;
  margin-left: auto;
}

.cntXS {
  max-width: 700px;
  margin-right: auto;
  margin-left: auto;
}

.cntXS2 {
  max-width: 820px;
  margin-right: auto;
  margin-left: auto;
}

.cntS {
  max-width: 1030px;
  margin-right: auto;
  margin-left: auto;
}

.cntM2 {
  max-width: 1280px;
  margin-right: auto;
  margin-left: auto;
}

.cntM3 {
  max-width: 1060px;
  margin-right: auto;
  margin-left: auto;
}

.cntM {
  max-width: 1400px;
  margin-right: auto;
  margin-left: auto;
}

.cntL {
  max-width: 1100px;
  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 {
  --spaceSizeS: clamp(40px, 10vw, 80px);
  --spaceSize: clamp(80px, 10vw, 160px);
  --spaceSizeWide: clamp(160px, 20vw, 240px);
}

.paddingS {
  padding-top: clamp(50px, 10vw, 120px);
  padding-bottom: clamp(50px, 10vw, 120px);
}

.padding {
  padding-top: clamp(20.3562340967vw, 12.5vw, 100px);
  padding-bottom: clamp(20.3562340967vw, 12.5vw, 100px);
}
@media print, screen and (min-width: 768px) {
  .padding {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
.padding.--ptAd {
  padding-top: 10.1781170483vw;
}
@media print, screen and (min-width: 768px) {
  .padding.--ptAd {
    padding-top: 50px;
  }
}

.paddingW {
  padding-top: var(--spaceSizeWide);
  padding-bottom: var(--spaceSizeWide);
}

.paddingMin {
  padding-block: 3em;
}

.pb0 {
  padding-bottom: 0;
}

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

@media only screen and (max-width: 767px) {
  .pbSp0 {
    padding-bottom: 0;
  }
  .ptSp0 {
    padding-top: 0;
  }
}
.margin {
  margin-top: var(--spaceSize);
  margin-bottom: var(--spaceSize);
}

.marginW {
  margin-top: var(--spaceSizeWide);
  margin-bottom: var(--spaceSizeWide);
}

.ml0 {
  margin-left: 0;
}

.z-1 {
  z-index: 1;
}

.z-2 {
  z-index: 2;
}

.none {
  display: none;
}

/*背景系*/
.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;
  -webkit-filter: blur(5px);
  -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%;
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  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 {
  -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0.9);
  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: 10px;
}
@media only screen and (max-width: 767px) {
  .radiusS {
    border-radius: 6px;
  }
}

.radiusM {
  border-radius: 16px;
}
@media only screen and (max-width: 767px) {
  .radiusM {
    border-radius: 10px;
  }
}

.radiusL {
  border-radius: 20px;
}

.radiusXl {
  border-radius: 30px;
}

.radiusMax {
  border-radius: 1000px;
}

.ofH {
  overflow: hidden;
}

/*影*/
.shadowS {
  -webkit-box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 50px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 50px;
}
@media only screen and (max-width: 767px) {
  .shadowS {
    -webkit-box-shadow: rgba(0, 0, 0, 0.2) 0px 18px 50px -10px;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 18px 50px -10px;
  }
}

.shadowM {
  -webkit-box-shadow: rgba(0, 0, 0, 0.2) 0px 18px 50px -10px;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 18px 50px -10px;
}
@media only screen and (max-width: 767px) {
  .shadowM {
    -webkit-box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
  }
}

.shadowL {
  -webkit-box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
  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 {
    -webkit-box-shadow: rgba(0, 0, 0, 0.2) 0px 30px 90px;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 30px 90px;
  }
}

.shadowLL {
  -webkit-box-shadow: rgba(0, 0, 0, 0.4) 0px 30px 90px;
  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秒で×枚数*/
  -webkit-animation: anime 18s 0s infinite;
  animation: anime 18s 0s infinite;
}

/*2枚目以降6秒遅れてアニメーションスタート*/
.mainImg:nth-of-type(2) {
  -webkit-animation-delay: 6s;
  animation-delay: 6s;
}

.mainImg:nth-of-type(3) {
  -webkit-animation-delay: 12s;
  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;
}
*/
@-webkit-keyframes anime {
  0% {
    opacity: 0;
  }
  /*3秒：フェードイン.3/alls*/
  16% {
    opacity: 1;
  }
  /*6秒：次のスライド再生.6/alls*/
  33% {
    opacity: 1;
  }
  /*9秒：フェードアウト&次のスライドフェードイン*/
  50% {
    opacity: 0;
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
    z-index: 9;
  }
  100% {
    opacity: 0;
  }
}
@keyframes anime {
  0% {
    opacity: 0;
  }
  /*3秒：フェードイン.3/alls*/
  16% {
    opacity: 1;
  }
  /*6秒：次のスライド再生.6/alls*/
  33% {
    opacity: 1;
  }
  /*9秒：フェードアウト&次のスライドフェードイン*/
  50% {
    opacity: 0;
    -webkit-transform: scale(1.2);
    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;
  position: absolute;
  bottom: 0;
  left: -2.5%;
  width: 105%;
  height: 0.3em;
  z-index: 0;
}
.titleLine.sub {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(70%, transparent), color-stop(0%, var(--subColor)));
  background: -webkit-linear-gradient(transparent 70%, var(--subColor) 0%);
  background: linear-gradient(transparent 70%, var(--subColor) 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: var(--mainColor);
  border-radius: 50px;
}
.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%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: var(--mainColor);
  border-radius: 2px;
}
.titleBdCenter.mini:after {
  bottom: -15px;
  width: 40px;
  height: 1.5px;
  border-radius: 0px;
}

.titleBdLeft {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.titleBdLeft:before {
  content: "";
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  height: 1px;
  background: var(--mainColor);
  display: block;
  margin-right: 1.5rem;
  max-width: 3rem;
}
.titleBdLeft.white:before {
  background: #fff;
}

.titleBdLight {
  border-bottom: 1px solid var(--mainColor);
  display: inline-block;
}

.bdBox {
  border: 2px solid var(--mainColor);
}

/*==================================================
 * header
 *================================================*/
/*------------モーダルウィンドウ------------*/
/*オーバーレイメニュー*/
.spmenuBox {
  position: fixed;
  display: table;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 100vh; /* Fallback */
  min-height: 100dvh;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  visibility: hidden;
  opacity: 0;
  z-index: 999;
}
.spmenuBox > ul {
  vertical-align: middle;
  width: 100%;
  display: block;
}
.open .spmenuBox {
  cursor: url(../images/cross.svg), auto;
  visibility: visible;
  opacity: 1;
}

html.open {
  overflow: hidden;
}

/*ハンバーガーメニュー*/
.menu-btn {
  cursor: pointer;
  position: relative;
  z-index: 1000;
  background: transparent;
  border: none;
}

.btnTxt {
  font-size: 10px;
  margin-top: 0.25em;
  font-family: "Noto Sans JP", sans-serif;
  color: #333333;
  letter-spacing: 0.06em;
}

.menu-trigger,
.menu-trigger span {
  display: inline-block;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

:root {
  --menuTrigeHeight: 18px;
}

.menu-trigger {
  position: relative;
  width: 30px;
  height: var(--menuTrigeHeight);
}
.menu-trigger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #fff;
}
.menu-trigger span:nth-of-type(1) {
  top: 0;
}
.menu-trigger span:nth-of-type(2) {
  top: calc(var(--menuTrigeHeight) / 2);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.menu-trigger span:nth-of-type(3) {
  bottom: 0;
}
.menu-trigger.active span {
  background-color: #fff;
}
.menu-trigger.active span:nth-of-type(1) {
  -webkit-transform: translateY(10px) rotate(-45deg);
  transform: translateY(10px) rotate(-45deg);
}
.menu-trigger.active span:nth-of-type(2) {
  opacity: 0;
  -webkit-animation: active-menu-bar02 0.8s forwards;
  animation: active-menu-bar02 0.8s forwards;
}
.menu-trigger.active span:nth-of-type(3) {
  -webkit-transform: translateY(-11px) rotate(45deg);
  transform: translateY(-11px) rotate(45deg);
  bottom: -5px;
}
.menu-trigger.active span:nth-of-type(4) {
  background: none !important;
}

@-webkit-keyframes active-menu-bar02 {
  100% {
    height: 0;
  }
}

@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: var(--mainColor);
}
.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 var(--mainColor);
}

.fixBarA {
  margin-right: 10px;
}
@media print, screen and (min-width: 768px) {
  .fixBarA:hover {
    background-color: #fff;
    color: var(--mainColor);
  }
}

.fixBarTop {
  height: 44px;
  width: 44px;
  cursor: pointer;
  border: 1px solid var(--mainColor);
  border-radius: 50px;
}
@media print, screen and (min-width: 768px) {
  .fixBarTop:hover {
    background-color: #fff;
    border: 1px solid var(--mainColor);
    color: var(--mainColor);
  }
}

.fixBar i,
.fixBar span {
  vertical-align: middle;
}

.fixBarTop i {
  margin-top: 14px;
}

/*==================================================
 * トップページ
 *================================================*/
@media screen and (max-width: 767px) {
  /*Q&Aのスマホここから*/
  .topQaBoxDl {
    width: 100%;
  }
  /*Q&Aのスマホここまで*/
}
/*==================================================
 * 下層ページ
 *================================================*/
/*共通部分------------------------------------*/
/*パンくず*/
/*パンくず終わり*/
/*about-us------------------------------------*/
/*残す--ここから*/
.pageAboutCompanyUl ul {
  display: -webkit-box;
  display: -ms-flexbox;
  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%;
}

/*残す--ここまで*/
/*お問い合わせページ------------------------------------*/
.contactForm {
  width: 100%;
  margin: 0 auto;
}

.contactForm textarea {
  width: 100%;
  min-height: 14rem !important;
}

.contactForm input[type=checkbox] {
  width: auto;
}

.contactTelIcon {
  margin-right: 0.4em;
}

.mw_wp_form button {
  max-width: 100%;
  width: 300px;
  height: 68px;
  font-weight: 700;
  background-color: var(--mainColor);
  color: #fff;
  border: none;
  font-size: 20px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  cursor: pointer;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .mw_wp_form button {
    font-size: 18px;
  }
}
@media only screen and (max-width: 767px) {
  .mw_wp_form button {
    font-size: 16px;
  }
}
@media only screen and (max-width: 767px) {
  .mw_wp_form button {
    height: 60px;
  }
}
.mw_wp_form button.cmnbtn::before {
  background-image: url(../img/ic_arrow-right-blue.svg);
}
@media print, screen and (min-width: 768px) {
  .mw_wp_form button:hover {
    opacity: 0.7;
  }
}

.cform {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.cform * {
  font-family: "Noto Sans JP", sans-serif;
}
.cform tr {
  border-bottom: solid 1px #bad1ff;
}
.cform th {
  font-size: 17px;
  font-family: bold;
  width: 30%; /*変なところで改行される場合はここの数字を変更します。*/
  padding: 10px 0;
  font-weight: normal;
  vertical-align: middle;
  text-align: left;
  position: relative;
  color: #1d62ea;
}
.cform th .title {
  width: 72%;
  display: inline-block;
  font-size: 15px;
  font-weight: 600;
}
@media only screen and (max-width: 767px) {
  .cform th .title {
    vertical-align: bottom;
    width: auto;
    margin-right: 5%;
  }
}
.cform th .required-srt {
  font-size: 12px;
  padding: 0.2em 0.4em;
  background: transparent;
  color: #ff521c;
  border: solid 1px #ff521c;
  border-radius: 3px;
  margin-right: 10px;
  width: auto;
  vertical-align: middle;
  display: inline-block;
  font-weight: 600;
  border-radius: 10px;
}
@media only screen and (max-width: 767px) {
  .cform th .required-srt {
    border-radius: 6px;
  }
}
tr:last-child .cform th .required-srt {
  top: 41%;
}
@media only screen and (max-width: 767px) {
  .cform th .required-srt {
    top: auto;
    bottom: 10%;
    font-size: 10px;
  }
}
.cform td {
  font-size: 15px;
  line-height: 150%;
  padding: 3% 0;
  font-weight: 700;
}
.cform td .error {
  font-size: 14px;
}
.cform td span label span {
  font-size: 15px;
}
.cform .mwform-radio-field-text {
  color: #1d62ea;
}
@media only screen and (max-width: 767px) {
  .cform td,
  .cform th {
    padding-bottom: 0;
    padding-top: 15px;
    font-size: 15px;
  }
  .cform td {
    padding: 5px 0 15px;
  }
  .cform th {
    padding-bottom: 10px;
  }
  .cform th .required-srt {
    padding: 0.1em 0.4em;
  }
}

.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;
}

.cform option,
.cform textarea,
.cform input[type=text],
.cform input[type=email],
.cform input[type=search],
.cform input[type=url] {
  width: 100%;
  height: 4rem;
  font-size: 14px;
  padding: 3rem 2.5rem;
  background-color: #fff;
  border: 1px solid transparent;
  border-radius: 10px;
}
@media only screen and (max-width: 767px) {
  .cform option,
  .cform textarea,
  .cform input[type=text],
  .cform input[type=email],
  .cform input[type=search],
  .cform input[type=url] {
    border-radius: 6px;
  }
}
@media only screen and (max-width: 767px) {
  .cform option,
  .cform textarea,
  .cform input[type=text],
  .cform input[type=email],
  .cform input[type=search],
  .cform input[type=url] {
    padding: 2rem;
  }
}

.mw_wp_form .horizontal-item + .horizontal-item {
  margin-left: 0 !important;
}

.contactFormPrivacyAlertBox {
  padding: 5%;
}

@media only screen and (max-width: 767px) {
  .cform th,
  .cform td {
    width: 100%;
    display: block;
    border-top: none;
    padding-left: 0;
  }
}
.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;
}

.button,
.submit-btn input,
.submit-btn a {
  position: relative;
  display: inline-block;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  overflow: hidden;
  color: #fff;
  padding: 0.7em 4em 0.7em 2em;
  letter-spacing: 0.03em;
  line-height: 1.7;
  font-size: 20px;
  border: 1px solid var(--mainColor);
}
.button:before, .button:after,
.submit-btn input:before,
.submit-btn input:after,
.submit-btn a:before,
.submit-btn a:after {
  width: calc(100% - 20px);
  height: 0;
  display: block;
  position: absolute;
  left: 0;
  content: "";
}
.button:before,
.submit-btn input:before,
.submit-btn a:before {
  border-bottom: solid 20px var(--mainColor);
  border-right: solid 20px transparent;
  bottom: 100%;
}
.button:after,
.submit-btn input:after,
.submit-btn a:after {
  border-top: solid 20px var(--mainColor);
  border-left: solid 20px transparent;
  top: 100%;
}
@media print, screen and (min-width: 768px) {
  .button:hover,
  .submit-btn input:hover,
  .submit-btn a:hover {
    background-color: #fff;
    color: var(--mainColor);
  }
}

.sendBtnWrap {
  -webkit-column-gap: 1em;
  -moz-column-gap: 1em;
  column-gap: 1em;
}

.mw_wp_form button.sendBtn {
  font-size: 16px !important;
  height: 100%;
  padding: 1.5rem 10rem;
  width: auto;
  border-radius: 10px;
}

.submit-btn {
  text-align: center;
  margin-top: 5%;
}
.submit-btn input,
.submit-btn a {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  font-weight: bold;
  font-size: 16px;
  letter-spacing: 0.07em;
  padding: 1.5rem 10rem;
  cursor: pointer;
  background-color: var(--mainColor);
  border-radius: 10px;
}
@media only screen and (max-width: 767px) {
  .submit-btn input,
  .submit-btn a {
    border-radius: 6px;
  }
}

.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;
}

.article-ttl {
  border-bottom: solid 2px var(--mainColor);
  line-height: 1.5;
  margin-bottom: 0.5em;
  font-weight: 700;
  font-size: 5.0890585242vw;
  padding-bottom: 0.3em;
}
@media print, screen and (min-width: 768px) {
  .article-ttl {
    font-size: 24px;
  }
}

.date_cat {
  font-size: 13px;
  margin-bottom: 2em;
}

.editor {
  line-height: 1.8;
  float: none;
  margin-left: auto;
  margin-right: auto;
}
.editor figcaption {
  font-size: 13px;
  color: gray;
}
.editor a {
  display: inline;
  text-decoration: underline;
  word-break: break-all;
  word-wrap: break-word;
  color: #33bad4;
}
.editor blockquote {
  position: relative;
  display: inline-block;
  margin: 1.5em 0;
  padding: 1.5em;
  max-width: 100%;
  color: #333;
  background: #efefef;
  font-weight: 700;
}
.editor blockquote p {
  margin: 0;
  padding: 0;
}
.editor strong {
  font-style: normal;
  font-weight: bold;
}
.editor p {
  margin: 0.5em 0 1.3em 0;
  line-height: 2;
  letter-spacing: 0.2em;
  font-size: 3.5623409669vw;
}
@media print, screen and (min-width: 768px) {
  .editor p {
    font-size: 15px;
  }
}
.editor h2 span,
.editor h3 span,
.editor h4 span,
.editor h5 span {
  font-weight: bold;
  line-height: 1.5;
}
.editor h2 {
  font-size: 4.0712468193vw;
  margin: 1.5em auto 0.5em;
  padding-left: 0.5em;
  font-weight: 700;
  line-height: 1.5;
  background-color: var(--mainColor);
  color: #fff;
  padding: 0.5em 0.8em;
}
@media print, screen and (min-width: 768px) {
  .editor h2 {
    font-size: 22px;
  }
}
.editor h3 {
  position: relative;
  font-size: 4.0712468193vw;
  margin: 1.5em auto 1em;
  padding: 0.5em;
  border-top: solid 1px var(--mainColor);
  border-bottom: solid 1px var(--mainColor);
  color: var(--mainColor);
}
@media print, screen and (min-width: 768px) {
  .editor h3 {
    font-size: 20px;
  }
}
.editor h4 {
  margin: 5% auto;
  border-left: 1.0178117048vw solid var(--mainColor);
  margin: 1.5em auto 1em;
  color: var(--mainColor);
  font-weight: bold;
  padding-left: 0.5em;
  line-height: 1.5;
}
@media print, screen and (min-width: 768px) {
  .editor h4 {
    font-size: 18px;
    border-left-width: 4px;
  }
}
.editor p + h2,
.editor p + h3,
.editor p + h4 {
  margin-top: 2em;
}
.editor table {
  width: 100%;
}
.editor table thead {
  border-bottom: none !important;
}
.editor table td:nth-child(1) {
  background-color: #f7f6f9;
  font-weight: bold;
  color: #515151;
}
.editor table th,
.editor table td {
  padding: 2rem 3rem;
}
@media only screen and (max-width: 767px) {
  .editor table th,
  .editor table td {
    padding: 1rem 2rem;
    width: 100%;
    display: block;
    border-bottom: 1px solid #dad8de;
  }
}
.editor table tr {
  border-bottom: 1px solid #dad8de;
}
@media only screen and (max-width: 767px) {
  .editor table tr {
    border-bottom: none;
  }
}
.editor table tr:first-child {
  border-top: 1px solid #dad8de;
}
.editor table tr > *:first-of-type {
  width: 30%;
}
@media only screen and (max-width: 767px) {
  .editor table tr > *:first-of-type {
    width: 100%;
  }
}
.editor ul,
.editor ol {
  margin-left: 1.5em;
}
.editor ul {
  margin-bottom: 2%;
}
.editor ul li {
  list-style-type: disc;
}
.editor ol li {
  list-style-type: decimal;
}
.editor li {
  line-height: 1.7;
  margin-bottom: 0.3em;
  position: relative;
}
.editor .wp-block-list.has-background {
  margin-left: 0;
}
.editor dl dt,
.editor dl dd {
  padding: 1em;
}
.editor dl dt {
  background-color: #efefef;
  font-weight: 700;
}
.editor dl dd {
  padding-bottom: 1.5em;
}
.editor ul.point {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-column-gap: 1em;
  -moz-column-gap: 1em;
  column-gap: 1em;
  row-gap: 1em;
  margin-top: 2em;
  margin-left: 0;
}
.editor ul.point > * {
  width: calc(33.3333333333% - 0.6666666667em);
  border: solid 1px var(--mainColor);
  padding: 0;
  list-style: none;
  border-radius: 0.5em;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .editor ul.point > * {
    width: 100%;
  }
}
.editor ul.point .pointTtl {
  font-weight: 700;
  text-align: center;
  margin-bottom: 0;
  background-color: #eeeeee;
  color: #333;
  padding: 0.5em 0;
  margin-top: 0;
}
.editor ul.point p:not(.pointTtl) {
  padding: 1em;
  margin-bottom: 0;
  margin-top: 0;
}

.editor.--voice h2 {
  background-color: #1e6f8c;
}
.editor.--voice h3 {
  border-top: solid 1px #1e6f8c;
  border-bottom: solid 1px #1e6f8c;
  color: #1e6f8c;
}
.editor.--voice h4 {
  border-left: 1.0178117048vw solid #1e6f8c;
}
.editor.--voice blockquote {
  position: relative;
  display: inline-block;
  margin: 1.5em 0 1.5em 15px;
  padding: 1.5em;
  max-width: 100%;
  color: #333;
  background: #efefef;
  font-weight: 500;
  margin-left: 100px;
}
@media only screen and (max-width: 767px) {
  .editor.--voice blockquote {
    margin-left: 0;
    margin-bottom: 27.989821883vw;
  }
}
.editor.--voice blockquote:before {
  content: "";
  position: absolute;
  bottom: 1em;
  left: -30px;
  margin-top: -15px;
  border: 15px solid transparent;
  border-right: 15px solid #efefef;
}
@media only screen and (max-width: 767px) {
  .editor.--voice blockquote:before {
    bottom: -1.7em;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    left: 2.5em;
    margin-top: unset;
    border: 1em solid transparent;
    border-right: 1em solid #efefef;
  }
}
.editor.--voice blockquote::after {
  content: "";
  display: block;
  position: absolute;
  left: -100px;
  aspect-ratio: 1/1;
  background: url(../img/common/ic-logo.svg) no-repeat center/contain;
  bottom: 0;
  width: 75px;
  -webkit-transform: scale(-1, 1);
  transform: scale(-1, 1);
}
@media only screen and (max-width: 767px) {
  .editor.--voice blockquote::after {
    left: unset;
    bottom: -27.989821883vw;
  }
}
.editor.--voice blockquote p {
  margin: 0;
  padding: 0;
}

.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 {
  border: none !important;
  margin: 0 auto;
  padding: 4% 6%;
  border-radius: 10px;
}
#toc_container li {
  line-height: 1.5;
}
#toc_container a {
  color: var(--mainColor);
  font-size: 14px;
}

.toc_list li:before {
  display: none;
}

.toc_title {
  border-bottom: 1px solid var(--mainColor);
  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(330deg, 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%;
}

header {
  position: fixed;
  width: 100%;
  z-index: 999;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  background-color: #fff;
  height: 15.2671755725vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media print, screen and (min-width: 768px) {
  header {
    height: 80px;
  }
}

.headerLogoWrap {
  position: relative;
  display: block;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  font-weight: bold;
  color: #418669;
  padding-left: 3.8167938931vw;
}
.headerLogoWrap .subcopy {
  font-size: 2.2900763359vw;
}
@media print, screen and (min-width: 768px) {
  .headerLogoWrap .subcopy {
    font-size: 10px;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .headerLogoWrap .subcopy {
    font-size: 8px;
  }
}
.headerLogoWrap img {
  width: 45.8015267176vw;
  margin-left: 0;
}
@media print, screen and (min-width: 768px) {
  .headerLogoWrap img {
    width: 220px;
  }
}
@media print, screen and (min-width: 768px) {
  .headerLogoWrap {
    padding-left: 15px;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .headerLogoWrap {
    padding-left: 15px;
  }
}

.headerSpBtnWrap {
  -webkit-column-gap: 1px;
  -moz-column-gap: 1px;
  column-gap: 1px;
  height: 100%;
}
@media only screen and (max-width: 767px) {
  .headerSpBtnWrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

.headerInner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-inline: 15px;
  background-color: var(--mainColor);
  position: relative;
  z-index: 9;
}
.headerInner .in {
  max-width: 1430px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
@media print, screen and (min-width: 768px) {
  .headerInner {
    contain: paint;
  }
}
.headerInner::before {
  content: "";
  display: block;
  position: absolute;
  background-color: var(--mainColor);
  width: 100vw;
  height: 100%;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
@media only screen and (max-width: 767px) {
  .headerInner::before {
    display: none;
  }
}

.headerLine .text,
.headerTel .text,
.headerForm .text,
.headerBtnWrap .text {
  color: #fff;
  font-size: 2.5445292621vw;
  font-weight: bold;
  letter-spacing: 0.05em;
}

.headerLine,
.headerForm,
.headerTel {
  background-color: var(--mainColor);
  height: 15.2671755725vw;
  aspect-ratio: 1.25/1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  row-gap: 0.5089058524vw;
  padding-bottom: 1.272264631vw;
}

.headerLine img,
.headerTel img,
.headerForm img {
  width: 5.5979643766vw;
  margin-left: auto;
  margin-right: auto;
}

.headerBtnWrap {
  height: 15.2671755725vw;
  background: -webkit-linear-gradient(42deg, rgb(30, 140, 99) 23%, rgb(34, 189, 132) 100%);
  background: linear-gradient(48deg, rgb(30, 140, 99) 23%, rgb(34, 189, 132) 100%);
  padding-top: 1.7811704835vw;
  aspect-ratio: 1/1;
}
@media print, screen and (min-width: 768px) {
  .headerBtnWrap {
    display: none;
  }
}
.headerBtnWrap .menu-btn {
  width: 100%;
  height: 100%;
}
.headerBtnWrap .text {
  color: #fff;
  font-size: 2.5445292621vw;
  font-weight: bold;
  line-height: 1;
  padding-top: 2.0356234097vw;
}

.headerMenu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  margin-right: 0;
  margin-left: auto;
  padding-right: 15px;
}
@media only screen and (max-width: 767px) {
  .headerMenu {
    display: none;
  }
}
.headerMenu ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.headerMenu li {
  position: relative;
}
.headerMenu li a {
  padding: 0 0.25em;
  display: block;
  font-weight: 700;
}
@media only screen and (max-width: 1050px) {
  .headerMenu li a {
    font-size: 0.9em;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .headerMenu li a {
    font-size: 0.7em;
  }
}
.headerMenu ul.child {
  position: absolute;
  color: #fff;
  row-gap: 1px;
  background-color: #fff;
  width: 500px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-column-gap: 1px;
  -moz-column-gap: 1px;
  column-gap: 1px;
  row-gap: 1px;
  border: solid 1px #fff;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  opacity: 0;
  pointer-events: none;
}
.headerMenu ul.child li {
  width: calc(50% - 0.5px);
}
.headerMenu ul.child li a {
  width: 100%;
  padding: 0.25em 0.8em;
  display: block;
  background-color: var(--mainColor);
  font-size: 0.9em;
}
@media print, screen and (min-width: 768px) {
  .headerMenu li.hasChild:hover ul.child {
    opacity: 1;
    pointer-events: all;
  }
}

@media only screen and (min-width: 1101px) {
  header.fixed {
    background-color: rgba(255, 255, 255, 0.95);
  }
}
.overRayMenuUl {
  margin-bottom: 30px;
}
.overRayMenuUl > li {
  position: relative;
  border-bottom: solid 1px var(--mainColor);
}
.overRayMenuUl > li > a {
  padding-left: 1em;
  position: relative;
}
.overRayMenuUl > li > a::before {
  content: "";
  display: block;
  position: absolute;
  width: 0.6em;
  aspect-ratio: 1/1;
  background-color: var(--subColor);
  border-radius: 100vw;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.overRayMenuUl > li a {
  color: var(--mainColor);
  font-weight: 700;
}
.overRayMenuUl > li a div {
  color: var(--mainColor);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.overRayMenuUl > li a div.ja {
  font-size: 15px;
  font-weight: 500;
}
@media print, screen and (min-width: 768px) {
  .overRayMenuUl > li a:hover span {
    color: var(--mainColor);
  }
}
.overRayMenuUl > li.hasChild .child {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 1em;
  margin-bottom: 1.5em;
  -webkit-column-gap: 0.2544529262vw;
  -moz-column-gap: 0.2544529262vw;
  column-gap: 0.2544529262vw;
  row-gap: 0.2544529262vw;
}
.overRayMenuUl > li.hasChild .child li {
  width: calc(50% - 0.1272264631vw);
}
.overRayMenuUl > li.hasChild .child li a {
  font-size: 0.8em;
  padding: 0.4em 1em;
  color: #fff;
  background-color: rgba(30, 140, 99, 0.8);
}
@media only screen and (max-width: 959px) {
  .overRayMenuUl > li a {
    display: block;
    padding-top: 0.6em;
    padding-bottom: 0.6em;
  }
  .overRayMenuUl > li .childWrap {
    padding-left: 1em;
  }
  .overRayMenuUl > li .childWrap a {
    font-weight: 500;
    padding-top: 0.25em;
    padding-bottom: 0.25em;
    display: block;
  }
}

.spmenuBlock {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  width: 100%;
  min-height: 100dvh;
  overflow-y: scroll;
  padding: 100px 50px;
  background-color: rgba(255, 255, 255, 0.95);
}
@media only screen and (max-width: 767px) {
  .spmenuBlock {
    padding: 0;
    height: 100vh;
  }
}
.spmenuBlock .rightBtns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-column-gap: 0.5em;
  -moz-column-gap: 0.5em;
  column-gap: 0.5em;
}

.spmenuBoxInner {
  width: 100%;
  padding: 60px 15px 0;
}
@media only screen and (max-width: 767px) {
  .spmenuBoxInner {
    padding-top: 20.3562340967vw;
    padding-bottom: 12.7226463104vw;
  }
}

@media only screen and (max-width: 767px) {
  body {
    font-size: 3.8167938931vw !important;
  }
}

.floating .headerForm * {
  color: var(--mainColor);
}

.uwaki {
  font-size: 1em;
  color: #222;
  line-height: 1.8;
  padding-top: 0;
}
.uwaki .cmnttl .ja {
  font-size: 2em;
}
@media only screen and (max-width: 767px) {
  .uwaki .cmnttl .ja {
    font-size: 1.8em;
  }
}
.uwaki .cmnttl span {
  font-weight: 700;
}
.uwaki .uwaki-section {
  padding: 4em 1em;
}
.uwaki .uwaki-section__inner {
  max-width: 67.5em;
  margin: 0 auto;
}
.uwaki .uwaki-section__title {
  font-size: 1.75em;
  font-weight: 700;
  margin-bottom: 1.5em;
  text-align: center;
  letter-spacing: 0.06em;
}
.uwaki .uwaki-section__intro {
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .uwaki .uwaki-section__intro.text-left-sp {
    text-align: left;
  }
}
.uwaki .uwaki-section__intro, .uwaki .uwaki-section__text {
  max-width: 48.75em;
  margin: 0 auto 1.5em;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
.uwaki .sp-only {
  display: none;
}
@media (max-width: 768px) {
  .uwaki .uwaki-section {
    padding: 2.5em 2.5445292621vw;
  }
  .uwaki .uwaki-section__title {
    font-size: 1.375em;
    text-align: left;
  }
  .uwaki .sp-only {
    display: inline;
  }
  .uwaki .pc-only {
    display: none;
  }
}

.uwaki-hero {
  background: #eff4eb;
  padding: 4.5em 1em 3.5em;
  background: #eff4eb url(../img/uwaki/mv.jpg) no-repeat center/cover;
  position: relative;
}
.uwaki-hero::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  background: #eff4eb;
  left: 0;
  top: 0;
  opacity: 0.85;
}
.uwaki-hero > * {
  position: relative;
}
.uwaki-hero__inner {
  max-width: 67.5em;
  margin: 0 auto;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.uwaki-hero__label {
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #305a7a;
  font-size: 14px;
  font-weight: 700;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .uwaki-hero__label {
    font-size: 13px;
  }
}
@media only screen and (max-width: 767px) {
  .uwaki-hero__label {
    font-size: 13px;
  }
}
.uwaki-hero__title {
  font-size: 2em;
  line-height: 1.4;
  margin-bottom: 1em;
}
.uwaki-hero__lead {
  font-size: 0.9375em;
  margin-bottom: 1.5em;
}
.uwaki-hero__cta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 0.5em;
}
.uwaki-hero__note {
  font-size: 0.75em;
}
@media (max-width: 768px) {
  .uwaki-hero__inner {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 1.5em;
  }
  .uwaki-hero__title {
    font-size: 1.5em;
  }
}

.btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 0.75em 1.75em;
  border-radius: 999px;
  border: 1px solid transparent;
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
  cursor: pointer;
  background-color: var(--mainColor);
  max-width: 25em;
  font-weight: 700;
}
.btn--primary {
  color: #fff;
}
.btn--primary:hover {
  opacity: 0.9;
  -webkit-transform: translateY(-1px);
  transform: translateY(-1px);
  -webkit-box-shadow: 0 0.375em 0.875em rgba(0, 0, 0, 0.1);
  box-shadow: 0 0.375em 0.875em rgba(0, 0, 0, 0.1);
}

.uwaki-section--problems .in {
  border: solid 2px var(--mainColor);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 2em;
  background-color: #fff;
  margin-inline: auto;
  border-radius: 2em;
}
@media only screen and (max-width: 767px) {
  .uwaki-section--problems .in {
    padding-inline: 1em;
  }
}
.uwaki-section--problems .in .uwaki-problems {
  width: 100% !important;
}
.uwaki-section--problems .in .uwaki-problems li {
  font-size: 1.2em;
}
@media only screen and (max-width: 767px) {
  .uwaki-section--problems .in .uwaki-problems li {
    font-size: 1.1em;
  }
}
.uwaki-section--problems .in .big {
  font-size: 1.2em;
}

@media only screen and (max-width: 767px) {
  .f-big-sp {
    font-size: 1.1em;
  }
}
.uwaki-problems {
  margin-inline: auto;
  list-style: none;
  margin: 1.5em auto;
  padding: 0;
  max-width: 48.75em;
  display: -ms-grid;
  display: grid;
  gap: 0.75em;
}
.uwaki-problems__item {
  background: #fff;
  border-radius: 0.75em;
  padding: 0.75em 1em;
  -webkit-box-shadow: 0 0.5em 1.25em rgba(0, 0, 0, 0.04);
  box-shadow: 0 0.5em 1.25em rgba(0, 0, 0, 0.04);
  position: relative;
  padding-left: 2.5em;
  font-size: 0.875em;
}
.uwaki-problems__item::before {
  content: "✓";
  position: absolute;
  left: 1em;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  color: #305a7a;
  font-weight: 700;
  font-size: 1em;
}

.bgLight:not(.--no) .topReasonItem li {
  background-color: #fff !important;
}

.--tri {
  margin-bottom: 4em;
  position: relative;
}
.--tri::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 1.5em solid transparent;
  border-left: 1.5em solid transparent;
  border-top: 2em solid var(--mainColor);
  border-bottom: 0;
  position: absolute;
  left: 50%;
  bottom: 0;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  bottom: -3em;
}

.uwaki-section--after .topReasonItem.uwaki-problems li {
  font-size: 1.2em !important;
}
@media only screen and (max-width: 767px) {
  .uwaki-section--after .topReasonItem.uwaki-problems li {
    font-size: 1.1em !important;
  }
}

.uwaki-section--reasons {
  background: #fff;
}
.uwaki-section--reasons .uwaki-reasons {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: minmax(0, 1fr) 1.5em minmax(0, 1fr);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5em;
  margin-top: 1.5em;
}
.uwaki-section--reasons .uwaki-reason {
  background: #fff;
  border-radius: 0.75em;
  -webkit-box-shadow: 0 0.5em 1.25em rgba(0, 0, 0, 0.04);
  box-shadow: 0 0.5em 1.25em rgba(0, 0, 0, 0.04);
  padding: 1.25em 1.25em 1.375em;
  position: relative;
  overflow: hidden;
}
.uwaki-section--reasons .uwaki-reason__title {
  font-size: 1.125em;
  font-weight: 700;
  margin-bottom: 0.5em;
  padding-left: 2.5em;
  position: relative;
}
.uwaki-section--reasons .uwaki-reason__title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.25em;
  width: 1.5em;
  height: 1.5em;
  border-radius: 999px;
  background: rgba(48, 90, 122, 0.1);
  border: 1px solid rgba(48, 90, 122, 0.4);
}
.uwaki-section--reasons .uwaki-reason__text {
  font-size: 0.875em;
}
@media (max-width: 768px) {
  .uwaki-section--reasons .uwaki-reasons {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  .uwaki-section--reasons .uwaki-reason__title {
    font-size: 1em;
  }
}

.uwaki-section--price {
  background: #eff4eb;
}
.uwaki-section--price .uwaki-price {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: minmax(0, 1fr) 1.5em minmax(0, 1fr);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5em;
  margin-top: 1.5em;
}
.uwaki-section--price .uwaki-price__block {
  background: #fff;
  border-radius: 0.75em;
  -webkit-box-shadow: 0 0.5em 1.25em rgba(0, 0, 0, 0.04);
  box-shadow: 0 0.5em 1.25em rgba(0, 0, 0, 0.04);
  padding: 1.25em 1.25em 1.5em;
}
.uwaki-section--price .uwaki-price__title {
  font-weight: 700;
  margin-bottom: 0.75em;
  font-size: 1em;
}
.uwaki-section--price .uwaki-price__list {
  list-style: none;
  padding: 0;
  margin: 0 0 0.75em;
}
.uwaki-section--price .uwaki-price__list__item,
.uwaki-section--price .uwaki-price__list .uwaki-price__item {
  font-size: 0.875em;
  margin-bottom: 0.375em;
}
.uwaki-section--price .uwaki-price__note {
  font-size: 0.75em;
}
@media (max-width: 768px) {
  .uwaki-section--price .uwaki-price {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}

.uwaki-price-guide {
  margin-top: 2em;
  background: #fff;
  border-radius: 0.75em;
  -webkit-box-shadow: 0 0.5em 1.25em rgba(0, 0, 0, 0.04);
  box-shadow: 0 0.5em 1.25em rgba(0, 0, 0, 0.04);
  padding: 1.25em 1.25em 1.5em;
}

.uwaki-price-guide-title,
.uwaki-price-examples-title {
  font-size: 1em;
  font-weight: 700;
  margin-bottom: 1em;
  padding-left: 0.75em;
  position: relative;
  line-height: 1.4;
  background-color: var(--mainColor);
  color: #fff;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.5em 1em;
}
.uwaki-price-guide-title::before,
.uwaki-price-examples-title::before {
  position: absolute;
  left: 0;
  top: 0.15em;
  width: 0.25em;
  height: 1.2em;
  background-color: #305a7a;
  border-radius: 0.125em;
}

.uwaki-price-guide-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875em;
}

.uwaki-price-guide-table th,
.uwaki-price-guide-table td {
  border: 1px solid #ddd;
  padding: 0.625em 0.75em;
  vertical-align: top;
}

.uwaki-price-guide-table th {
  width: 30%;
  background: #f2f4f7;
  font-weight: 600;
  white-space: nowrap;
}

.uwaki-price-guide-table td {
  background: #fff;
}

.uwaki-price-guide-note {
  margin-top: 0.75em;
  font-size: 0.75em;
}

.uwaki-price-examples {
  margin-top: 2.5em;
}

.uwaki-price-examples-title {
  font-size: 1em;
  font-weight: 700;
  margin-bottom: 1em;
}

.uwaki-price-example-list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: minmax(0, 1fr) 1.25em minmax(0, 1fr);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25em;
}

.uwaki-price-example {
  background: #fff;
  border-radius: 0.75em;
  -webkit-box-shadow: 0 0.5em 1.25em rgba(0, 0, 0, 0.04);
  box-shadow: 0 0.5em 1.25em rgba(0, 0, 0, 0.04);
  padding: 1.125em 1.25em 1.25em;
  font-size: 0.875em;
}

.uwaki-price-example-heading {
  font-size: 1.2em;
  font-weight: 700;
  margin-bottom: 0.375em;
  border-bottom: solid 2px var(--mainColor);
}

.uwaki-price-example-summary {
  margin-bottom: 0.5em;
}

.uwaki-price-example-detail {
  list-style: none;
  margin: 0;
  padding: 0;
}

.uwaki-price-example-detail li {
  margin-bottom: 0.25em;
}

.uwaki-price-example-price {
  margin-top: 0.25em;
  font-weight: 600;
}

.uwaki-price-examples-note {
  margin-top: 1em;
  font-size: 0.8125em;
}

@media (max-width: 768px) {
  .uwaki-price-guide {
    padding: 1em 0.875em 1.125em;
  }
  .uwaki-price-guide-table th,
  .uwaki-price-guide-table td {
    font-size: 0.8125em;
    padding: 0.5em 0.625em;
  }
  .uwaki-price-example-list {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  .uwaki-price-example {
    padding: 0.875em 0.875em 1em;
  }
  .uwaki-price-example-heading {
    font-size: 0.875em;
  }
}
.uwaki-section--flow .uwaki-flow {
  list-style: none;
  margin: 1.5em auto 0;
  padding: 0;
  max-width: 48.75em;
  border-left: 2px solid rgba(48, 90, 122, 0.2);
}
.uwaki-section--flow .uwaki-flow__step {
  position: relative;
  padding-left: 1.5em;
  margin-bottom: 1.5em;
}
.uwaki-section--flow .uwaki-flow__step::before {
  content: "";
  position: absolute;
  left: -0.4375em;
  top: 0.25em;
  width: 0.75em;
  height: 0.75em;
  border-radius: 999px;
  background: #fff;
  border: 2px solid #305a7a;
}
.uwaki-section--flow .uwaki-flow__title {
  font-weight: 700;
  margin-bottom: 0.25em;
  font-size: 0.9375em;
}
.uwaki-section--flow .uwaki-flow__text {
  font-size: 0.875em;
}
@media (max-width: 768px) {
  .uwaki-section--flow .uwaki-flow {
    border-left: none;
  }
  .uwaki-section--flow .uwaki-flow__step {
    padding-left: 0;
  }
  .uwaki-section--flow .uwaki-flow__step::before {
    display: none;
  }
}

.uwaki .uwaki-section--cases {
  background: #fff;
  padding-top: 0;
}
.uwaki .uwaki-section--cases .uwaki-cases {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: minmax(0, 1fr) 1.5em minmax(0, 1fr);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5em;
  margin-top: 1.5em;
}
.uwaki .uwaki-section--cases .uwaki-cases__item {
  background: #fff;
  border-radius: 0.75em;
  -webkit-box-shadow: 0 0.5em 1.25em rgba(0, 0, 0, 0.04);
  box-shadow: 0 0.5em 1.25em rgba(0, 0, 0, 0.04);
  padding: 1.125em 1.25em;
}
.uwaki .uwaki-section--cases .uwaki-cases__title {
  font-size: 0.9375em;
  margin-bottom: 0.5em;
}
.uwaki .uwaki-section--cases .uwaki-cases__title a {
  color: #305a7a;
  text-decoration: none;
}
.uwaki .uwaki-section--cases .uwaki-cases__title a:hover {
  text-decoration: underline;
}
.uwaki .uwaki-section--cases .uwaki-cases__text {
  font-size: 0.875em;
}
.uwaki .uwaki-section--cases .uwaki-section__link {
  margin-top: 1.5em;
  text-align: right;
}
.uwaki .uwaki-section--cases .link-arrow {
  font-size: 0.875em;
  color: #305a7a;
  text-decoration: none;
}
.uwaki .uwaki-section--cases .link-arrow::after {
  content: "▶";
  font-size: 0.625em;
  margin-left: 0.25em;
}
.uwaki .uwaki-section--cases .link-arrow:hover {
  text-decoration: underline;
}
@media (max-width: 768px) {
  .uwaki .uwaki-section--cases .uwaki-cases {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}

.uwaki-section--faq {
  background: #eff4eb;
}
.uwaki-section--faq .uwaki-faq {
  max-width: 48.75em;
  margin: 1.5em auto 0;
}
.uwaki-section--faq .uwaki-faq__item {
  padding: 0.75em 0;
  border-bottom: 1px solid #e3e3e6;
}
.uwaki-section--faq .uwaki-faq__q {
  font-weight: 600;
  font-size: 0.875em;
  margin-bottom: 0.25em;
}
.uwaki-section--faq .uwaki-faq__a {
  font-size: 0.875em;
}

.faqList {
  margin-bottom: 1em;
}
@media only screen and (max-width: 767px) {
  .faqList * {
    font-size: 0.9em;
  }
}
.faqList dt {
  position: relative;
  padding-right: 2em;
  cursor: pointer;
}
.faqList dt::before {
  content: "";
  width: 0.5em;
  height: 0.5em;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  position: absolute;
  right: 1em;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(135deg);
  transform: translateY(-50%) rotate(135deg);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.faqList dd {
  display: none;
  background-color: #fff;
}
.faqList.is-open dt::before {
  -webkit-transform: translateY(-50%) rotate(-45deg);
  transform: translateY(-50%) rotate(-45deg);
}

.cmnbtn.--noarw::before {
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}

.uwaki-section--area {
  background: #fff;
}
.uwaki-section--area .uwaki-area {
  list-style: none;
  padding: 0;
  margin: 1em auto 0;
  max-width: 40em;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: minmax(0, 1fr) 1.5em minmax(0, 1fr);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.5em 1.5em;
}
.uwaki-section--area .uwaki-area__item {
  font-size: 0.875em;
}
@media (max-width: 768px) {
  .uwaki-section--area .uwaki-area {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}

.uwaki-section__text.--strong {
  font-size: 1.1em;
}
@media only screen and (max-width: 767px) {
  .uwaki-section__text.--strong {
    font-size: 1em;
  }
}

.uwaki-section--cta {
  background: rgba(48, 90, 122, 0.04);
}
.uwaki-section--cta .uwaki-section__title {
  text-align: center;
}
.uwaki-section--cta .uwaki-section__text {
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .uwaki-section--cta .uwaki-section__text.text-left-sp {
    text-align: left;
  }
}
.uwaki-section--cta .uwaki-cta {
  margin-top: 1.5em;
  text-align: center;
}
.uwaki-section--cta .uwaki-cta__note {
  margin-top: 0.5em;
  font-size: 0.75em;
}

/* =========================================
   浮気を疑ったときにやってはいけない行動
========================================= */
.bgLight {
  background-color: #eff4eb;
}

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

.uwaki-ng-list {
  margin-top: 2em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 0;
  list-style: none;
  gap: 1.5em;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
@media only screen and (max-width: 767px) {
  .uwaki-ng-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.uwaki-ng-list > * {
  width: calc(33.3333333333% - 1em);
}
@media only screen and (max-width: 767px) {
  .uwaki-ng-list > * {
    width: 80%;
    margin-inline: auto;
  }
}
.uwaki-ng-list li {
  background: #f9fbfc;
  border: 3px solid #d94a4a;
  padding: 1em 1.5em;
  border-radius: 6px;
  position: relative;
  line-height: 1.7;
}
.uwaki-ng-list li .img {
  max-width: 50%;
  margin-inline: auto;
  margin-bottom: 1em;
}
.uwaki-ng-list li strong {
  display: block;
  margin-bottom: 6px;
  font-weight: 700;
  font-size: 1.05em;
  color: #b83a3a;
}

.uwaki-benefit.uwaki-problems {
  max-width: unset;
  width: 100%;
}
.uwaki-benefit.uwaki-problems ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 1em;
  -moz-column-gap: 1em;
  column-gap: 1em;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  row-gap: 1em;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media only screen and (max-width: 767px) {
  .uwaki-benefit.uwaki-problems ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.uwaki-benefit.uwaki-problems ul > * {
  width: calc(33.3333333333% - 0.6666666667em);
  background-color: #eff4eb;
  padding: 1em;
  border-radius: 0.4em;
}
@media only screen and (max-width: 767px) {
  .uwaki-benefit.uwaki-problems ul > * {
    width: 80%;
    margin-inline: auto;
  }
}
.uwaki-benefit.uwaki-problems ul .ttl {
  text-align: center;
  line-height: 1.2;
}
.uwaki-benefit.uwaki-problems ul .ttl .marker {
  font-size: 1.5em;
  font-weight: 700;
}
.uwaki-benefit.uwaki-problems ul .img {
  margin-block: 1em;
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 100vw;
  overflow: hidden;
  max-width: 60%;
  margin: 1em auto;
}
.uwaki-benefit.uwaki-problems ul .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.uwaki-section--benefit .uwaki-section__inner {
  max-width: 1200px;
}
/*# sourceMappingURL=sourcemaps/service.css.map */