@charset "UTF-8";
/*==========================================================================
# reset - ブラウザの差異や不要なスタイルを無くすためのスタイル
========================================================================== */
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
dl,
li,
dt,
dd,
p,
div,
span,
img,
a,
table,
tr,
th,
td,
small,
button,
time,
figure {
  border: 0;
  font: inherit;
  font-size: 100%;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

li,
dd {
  list-style-type: none;
}

header,
footer,
nav,
section,
article,
aside,
figure,
figcaption {
  display: block;
}

img {
  border: none;
  vertical-align: bottom;
}

a {
  cursor: pointer;
  text-decoration: none;
}

@media (min-width: 1001px) {
  .pc {
    display: block;
  }
}
@media (max-width: 767px) {
  .pc {
    display: none;
  }
}

@media (max-width: 1000px) {
  .tb-on {
    display: block;
  }
}

@media (max-width: 1000px) {
  .tb-off {
    display: none;
  }
}

@media (min-width: 1001px) {
  .sp {
    display: none;
  }
}
@media (max-width: 767px) {
  .sp {
    display: block;
  }
}

/*1.0rem=10px*/
html {
  font-size: 62.5%;
}

body {
  background-color: #F3F3F6;
  color: #535e64;
  font-size: 18px;
  font-weight: 500;
  font-family: "Noto Sans JP", "Helvetica Neue", "Helvetica", "Hiragino Sans", "ヒラギノ角ゴシック", YuGothic, "Yu Gothic", "メイリオ", Meiryo, "Arial", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

img {
  width: 100%;
}

button {
  background-color: transparent;
  cursor: pointer;
}

input[type=checkbox],
label,
a {
  cursor: pointer;
}

.l-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 500;
  background-color: rgba(255, 255, 255, 0.3);
}

.l-header__items {
  display: flex;
  padding: 5px 20px 5px 5px;
}
@media (max-width: 1000px) {
  .l-header__items {
    justify-content: space-between;
    align-items: center;
    margin: 0;
    margin-right: 10px;
    position: relative;
    padding: 0;
  }
}

/***********************************************
header                      左               ロゴ*****/
.l-header__left {
  margin-left: 20px;
  margin-right: auto;
}

@media (max-width: 1043px) {
  .l-header__left {
    position: absolute;
    top: 6px;
    left: 0px;
  }
}
.l-header__logo {
  display: block;
  width: 15vw;
  max-width: 150px;
  margin: 15px 0;
  transition: all 0.2s linear 0s;
}
.l-header__logo:hover {
  opacity: 0.7;
}
@media (max-width: 1000px) {
  .l-header__logo {
    width: 150px;
  }
}

/***********************************************
header       右               電話と問い合わせボタン*****/
.l-header__right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  font-size: 16px;
  margin-top: 20px;
}
.l-header__right li {
  position: relative;
}
.l-header__right li a {
  color: #535e64;
  font-size: 18px;
  font-weight: 500;
  vertical-align: middle;
}
.l-header__right li:last-child a {
  font-family: "Bebas Neue", "Noto Sans JP", "Helvetica Neue", "Helvetica", "Hiragino Sans", "ヒラギノ角ゴシック", YuGothic, "Yu Gothic", "メイリオ", Meiryo, "Arial", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 30px;
  letter-spacing: 2.4px;
  color: #fff;
}
.l-header__right li::after {
  position: absolute;
  width: 100%;
  height: 4px;
  bottom: -10px;
  left: 0;
  border-bottom: solid 0 #3f4041;
  background-image: linear-gradient(to right, #3b85c6, #8061a7, #e84970);
  opacity: 0;
  transition: all 0.2s linear 0s;
}
.l-header__right li:hover::after {
  opacity: 1;
}
.l-header__right li.is-active::after {
  opacity: 1;
}

@media (max-width: 1043px) {
  .l-header__right {
    display: none;
  }
}
.l-header__contact {
  padding: 10px 70px;
  border-radius: 29px;
  border: solid 0 #3f4041;
  background-image: linear-gradient(to right, #3b85c6, #8061a7, #e84970);
  transition: all 0.2s linear;
}
.l-header__contact:hover {
  opacity: 0.7;
  box-shadow: 4px 3px 6px 0px rgba(0, 0, 0, 0.13);
}

#js-color1.change-color,
#js-color3.change-color {
  color: #433430;
  border-color: #433430;
}

#js-color2.change-color .drawer-bar,
#js-color4.change-color .drawer-bar {
  background-color: #433430;
}

.is-checked #js-color2.change-color .drawer-bar,
.is-checked #js-color4.change-color .drawer-bar {
  background-color: #fff;
}
.is-checked #js-color2.change-color .drawer-bar:nth-child(2),
.is-checked #js-color4.change-color .drawer-bar:nth-child(2) {
  background-color: transparent;
}

/***********************************************
ハンバーガーメニュー
************************************************/
.drawer-icon {
  width: 70px;
  height: 70px;
  z-index: 30;
  text-align: center;
  cursor: pointer;
  transition: all 0.5s ease 0s;
  background: transparent;
  padding: 0;
  display: block;
  margin-right: 30px;
  margin-left: auto;
  position: relative;
}

@media (min-width: 1042px) {
  .drawer-icon {
    display: none;
  }
}
@media (max-width: 1043px) {
  .drawer-icon {
    margin-right: 12px;
    margin-top: 7px;
  }
}
.drawer-bars {
  display: inline-block;
  width: 38px;
  height: 26.75px;
  position: relative;
  vertical-align: bottom;
  z-index: 100;
}

.drawer-bar {
  position: absolute;
  right: 0;
  left: 0;
  display: block;
  background: #535e64;
  width: 100%;
  height: 2.25px;
  border-radius: 20px;
  transition: all 0.5s linear 0s;
}
.drawer-bar:nth-of-type(1) {
  top: 0;
}
.drawer-bar:nth-of-type(2) {
  top: 12.25px;
}
@media (max-width: 767px) {
  .drawer-bar:nth-of-type(2) {
    top: 10.25px;
  }
}
.drawer-bar:nth-of-type(3) {
  top: 24.5px;
}
@media (max-width: 767px) {
  .drawer-bar:nth-of-type(3) {
    top: 20.5px;
  }
}
.is-checked .drawer-bar:nth-of-type(1) {
  top: 10px;
  transform: rotate(-45deg);
  background: #535E64;
}
.is-checked .drawer-bar:nth-of-type(2) {
  background: transparent;
}
.is-checked .drawer-bar:nth-of-type(3) {
  top: 10px;
  transform: rotate(45deg);
  background: #535E64;
}

@media (min-width: 1042px) {
  .drawer-bar {
    display: none;
  }
}
@media (max-width: 1043px) {
  .drawer-bar {
    display: block;
  }
}
.drawer-content-cover {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  transform: translateX(0);
  top: 0;
  right: 0;
  bottom: auto;
  width: 100%;
  height: 100%;
  max-width: 100%;
  transition: all 0.5s linear 0s;
  background: #F3F3F6;
  z-index: 29;
  padding-top: 96px;
}
.drawer-content-cover.is-checked {
  visibility: visible;
  opacity: 1;
}
.drawer-content-cover ul {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  width: 300px;
  max-width: 100%;
  z-index: 1;
}
.drawer-content-cover ul li:last-child a {
  font-family: "Bebas Neue", "Noto Sans JP", "Helvetica Neue", "Helvetica", "Hiragino Sans", "ヒラギノ角ゴシック", YuGothic, "Yu Gothic", "メイリオ", Meiryo, "Arial", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 22px;
  letter-spacing: 2.4px;
  color: #fff;
  padding: 4px 0;
  margin-top: 20px;
}
.drawer-content-cover ul li a {
  text-align: center;
  font-size: 30px;
  text-decoration: none;
  display: block;
  position: relative;
  padding: 25px;
  color: #535E64;
  transition: all 0.2s linear 0s;
  z-index: 1;
}
.drawer-content-cover ul li a:hover {
  opacity: 0.7;
}
@media (max-width: 767px) {
  .drawer-content-cover ul li a {
    font-size: 16px;
  }
}

.l-footer {
  width: 100%;
  height: auto;
  text-align: center;
  line-height: 2;
  z-index: 10;
  position: relative;
  padding-bottom: 10px;
  font-size: 20px;
  font-weight: 400;
}
.l-footer a {
  transition: all 0.2s linear 0s;
  color: #fff;
}
.l-footer a:hover {
  opacity: 0.7;
}

.l-footer__flex {
  width: 80%;
  max-width: 950px;
  padding-top: 60px;
  margin-left: 8.6%;
  text-align: left;
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .l-footer__flex {
    display: block;
    margin-left: 0;
    margin: 0 auto;
  }
}

.l-footer__background-left {
  background-image: url(../img/s18-contact.jpg);
}

.l-footer__background-right {
  background-image: url(../img/s18-company.jpg);
}

.l-footer__background-left,
.l-footer__background-right {
  text-align: center;
  width: 50%;
  padding: 80px 0;
  background-size: cover;
  background-position: top right;
  position: relative;
  color: #000;
  transition: all 0.2s linear 0s;
}
.l-footer__background-left:hover,
.l-footer__background-right:hover {
  opacity: 0.7;
  box-shadow: 4px 3px 6px 0px rgba(0, 0, 0, 0.13);
}
.l-footer__background-left:hover h3,
.l-footer__background-left:hover h2,
.l-footer__background-left:hover span,
.l-footer__background-right:hover h3,
.l-footer__background-right:hover h2,
.l-footer__background-right:hover span {
  transform: scale(1.05, 1.05);
}
@media (max-width: 767px) {
  .l-footer__background-left,
  .l-footer__background-right {
    width: 100%;
    padding: 30px 0;
  }
}
.l-footer__background-left h3,
.l-footer__background-left h2,
.l-footer__background-left span,
.l-footer__background-right h3,
.l-footer__background-right h2,
.l-footer__background-right span {
  transition: all 0.2s linear 0s;
  font-family: "Bebas Neue";
  color: #fff;
}
.l-footer__background-left h3,
.l-footer__background-right h3 {
  font-size: 70px;
  letter-spacing: 1.75px;
  color: #fff;
}
.l-footer__background-left h2,
.l-footer__background-right h2 {
  margin-top: -12px;
}

.l-footer__viewmore {
  display: inline-block;
  padding-top: 40px;
  font-size: 22px;
  letter-spacing: 1.76px;
}
.l-footer__viewmore::after {
  position: absolute;
  width: 125%;
  height: 4px;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  border-bottom: solid 0 #3f4041;
  background-image: linear-gradient(to right, #3b85c6, #8061a7, #e84970);
  transition: all 0.2s linear 0s;
}

@media (max-width: 767px) {
  .l-footer__background-right {
    margin-top: 0;
  }
}

.l-footer-nav {
  background-color: #000;
}

.l-footer__items {
  display: flex;
}
@media (max-width: 767px) {
  .l-footer__items {
    display: block;
    align-items: center;
    margin: 0;
  }
}

.l-footer__bg {
  background-color: #000;
}

.l-footer__inner {
  width: 80%;
  max-width: 1230px;
  margin: 0 auto;
}

/***********************************************
footer                   左               ロゴ*****/
.l-footer__left {
  margin: 30px auto 0px 20px;
}
@media (max-width: 767px) {
  .l-footer__left {
    margin: 30px 0 0 -5px;
  }
}

.l-footer__logo {
  display: block;
  width: 15vw;
  max-width: 160px;
  margin: 15px 0;
  transition: all 0.2s linear 0s;
}
.l-footer__logo:hover {
  opacity: 0.7;
}
@media (max-width: 767px) {
  .l-footer__logo {
    width: 200px;
    margin: 0 auto;
  }
}

/*****************************************
footer      右           **************/
.l-footer__right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  font-size: 16px;
  margin-top: 55px;
  color: #fff;
}
@media (max-width: 767px) {
  .l-footer__right {
    font-size: 12px;
    line-height: 1.1;
    justify-content: center;
  }
}

/***********************************footer copy right*/
.l-footer__copyright {
  display: block;
  width: 100%;
  text-align: center;
  padding: 15px 0 27px;
  color: #fff;
  font-size: 14px;
  font-weight: 400;
}
@media (max-width: 1000px) {
  .l-footer__copyright {
    text-align: center;
    font-size: 9px;
    padding: 0;
    padding: 30px 0 0px;
  }
}

.l-footer__nav-items {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  font-size: 15px;
  padding: 46px 0 0;
  line-height: 1;
}
.l-footer__nav-item {
  padding: 0 22px;
  margin: 10px 0;
  border-right: solid 1px #c0c0c0;
}
.l-footer__nav-item a:hover {
  opacity: 0.7;
}
.l-footer__nav-item:last-child {
  border-right: none;
}

.l-footer__container {
  font-size: 13px;
  line-height: 3;
  margin-right: 48px;
}
@media (max-width: 1000px) {
  .l-footer__container {
    margin: 10px 20px 10px 0;
  }
}

/***********************************************
  sp  navボタン
************************************************/
.l-footer-cv {
  display: flex;
  background-color: #4877B0;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  font-size: 15px;
  font-weight: 700;
}

.l-footer-cv__btn {
  width: 50%;
  padding: 10px;
}
.l-footer-cv__btn a {
  color: #fff;
}
.l-footer-cv__btn.--beauty {
  background-color: #9F1547;
}
.l-footer-cv__btn img {
  width: 25px;
  margin-bottom: 2px;
}

/*no16-download
no17-contactセクション*/
.no18-footer {
  padding: 50px 0 30px 0;
  background: #1A1A1A;
  color: #fff;
}

.no18-footer__logo {
  display: block;
  width: 350px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .no18-footer__logo {
    width: 200px;
  }
}

.no18-footer__address {
  display: block;
  font-size: 14px;
  width: 250px;
  margin-top: 30px;
  text-align: left;
  margin: 30px auto;
}
.no18-footer__address p {
  padding: 5px;
}

h2.l-footer__notojp {
  font-family: "Noto Sans JP", "Helvetica Neue", "Helvetica", "Hiragino Sans", "ヒラギノ角ゴシック", YuGothic, "Yu Gothic", "メイリオ", Meiryo, "Arial", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

.l-contact {
  text-align: center;
  background-color: #ffa3a3;
}
.l-contact p {
  color: #BCDEF1;
}

.l-contact__inner {
  width: 98%;
  max-width: 1140px;
  margin: 0 auto;
}

.l-contact__heading {
  width: 80%;
  max-width: 778px;
  margin: 0 auto;
  padding-top: 120px;
}
@media (max-width: 767px) {
  .l-contact__heading {
    width: 90%;
    padding-top: 90px;
    padding-bottom: 10px;
  }
}

.l-contact__buttons {
  display: flex;
  justify-content: center;
  font-size: 20px;
  margin-top: 40px;
  font-weight: 700;
}
.l-contact__buttons a {
  color: #fff;
}
.l-contact__buttons img {
  width: 30px;
}
@media (max-width: 767px) {
  .l-contact__buttons img {
    width: 22px;
    vertical-align: middle;
  }
}
.l-contact__buttons .line,
.l-contact__buttons .contact {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 364px;
  height: 80px;
  background-color: #4877B0;
  margin: 0 10px;
}
@media (max-width: 767px) {
  .l-contact__buttons .line,
  .l-contact__buttons .contact {
    font-size: 14px;
    display: inline-block;
    margin: 0;
    width: 300px;
    height: 50px;
    margin: 10px;
    line-height: 50px;
  }
}
.l-contact__buttons .line {
  background-color: #00B900;
}
@media (max-width: 767px) {
  .l-contact__buttons {
    display: block;
    margin: 0px auto;
  }
}

.l-contact__tel-info {
  padding: 40px 0;
}
@media (max-width: 767px) {
  .l-contact__tel-info {
    padding-top: 20px;
    padding-bottom: 10px;
  }
}

.l-contact__tel-number {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 56px;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.l-contact__tel-number span {
  font-size: 32px;
}
@media (max-width: 767px) {
  .l-contact__tel-number span {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .l-contact__tel-number {
    font-size: 28px;
  }
}

.l-contact__tel-info-text {
  font-size: 20px;
  letter-spacing: 0.04em;
}
@media (max-width: 767px) {
  .l-contact__tel-info-text {
    font-size: 15px;
  }
}

.l-contact__price {
  width: 100%;
  margin: 30px auto 0;
  padding-bottom: 100px;
}
@media (max-width: 767px) {
  .l-contact__price {
    width: 90%;
    padding-bottom: 50px;
  }
}

/* !Base -------------------------------------------------------------- */
:root {
  --beige: #f6f3ec;
  --brown: #c77617;
  --txt-brown: #926028;
  --dbrown: #956329;
  --gray: #2a2927;
  --gray2: #3e3d3b;
  --gray3: #403e3c;
  --blue: #abd4ea;
}

html {
  font-size: 62.5%;
  overflow-y: scroll;
}

.gothic {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
}

.mincho {
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
}

p {
  padding: 1.1em 0;
}

img {
  max-width: 100%;
  height: auto;
}

.taL {
  text-align: left !important;
}

.taC {
  text-align: center !important;
}

.taR {
  text-align: right !important;
}

.bold {
  font-weight: bold;
}

.normal {
  font-weight: normal;
}

.under {
  border-bottom: 3px solid #fff;
}

.underline {
  border-bottom: 1px solid #000;
  color: #000;
  padding-bottom: 5px;
}

.underline:hover {
  border-bottom: 1px solid #fd5c65;
  color: #fd5c65;
}

.white {
  color: #fff;
}

.black {
  color: #000;
}

.brown {
  color: var(--txt-brown);
}

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

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

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

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

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

.red {
  color: #c82f00;
}

.marker {
  background: linear-gradient(transparent 60%, #a77d4d 60%, #a77d4d 100%, #fff 100%);
  padding: 0 0.2em 0.2em 0.3em;
}

.marker2 {
  background: linear-gradient(transparent 50%, #f2ede4 50%, #f2ede4 100%, #fff 100%);
}

.bg_white {
  background: #fff;
}

.bg_beige {
  background: var(--beige);
}

.bg_brown {
  background: var(--brown);
}

.bg_gray {
  background: var(--gray);
}

.bg_gray2 {
  background: var(--gray2);
}

.fz45 {
  font-size: 45px;
}

.fz43 {
  font-size: 43px;
}

.fz40 {
  font-size: 40px;
}

.fz38 {
  font-size: 38px;
}

.fz36 {
  font-size: 36px;
}

.fz35 {
  font-size: 35px;
}

.fz34 {
  font-size: 34px;
}

.fz32 {
  font-size: 32px;
}

.fz30 {
  font-size: 30px;
}

.fz28 {
  font-size: 28px;
}

.fz27 {
  font-size: 27px;
}

.fz26 {
  font-size: 26px;
}

.fz25 {
  font-size: 25px;
}

.fz24 {
  font-size: 24px;
}

.fz22 {
  font-size: 22px;
}

.fz20 {
  font-size: 20px;
}

.fz18 {
  font-size: 18px;
}

.fz17 {
  font-size: 17px;
}

.fz16 {
  font-size: 16px;
}

.fz15 {
  font-size: 15px;
}

.fz14 {
  font-size: 14px;
}

.fz13 {
  font-size: 13px;
}

.fz12 {
  font-size: 12px;
}

.fz10 {
  font-size: 10px;
}

h1,
h2,
h3,
h4,
h5 {
  font-size: 18px;
  line-height: 1.6;
}

.lh24em {
  line-height: 2.4em;
}

.lh22em {
  line-height: 2.2em;
}

.lh28 {
  line-height: 2.8;
}

.lh24 {
  line-height: 2.4;
}

.lh22 {
  line-height: 2.2;
}

.lh20 {
  line-height: 2;
}

.lh19 {
  line-height: 1.9;
}

.lh18 {
  line-height: 1.8;
}

.lh17 {
  line-height: 1.7;
}

.lh165 {
  line-height: 1.65;
}

.lh15 {
  line-height: 1.5;
}

.lh14 {
  line-height: 1.4;
}

.lh13 {
  line-height: 1.3;
}

.lh12 {
  line-height: 1.2;
}

.lh11 {
  line-height: 1.08;
}

.lh10 {
  line-height: 1;
}

.ls00 {
  letter-spacing: 0;
}

.ls002 {
  letter-spacing: 0.02em;
}

.ls005 {
  letter-spacing: 0.05em;
}

.ls01 {
  letter-spacing: 0.1em;
}

.ls015 {
  letter-spacing: 0.13em;
}

.ls02 {
  letter-spacing: 0.2em;
}

.ls025 {
  letter-spacing: 0.25em;
}

.ls03 {
  letter-spacing: 0.28em;
}

figcaption {
  line-height: 1.5;
  margin-top: 0.5em;
}

.r_over {
  transition: all 0.3s;
}

.r_over:hover {
  filter: brightness(75%) saturate(130%);
}

.r_over2:hover {
  filter: brightness(300%) contrast(30%);
}

.r_over3 {
  transition: all 0.3s;
}

.r_over3:hover {
  filter: brightness(85%);
}

.t-03 {
  transition: all 0.3s;
}

@media screen and (max-width: 1366px) {
  body {
    font-size: 1.171vw;
  }
  .fz45 {
    font-size: 3.294vw;
  }
  .fz43 {
    font-size: 3.148vw;
  }
  .fz40 {
    font-size: 2.928vw;
  }
  .fz38 {
    font-size: 2.782vw;
  }
  .fz36 {
    font-size: 2.635vw;
  }
  .fz35 {
    font-size: 2.562vw;
  }
  .fz34 {
    font-size: 2.489vw;
  }
  .fz32 {
    font-size: 2.343vw;
  }
  .fz30 {
    font-size: 2.196vw;
  }
  .fz28 {
    font-size: 2.05vw;
  }
  .fz26 {
    font-size: 1.903vw;
  }
  .fz25 {
    font-size: 1.83vw;
  }
  .fz24 {
    font-size: 1.757vw;
  }
  .fz22 {
    font-size: 1.611vw;
  }
  .fz20 {
    font-size: 1.464vw;
  }
  .fz18 {
    font-size: 1.318vw;
  }
  .fz17 {
    font-size: 1.245vw;
  }
  .fz16 {
    font-size: 1.171vw;
  }
  .fz15 {
    font-size: 1.098vw;
  }
  .fz14 {
    font-size: 1.025vw;
  }
  .fz13 {
    font-size: 0.952vw;
  }
  .fz12 {
    font-size: 0.878vw;
  }
  .fz10 {
    font-size: 0.732vw;
  }
}
@media screen and (max-width: 1024px) {
  body {
    font-size: 1.563vw;
    line-height: 2;
  }
  .fz45 {
    font-size: 4.395vw;
  }
  .fz43 {
    font-size: 4.199vw;
  }
  .fz40 {
    font-size: 3.906vw;
  }
  .fz38 {
    font-size: 3.711vw;
  }
  .fz36 {
    font-size: 3.516vw;
  }
  .fz35 {
    font-size: 3.418vw;
  }
  .fz35 {
    font-size: 2.6vw;
  }
  .fz34 {
    font-size: 3.32vw;
  }
  .fz32 {
    font-size: 3.125vw;
  }
  .fz30 {
    font-size: 2.93vw;
  }
  .fz28 {
    font-size: 2.734vw;
  }
  .fz27 {
    font-size: 2.637vw;
  }
  .fz26 {
    font-size: 2.539vw;
  }
  .fz25 {
    font-size: 2.3vw;
  }
  .fz24 {
    font-size: 2.344vw;
  }
  .fz22 {
    font-size: 2.148vw;
  }
  .fz20 {
    font-size: 1.953vw;
  }
  .fz18 {
    font-size: 1.758vw;
  }
  .column_nav p {
    font-size: 1.4vw;
  }
  .column_nav .fz18 {
    font-size: 1.5vw;
  }
  .fz17 {
    font-size: 1.66vw;
  }
  .fz16 {
    font-size: 1.563vw;
  }
  .fz15 {
    font-size: 1.465vw;
  }
  .fz14 {
    font-size: 1.367vw;
  }
  .fz13 {
    font-size: 1.27vw;
  }
  .fz12 {
    font-size: 1.172vw;
  }
  .fz10 {
    font-size: 0.977vw;
  }
  h1,
  h2,
  h3,
  h4,
  h5 {
    font-size: 1.8vw;
  }
}
@media screen and (max-width: 540px) {
  body {
    font-size: 3.7vw;
    letter-spacing: 0.02em;
  }
  .fz45 {
    font-size: 9.825vw;
  }
  .fz43 {
    font-size: 9.389vw;
  }
  .fz40 {
    font-size: 8.734vw;
  }
  .fz40 {
    font-size: 6vw;
  }
  .fz38 {
    font-size: 8.297vw;
  }
  .fz36 {
    font-size: 7.86vw;
  }
  .fz35 {
    font-size: 7.642vw;
  }
  .fz35 {
    font-size: 4.933vw;
  }
  .fz34 {
    font-size: 7.424vw;
  }
  .fz32 {
    font-size: 6.987vw;
  }
  .fz32 {
    font-size: 5.9vw;
  }
  .fz30 {
    font-size: 6.55vw;
  }
  .fz30 {
    font-size: 6vw;
  }
  .fz28 {
    font-size: 6.114vw;
  }
  .fz27 {
    font-size: 5.895vw;
  }
  .fz27 {
    font-size: 5.6vw;
  }
  .fz26 {
    font-size: 5.677vw;
  }
  .fz26 {
    font-size: 4.85vw;
  }
  .fz25 {
    font-size: 4.2vw;
  }
  .fz24 {
    font-size: 5.24vw;
  }
  .fz24 {
    font-size: 4.4vw;
  }
  .fz22 {
    font-size: 4.803vw;
  }
  .fz22 {
    font-size: 4vw;
  }
  .fz20 {
    font-size: 4.367vw;
  }
  .fz20 {
    font-size: 4vw;
  }
  .fz18 {
    font-size: 3.93vw;
  }
  .fz18 {
    font-size: 3.7vw;
  }
  .column_nav p {
    font-size: 3vw;
  }
  .column_nav .fz18 {
    font-size: 3vw;
  }
  .fz17 {
    font-size: 3.712vw;
  }
  .fz16 {
    font-size: 3.493vw;
  }
  .fz15 {
    font-size: 3.275vw;
  }
  .fz14 {
    font-size: 3.057vw;
  }
  .fz13 {
    font-size: 2.838vw;
  }
  .fz12 {
    font-size: 2.62vw;
  }
  .fz10 {
    font-size: 2.183vw;
  }
  .lh25 {
    line-height: 2.3;
  }
  .ls01 {
    letter-spacing: 0.05em;
  }
  .ls015 {
    letter-spacing: 0.1em;
  }
  .ls03 {
    letter-spacing: 0.18em;
  }
  h1,
  h2,
  h3,
  h4,
  h5 {
    font-size: 3.7vw;
  }
}
.sp,
.pro,
.tab {
  display: none;
}

@media screen and (max-width: 1024px) {
  .pc {
    display: none;
  }
  .pro {
    display: block;
  }
}
@media screen and (max-width: 820px) {
  .pcpro,
  .notabonly {
    display: none;
  }
  .tab {
    display: block;
  }
}
@media screen and (max-width: 540px) {
  .sp,
  .notabonly {
    display: block;
  }
  .nosp {
    display: none !important;
  }
}
.mw100 {
  width: 100%;
  height: auto;
}

.mw90 {
  width: 90%;
  height: auto;
  margin: 0 5%;
}

.mw70 {
  width: 70%;
  margin: 0 auto;
}

.tab-mw47 {
  max-width: 47%;
  margin: 0 auto;
}

.tab-mw36 {
  max-width: 36%;
  margin: 0 auto;
}

@media screen and (max-width: 1024px) {
  .tab-mw50 {
    width: 50%;
    margin: 0 auto;
  }
  .tab-mw47 {
    width: 47%;
    margin: 0 auto;
  }
  .tab-mw36 {
    width: 36%;
    margin: 0 auto;
  }
}
@media screen and (max-width: 540px) {
  .tab-mw47 {
    width: 50%;
    margin: 0 auto;
  }
  .tab-mw36 {
    width: 50%;
    margin: 0 auto;
  }
}
/* toggle menu sp */
/*ナビゲーション部分*/
@media screen and (max-width: 1024px) {
  .menu {
    background: url(../images/bg_menu.png) no-repeat;
    background-size: cover;
    transition: 0.5s ease;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    position: fixed;
    z-index: 8;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .menu ul {
    padding: 0 8vw;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    width: 100vw;
    text-align: center;
  }
  .menu a {
    display: block;
    text-decoration: none;
    color: #fff;
    font-size: 2.5vw;
    letter-spacing: 0.1em;
    padding: 1em;
    width: 100%;
  }
  .menu li.menu-contact a {
    background: var(--brown);
    color: #fff;
    padding: 1.2em 0;
    margin-top: 6vw;
  }
  .menu.open {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
  .Toggle {
    display: block;
    position: fixed;
    cursor: pointer;
    z-index: 9;
    width: 80px;
    height: 80px;
    top: 0;
    right: 0;
    line-height: 1;
    background: var(--txt-brown);
  }
  .Toggle span {
    display: block;
    position: absolute;
    left: 30%;
  }
  .Toggle span:nth-child(1),
  .Toggle span:nth-child(2),
  .Toggle span:nth-child(3) {
    width: 40%;
    border-bottom: solid 2px #fff;
  }
  .Toggle span:nth-child(1) {
    top: 27px;
  }
  .Toggle span:nth-child(2) {
    top: 39px;
  }
  .Toggle span:nth-child(3) {
    top: 51px;
  }
  .Toggle.active {
    background: none;
  }
  .Toggle.active span {
    border-bottom: solid 2px #fff;
  }
  .Toggle.active span:nth-child(1) {
    top: 39px;
    /* 1番目のspanをマイナス45度に */
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  /* 2番目と3番目のspanを45度に */
  .Toggle.active span:nth-child(2),
  .Toggle.active span:nth-child(3) {
    top: 39px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  .l-header-mobile-nav__outer {
    background-color: rgba(0, 0, 0, 0.4);
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease;
    z-index: 7;
  }
  .menu.open + .l-header-mobile-nav__outer {
    opacity: 1;
    visibility: visible;
  }
  .menu-contact-sp {
    position: fixed;
    right: 83px;
    top: 0;
    display: flex;
    align-items: center;
    background: var(--brown);
    height: 80px;
    color: #fff;
    padding: 0 20px;
  }
  .menu-appointment-sp {
    position: fixed;
    right: 235px;
    top: 0;
    display: flex;
    align-items: center;
    background: #d9b177;
    height: 80px;
    color: #fff;
    padding: 0 20px;
  }
  .copyright2.show {
    display: block;
    width: 100%;
    position: fixed;
    bottom: 0;
    left: 0;
    border-top: 1px solid #996c3b;
    z-index: 9;
  }
  .copyright2 p {
    width: 100%;
    padding: 1.5em 0;
  }
}
@media screen and (max-width: 540px) {
  .menu a {
    font-size: 3.8vw;
  }
  .Toggle {
    width: 60px;
    height: 60px;
  }
  .Toggle span:nth-child(1),
  .Toggle span:nth-child(2),
  .Toggle span:nth-child(3) {
    border-bottom: solid 1px #fff;
  }
  .Toggle span:nth-child(1) {
    top: 18px;
  }
  .Toggle span:nth-child(2) {
    top: 27px;
  }
  .Toggle span:nth-child(3) {
    top: 36px;
  }
  .Toggle.active span {
    border-bottom: solid 1px #fff;
  }
  .Toggle.active span:nth-child(1) {
    top: 27px;
  }
  /* 2番目と3番目のspanを45度に */
  .Toggle.active span:nth-child(2),
  .Toggle.active span:nth-child(3) {
    top: 27px;
  }
  .menu_2nd a {
    font-size: 3.3vw;
  }
  .menu_btm {
    padding: 3.5vh 0 5vh;
  }
  .menu-contact-sp,
  .menu-appointment-sp {
    right: 62px;
    height: 60px;
    padding: 0 4vw;
  }
  .copyright2 p {
    font-size: 3vw;
  }
}
/* !header -------------------------------------------------------------- */
#header {
  position: fixed;
  top: 0;
  width: 100%;
  height: 80px;
  z-index: 10;
  padding-left: 32px;
  background: #fff;
  box-shadow: 0 0 24px rgba(24, 24, 24, 0.2);
}

#contents {
  padding-top: 80px;
}

.logo {
  padding: 0;
  text-indent: 100%;
  overflow: hidden;
  white-space: nowrap;
  display: inline-block;
  width: 148px;
  height: 32px;
  background: url(../images/logo.png) no-repeat;
  position: relative;
  z-index: 9;
}

.logo a {
  display: block;
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 1366px) {
  #header {
    height: 5.857vw;
    padding-left: 2.343vw;
  }
  #contents {
    padding-top: 5.857vw;
  }
}
@media screen and (max-width: 1024px) {
  #header {
    height: 80px;
    padding-left: 3vw;
  }
  #contents {
    padding-top: 80px;
  }
  .logo.logo_w {
    background: url(../images/logo_w.png) no-repeat;
  }
}
@media screen and (max-width: 540px) {
  #header {
    height: 60px;
    padding-left: 4vw;
  }
  #contents {
    padding-top: 60px;
  }
  .logo {
    width: 111px;
    height: 24px;
    background-size: contain;
  }
  .logo.logo_w {
    background-size: contain;
  }
}
/* toggle menu pc */
@media screen and (min-width: 1025px) {
  #header nav {
    height: 100%;
  }
  .drawer {
    display: none;
  }
  .l-header-mobile-nav__outer {
    display: none;
  }
  .menu {
    transform: none;
    height: 100%;
  }
  .menu ul {
    display: flex;
    align-items: center;
    line-height: 1;
    height: 100%;
  }
  .menu ul li {
    height: 100%;
  }
  .menu ul li a {
    display: block;
    letter-spacing: 0.2em;
    font-size: 15px;
    padding-left: 2.635vw;
    padding-right: 2.635vw;
    height: 100%;
    color: #101014;
    position: relative;
    display: flex;
    align-items: center;
  }
  /*2024.0206追記*/
  .menu ul li.menu-contact a {
    background: var(--brown);
    color: #fff;
    margin-left: 0;
  }
  .menu ul li.menu-appointment a {
    background: #d9b177;
    color: #fff;
    margin-left: 30px;
  }
  .menu ul li.menu-contact a:hover,
  .menu ul li.menu-appointment a:hover {
    background: var(--dbrown);
    color: #fff;
  }
  .menu ul li:not(.menu-contact):not(.menu-appointment) a::after {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    content: "";
    width: 5.71vw;
    height: 0.366vw;
    background: #fff;
  }
  .menu ul li:not(.menu-contact):not(.menu-appointment) a:hover {
    color: #101014;
  }
  .menu ul li:not(.menu-contact) a:hover::after,
  .home .menu ul li.menu-1 a::after,
  #about .menu ul li.menu-2 a::after,
  .column .menu ul li.menu-5 a::after,
  .post-type-archive-column .menu ul li.menu-5 a::after,
  .tax-column-cat .menu ul li.menu-5 a::after,
  .single-column .menu ul li.menu-5 a::after {
    background: var(--dbrown);
  }
}
@media screen and (min-width: 1367px) {
  .menu ul li a {
    padding-left: 36px;
    padding-right: 36px;
  }
  .menu ul li:not(.menu-contact) a::after {
    width: 78px;
    height: 5px;
  }
}
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.container80 {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.container88 {
  width: 88%;
  max-width: 1200px;
  margin: 0 auto;
}

.container100 {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.container480 {
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
}

.container1000 {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
}

.container1100 {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}

.container1120 {
  width: 90%;
  max-width: 1120px;
  margin: 0 auto;
}

.container1180 {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
}

.container1920 {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
}

.container900 {
  width: 90%;
  max-width: 900px;
  margin: 0 auto;
}

.container825 {
  width: 90%;
  max-width: 825px;
  margin: 0 auto;
}

.p-r {
  position: relative;
}

@media screen and (max-width: 1366px) {
  .reason_title + .container {
    max-width: inherit;
  }
}
@media screen and (max-width: 1024px) {
  .menu ul li.menu-appointment a {
    background: #d9b177;
    color: #fff;
    margin-bottom: -23px;
  }
  .menu ul li.menu-appointment a:hover {
    opacity: 0.7;
    color: #fff;
  }
}
/* !btn -------------------------------------------------------------- */
a.btn_01,
.submitbtnWrap button {
  height: 70px;
  padding: 0 120px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  max-width: 100%;
  border: 1px solid var(--dbrown);
  position: relative;
  color: var(--dbrown);
}

.submitbtnWrap button {
  display: flex;
  margin: 0 auto;
}

a.btn_01::after,
.submitbtnWrap button::after {
  content: "";
  width: 38px;
  height: 1px;
  background: var(--dbrown);
  position: absolute;
  right: 0;
  top: 50%;
  transition: all 0.3s;
}

a.btn_01:hover,
.submitbtnWrap button:hover {
  color: #fff;
  background: var(--dbrown);
}

a.btn_01:hover::after,
.submitbtnWrap button:hover::after {
  background: #fff;
  width: 28px;
}

@media screen and (max-width: 540px) {
  a.btn_01,
  .submitbtnWrap button {
    height: 14vw;
    padding: 0;
    width: 100%;
  }
  a.btn_01::after,
  .submitbtnWrap button::after {
    width: 4vw;
  }
}
.btn_youtube,
.btn_line {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 48.7%;
  color: #fff;
  transition: all 0.3s;
  font-size: 19px;
}

.btn_youtube {
  background: #403e3c;
  padding: 12px 32px 12px 36px;
}

.btn_line {
  background: #2fa840;
  padding: 12px 10px 12px 18px;
}

.btn_youtube img {
  margin-right: 20px;
}

.btn_youtube:hover {
  color: #fff;
  filter: brightness(70%) contrast(150%);
}

.btn_line:hover {
  color: #fff;
  filter: brightness(70%) contrast(150%);
}

@media screen and (max-width: 1366px) {
  .btn_youtube,
  .btn_line {
    font-size: 1.391vw;
  }
}
@media screen and (max-width: 1024px) {
  .btn_youtube,
  .btn_line {
    display: flex;
    justify-content: center;
    padding: 1.5vw;
  }
  .btn_youtube img,
  .btn_line img {
    margin-right: 20px;
  }
  .btn_youtube img {
    width: 5.371vw;
  }
  .btn_line img {
    width: 5.273vw;
  }
}
@media screen and (max-width: 540px) {
  .btn_youtube,
  .btn_line {
    width: 100%;
    font-size: 3.733vw;
    padding: 2vw;
  }
  .btn_line {
    margin-top: 2.5vw;
  }
  .btn_youtube img,
  .btn_line img {
    margin-right: 3vw;
  }
  .btn_youtube img {
    width: 7.333vw;
  }
  .btn_line img {
    width: 7.2vw;
  }
}
.flex-linkbtn > a {
  width: 540px;
  height: 197px;
  margin-bottom: 20px;
  margin-left: 10px;
  margin-right: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: #fff;
  line-height: 1;
  letter-spacing: 0.15em;
  transition: all 0.3s;
}

.flex-linkbtn > a:hover {
  color: #fff;
  filter: brightness(75%) contrast(120%);
}

.flex-linkbtn > a.link_1 {
  background: url(../images/link_1.jpg) no-repeat;
  background-size: 100% 100%;
}

.flex-linkbtn > a.link_2 {
  background: url(../images/link_2.jpg) no-repeat;
  background-size: 100% 100%;
}

.flex-linkbtn > a.link_3 {
  background: url(../images/link_3.jpg) no-repeat;
  background-size: 100% 100%;
}

.flex-linkbtn > a.link_4 {
  background: url(../images/link_4.jpg) no-repeat;
  background-size: 100% 100%;
}

@media screen and (max-width: 1366px) {
  .flex-linkbtn > a {
    width: 39.531vw;
    height: 14.422vw;
    margin-bottom: 1.464vw;
    margin-left: 0.732vw;
    margin-right: 0.732vw;
  }
}
@media screen and (max-width: 540px) {
  .flex-linkbtn > a {
    width: 87.948vw;
    height: 32.085vw;
    margin-bottom: 3vw;
    margin-left: 0;
    margin-right: 0;
  }
  .flex-linkbtn.mt6 {
    margin-top: 5vw;
  }
}
/* !flex -------------------------------------------------------------- */
.flex,
.flex_pc,
.flex_all,
.flex_pcpro {
  display: flex;
  justify-content: space-between;
}

.aic {
  align-items: center;
}

.ais {
  align-items: start;
}

.aie {
  align-items: flex-end;
}

.flwWrap {
  flex-wrap: wrap;
}

.jcs {
  justify-content: start;
}

.jcc {
  justify-content: center;
}

.jcr {
  justify-content: flex-end;
}

.fd-rr {
  flex-direction: row-reverse;
}

.fd-column {
  flex-direction: column;
}

.flex-sh0 {
  flex-shrink: 0;
}

.order-1 {
  order: 1;
}

.order-2 {
  order: 2;
}

.flex-w62 {
  width: 62%;
}

.flex-w50 {
  width: 50%;
}

.flex-w38 {
  width: 38%;
}

@media screen and (max-width: 1024px) {
  .flex_pc {
    display: block;
  }
}
@media screen and (max-width: 820px) {
  .flex_pcpro {
    display: block;
  }
  .flex_pcpro > div,
  .flex_pcpro > figure {
    padding-left: 0;
    padding-right: 0;
  }
}
@media screen and (max-width: 540px) {
  .flex {
    display: block;
  }
  .flex > div,
  .flex > figure {
    padding-left: 0;
    padding-right: 0;
  }
  .flex-w62,
  .flex-w50,
  .flex-w38 {
    width: 100%;
  }
}
.fl_r {
  float: right;
}

.fl_l {
  float: left;
}

/* !行間設定 -------------------------------------------------------------- */
.pd0 {
  padding: 0;
}

.pd05 {
  padding: 0.5em 0;
}

.pd1 {
  padding: 1em 0;
}

.pd15 {
  padding: 1.5em 0;
}

.pd2 {
  padding: 2em 0;
}

.pd25 {
  padding: 2.5em 0;
}

.pd3 {
  padding: 3em 0;
}

.pd35 {
  padding: 3.5em 0;
}

.pd4 {
  padding: 4em 0;
}

.pd45 {
  padding: 4.5em 0;
}

.pd5 {
  padding: 5em 0;
}

.pd6 {
  padding: 6em 0;
}

.pd8 {
  padding: 8em 0;
}

.mg05 {
  margin: 0.5em auto;
}

.mg1 {
  margin: 1em auto;
}

.mg15 {
  margin: 1.5em auto;
}

.mg2 {
  margin: 2em auto;
}

.mg25 {
  margin: 2.5em auto;
}

.mg3 {
  margin: 3em auto;
}

.mg4 {
  margin: 4em auto;
}

.mg5 {
  margin: 5em auto;
}

.mt05 {
  margin-top: 0.5em;
}

.mt1 {
  margin-top: 1em;
}

.mt15 {
  margin-top: 1.5em;
}

.mt2 {
  margin-top: 2em;
}

.mt25 {
  margin-top: 2.5em;
}

.mt3 {
  margin-top: 3em;
}

.mt35 {
  margin-top: 3.5em;
}

.mt4 {
  margin-top: 4em;
}

.mt45 {
  margin-top: 4.5em;
}

.mt5 {
  margin-top: 5em;
}

.mt6 {
  margin-top: 6em;
}

.mt7 {
  margin-top: 7em;
}

.mt9 {
  margin-top: 9em;
}

.mt7 {
  margin-top: 7em;
}

.mr05 {
  margin-right: 0.5em;
}

.mr1 {
  margin-right: 1em;
}

.mr15 {
  margin-right: 1.5em;
}

.mr2 {
  margin-right: 2em;
}

.mr25 {
  margin-right: 2.5em;
}

.mr3 {
  margin-right: 3em;
}

.mr4 {
  margin-right: 4em;
}

.mr5 {
  margin-right: 5em;
}

.ml05 {
  margin-left: 0.5em;
}

.ml1 {
  margin-left: 1em;
}

.ml15 {
  margin-left: 1.5em;
}

.ml2 {
  margin-left: 2em;
}

.ml25 {
  margin-left: 2.5em;
}

.ml3 {
  margin-left: 3em;
}

.ml4 {
  margin-left: 4em;
}

.ml5 {
  margin-left: 5em;
}

.mb05 {
  margin-bottom: 0.5em;
}

.mb1 {
  margin-bottom: 1em;
}

.mb15 {
  margin-bottom: 1.5em;
}

.mb2 {
  margin-bottom: 2em;
}

.mb25 {
  margin-bottom: 2.5em;
}

.mb3 {
  margin-bottom: 3em;
}

.mb35 {
  margin-bottom: 3.5em;
}

.mb4 {
  margin-bottom: 4em;
}

.mb45 {
  margin-bottom: 4.5em;
}

.mb5 {
  margin-bottom: 5em;
}

.mb6 {
  margin-bottom: 6em;
}

.pt05 {
  padding-top: 0.5em;
}

.pt1 {
  padding-top: 1em;
}

.pt15 {
  padding-top: 1.5em;
}

.pt2 {
  padding-top: 2em;
}

.pt25 {
  padding-top: 2.5em;
}

.pt3 {
  padding-top: 3em;
}

.pt35 {
  padding-top: 3.5em;
}

.pt4 {
  padding-top: 4em;
}

.pt45 {
  padding-top: 4.5em;
}

.pt5 {
  padding-top: 5em;
}

.pt6 {
  padding-top: 6em;
}

.pt8 {
  padding-top: 8em;
}

.pr05 {
  padding-right: 0.5em;
}

.pr1 {
  padding-right: 1em;
}

.pr15 {
  padding-right: 1.5em;
}

.pr2 {
  padding-right: 2em;
}

.pr25 {
  padding-right: 2.5em;
}

.pr3 {
  padding-right: 3em;
}

.pr35 {
  padding-right: 3.5em;
}

.pr4 {
  padding-right: 4em;
}

.pr5 {
  padding-right: 5em;
}

.pl05 {
  padding-left: 0.5em;
}

.pl1 {
  padding-left: 1em;
}

.pl15 {
  padding-left: 1.5em;
}

.pl2 {
  padding-left: 2em;
}

.pl25 {
  padding-left: 2.5em;
}

.pl3 {
  padding-left: 3em;
}

.pl35 {
  padding-left: 3.5em;
}

.pl4 {
  padding-left: 4em;
}

.pl5 {
  padding-left: 5em;
}

.pb05 {
  padding-bottom: 0.5em;
}

.pb1 {
  padding-bottom: 1em;
}

.pb15 {
  padding-bottom: 1.5em;
}

.pb2 {
  padding-bottom: 2em;
}

.pb25 {
  padding-bottom: 2.5em;
}

.pb3 {
  padding-bottom: 3em;
}

.pb35 {
  padding-bottom: 3.5em;
}

.pb4 {
  padding-bottom: 4em;
}

.pb45 {
  padding-bottom: 4.5em;
}

.pb5 {
  padding-bottom: 5em;
}

.pb-f {
  padding-bottom: 6em;
}

@media screen and (max-width: 540px) {
  .pd1 {
    padding: 2.4vw 0;
  }
  .pd15 {
    padding: 3.6vw 0;
  }
  .pd2 {
    padding: 4.8vw 0;
  }
  .pd25 {
    padding: 6vw 0;
  }
  .pd3 {
    padding: 7.2vw 0;
  }
  .pd35 {
    padding: 8.4vw 0;
  }
  .pd4 {
    padding: 9.6vw 0;
  }
  .pd45 {
    padding: 10.8vw 0;
  }
  .pd5 {
    padding: 12vw 0;
  }
  .pd6 {
    padding: 14.4vw 0;
  }
  .pd8 {
    padding: 19.2vw 0;
  }
  .mg1 {
    margin: 2.4vw auto;
  }
  .mg15 {
    margin: 3.6vw auto;
  }
  .mg2 {
    margin: 4.8vw auto;
  }
  .mg25 {
    margin: 6vw auto;
  }
  .mg3 {
    margin: 7.2vw auto;
  }
  .mg4 {
    margin: 9.6vw auto;
  }
  .mg5 {
    margin: 12vw auto;
  }
  .mt1 {
    margin-top: 2.4vw;
  }
  .mt15 {
    margin-top: 3.6vw;
  }
  .mt2 {
    margin-top: 4.8vw;
  }
  .mt25 {
    margin-top: 6vw;
  }
  .mt3 {
    margin-top: 7.2vw;
  }
  .mt35 {
    margin-top: 8.4vw;
  }
  .mt4 {
    margin-top: 9.6vw;
  }
  .mt45 {
    margin-top: 10.8vw;
  }
  .mt5 {
    margin-top: 12vw;
  }
  .mt6 {
    margin-top: 14.4vw;
  }
  .mt7 {
    margin-top: 15vw;
  }
  .mt9 {
    margin-top: 10vw;
  }
  .mr1 {
    margin-right: 2.4vw;
  }
  .mr15 {
    margin-right: 3.6vw;
  }
  .mr2 {
    margin-right: 4.8vw;
  }
  .mr25 {
    margin-right: 6vw;
  }
  .mr3 {
    margin-right: 7.2vw;
  }
  .mr4 {
    margin-right: 9.6vw;
  }
  .mr5 {
    margin-right: 12vw;
  }
  .ml1 {
    margin-left: 2.4vw;
  }
  .ml15 {
    margin-left: 3.6vw;
  }
  .ml2 {
    margin-left: 4.8vw;
  }
  .ml25 {
    margin-left: 6vw;
  }
  .ml3 {
    margin-left: 7.2vw;
  }
  .ml4 {
    margin-left: 9.6vw;
  }
  .ml5 {
    margin-left: 12vw;
  }
  .mb1 {
    margin-bottom: 2.4vw;
  }
  .mb15 {
    margin-bottom: 3.6vw;
  }
  .mb2 {
    margin-bottom: 4.8vw;
  }
  .mb25 {
    margin-bottom: 6vw;
  }
  .mb3 {
    margin-bottom: 7.2vw;
  }
  .mb35 {
    margin-bottom: 8.4vw;
  }
  .mb4 {
    margin-bottom: 9.6vw;
  }
  .mb45 {
    margin-bottom: 10.8vw;
  }
  .mb5 {
    margin-bottom: 12vw;
  }
  .mb6 {
    margin-bottom: 14.4vw;
  }
  .pt1 {
    padding-top: 2.4vw;
  }
  .pt15 {
    padding-top: 3.6vw;
  }
  .pt2 {
    padding-top: 4.8vw;
  }
  .pt25 {
    padding-top: 6vw;
  }
  .pt3 {
    padding-top: 7.2vw;
  }
  .pt35 {
    padding-top: 8.4vw;
  }
  .pt4 {
    padding-top: 9.6vw;
  }
  .pt45 {
    padding-top: 10.8vw;
  }
  .pt5 {
    padding-top: 12vw;
  }
  .pt6 {
    padding-top: 14.4vw;
  }
  .pt8 {
    padding-top: 16vw;
  }
  .pr1 {
    padding-right: 2.4vw;
  }
  .pr15 {
    padding-right: 3.6vw;
  }
  .pr2 {
    padding-right: 4.8vw;
  }
  .pr25 {
    padding-right: 6vw;
  }
  .pr3 {
    padding-right: 7.2vw;
  }
  .pr35 {
    padding-right: 8.4vw;
  }
  .pr4 {
    padding-right: 9.6vw;
  }
  .pr5 {
    padding-right: 12vw;
  }
  .pl1 {
    padding-left: 2.4vw;
  }
  .pl15 {
    padding-left: 3.6vw;
  }
  .pl2 {
    padding-left: 4.8vw;
  }
  .pl25 {
    padding-left: 6vw;
  }
  .pl3 {
    padding-left: 7.2vw;
  }
  .pl35 {
    padding-left: 8.4vw;
  }
  .pl4 {
    padding-left: 9.6vw;
  }
  .pl5 {
    padding-left: 12vw;
  }
  .pb1 {
    padding-bottom: 2.4vw;
  }
  .pb15 {
    padding-bottom: 3.6vw;
  }
  .pb2 {
    padding-bottom: 4.8vw;
  }
  .pb25 {
    padding-bottom: 6vw;
  }
  .pb3 {
    padding-bottom: 7.2vw;
  }
  .pb35 {
    padding-bottom: 8.4vw;
  }
  .pb4 {
    padding-bottom: 9.6vw;
  }
  .pb45 {
    padding-bottom: 10.8vw;
  }
  .pb5 {
    padding-bottom: 12vw;
  }
  .pb-f {
    padding-bottom: 20vw;
  }
  .sp-mt {
    margin-top: 10vw;
  }
}
/* !mv -------------------------------------------------------------- */
.mv_img {
  padding: 0;
  text-indent: 100%;
  overflow: hidden;
  white-space: nowrap;
  width: 100%;
  height: 740px;
  background: url(../images/mv.jpg) center no-repeat;
}

@media screen and (max-width: 1920px) {
  .mv_img {
    height: 38.542vw;
    background-size: cover;
  }
}
@media screen and (max-width: 1024px) {
  .mv_img {
    height: 50vw;
  }
}
@media screen and (max-width: 540px) {
  .mv_img {
    height: 123.2vw;
    background: url(../images/mv_sp.jpg) center no-repeat;
    background-size: cover;
  }
}
/* !text
---------------------------------------------------------- */
/* !contents
---------------------------------------------------------- */
.bg_1 {
  background: var(--beige) url(../images/bg_1.jpg) center top no-repeat;
  padding-top: 52px;
}

.bg_2 {
  background: url(../images/bg_2.png) center bottom no-repeat;
  padding-bottom: 137px;
}

.bg_3 {
  background: url(../images/bg_3.png) center no-repeat;
  background-size: contain;
  width: 643px;
  height: 638px;
  display: inline-flex;
}

.bg_4 {
  background: url(../images/bg_4.png) center no-repeat;
  height: 435px;
  margin-top: -45px;
}

.title_02 {
  margin-top: 215px;
}

.flex-point3 p {
  border: 1px solid #fff;
  border-radius: 50%;
  width: 146px;
  height: 146px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5em 0 0 0.1em;
}

.bg_coin {
  position: relative;
}

.bg_coin::before {
  position: absolute;
  content: "";
  background: url(../images/bg_coin_1.png) no-repeat;
  background-size: contain;
  width: 228px;
  height: 247px;
  left: 0;
  top: 60%;
  transform: translateY(-50%);
}

.bg_coin::after {
  position: absolute;
  content: "";
  background: url(../images/bg_coin_2.png) no-repeat;
  background-size: contain;
  width: 189px;
  height: 260px;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.title_03 {
  background: url(../images/bg_txt_investment.png) center bottom no-repeat;
}

.title_05 {
  background: url(../images/bg_txt_reason.png) center bottom no-repeat;
  min-height: 144px;
}

@media screen and (max-width: 1366px) {
  .bg_1 {
    padding-top: 3.807vw;
    background-size: 140.556vw auto;
  }
  .bg_2 {
    padding-bottom: 10.029vw;
    background-size: 140.556vw auto;
  }
  .bg_3 {
    width: 47.072vw;
    height: 46.706vw;
  }
  .bg_4 {
    height: 31.845vw;
    margin-top: -3.294vw;
    background-size: 85.652vw auto;
  }
  .title_02 {
    margin-top: 15.739vw;
  }
  .flex-point3 p {
    width: 10.688vw;
    height: 10.688vw;
  }
  .bg_coin::before {
    width: 16.691vw;
    height: 18.082vw;
  }
  .bg_coin::after {
    width: 13.836vw;
    height: 19.034vw;
  }
  .title_05 {
    min-height: 10.542vw;
  }
}
@media screen and (max-width: 540px) {
  .bg_1 {
    background: #f6f3ec url(../images/bg_1_sp.jpg) center top no-repeat;
    background-size: 100% auto;
    padding-top: 0;
  }
  .bg_2 {
    background: none;
    padding-bottom: 0;
  }
  .bg_3 {
    width: 100vw;
    height: 100vw;
    margin-top: 8vw;
  }
  .bg_4 {
    height: 68.13vw;
    margin-top: -5vw;
    background-size: cover;
  }
  .title_01 {
    width: 45vw;
  }
  .title_02 {
    margin-top: 24vw;
    width: 92vw;
    margin-left: auto;
    margin-right: auto;
  }
  .flex-point3 {
    width: 85vw;
    padding: 0;
  }
  .flex-point3 p {
    width: 25.333vw;
    height: 25.333vw;
  }
  .bg_coin {
    background: url(../images/bg_coin_sp.jpg) bottom no-repeat;
    background-size: contain;
    padding-bottom: 48vw;
    margin-bottom: 10vw;
  }
  .bg_coin::before {
    content: none;
  }
  .bg_coin::after {
    content: none;
  }
  .title_04 {
    width: 92vw;
    margin-left: auto;
    margin-right: auto;
  }
}
.bg_check {
  background: url(../images/bg_check.png);
  padding-bottom: 140px;
}

.bg_5 {
  background: url(../images/bg_5.png) left top no-repeat;
  padding-top: 160px;
}

@media screen and (max-width: 1366px) {
  .bg_check {
    padding-bottom: 10.249vw;
  }
  .bg_5 {
    padding-top: 11.713vw;
  }
}
.reason_title {
  border-bottom: 3px solid #c21500;
  border-image: linear-gradient(to right, #784003 0%, #d9b177 100%);
  border-image-slice: 1;
  padding-bottom: 20px;
}

.reason_title.num_01,
.reason_title.num_03 {
  margin-right: 410px;
  padding-left: 610px;
}

.reason_title.num_02 {
  margin-left: 410px;
  padding-right: 410px;
}

.reason_title.num_01 > span,
.reason_title.num_02 > span,
.reason_title.num_03 > span {
  position: relative;
  width: 100%;
  margin: 0 auto;
  display: block;
}

.reason_title.num_01 > span::before,
.reason_title.num_02 > span::before,
.reason_title.num_03 > span::before {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  display: block;
  width: 138px;
  height: 94px;
}

.reason_title.num_01 > span::before {
  background: url(../images/num_01.png) no-repeat;
  background-size: contain;
  left: -200px;
}

.reason_title.num_02 > span::before {
  width: 140px;
  background: url(../images/num_02.png) no-repeat;
  background-size: contain;
  right: 0;
}

.reason_title.num_03 > span::before {
  background: url(../images/num_03.png) no-repeat;
  background-size: contain;
  left: -200px;
}

.reason_right {
  max-width: 890px;
  margin: 0 0 0 auto;
}

.reason_left {
  max-width: 890px;
  margin: 0 auto 0 0;
}

@media screen and (max-width: 1920px) {
  .reason_title.num_01,
  .reason_title.num_03 {
    margin-right: calc((100vw - 1100px) / 2);
    padding-left: calc((100vw - 1100px) / 2 + 200px);
  }
  .reason_title.num_02 {
    margin-left: calc((100vw - 1100px) / 2);
    padding-right: calc((100vw - 1100px) / 2);
  }
}
@media screen and (max-width: 1366px) {
  .reason_title.num_01,
  .reason_title.num_03 {
    margin-right: 7.5%;
    padding-left: 27vw;
  }
  .reason_title.num_02 {
    margin-left: 10.5%;
    padding-right: 7.5%;
  }
  .reason_title.num_01 > span::before,
  .reason_title.num_02 > span::before,
  .reason_title.num_03 > span::before {
    width: 10.102vw;
    height: 6.881vw;
  }
  .reason_title.num_01 > span::before,
  .reason_title.num_03 > span::before {
    left: -13vw;
  }
  .reason_title.num_02 > span::before {
    width: 10.249vw;
  }
  .reason_right {
    margin: 0 1.5% 0 auto;
    max-width: 65.154vw;
  }
  .reason_left {
    margin: 0 auto 0 4.5%;
    max-width: 65.154vw;
  }
}
@media screen and (max-width: 540px) {
  .reason_title.num_01,
  .reason_title.num_03,
  .reason_title.num_02 {
    margin-right: 0;
    margin-left: 5%;
    padding-left: 0;
    padding-right: 0;
    margin-top: 28vw;
  }
  .reason_title.num_01 > span::before,
  .reason_title.num_02 > span::before,
  .reason_title.num_03 > span::before {
    width: 18.4vw;
    height: 12.267vw;
    top: -15vw;
    transform: none;
    left: 0;
  }
  .reason_right {
    margin: 0 0 0 auto;
    max-width: 90vw;
  }
  .reason_left {
    margin: 0 0 0 auto;
    max-width: 90vw;
  }
}
.bg_6 {
  background: var(--beige) url(../images/bg_6.png) center top no-repeat;
  padding-top: 120px;
  padding-bottom: 63px;
  position: relative;
}

.bg_6::after {
  position: absolute;
  bottom: 0;
  right: 0;
  content: "";
  width: 100%;
  height: 1022px;
  background: url(../images/bg_2.png) center bottom no-repeat;
}

.profile {
  width: 965px;
  /*height: 841px;*/
  background: url(../images/bg_profile.png) no-repeat;
  background-size: 100% 100%;
  margin: 0 auto;
  padding: 0 84px 20px 83px;
}

.profile_title img {
  margin-top: -35px;
  margin-right: -5px;
}

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

@media screen and (max-width: 1366px) {
  .bg_6 {
    padding-top: 8.785vw;
    padding-bottom: 4.612vw;
    background-size: 140.556vw auto;
  }
  .bg_6::after {
    height: 74.817vw;
    background-size: 140.556vw auto;
  }
}
@media screen and (max-width: 1100px) {
  .profile {
    width: 87.727vw;
    padding: 0 7.636vw 1.818vw 7.545vw;
  }
  .profile_title img {
    margin-top: -3.182vw;
    margin-right: -0.455vw;
  }
}
@media screen and (max-width: 1024px) {
  .bg_6 {
    background-size: 165vw auto;
  }
  .profile .mt45 {
    margin-top: 3em;
  }
}
@media screen and (max-width: 540px) {
  .profile {
    width: 90%;
    padding: 0 6.563vw 5vw 6.484vw;
    background: url(../images/bg_profile_sp.png) center top 4vw no-repeat;
    background-size: 100% 96%;
  }
  .profile p {
    font-size: 3.6vw;
    line-height: 2;
  }
  .profile_title img {
    margin-top: -7vw;
    max-width: 106%;
  }
  .bg_6 {
    background: #f6f3ec url(../images/bg_6_sp.png) center top no-repeat;
    background-size: 100% auto;
    padding-top: 10vw;
  }
  .title_06 {
    width: 82%;
  }
  .bg_6 h2.lh28 {
    line-height: 2;
  }
}
/* !fixed_btn
---------------------------------------------------------- */
.fixed_btn {
  position: fixed;
  z-index: 4;
  bottom: 0;
  right: 0;
  width: 646px;
  height: 113px;
}

@media screen and (max-width: 1920px) {
  .fixed_btn {
    width: 33.646vw;
    height: 5.885vw;
  }
}
@media screen and (max-width: 1024px) {
  .fixed_btn {
    width: 63.086vw;
    height: 11.035vw;
  }
}
@media screen and (max-width: 540px) {
  .fixed_btn {
    width: 100vw;
    height: 16.18vw;
  }
}
/* !page-top
---------------------------------------------------------- */
.page-top {
  position: fixed;
  right: 30px;
  bottom: 45px;
  z-index: 11;
  color: #000;
}

.scrollup {
  right: 0;
  bottom: 0;
  height: 116px;
  width: 35px;
  display: block;
  position: relative;
  cursor: pointer;
  line-height: 1;
}

.scrollup span {
  display: inline-block;
  font-size: 14px;
  transform: rotateZ(-90deg) translate(50%, -50%);
  white-space: nowrap;
  position: absolute;
  left: -50%;
  bottom: 0;
}

.scrollup::before,
.scrollup::after {
  position: absolute;
  margin: auto;
  content: "";
  vertical-align: middle;
  z-index: 2;
  pointer-events: none;
}

.scrollup::before {
  right: 4px;
  width: 10px;
  height: 13px;
  border-left: 1px solid #000;
  transform: rotate(-140deg);
  top: -3px;
}

.scrollup::after {
  right: 0;
  top: 0;
  width: 1px;
  height: 116px;
  background: #000;
}

@keyframes scrollupmove {
  0% {
    top: 113px;
  }
  50% {
    top: -3px;
  }
}
@keyframes scrollupmove2 {
  0% {
    top: 115px;
    height: 1px;
  }
  50% {
    top: 0;
    height: 116px;
  }
}
@media screen and (min-width: 1025px) {
  .scrollup:hover span {
    /*color: var(--lgreen);*/
  }
  .scrollup:hover::before {
    animation: scrollupmove 1s ease-out;
  }
  .scrollup:hover::after {
    animation: scrollupmove2 1s ease-out;
  }
}
@media screen and (max-width: 1366px) {
  .page-top {
    right: 25px;
    bottom: 30px;
  }
  .scrollup {
    width: 32px;
  }
  .scrollup span {
    font-size: 13px;
  }
}
@media screen and (max-width: 1024px) {
  .page-top {
    right: 2vw;
  }
  .scrollup {
    width: 30px;
  }
  .scrollup span {
    font-size: 12px;
  }
}
@media screen and (max-width: 820px) {
  .scrollup span {
    font-size: 12px;
  }
}
@media screen and (max-width: 540px) {
  .page-top {
    display: none;
  }
  .scrollup {
    width: 23px;
    height: 85px;
  }
  .scrollup span {
    font-size: 10px;
  }
  .scrollup::after {
    height: 85px;
  }
}
/* !footer
---------------------------------------------------------- */
#footer {
  width: 100%;
}

#footer ul {
  height: 78px;
}

#footer ul li {
  font-size: 15px;
  height: 100%;
}

#footer ul li a {
  color: #fff;
  display: flex;
  height: 100%;
  align-items: center;
}

#footer ul li.menu-contact a {
  background: var(--brown);
  padding: 0 35px;
  margin: 0;
}

#footer ul li:not(.menu-contact) a:hover {
  color: var(--brown);
}

#footer ul li.menu-contact a:hover {
  background: var(--dbrown);
}

#footer ul li.menu-appointment a {
  background: #d9b177;
  padding: 0 35px;
}

#footer ul li:not(.menu-appointment) a:hover {
  color: #d9b177;
}

#footer ul li.menu-appointment a:hover {
  background: var(--dbrown);
}

.copyright {
  border-top: 1px solid var(--gray2);
  padding: 1.2em 0 1.6em;
}

@media screen and (max-width: 540px) {
  #footer ul {
    height: inherit;
    width: 90%;
    margin: 0 auto;
    padding-top: 8vw;
    letter-spacing: 0.2em;
  }
  #footer ul li:not(.menu-contact) a {
    padding: 4vw 0;
    border-bottom: 1px solid #9c9b9a;
  }
  #footer ul li:not(.menu-contact) a::before {
    border-top: 1.333vw solid transparent;
    border-bottom: 1.333vw solid transparent;
    border-left: 2.4vw solid #fff;
    width: 2.4vw;
    height: 2.667vw;
    content: "";
    display: inline-block;
    margin-right: 5vw;
  }
  #footer ul li.menu-contact a {
    padding: 3.5vw 0;
    justify-content: center;
    margin-top: 10vw;
  }
  .copyright {
    font-size: 2.9vw;
    margin-top: 10vw;
    padding: 1.2em 0 40vw;
  }
  #footer ul li.menu-appointment a {
    background: transparent;
  }
  #footer ul li:not(.menu-appointment) a:hover {
    color: transparent;
  }
  #footer ul li.menu-appointment a:hover {
    background: transparent;
  }
}
a.anchor {
  display: block;
  padding-top: 90px;
  margin-top: -90px;
}

@media screen and (max-width: 540px) {
  a.anchor {
    padding-top: 60px;
    margin-top: -60px;
  }
}
/*----------------------------
scroll_up ｜下から上へ出現
----------------------------*/
.scroll_up {
  transition: 0.4s ease-in-out;
  transform: translateY(40px);
  opacity: 0;
}

.scroll_up.on {
  transform: translateY(0);
  opacity: 1;
}

/*----------------------------
scroll_left ｜左から出現
----------------------------*/
.scroll_left {
  transition: 0.8s ease-in-out;
  transform: translateX(-30px);
  opacity: 0;
  filter: alpha(opacity=0);
}

.scroll_left.on {
  opacity: 1;
  filter: alpha(opacity=100);
  transform: translateX(0);
}

/*----------------------------
scroll_right ｜右から出現
----------------------------*/
.scroll_right {
  transition: 0.8s ease-in-out;
  transform: translateX(30px);
  opacity: 0;
  filter: alpha(opacity=0);
  -moz-opacity: 0;
}

.scroll_right.on {
  opacity: 1;
  filter: alpha(opacity=100);
  transform: translateX(0);
}

/* !Clearfix
---------------------------------------------------------- */
.clearfix::after,
.contactForm dd::after {
  content: "";
  display: block;
  height: 0;
  overflow: hidden;
  clear: both;
}

@media screen and (max-width: 1024px) {
  .scroll_up {
    transform: translateY(3.906vw);
  }
  .scroll_up.on {
    transform: translateY(0);
  }
}
/* !tel
---------------------------------------------------------- */
@media (min-width: 751px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}
.flex_box {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

@media screen and (max-width: 960px) {
  .flex_box {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}
.wrap01 {
  width: 1200px;
  max-width: 90%;
  margin: 0 auto;
}

.wrap-r {
  max-width: calc(100% - (50% - 600px));
  width: 95%;
  margin-right: 0;
  margin-left: auto;
}

.wrap-l {
  max-width: calc(100% - (50% - 600px));
  width: 95%;
  margin-right: auto;
  margin-left: 0;
}

.p-s1__background {
  background-color: #5c5c5c;
  color: #fff;
}

.p-s1__mv {
  position: relative;
  width: 100%;
}

.p-s1__english {
  font-family: "Bebas Neue", "Noto Sans JP", "Helvetica Neue", "Helvetica", "Hiragino Sans", "ヒラギノ角ゴシック", YuGothic, "Yu Gothic", "メイリオ", Meiryo, "Arial", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 80px;
}
@media screen and (max-width: 1366px) {
  .p-s1__english {
    font-size: 9vw;
  }
}
@media screen and (max-width: 1024px) {
  .p-s1__english {
    font-size: 7vw;
  }
}
@media screen and (max-width: 540px) {
  .p-s1__english {
    font-size: 12vw;
  }
}

.p-s1__logo {
  margin: 0 auto 7px;
  padding-top: 73px;
  position: relative;
  z-index: 100;
}
.p-s1__logo img {
  width: 88px;
}
.p-s1__logo h1 {
  color: #fff;
  padding-top: 14px;
  font-size: 15px;
  font-weight: 500;
}

.p-s1-sub__background {
  background-color: cornflowerblue;
}

.p-s2__about {
  color: #535e64;
  padding-top: 63px;
}
@media (max-width: 767px) {
  .p-s2__about {
    padding-top: 0;
  }
}

.p-s2__service {
  display: flex;
  justify-content: space-between;
  margin-top: 150px;
}
@media (max-width: 767px) {
  .p-s2__service {
    display: block;
    margin-top: 20px;
  }
}
.p-s2__service.--reverse {
  flex-direction: row-reverse;
  margin-top: 50px;
}

.p-s2__img {
  width: 50%;
  max-width: 624px;
}
@media (max-width: 767px) {
  .p-s2__img {
    width: 100%;
    margin-top: 50px;
    margin-left: 7px;
    margin-bottom: 20px;
  }
}

.p-s2__img--2 {
  width: 50%;
  max-width: 653px;
  margin-left: -10px;
}
@media (max-width: 767px) {
  .p-s2__img--2 {
    width: 100%;
    margin-top: 50px;
    margin-left: 0px;
  }
}

.p-s2__flex {
  width: 52%;
  max-width: 645px;
  display: flex;
  padding-right: 6px;
}
.p-s2__flex:last-child {
  padding-top: 10px;
}
.p-s2__flex img {
  padding-right: 15px;
}

.p-s2__contents {
  width: 50%;
  max-width: 652px;
  background-color: #eae8dd;
  position: relative;
  margin-right: -8px;
  border-radius: 10px;
}
.p-s2__contents.--left {
  margin: 0;
  background-color: #f9f0e3;
}
@media (max-width: 767px) {
  .p-s2__contents.--left {
    padding: 0;
    padding-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .p-s2__contents {
    width: 100%;
    padding: 0;
    position: relative;
    margin-top: 20px;
    padding-bottom: 35px;
  }
}

.p-s2__three-content-number {
  width: 68px;
  padding-left: 10px;
}
.p-s2__three-content-number.--2 {
  width: 90px;
  margin-top: 12px;
}
@media (max-width: 767px) {
  .p-s2__three-content-number {
    padding-top: 20px;
    position: absolute;
    top: -300px;
    left: 0px;
  }
}

.p-s2__three-content-text {
  flex-grow: 0;
  margin: 0 min(3vw, 23px) 0px;
  padding: 0min 3vw, 48px 0px;
  border-radius: 10px;
}
.p-s2__three-content-text .text1 {
  color: #3c3c3c;
  font-size: 24px;
  font-weight: 700;
  padding-top: 17px;
  line-height: 1.5;
}
.p-s2__three-content-text .text2 {
  color: #000;
  font-size: 16px;
  padding-top: 39px;
  line-height: 1.9;
}
.p-s2__three-content-text .text2.--message {
  padding-top: 27px;
}
@media (max-width: 767px) {
  .p-s2__three-content-text {
    padding: 10px;
    margin: 0;
  }
  .p-s2__three-content-text .text1 {
    font-size: 16px;
    padding-top: 10px;
    padding-bottom: 20px;
  }
  .p-s2__three-content-text .text2 {
    font-size: 14px;
    padding-top: 10px;
    line-height: 1.6;
  }
}

.p-s2__background-tree {
  width: 100%;
  position: absolute;
  top: 165px;
  left: -135px;
  overflow-x: hidden;
}
@media (max-width: 767px) {
  .p-s2__background-tree {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0px;
    overflow-x: hidden;
  }
  .p-s2__background-tree svg {
    width: 100%;
  }
}

.p-s2__message-headings {
  padding-top: 10px;
}

/***********************************************
サービス
************************************************/
.p-s4__service {
  padding-top: 170px;
}
@media (max-width: 767px) {
  .p-s4__service {
    padding-top: 60px;
  }
}

.p-s4__background {
  background-color: chocolate;
  background-image: url(../img/service.jpg);
  padding-bottom: 150px;
}

.p-s5__products {
  padding-top: 186px;
}
@media (max-width: 767px) {
  .p-s5__products {
    padding-top: 0px;
  }
}

.p-s5__left-margin {
  margin-left: 7.8%;
}

@media (max-width: 767px) {
  .p-s5__texts {
    padding-top: 50px;
    justify-content: left;
  }
}

.box-wrapper {
  margin-right: 30px;
  margin-bottom: 30px;
  display: block;
  width: auto;
  font-size: 20px;
  font-family: "Alegreya Sans SC", "Noto Sans", "Helvetica Neue", "Helvetica", "Hiragino Sans", "ヒラギノ角ゴシック", YuGothic, "Yu Gothic", "メイリオ", Meiryo, "Arial", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
.box-wrapper h3 {
  font-size: 22px;
}
.box-wrapper p {
  font-size: 16px;
  padding: 15px 0;
}

.img-width {
  width: 300px;
  margin-bottom: 8px;
}

.p-s6__equipment {
  margin-top: -10px;
  margin-bottom: 120px;
}

.--s6 h3 {
  font-size: 18px;
  padding-top: 10px;
}

.p-s7__history {
  position: relative;
}

@media (max-width: 767px) {
  .p-s7__headings {
    padding: 0;
    margin: 0;
    text-align: center;
  }
}

.p-s7__history-flex {
  display: flex;
  justify-content: space-between;
  margin-top: 0px;
}
@media (max-width: 767px) {
  .p-s7__history-flex {
    display: block;
    margin-top: 20px;
  }
}
.p-s7__history-flex.--reverse {
  flex-direction: row-reverse;
  margin-top: 50px;
}
.p-s7__history-flex h2 {
  font-weight: 500;
}

.p-s7__history-top-img {
  width: 67%;
  min-width: 600px;
  max-width: 1000px;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 30;
}

.p-s7__background-tree {
  width: 100%;
  position: absolute;
  top: 102px;
  left: 229px;
  overflow-x: hidden;
}
@media (max-width: 767px) {
  .p-s7__background-tree {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0px;
    overflow-x: hidden;
  }
  .p-s7__background-tree svg {
    width: 100%;
  }
}

.p-s7__contents {
  width: 53%;
  background-color: #eae8dd;
  margin-right: -8px;
  border-radius: 10px;
  padding: 46px 0 100px min(11vw - 60px, 110px);
}
.p-s7__contents.--left {
  margin: 0;
  background-color: #f9f0e3;
  overflow-x: hidden;
  overflow-y: hidden;
}
@media (max-width: 767px) {
  .p-s7__contents.--left {
    padding: 0 0 30px 20px;
  }
}
@media (max-width: 767px) {
  .p-s7__contents {
    width: 100%;
    padding: 0;
    position: relative;
    margin-top: 20px;
    padding-bottom: 35px;
  }
}

.p-s7__history-table {
  margin-left: -10px;
  text-align: left;
}
.p-s7__history-table th,
.p-s7__history-table td {
  font-size: 15px;
  padding: 12px 10px;
  letter-spacing: 0.1em;
}
.p-s7__history-table th {
  width: 10vw;
}
.p-s7__history-table td {
  width: 35vw;
}
@media (max-width: 767px) {
  .p-s7__history-table th {
    width: 32%;
  }
  .p-s7__history-table td {
    width: 68%;
  }
}

.p-s7__history-right-two-img {
  width: 90%;
  position: relative;
}
.p-s7__history-right-two-img img {
  padding-top: 500px;
}
.p-s7__history-right-two-img .history2 {
  width: 350px;
  position: absolute;
  top: -270px;
  right: 292px;
  z-index: -1;
}
.p-s7__history-right-two-img .history3 {
  width: 290px;
  position: absolute;
  top: -40px;
  right: 72px;
}
@media (max-width: 767px) {
  .p-s7__history-right-two-img {
    margin-top: 30px;
    display: flex;
    justify-content: flex-end;
  }
  .p-s7__history-right-two-img img {
    padding: 10px;
  }
  .p-s7__history-right-two-img .history2,
  .p-s7__history-right-two-img .history3 {
    width: 48%;
    position: relative;
    top: -30px;
    right: -10px;
  }
}

.p-s8__company {
  padding-top: 136px;
}
@media (max-width: 767px) {
  .p-s8__company {
    padding-top: 0;
  }
}

.p-s8__company-flex {
  display: flex;
}
@media (max-width: 767px) {
  .p-s8__company-flex {
    display: block;
    padding: 0;
  }
}

.p-s8__company-table {
  text-align: left;
  border-collapse: collapse;
  margin-bottom: 110px;
  width: 100%;
}
.p-s8__company-table th,
.p-s8__company-table td {
  font-size: 15px;
  border-bottom: 1px solid #000;
  padding: 32px 20px 32px 0;
  letter-spacing: 0.1em;
}
.p-s8__company-table th {
  width: 12vw;
}
@media (max-width: 767px) {
  .p-s8__company-table th {
    width: 30vw;
  }
}
.p-s8__company-table td {
  width: 45vw;
}

.p-s8__company-headings {
  padding-right: 130px;
}
@media (max-width: 767px) {
  .p-s8__company-headings {
    text-align: center;
    padding: 0;
  }
}

.p-s9__background {
  width: 100%;
  background-image: url(../img/2-3__heading.jpg);
  background-size: cover;
  background-position: top center;
}

.p-s9__headings {
  text-align: left;
  margin-top: 114px;
  margin-left: 64px;
  padding-bottom: 40px;
}
.p-s9__headings h2, .p-s9__headings p {
  padding: 0;
}
.p-s9__headings h2 {
  padding-top: 15px;
}
@media (max-width: 767px) {
  .p-s9__headings {
    margin: 50px 20px;
  }
}

.p-s9__heading-text {
  margin-top: 45px;
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 0.03em;
}

/************/
.p-s9__service {
  margin-top: -15px;
}
@media (max-width: 767px) {
  .p-s9__service {
    margin-top: -70px;
  }
}

.p-s9__box-wrapper {
  width: 48%;
  max-width: 502px;
  margin: 0;
  display: block;
  font-family: "Noto Sans", "Helvetica Neue", "Helvetica", "Hiragino Sans", "ヒラギノ角ゴシック", YuGothic, "Yu Gothic", "メイリオ", Meiryo, "Arial", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
.p-s9__box-wrapper h3 {
  padding-top: 14px;
  font-size: 20px;
}
@media (max-width: 767px) {
  .p-s9__box-wrapper h3 {
    font-size: 15px;
  }
}
.p-s9__box-wrapper p {
  font-size: 15px;
  padding: 15px 0 70px;
}
@media (max-width: 767px) {
  .p-s9__box-wrapper p {
    font-size: 13px;
    line-height: 1.5;
  }
}

.p-s9__img-width {
  width: auto;
  max-width: 502px;
  margin-bottom: 8px;
}

.p-s9__items {
  width: 100%;
}
.p-s9__items ul {
  width: 100%;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}

/***********************************************

************************************************/
.p-s10__products-heading {
  padding-right: 21px;
  margin: 0px 70px 0 80px;
}
.p-s10__products-heading h2, .p-s10__products-heading p {
  padding: 0;
}
.p-s10__products-heading h2 {
  padding-top: 15px;
}
@media (max-width: 767px) {
  .p-s10__products-heading {
    text-align: center;
    margin-bottom: 30px;
  }
}

.p-s10__box-wrapper {
  width: 30%;
  max-width: 299px;
  margin: 0;
  display: block;
  font-family: "Noto Sans", "Helvetica Neue", "Helvetica", "Hiragino Sans", "ヒラギノ角ゴシック", YuGothic, "Yu Gothic", "メイリオ", Meiryo, "Arial", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
.p-s10__box-wrapper h3 {
  padding-top: 18px;
  font-size: 20px;
}
@media (max-width: 767px) {
  .p-s10__box-wrapper h3 {
    font-size: 15px;
  }
}
.p-s10__box-wrapper p {
  font-size: 15px;
  padding: 12px 0 45px;
}
@media (max-width: 767px) {
  .p-s10__box-wrapper p {
    font-size: 13px;
  }
}
@media (max-width: 767px) {
  .p-s10__box-wrapper {
    width: 43%;
  }
}

.p-s10__img-width {
  width: auto;
  max-width: 299px;
  margin-bottom: 8px;
}

.p-s10__items {
  width: 100%;
}
.p-s10__items ul {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .p-s10__items ul {
    justify-content: space-around;
  }
}

/***********************************************

************************************************/
.p-s11__equipment {
  background-color: #EAE8DD;
}

.p-s11__products-heading {
  padding-right: 21px;
  margin: 42px 20px 0 50px;
}
.p-s11__products-heading h2, .p-s11__products-heading p {
  padding: 0;
}
.p-s11__products-heading h2 {
  padding-top: 15px;
}
@media (max-width: 767px) {
  .p-s11__products-heading {
    text-align: center;
  }
}

.p-s11__box-wrapper {
  width: 28%;
  max-width: 298px;
  margin: 0;
  margin-right: 0;
  display: block;
  font-family: "Noto Sans", "Helvetica Neue", "Helvetica", "Hiragino Sans", "ヒラギノ角ゴシック", YuGothic, "Yu Gothic", "メイリオ", Meiryo, "Arial", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
.p-s11__box-wrapper h3 {
  padding-top: 18px;
  padding-bottom: 75px;
  font-size: 20px;
}
@media (max-width: 767px) {
  .p-s11__box-wrapper h3 {
    font-size: 15px;
  }
}
@media (max-width: 767px) {
  .p-s11__box-wrapper {
    width: 43%;
  }
}

.p-s11__items {
  width: 100%;
}
.p-s11__items ul {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .p-s11__items ul {
    justify-content: space-around;
  }
}

@media (max-width: 767px) {
  .p-s12__header-items {
    display: flex;
    justify-content: flex-end;
    margin-top: 20px;
    margin-right: 80px;
  }
}

@media (max-width: 767px) {
  .p-s12__btn {
    margin-right: 0px;
    position: absolute;
    top: 100px;
    right: 10px;
  }
}

.s12__contact-body-background {
  background-color: #F9F6F2;
}
.s12__contact-body-background .l-header__items {
  margin-top: 64px;
  margin-right: 65px;
}
@media (max-width: 767px) {
  .s12__contact-body-background .l-header__items {
    margin-top: 10px;
    margin-right: 15px;
  }
}

.c-form__required {
  font-size: 12px;
  margin-left: 40px;
  padding: 6px 13px;
  background-color: #433430;
  color: #fff;
}
@media (max-width: 767px) {
  .c-form__required.--acceptance {
    margin-left: 5px;
  }
}

.--free {
  background-color: #D9D9D9;
}

.p-s12__background {
  width: 100%;
  background-image: url(../img/contact.jpg);
  background-size: cover;
  background-position: top center;
}

.p-s12__headings {
  text-align: left;
  margin-top: 114px;
  margin-left: 64px;
  padding-bottom: 64px;
}
.p-s12__headings h2,
.p-s12__headings p {
  padding: 0;
}
.p-s12__headings h2 {
  padding-top: 15px;
}
@media (max-width: 767px) {
  .p-s12__headings {
    margin: 250px 0 0;
    text-align: center;
  }
  .p-s12__headings p,
  .p-s12__headings h2 {
    padding: 0;
    margin: 0;
  }
  .p-s12__headings p {
    padding-top: 20px;
  }
}

.p-s12__contact {
  padding-top: 100px;
}

.p-s12__pd {
  padding-top: 12px;
}

.postal-c {
  font-size: 16px;
  position: relative;
}
.postal-c::before {
  content: "〒";
  width: 20px;
  height: 20px;
  top: 30px;
  left: 0;
}
@media (max-width: 767px) {
  .postal-c::before {
    top: 15px;
  }
}
.postal-c input {
  display: block;
  margin-left: 30px;
}

.p-s12__input-short {
  width: 200px;
}

.p-s12__detail {
  padding-top: 20px;
}

.p-s12__submit-buttons {
  display: flex;
  position: relative;
  padding-bottom: 190px;
}
@media (max-width: 767px) {
  .p-s12__submit-buttons {
    display: block;
  }
}

.p-s12__reset {
  width: 133px;
  height: 53px;
  position: absolute;
  top: 75px;
  left: 0;
  font-size: 18px;
  background-color: #EAE8DD;
  color: #433430;
  font-family: "Noto Sans JP", "Helvetica Neue", "Helvetica", "Hiragino Sans", "ヒラギノ角ゴシック", YuGothic, "Yu Gothic", "メイリオ", Meiryo, "Arial", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
@media (max-width: 767px) {
  .p-s12__reset {
    top: 150px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 50px;
    padding: 0 10px;
    font-size: 14px;
  }
}

.p-s12__submit {
  width: 270px;
  height: 86px;
  font-weight: 700;
  font-size: 18px;
  font-family: "Noto Sans JP", "Helvetica Neue", "Helvetica", "Hiragino Sans", "ヒラギノ角ゴシック", YuGothic, "Yu Gothic", "メイリオ", Meiryo, "Arial", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

.p-s12__complete-p {
  padding-bottom: 100px;
}

.c-inner__center {
  width: 95%;
  max-width: 1320px;
  margin: 0 auto;
  text-align: center;
}
@media (max-width: 767px) {
  .c-inner__center {
    width: 95%;
  }
}

.c-inner__left {
  width: 95%;
  max-width: 1410px;
  font-size: 65px;
  margin: 0 auto;
  text-align: left;
  padding-top: 112px;
}

.c-inner__right {
  width: 95%;
  max-width: 1200px;
  margin: 0 auto;
  text-align: right;
  padding-top: 112px;
}

.c-inner__flex {
  display: flex;
}
@media (max-width: 767px) {
  .c-inner__flex {
    justify-content: center;
  }
}
@media (max-width: 1000px) {
  .c-inner__flex.--tbblock {
    display: block;
  }
}

.c-inner__flex-end {
  display: flex;
  justify-content: flex-end;
}

/***********************************************
font
************************************************/
.c-font__Alegreya_Sans {
  font-family: "Alegreya Sans SC", "Noto Sans", "Helvetica Neue", "Helvetica", "Hiragino Sans", "ヒラギノ角ゴシック", YuGothic, "Yu Gothic", "メイリオ", Meiryo, "Arial", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

.c-font__notojp {
  font-family: "Noto Sans JP", "Helvetica Neue", "Helvetica", "Hiragino Sans", "ヒラギノ角ゴシック", YuGothic, "Yu Gothic", "メイリオ", Meiryo, "Arial", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

.c-background {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
  position: relative;
}

.c-background__about {
  background-color: #FFFCF5;
}

.c-background__bg-white {
  background-color: #fff;
  width: 100%;
}

.c-box-width {
  width: 100%;
  display: flex;
  flex-wrap: nowrap;
  padding-top: 34px;
}

.c-modal__scroll-bar {
  overflow-x: auto;
  width: auto;
  max-width: 100%;
  height: 465px;
}
.c-modal__scroll-bar::-webkit-scrollbar {
  height: 2px;
  border-radius: 10px;
}
.c-modal__scroll-bar::-webkit-scrollbar-track {
  border-radius: 10px;
  background-color: #D5D5D5;
}
.c-modal__scroll-bar::-webkit-scrollbar-thumb {
  background-color: #000;
}
.c-modal__scroll-bar.--s6 {
  height: 435px;
}

body {
  margin: 0;
}

.slide {
  position: relative;
  width: 100%;
  height: 55%;
  overflow: hidden;
  color: #fff;
  padding-bottom: 300px;
}

.slide-image {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  animation: slider-1 24s linear infinite;
}

.slide-image:nth-child(1) {
  background-image: url(../img/mv1.jpg);
  animation-delay: -2s;
}

.slide-image:nth-child(2) {
  background-image: url(../img/mv2.jpg);
  animation-delay: 6s;
}

.slide-image:nth-child(3) {
  background-image: url(../img/mv3.jpg);
  animation-delay: 14s;
}

@keyframes slider-1 {
  0% {
    opacity: 0;
    transform: scale(1);
  }
  4.16% {
    opacity: 1;
  }
  33.33% {
    opacity: 1;
  }
  41.66% {
    opacity: 0;
    transform: scale(1.2);
  }
  100% {
    opacity: 0;
  }
}
.c-icon {
  position: relative;
}
.c-icon::before {
  content: "";
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
}
.c-icon::after {
  content: "";
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
}

.c-icon__right {
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent transparent transparent #bcdef1;
  border-width: 24px 0px 24px 21px;
  margin: 30px;
}

.c-icon__top-triangle::before {
  background-image: url(../img/s6-head-icon.png);
  width: 127px;
  height: 80px;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

/***********************************************
横棒線
************************************************/
.c-icon__bar {
  width: 100%;
  height: 1px;
  background-color: #231815;
}

/***********************************************
c-heading   c-heading    c-heading    c-heading   c-heading
************************************************/
.c-heading,
.c-heading--left {
  font-size: 15px;
  padding-top: 70px;
  font-weight: 400;
  letter-spacing: 0.2em;
}
@media (max-width: 767px) {
  .c-heading,
  .c-heading--left {
    padding-top: 45px;
    font-size: 16px;
  }
}
.c-heading.--nopd,
.c-heading--left.--nopd {
  font-weight: 500;
  padding-top: 30px;
}

.c-heading--left {
  font-weight: 500;
}

.c-heading__english,
.c-heading__english--left {
  font-weight: 600;
  font-size: 43px;
  padding: 19px 0 26px;
}
@media (max-width: 767px) {
  .c-heading__english.--about,
  .c-heading__english--left.--about {
    padding: 10px 0 20px;
    font-size: 30px;
  }
}
@media (max-width: 767px) {
  .c-heading__english,
  .c-heading__english--left {
    padding: 60px 0 20px;
    font-size: 24px;
  }
}
.c-heading__english.--message,
.c-heading__english--left.--message {
  padding-top: 8px;
}
@media (max-width: 767px) {
  .c-heading__english.--message,
  .c-heading__english--left.--message {
    padding-bottom: 0px;
  }
}

.c-heading__english--left {
  padding-top: 10px;
  font-weight: 700;
}

.--white {
  color: white;
}
@media (max-width: 767px) {
  .--white {
    padding-top: 10px;
  }
}

.c-heading__image {
  width: 100%;
  background-image: url(../img/s50-bg.jpg);
  background-position: top center;
  background-size: 100%;
  margin-top: 84px;
  padding: 300px 0 0;
  position: relative;
  overflow-y: hidden;
}
@media (max-width: 767px) {
  .c-heading__image {
    background-size: 110%;
    padding: 80px 0 0;
  }
}
.c-heading__image.--about {
  background-image: url(../img/s20-bg.jpg);
}
.c-heading__image.--coating {
  background-image: url(../img/s30-bg.jpg);
}
.c-heading__image.--product {
  background-image: url(../img/s40-bg.jpg);
}
.c-heading__image.--contact {
  background-image: url(../img/s60-bg.jpg);
}

.c-heading__bg-paint {
  width: 50%;
  height: auto;
  margin-left: auto;
  position: absolute;
  top: -15%;
  right: 0;
  z-index: 50;
  overflow-y: hidden;
}
@media (max-width: 767px) {
  .c-heading__bg-paint {
    top: -10%;
  }
}

.c-heading__white-bg {
  width: 60%;
  min-width: 980px;
  background-color: #fff;
  border-radius: 0 150px 0 0;
  padding: 76px 6% 7% 18.5%;
}
.c-heading__white-bg h1 {
  letter-spacing: 0.03em;
  font-size: 120px;
  font-family: "Bebas Neue", "Noto Sans JP", "Helvetica Neue", "Helvetica", "Hiragino Sans", "ヒラギノ角ゴシック", YuGothic, "Yu Gothic", "メイリオ", Meiryo, "Arial", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  overflow-x: hidden;
}
.c-heading__white-bg h1::after {
  position: absolute;
  width: 228px;
  height: 2px;
  bottom: 18px;
  left: 0;
  border-bottom: solid 0 #3f4041;
  background-image: linear-gradient(to right, #3b85c6, #8061a7, #e84970);
}
.c-heading__white-bg h2 {
  padding-top: 16px;
  font-size: 41px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.06em;
}
.c-heading__white-bg p {
  letter-spacing: 0.001em;
  line-height: 2;
  margin-top: -5px;
  font-size: 16px;
}
.c-heading__white-bg.--about {
  padding: 76px 0% 7% 18.5%;
}
.c-heading__white-bg.--coating {
  padding: 76px 11% 7% 18.5%;
}
.c-heading__white-bg.--product {
  padding: 76px 0% 7% 18%;
}
.c-heading__white-bg.--product h2 {
  margin-top: 13px;
}
.c-heading__white-bg.--company h2 {
  margin-top: 7px;
}
@media (max-width: 1000px) {
  .c-heading__white-bg {
    width: 100%;
    min-width: auto;
    padding: 20px 6% 1 7%;
    border-radius: 0 50px 0 0;
  }
  .c-heading__white-bg h1 {
    letter-spacing: 0.03em;
    font-size: 60px;
    font-family: "Bebas Neue", "Noto Sans JP", "Helvetica Neue", "Helvetica", "Hiragino Sans", "ヒラギノ角ゴシック", YuGothic, "Yu Gothic", "メイリオ", Meiryo, "Arial", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  }
  .c-heading__white-bg h1::after {
    position: absolute;
    width: 100px;
    height: 2px;
    bottom: 18px;
    left: 0;
    border-bottom: solid 0 #3f4041;
    background-image: linear-gradient(to right, #3b85c6, #8061a7, #e84970);
  }
  .c-heading__white-bg h2 {
    padding-top: 20px;
    font-size: 24px;
    font-weight: 700;
  }
  .c-heading__white-bg p {
    letter-spacing: 0.001em;
    line-height: 2;
    margin-top: -6px;
    font-size: 14px;
  }
  .c-heading__white-bg.--about, .c-heading__white-bg.--coating {
    min-width: auto;
    margin-top: 20px;
    padding: 50px 10px 7%;
  }
  .c-heading__white-bg.--about h2, .c-heading__white-bg.--coating h2 {
    white-space: nowrap;
  }
  .c-heading__white-bg.--company {
    min-width: auto;
    margin-top: 20px;
    padding: 50px 20px;
  }
  .c-heading__white-bg.--company h2 {
    white-space: nowrap;
  }
  .c-heading__white-bg.--product {
    min-width: auto;
    width: 100%;
    margin: 20px 0 0 0;
    padding: 50px 10px 7%;
  }
  .c-heading__white-bg.--product h2 {
    white-space: wrap;
  }
}

.c-heading__section-top {
  font-size: 51px;
  font-weight: 700;
}
.c-heading__section-top::after {
  position: absolute;
  width: 275px;
  height: 2px;
  bottom: -10px;
  left: 0;
  border-bottom: solid 0 #3f4041;
  background-image: linear-gradient(to right, #3b85c6, #8061a7, #e84970);
}
@media (max-width: 1000px) {
  .c-heading__section-top {
    font-size: 35px;
  }
}
@media (max-width: 767px) {
  .c-heading__section-top {
    font-size: 26px;
    padding-top: 0px;
  }
}

/***********************************************
蛍光ペン
************************************************/
.c-heading__warning {
  text-decoration: underline;
  /* 下線 */
  text-decoration-thickness: 0.4em;
  /* 線の太さ */
  text-decoration-color: #8C7428;
  /* 線の色 */
  text-underline-offset: -0.2em;
  /* 線の位置。テキストに重なるようにやや上部にする */
  text-decoration-skip-ink: none;
  /* 下線と文字列が重なる部分でも下線が省略されない（線が途切れない） */
}

/***********************************************
逆はの字目立たせ棒\/\/\/
************************************************/
.c-heading__slash {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.c-heading__slash::before,
.c-heading__slash::after {
  content: "";
  width: 70px;
  height: 5px;
  background-color: #3399cc;
  margin: 0px 0px 33px;
}

.c-heading__slash::before {
  transform: rotate(60deg);
}

.c-heading__slash::after {
  transform: rotate(-60deg);
}

/***********************************************

************************************************/
.c-heading__color-bar {
  color: #fff;
  font-style: normal;
  background-image: linear-gradient(to right, #3b85c6, #8061a7, #e84970);
}
.c-heading__color-bar span {
  color: #535e64;
}

input,
textarea,
select {
  width: 100%;
  font-family: "BIZ UDPGothic", sans-serif;
  font-weight: 400;
  font-size: 16px;
  background-color: #fff;
  padding: 15px 19px;
  margin: 13px 0 25px;
  border: solid 1px #B9B9B9;
  border-radius: 3px;
}
input:focus,
textarea:focus,
select:focus {
  border: 1px solid #b1c6ff;
  outline: 0;
}
@media (max-width: 767px) {
  input,
  textarea,
  select {
    font-size: 14px;
    width: 100%;
    margin: 0;
  }
}
input::placeholder,
textarea::placeholder,
select::placeholder {
  color: #B9B9B9;
}

textarea {
  height: 221px;
  width: 100%;
  margin-bottom: 30px;
  border: solid 1px #B9B9B9;
}
@media (max-width: 767px) {
  textarea {
    width: 100%;
  }
}

input[type=submit],
input[type=reset] {
  cursor: pointer;
}

/***********************************************
input場所の枠線や影の定義


.c-form {
    border: solid 1px f.$form;
    border-radius: 3px;
    height: 30px;
    padding: 1px 12px;
    box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.16) inset;

    &:focus {
        border: 1px solid f.$sub;
        outline: 0;
    }
}

.c-form__dl {
    margin: 0 auto;

    @include f.mq('sp') {
        width: 95%;
    }
}

.c-form__link {
    display: inline-block;
    text-decoration: underline solid 1px f.$link;
    padding: 5px 0;
    color: f.$link;
    font-size: 11px;
    font-weight: 400;
}

.c-form__input-label-name {
    @include f.mq('sp') {
        width: 280px;
    }
}

************************************************/
/***********************************************
contact-form-row その行をフレックスにしている。
************************************************/
.contact-form__row {
  align-items: center;
  margin: 7px 0 0 0;
  display: flex;
}
.contact-form__row dt {
  width: 30%;
  max-width: 250px;
  align-items: center;
}
.contact-form__row dd {
  width: 78%;
}
@media (max-width: 767px) {
  .contact-form__row {
    margin: 23px 0 0 0;
    width: 100%;
    display: block;
    text-align: left;
  }
  .contact-form__row dt {
    display: block;
  }
  .contact-form__row dt,
  .contact-form__row dd {
    width: 100%;
  }
}
.contact-form__row.--area {
  align-items: flex-start;
}
.contact-form__row.--area label {
  margin-top: 20px;
}

.contact-form__row--textarea {
  align-items: flex-start;
  margin: 0px 0 0 0;
}
@media (max-width: 767px) {
  .contact-form__row--textarea {
    margin: 23px 0 0 0;
    width: 100%;
    display: block;
    text-align: left;
  }
  .contact-form__row--textarea dt {
    display: block;
  }
}

.other-question {
  margin: 0;
}

/***********************************************
フォームのラベル　文字など…
************************************************/
.c-form__checkbox-label {
  padding-right: 18px;
}
.c-form__checkbox-label.consent {
  margin-top: 34px;
}

.c-form__label {
  font-size: 16px;
  font-weight: 400;
  padding-right: 14px;
  font-family: "BIZ UDPGothic", sans-serif;
  display: inline-block;
  text-align: left;
  padding-bottom: 20px;
}
.c-form__label span {
  color: red;
  font-size: 30px;
  font-family: "BIZ UDPGothic", sans-serif;
  font-weight: 500;
}
@media (max-width: 767px) {
  .c-form__label span {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .c-form__label {
    text-align: left;
    justify-content: flex-start;
    font-size: 16px;
    padding-bottom: 10px;
  }
}

.c-form__label--textarea {
  padding-top: 30px;
}

/***********************************************
PC版のコンタクトフォームがブロックの場合**/
.c-form__block-label {
  font-size: 18px;
  font-weight: 700;
  margin: 46px 0 10px 0;
}
.c-form__block-label span {
  color: gray;
  font-size: 16px;
  font-weight: 400;
  margin-left: 20px;
}
.c-form__block-label span.c-form__required {
  font-size: 16px;
  margin-left: 20px;
  padding: 2px 18px;
  background-color: #e61264;
  color: #B9B9B9;
}

/***************************プライバシーポリシーに同意します*****************/
/******【注意！！】チェックボックスはinputとlabel逆に書いてはだめです！「checked」に続く＋プラス記号は後のタグだけ表せます-**
<div class="s11__acceptance">
 <input type="checkbox">★
  <label>★
  <span>
</div>

この順番でよろしくです…
*****************************************************************************************/
.wpcf7-form-control-wrap {
  display: block;
}

span.c-form__acceptance-input {
  margin: 0 30px 0 0;
  /* 項目右側の余白設定と、デフォルトの左側の余白を打ち消す */
  position: relative;
}

.c-form__acceptance-label {
  cursor: pointer;
  /* labelにhoverした時にカーソルを表示させる */
  font-size: 16px;
  /* 項目のフォントサイズ */
}

input[type=checkbox] {
  opacity: 0;
  /* デフォルトのチェックボックスを見えなくする */
  position: absolute;
}

.accept-wrap {
  width: 290px;
  height: 20px;
  margin: 0 auto;
}

.c-form__acceptance-label {
  display: inline;
  position: relative;
  text-align: center;
  font-size: 18px;
}
.c-form__acceptance-label a {
  border-bottom: 1px solid #1A1A1A;
}
.c-form__acceptance-label::before {
  /* チェックボックスのデザイン */
  background-color: #fff;
  border: 1px solid #797979;
  content: "";
  display: inline-block;
  height: 40px;
  width: 40px;
  margin-right: 34px;
  top: -1px;
  vertical-align: middle;
}
@media (max-width: 767px) {
  .c-form__acceptance-label::before {
    margin-right: 10px;
  }
}

input[type=checkbox]:checked + .c-form__acceptance-label::after {
  /* チェックアイコン */
  border-bottom: 3px solid #ffffff;
  border-left: 3px solid #ffffff;
  content: "";
  display: block;
  height: 12px;
  left: 6px;
  margin-top: -1.3em;
  opacity: 1;
  position: absolute;
  bottom: 30%;
  transform: rotate(-45deg);
  width: 25px;
  transition: opacity 0.3s ease 0s;
}

input[type=checkbox]:checked + .c-form__acceptance-label::before {
  /* チェックしたボックスの背景色を設定 */
  background-color: #433430;
}

.c-form__acceptance-input {
  width: 15vw;
}

.c-form__acceptance-label {
  font-family: "Noto Serif JP", "Helvetica Neue", "Helvetica", "Hiragino Sans", "ヒラギノ角ゴシック", YuGothic, "Yu Gothic", "メイリオ", Meiryo, "Arial", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

/******************  *************************プライバシーポリシーに同意します*******************************************/
/***********************************************
フォームのラジオボタンやセレクトボタンはこちらです
************************************************/
.c-button {
  display: block;
  cursor: pointer;
  width: 234px;
  height: 46px;
  background-color: #231815;
  border-radius: 4px;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  margin: 31px auto 0;
}

.c-button__small,
.c-button__small--white,
.c-button__medium {
  width: 228px;
  height: 49px;
  flex-grow: 0;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin: 50px auto 0;
  padding: 7px 73px;
  border-radius: 5px;
  background-color: #433430;
  color: white;
  font-size: 15px;
  transition: all 0.2s linear 0s;
  position: relative;
  z-index: 100;
}
.c-button__small:hover,
.c-button__small--white:hover,
.c-button__medium:hover {
  color: #433430;
  background-color: white;
  border: solid 1px #433430;
}
.c-button__small.--info,
.c-button__small--white.--info,
.c-button__medium.--info {
  margin: 90px 0 0 50px;
}
@media (max-width: 767px) {
  .c-button__small.--info,
  .c-button__small--white.--info,
  .c-button__medium.--info {
    margin: 70px 0 0 40px;
    padding: 0;
    width: 100px;
  }
}

.--s2-pd {
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .--s2-pd {
    margin-bottom: 0;
  }
}

.c-button__small--white {
  padding: 7px 70px;
  background-color: white;
  color: #433430;
  margin: 0;
  transition: all 0.2s linear 0s;
}
.c-button__small--white:hover {
  color: white;
  background-color: #433430;
}

.c-button__medium {
  width: auto;
  max-width: 426px;
  font-size: 20px;
  height: auto;
  padding: 25px;
  margin-top: 10px;
  color: #000;
  background-color: #EAE8DD;
}
.c-button__medium:hover {
  color: white;
  background-color: #433430;
  border: none;
}

/**************************************************************************************************************
    チェックボックス　今回はwpcf7.scss使用
************************************************/
.c-button__my-checkbox {
  display: block;
  position: relative;
  margin: 10px 0;
  padding-left: 28px;
  cursor: pointer;
  user-select: none;
  /* テキストの選択を防ぐ */
  font-size: 16px;
  font-weight: 700;
  text-align: center;
}
@media (max-width: 767px) {
  .c-button__my-checkbox {
    font-size: 14px;
    width: 100%;
    max-width: 360px;
    margin: 20px 0;
  }
}

/* inputは非表示にする */
.c-button__my-checkbox input {
  display: none;
}

.c-button__my-checkbox input[type=text] {
  display: block;
}

/* □ */
.c-button__checkmark {
  position: absolute;
  top: -4px;
  /* 上からの位置 */
  left: 0;
  height: 22px;
  /* 大きさ */
  width: 22px;
  /* 大きさ */
  border: solid 1px #d9d9d9;
  /* 線 */
  border-radius: 5px;
  box-sizing: border-box;
  background: #fff;
  background-color: #fafafa;
  transition: all 0.2s linear 0s;
}

/* ✓ */
.c-button__checkmark:after {
  content: "";
  position: absolute;
  left: 7px;
  /* チェックの位置 */
  top: 2px;
  /* チェックの位置 */
  width: 5px;
  /* チェックの大きさ */
  height: 9px;
  /* チェックの大きさ */
  border-right: solid 2px #fff;
  border-bottom: solid 2px #fff;
  transform: rotate(45deg);
  opacity: 0;
  /* 透明にしておく */
}

/* チェックが入ったときの□ */
.c-button__my-checkbox input:checked + .c-button__checkmark {
  background: #00b4ee;
  /* チェック時の色 */
  border-color: #00b4ee;
  /* チェック時の色 */
  transition: all 0.2s linear 0s;
}

/* チェックが入ったときの✓ */
.c-button__my-checkbox input:checked + .c-button__checkmark:after {
  opacity: 1;
  /* 透明を解除 */
}

/***********************************************
ここまで　チェックボックス　チェックボックス
*************************************************************************************************************/
/***********************************************
ラジオボタン
************************************************/
input[type=radio] {
  display: none;
  /* ラジオボタンを非表示にする */
}

.label .wpcf7-list-item-label {
  display: block;
  /* ブロックレベル要素化する */
  float: left;
  /* 要素の左寄せ・回り込を指定する */
  margin: 5px;
  /* ボックス外側の余白を指定する */
  width: 251px;
  /* ボックスの横幅を指定する */
  height: 65px;
  /* ボックスの高さを指定する */
  padding-left: 5px;
  /* ボックス内左側の余白を指定する */
  padding-right: 5px;
  /* ボックス内御右側の余白を指定する */
  color: #000;
  /* フォントの色を指定 */
  font-size: 20px;
  text-align: center;
  /* テキストのセンタリングを指定する */
  line-height: 45px;
  /* 行の高さを指定する */
  cursor: pointer;
  /* マウスカーソルの形（リンクカーソル）を指定する */
  border: 3px solid #c8c8c8;
  /* ボックスの境界線を実線で指定する */
  border-radius: 30px;
  /* 角丸を指定する */
  padding: 8px 5px;
}
@media (max-width: 767px) {
  .label .wpcf7-list-item-label {
    width: 140px;
    font-size: 16px;
  }
}

input[type=radio]:checked + .wpcf7-list-item-label {
  border: 3px solid #3393c5;
  /* マウス選択時の枠や背景色を指定する */
}

/*******普通っぽい◎のラジオボタン******/
.radio-circle {
  font-size: 15px;
  position: relative;
  padding-left: 25px;
  margin-right: 40px;
}
.radio-circle::before {
  content: "";
  display: block;
  border-radius: 50%;
  border: 2px solid #c8c8c8;
  width: 16px;
  height: 16px;
  margin-right: 10px;
  position: absolute;
  top: 53%;
  transform: translateY(-50%);
  left: 0;
}

input[type=radio]:checked + .radio-circle::after {
  content: "";
  position: absolute;
  top: 53%;
  transform: translateY(-50%);
  left: 4.5px;
  display: block;
  border-radius: 50%;
  width: 10px;
  height: 10px;
  background-color: #3393c5;
}

.c-button__radio-title {
  display: block;
}

.c-button__radio-wrap {
  display: block;
  margin-top: 24px;
}

/***********************************************
セレクトボタン
************************************************/
.select-box {
  width: 100%;
  margin: 30px auto 0;
  position: relative;
}

.select-box::before {
  width: 0;
  height: 0;
  font-size: 15px;
  position: absolute;
  top: 50%;
  left: 502px;
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 50;
}
@media (max-width: 767px) {
  .select-box::before {
    top: 60%;
    left: 70vw;
  }
}

.select-box__item {
  width: 343px;
  padding: 21px;
  -webkit-appearance: none;
  appearance: none;
}
@media (max-width: 767px) {
  .select-box__item {
    width: 100%;
  }
}

.select-box__item::-ms-expand {
  display: none;
}

/***********************************************
セレクトボタンここまで
************************************************/
/***********************************************
    hoverで少し大きくなって影がつくボタン
    ************************************************/
.c-hover {
  transition: all 0.2s linear;
}
.c-hover:hover {
  transform: scale(1.1, 1.1);
  box-shadow: 4px 3px 6px 0px rgba(0, 0, 0, 0.13);
}

/***********************************************
    ボタンが３秒ごとに揺れる
    ************************************************/
.c-swing {
  margin-top: 10px;
  margin-left: 20px;
  animation-name: c-swing;
  animation-duration: 5s;
  animation-delay: 1s;
  animation-iteration-count: infinite;
}

@-webkit-keyframes c-swing {
  0% {
    -webkit-transform: rotate(0deg);
  }
  55% {
    -webkit-transform: rotate(0deg);
  }
  60% {
    -webkit-transform: rotate(0deg);
  }
  65% {
    -webkit-transform: rotate(0deg);
  }
  70% {
    -webkit-transform: rotate(-1deg);
  }
  75% {
    -webkit-transform: rotate(2deg);
  }
  80% {
    -webkit-transform: rotate(-1deg);
  }
  85% {
    -webkit-transform: rotate(1deg);
  }
  90% {
    -webkit-transform: rotate(0deg);
  }
  95% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
  }
}
/*====== 9-1-1 縦線が動いてスクロールを促す =======*/
/*スクロールダウン全体の場所*/
.scrolldown1 {
  /*描画位置※位置は適宜調整してください*/
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -35px;
  /*全体の高さ*/
  height: 50px;
}

/*Scrollテキストの描写*/
.scrolldown1 span {
  /*描画位置*/
  position: absolute;
  left: -35px;
  top: -15px;
  /*テキストの形状*/
  color: #eee;
  width: 70px;
  font-size: 20px;
  font-weight: 400;
}
@media (max-width: 767px) {
  .scrolldown1 span {
    font-size: 12px;
    left: -50%;
    transform: translateX(-50%);
    top: 0px;
  }
}

/* 線の描写 */
.scrolldown1::after {
  content: "";
  /*描画位置*/
  position: absolute;
  top: 0;
  /*線の形状*/
  width: 3px;
  height: 30px;
  background: #c3107e;
  /*線の動き1.4秒かけて動く。永遠にループ*/
  animation: pathmove 1.4s ease-in-out infinite;
  opacity: 0;
}
@media (max-width: 767px) {
  .scrolldown1::after {
    width: 1px;
    height: 15px;
  }
}

/*高さ・位置・透過が変化して線が上から下に動く*/
@keyframes pathmove {
  0% {
    height: 0;
    top: 10px;
    opacity: 0;
  }
  30% {
    height: 30px;
    opacity: 1;
  }
  100% {
    height: 0;
    top: 55px;
    opacity: 0;
  }
}
/***********************************************
ワードプレス　contactform7のチェックボックス
************************************************/
/**************************************************************************************************************
    チェックボックス　チェックボックス　チェックボックス
************************************************/
.c-wpcf7__checkbox .wpcf7-form-control-wrap {
  display: block;
}
.c-wpcf7__checkbox span.wpcf7-list-item {
  margin: 0 30px 0 0;
  /* 項目右側の余白設定と、デフォルトの左側の余白を打ち消す */
  position: relative;
}
.c-wpcf7__checkbox .wpcf7-list-item-label {
  cursor: pointer;
  /* labelにhoverした時にカーソルを表示させる */
  font-size: 16px;
  /* 項目のフォントサイズ */
}
.c-wpcf7__checkbox input[type=checkbox] {
  opacity: 0;
  /* デフォルトのチェックボックスを見えなくする */
  position: absolute;
}
.c-wpcf7__checkbox .accept-wrap {
  width: 290px;
  height: 20px;
  margin: 0 auto;
}
.c-wpcf7__checkbox .wpcf7-list-item-label {
  display: inline;
  position: relative;
  text-align: center;
  font-size: 18px;
  padding: 0 10px;
}
@media (max-width: 767px) {
  .c-wpcf7__checkbox .wpcf7-list-item-label {
    font-size: 16px;
  }
}
.c-wpcf7__checkbox .wpcf7-list-item-label a {
  border-bottom: 1px solid #1A1A1A;
}
.c-wpcf7__checkbox .wpcf7-list-item-label::before {
  position: absolute;
  top: 3px;
  /* 上からの位置 */
  left: -24px;
  height: 22px;
  /* 大きさ */
  width: 22px;
  /* 大きさ */
  border: solid 1px #d9d9d9;
  /* 線 */
  border-radius: 0px;
  box-sizing: border-box;
  background: #fff;
  background-color: #fafafa;
  transition: all 0.2s linear 0s;
}
.c-wpcf7__checkbox input[type=checkbox]:checked + .wpcf7-list-item-label::after {
  /* チェックアイコン */
  content: "";
  position: absolute;
  left: -16px;
  /* チェックの位置 */
  top: 3px;
  /* チェックの位置 */
  width: 5px;
  /* チェックの大きさ */
  height: 9px;
  /* チェックの大きさ */
  border-right: solid 2px #ffffff;
  border-bottom: solid 2px #ffffff;
  transform: rotate(45deg);
  opacity: 1;
  /* 透明にしておく */
}
.c-wpcf7__checkbox input[type=checkbox]:checked + .wpcf7-list-item-label::before {
  /* チェックしたボックスの背景色を設定 */
  background-color: #3393c5;
}

/***********************************************
ここまで　チェックボックス　チェックボックス
**********************************************/
/***********************************************
ラジオボタン
************************************************/
input[type=radio] {
  display: none;
  /* ラジオボタンを非表示にする */
}

.label .wpcf7-list-item-label {
  display: block;
  /* ブロックレベル要素化する */
  float: left;
  /* 要素の左寄せ・回り込を指定する */
  margin: 5px;
  /* ボックス外側の余白を指定する */
  width: 251px;
  /* ボックスの横幅を指定する */
  height: 65px;
  /* ボックスの高さを指定する */
  padding-left: 5px;
  /* ボックス内左側の余白を指定する */
  padding-right: 5px;
  /* ボックス内御右側の余白を指定する */
  color: #000;
  /* フォントの色を指定 */
  font-size: 20px;
  text-align: center;
  /* テキストのセンタリングを指定する */
  line-height: 45px;
  /* 行の高さを指定する */
  cursor: pointer;
  /* マウスカーソルの形（リンクカーソル）を指定する */
  border: 3px solid #c8c8c8;
  /* ボックスの境界線を実線で指定する */
  border-radius: 30px;
  /* 角丸を指定する */
  padding: 8px 5px;
}
@media (max-width: 767px) {
  .label .wpcf7-list-item-label {
    width: 140px;
    font-size: 16px;
  }
}

input[type=radio]:checked + .wpcf7-list-item-label {
  border: 3px solid #3393c5;
  /* マウス選択時の枠や背景色を指定する */
}

/***************************プライバシーポリシーに同意します*****************/
.wpcf7-form-control-wrap {
  display: block;
}

span.wpcf7-list-item {
  margin: 0 30px 0 0;
  /* 項目右側の余白設定と、デフォルトの左側の余白を打ち消す */
  position: relative;
}

.wpcf7-list-item-label {
  cursor: pointer;
  /* labelにhoverした時にカーソルを表示させる */
  font-size: 16px;
  /* 項目のフォントサイズ */
}

input[type=checkbox] {
  opacity: 0;
  /* デフォルトのチェックボックスを見えなくする */
  position: absolute;
}

.accept-wrap {
  width: 290px;
  height: 20px;
  margin: 0 auto;
}

.wpcf7-list-item-label {
  display: inline;
  position: relative;
  text-align: center;
  font-size: 14px;
  padding: 0 10px;
}
.wpcf7-list-item-label a {
  border-bottom: 1px solid #1A1A1A;
}
.wpcf7-list-item-label::before {
  /* チェックボックスのデザイン */
  background-color: #fff;
  border: 1px solid #1A1A1A;
  content: "";
  display: inline-block;
  height: 25px;
  width: 25px;
  margin-right: 10px;
  top: -1px;
  vertical-align: middle;
}

input[type=checkbox]:checked + .wpcf7-list-item-label::after {
  /* チェックアイコン */
  border-bottom: 4px solid #1a1a1a;
  border-left: 4px solid #1a1a1a;
  content: "";
  display: block;
  height: 16.8px;
  left: 10px;
  margin-top: -1.3em;
  opacity: 1;
  position: absolute;
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
  width: 28px;
  transition: opacity 0.3s ease 0s;
}

input[type=checkbox]:checked + .wpcf7-list-item-label::before {
  /* チェックしたボックスの背景色を設定 */
  background-color: #fff;
}

/******************  *************************プライバシーポリシーに同意します*******************************************/
/***********************************************
トップページ
************************************************/
/*１ページ目　TOP*/
.p-s11__top-body {
  background-color: #fff;
}

.p-s11__bg-en{
  font-size: 190px;
  position: absolute;
  bottom: -14vw;
  left: 80px;
  font-family: 'Bebas Neue';
}
@media (max-width: 1200px) {
  .p-s11__bg-en{
    font-size: 100px;
    position: absolute;
    bottom: -10vw;
    left: 80px;
    font-family: 'Bebas Neue';
  }
}
@media (max-width: 767px) {
  .p-s11__bg-en{display: none;
  }
}

.p-s11__bg-en-sp{
 display: none;
}
@media (max-width: 767px) {
  .p-s11__bg-en-sp{
    display: flex;
    font-size: 80px;
    position: absolute;
    bottom: 0px;
    left: 0px;
    font-family: 'Bebas Neue';
  }
  .p-s11__bg-en-sp.--2{
    bottom: -70px;
  }
  .p-s11__bg-en-sp.--3{
    bottom: -140px;
  }
}

.p-s11__background {
  background-size: 98%;
  background-position: top 80px left;
  background-image: url(../img/bg-pc2.png);
  color: #fff;
}
@media (max-width: 1200px) {
  .p-s11__background {
    margin-top: 80px;
    background-image: url(../img/bg-pc2.png);
    background-size: cover;
    background-position: bottom left;
  }
}
@media (max-width: 767px) {
  .p-s11__background {
    margin-top: 80px;
    background-image: url(../img/bg-sp2.png);
    background-size: cover;
    background-position: bottom left;
  }
}

.p-s11__inner {
  text-align: left;
  margin-right: auto;
  margin-left: 8vw;
  padding-bottom: 15vw;
}
@media (max-width: 767px) {
  .p-s11__inner {
    margin: 0;
    padding: 0 3vw 60vw;
  }
}

.p-s11__heading {
  padding-top: 300px;
  padding-left: 0px;
  line-height: 1.4;
  letter-spacing: 0.04em;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.15);
  position: relative;
  z-index: 100;
  font-size: 65px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.38;
  letter-spacing: 2.6px;
  text-align: left;
}
.p-s11__heading span {
  font-size: 45px;
  color: green;
}
@media (max-width: 1000px) {
  .p-s11__heading {
    font-size: 45px;
  }
}
@media (max-width: 767px) {
  .p-s11__heading {
    padding: 50px 0 0px;
    font-size: 30px;
  }
  .p-s11__heading .move {
    font-size: 50px;
  }
}

.p-s11__sub-title {
  padding: 10px;
  display: inline-block;
  margin-top: 2px;
  margin-bottom: 41px;
  position: relative;
  z-index: 100;
  padding-top: 43px;
  font-weight: bold;
  line-height: 1.84;
  letter-spacing: normal;
  text-align: left;
  color: #fff;
}
@media (max-width: 767px) {
  .p-s11__sub-title {
    padding: 20px 0 0 0;
    margin-top: 0px;
  }
}

.p-s12 {
  position: relative;
  padding-top: 140px;
}
@media (max-width: 767px) {
  .p-s12 {
    padding-top: 50px;
  }
}

.p-s12__bgimg {
  width: 35%;
  position: absolute;
  top: 50%;
  left: 2%;
}
@media (max-width: 767px) {
  .p-s12__bgimg {
    width: 70%;
    left: -15%;
  }
}

.p-s12__container-title-ja {
  font-size: 50px;
  text-align: center;
  margin: 0 auto;
  font-weight: 700;
  padding: 46px 0;
  letter-spacing: 0.07em;
  z-index: 10;
}
@media (max-width: 767px) {
  .p-s12__container-title-ja {
    font-size: 20px;
    padding: 15px 0 15px;
  }
}
.p-s12__container-title-ja::before {
  content: "protect";
  display: inline;
  font-size: 240px;
  font-family: "Bebas Neue", "Noto Sans JP", "Helvetica Neue", "Helvetica", "Hiragino Sans", "ヒラギノ角ゴシック", YuGothic, "Yu Gothic", "メイリオ", Meiryo, "Arial", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  text-align: center;
  color: #F3F3F6;
  margin: 0 auto;
  position: absolute;
  top: -90px;
  left: 50%;
  transform: translateX(-50%);
  z-index: -3;
  letter-spacing: 0.025em;
}
@media (max-width: 1000px) {
  .p-s12__container-title-ja::before {
    font-size: 180px;
  }
}
@media (max-width: 767px) {
  .p-s12__container-title-ja::before {
    font-size: 70px;
    top: -20px;
  }
}
.p-s12__container-title-ja.--Coatingeffect {
  font-size: 41px;
}
.p-s12__container-title-ja.--Coatingeffect::before {
  content: "Coating effect";
  white-space: nowrap;
  color: #ffffff;
  font-size: 211px;
}
@media (max-width: 1000px) {
  .p-s12__container-title-ja.--Coatingeffect::before {
    font-size: 123px;
    top: -10px;
  }
}
@media (max-width: 767px) {
  .p-s12__container-title-ja.--Coatingeffect::before {
    font-size: 60px;
    top: 60px;
  }
}
@media (max-width: 767px) {
  .p-s12__container-title-ja.--Coatingeffect {
    font-size: 24px;
    padding-top: 80px;
  }
}

.p-s12__sub-title {
  height: 125px;
  margin: 12px 0;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.75;
  letter-spacing: normal;
  text-align: center;
  color: #535e64;
}
@media (max-width: 767px) {
  .p-s12__sub-title {
    font-size: 13px;
  }
}

/********/


/****/
.left_to_right img {
  max-width:60%;
  animation-name: anime_left_to_right;
  animation-fill-mode: forwards;
  animation-duration: 3s;
  animation-iteration-count: 1;
  animation-timing-function: ease;
  animation-delay: 0s;
  animation-direction: normal;
  position: absolute;
  top: 200px;
  right: -60px;
  z-index: 1;
}
@media (max-width: 767px) {
  .left_to_right img {
    right: 0px;
  }
}

@keyframes anime_left_to_right {
  0% {
      clip-path: polygon(100% 0%, 100% 0%, 100% 100%, 100% 100%);
  }
  100% {
      clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
  }
}

/*==================================================
じわっ
===================================*/

.blur{
  animation-name:blurAnime;
  animation-duration:1.8s;
  animation-fill-mode:forwards;
}

@keyframes blurAnime{
  from {
  filter: blur(10px);
  transform: scale(1.02);
  opacity: 0;
  }

  to {
  filter: blur(0);
  transform: scale(1);
  opacity: 1;
  }
}
 
.blurTrigger{
    opacity: 0;
}



/***********************************************
top---About   
************************************************/
.p-s13__about {
  padding-top: 150px;
  padding-bottom: 100px;
  position: relative;
  z-index: 1;
}
@media (max-width: 767px) {
  .p-s13__about {
    padding: 0;
  }
}

.p-13__heading {
  font-family: "Bebas Neue", "Noto Sans JP", "Helvetica Neue", "Helvetica", "Hiragino Sans", "ヒラギノ角ゴシック", YuGothic, "Yu Gothic", "メイリオ", Meiryo, "Arial", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 400;
  font-size: 120px;
}
.p-13__heading::after {
  bottom: 10px;
}
@media (max-width: 767px) {
  .p-13__heading {
    font-size: 60px;
    padding-top: 20px;
  }
}

.p-s13__container {
  width: 30%;
  margin-left: 19%;
}
@media (max-width: 1000px) {
  .p-s13__container {
    width: 90%;
    display: block;
    margin: 0 auto;
    padding-left: 20px;
  }
}
@media (max-width: 767px) {
  .p-s13__container {
    padding-left: 0;
  }
}

.p-s13__img {
  margin-top: 50px;
  width: 53%;
}
@media (max-width: 767px) {
  .p-s13__img {
    width: 100%;
    margin-top: 100px;
  }
}

.p-s13__text1 {
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.34;
  letter-spacing: 1.64px;
  padding: 30px 0 0;
}
@media (max-width: 767px) {
  .p-s13__text1 {
    font-size: 24px;
    padding: 20px 0 0;
  }
}

.p-s13__text2 {
  width: 90%;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.94;
  letter-spacing: normal;
  text-align: left;
  color: #535e64;
  padding: 25px 0 55px;
}
@media (max-width: 767px) {
  .p-s13__text2 {
    width: 100%;
    padding-bottom: 20px;
    letter-spacing: normal;
    line-height: 1.94;
    margin-top: -6px;
    font-size: 14px;
    font-weight: 500;
  }
}

/***********************************************
コーティング効果
************************************************/
.p-14__bg-curve {
  margin-top: 120px;
  background-color: #f3f3f6;
  width: 90%;
  border-radius: 0 150px 0 0;
  padding: 80px 0 130px 80px;
  overflow: hidden;
}
@media (max-width: 767px) {
  .p-14__bg-curve {
    margin-top: 60px;
    width: 100%;
    padding: 0;
    padding-bottom: 30px;
  }
}

.p-14__inner {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 100px;
  text-align: center;
}
@media (max-width: 767px) {
  .p-14__inner {
    width: 90%;
    padding: 0;
  }
}

.p-s14__text {
  height: 193px;
  margin: 65px 0px 0 0px;
  font-size: 18px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.94;
  letter-spacing: normal;
  text-align: center;
  color: #535e64;
}
@media (max-width: 767px) {
  .p-s14__text {
    font-size: 14px;
    margin: 20px 0px 0 0px;
  }
}
@media (max-width: 767px) {
  .p-s14__text.--sp-height {
    height: auto;
    padding-bottom: 30px;
  }
}

.p-s14__flex {
  display: flex;
  padding-top: 20px;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .p-s14__flex {
    padding-top: 0;
  }
}

.p-s14__box {
  width: 23%;
  position: relative;
  z-index: 10;
  padding-top: 30px;
  font-size: 20px;
  font-weight: 700;
}
@media (max-width: 1000px) {
  .p-s14__box {
    width: 45%;
    font-size: 16px;
  }
}
.p-s14__box img {
  padding-bottom: 30px;
}
@media (max-width: 767px) {
  .p-s14__box img {
    padding-bottom: 10px;
  }
}

.p-s16__bgimg {
  margin-top: 0;
  width: 100%;
  background-position: top center;
  background-size: 100%;
  padding: 100px 0 0;
  position: relative;
  overflow-y: hidden;
  background-image: url(../img/s16-bg.jpg);
}

.p-s16__bg-white {
  width: 77.5%;
  background-color: #fff;
  border-radius: 0 150px 0 0;
  padding: 76px 6% 7% 18.5%;
}
@media (min-width: 1001px) {
  .p-s16__bg-white {
    min-width: 1000px;
  }
}
@media (max-width: 1000px) {
  .p-s16__bg-white {
    width: 100%;
  }
}
.p-s16__bg-white h1 {
  letter-spacing: 0.03em;
  font-size: 120px;
  font-family: "Bebas Neue", "Noto Sans JP", "Helvetica Neue", "Helvetica", "Hiragino Sans", "ヒラギノ角ゴシック", YuGothic, "Yu Gothic", "メイリオ", Meiryo, "Arial", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
.p-s16__bg-white h1::after {
  position: absolute;
  width: 228px;
  height: 2px;
  bottom: 18px;
  left: 0;
  border-bottom: solid 0 #3f4041;
  background-image: linear-gradient(to right, #3b85c6, #8061a7, #e84970);
}
.p-s16__bg-white h2 {
  padding-top: 16px;
  font-size: 41px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.06em;
}
.p-s16__bg-white p {
  letter-spacing: 0.001em;
  line-height: 2;
  margin-top: 5px;
}
.p-s16__bg-white a {
  transition: all 0.2s linear 0s;
 }
.p-s16__bg-white a:hover {
 opacity: 0.7;
}
.--bag{
  position: relative;
  z-index: 50;
}
@media (max-width: 767px) {
  .p-s16__bg-white {
    width: 100%;
    padding: 20px;
    border-radius: 0 50px 0 0;
  }
  .p-s16__bg-white h1 {
    letter-spacing: 0.03em;
    font-size: 60px;
    font-family: "Bebas Neue", "Noto Sans JP", "Helvetica Neue", "Helvetica", "Hiragino Sans", "ヒラギノ角ゴシック", YuGothic, "Yu Gothic", "メイリオ", Meiryo, "Arial", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  }
  .p-s16__bg-white h1::after {
    position: absolute;
    width: 275px;
    height: 2px;
    bottom: 10px;
    left: 0;
    border-bottom: solid 0 #3f4041;
    background-image: linear-gradient(to right, #3b85c6, #8061a7, #e84970);
  }
  .p-s16__bg-white h2 {
    padding-top: 20px;
    font-size: 24px;
    font-weight: 700;
  }
  .p-s16__bg-white p {
    letter-spacing: normal;
    line-height: 1.94;
    margin-top: -6px;
    font-size: 15px;
    font-weight: 500;
    padding: 25px 0 6px;
  }
}

.p-s16__box {
  display: block;
  position: relative;
}
@media (max-width: 767px) {
  .p-s16__box {
    width: 48%;
    height: auto;
  }
}

.p-s16__flex {
  display: flex;
  max-width: 971px;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media (max-width: 1000px) {
  .p-s16__flex {
    width: 100%;
    margin-bottom: 40px;
  }
}
.p-s16__flex img {
  width: 22vw;
  height: 22vw;
  object-fit: cover;
  margin-top: 1.5em;
  position: relative;
  z-index: 100;
}
@media (min-width: 1001px) {
  .p-s16__flex img {
    max-width: 295px;
    max-height: 290px;
  }
}
@media (max-width: 1000px) {
  .p-s16__flex img {
    width: 22vw;
    height: 22vw;
  }
}
@media (max-width: 767px) {
  .p-s16__flex img {
    width: 100%;
    height: auto;
    justify-content: center;
  }
}

/***********************************************
OUR PRODUCT
************************************************/
.p-s17__bg {
  position: relative;
}
@media (max-width: 767px) {
  .p-s17__bg {
    margin-bottom: 50px;
    padding: 20px;
  }
}

.p-s17__bgimg {
  width: 55%;
  position: absolute;
  top: -50%;
  right: 0;
  z-index: 1;
}

.p-s17__contents {
  position: relative;
  z-index: 10;
  width: 98%;
  max-width: 1400px;
  margin: 82px auto 170px;
  padding-left: 64px;
}
@media (max-width: 767px) {
  .p-s17__contents {
    display: block;
    padding: 0;
    margin: 0;
  }
}

.p-s17__sub-texts {
  padding-left: 37px;
  width: 100%;
}
@media (max-width: 767px) {
  .p-s17__sub-texts {
    padding: 0;
  }
}

.p-s17__flex {
  display: flex;
  width: 100%;
  justify-content: space-between;
  flex-wrap: wrap;
  padding-top: 80px;
}
.p-s17__flex img {
  height: auto;
  object-fit: cover;
  margin-top: 2em;
}
@media screen and (min-width: 768px) {
  .p-s17__flex img {
    max-width: 240px;
    max-height: 390px;
  }
}
@media (max-width: 1000px) {
  .p-s17__flex {
    width: 100%;
    justify-content: center;
    padding-top: 20px;
  }
  .p-s17__flex img {
    width: 100%;
  }
}

.p-s17__sp {
  display: block;
}

.p-s17__box {
  display: block;
  width: 240px;
  height: 390px;
  position: relative;
}
@media (max-width: 1000px) {
  .p-s17__box {
    width: 240px;
    height: 390px;
    margin: 5px;
  }
}
.p-s17__box::before {
  width: 240px;
  height: 390px;
  position: absolute;
  left: 0;
  top: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
  background-image: url(../img/s17-1.png);
}
@media (max-width: 767px) {
  .p-s17__box::before {
    width: 240px;
    height: 390px;
  }
}
.p-s17__box p {
  width: 230px;
  max-width: 250px;
  color: #fff;
  padding: 20px 20px;
  position: absolute;
  left: 7px;
  bottom: 0;
  z-index: 3;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.5;
  letter-spacing: normal;
  text-align: left;
  color: #feffff;
}
@media (max-width: 767px) {
  .p-s17__box p {
    width: 230px;
    margin: 0;
    padding: 20px 17px;
  }
}
.p-s17__box.--02 {
  margin-top: 3.3em;
}
.p-s17__box.--02::before {
  background-image: url(../img/s17-2.png);
}
@media (max-width: 767px) {
  .p-s17__box.--02 {
    margin-top: 1em;
  }
}
.p-s17__box.--03 {
  margin-top: 7em;
}
.p-s17__box.--03::before {
  background-image: url(../img/s17-3.png);
}
@media (max-width: 767px) {
  .p-s17__box.--03 {
    margin-top: 1em;
  }
}
.p-s17__box.--04 {
  margin-top: 10.7em;
}
.p-s17__box.--04::before {
  background-image: url(../img/s17-4.png);
}
@media (max-width: 767px) {
  .p-s17__box.--04 {
    margin-top: 1em;
  }
}

.p-s17__number {
  display: block;
  font-family: "Bebas Neue", "Noto Sans JP", "Helvetica Neue", "Helvetica", "Hiragino Sans", "ヒラギノ角ゴシック", YuGothic, "Yu Gothic", "メイリオ", Meiryo, "Arial", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 70px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  letter-spacing: 1.75px;
  text-align: left;
  color: #feffff;
}

.p-s17__sub-title {
  line-height: 1em;
  font-size: 22px;
}
@media (max-width: 1000px) {
  .p-s17__sub-title {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .p-s17__sub-title {
    font-size: 18px;
  }
}

.p-s17__text {
  font-size: 16px;
}
@media (max-width: 1000px) {
  .p-s17__text {
    font-size: 15px;
  }
}
@media (max-width: 767px) {
  .p-s17__text {
    font-size: 14px;
  }
}

.p-s17__title {
  display: block;
  writing-mode: vertical-rl;
  letter-spacing: 0.03em;
  font-size: 120px;
  font-family: "Bebas Neue", "Noto Sans JP", "Helvetica Neue", "Helvetica", "Hiragino Sans", "ヒラギノ角ゴシック", YuGothic, "Yu Gothic", "メイリオ", Meiryo, "Arial", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  position: relative;
  margin-top: 20px;
}
.p-s17__title::after {
  position: absolute;
  width: 2px;
  height: 228px;
  top: 0;
  right: 0px;
  border-bottom: solid 0 #3f4041;
  background-image: linear-gradient(to bottom, #3b85c6, #8061a7, #e84970);
}
@media (max-width: 1000px) {
  .p-s17__title {
    font-size: 83px;
  }
}
@media (max-width: 767px) {
  .p-s17__title {
    writing-mode: horizontal-tb;
    font-size: 50px;
  }
  .p-s17__title::after {
    position: absolute;
    width: 275px;
    height: 2px;
    top: auto;
    bottom: 10px;
    left: 0;
    border-bottom: solid 0 #3f4041;
    background-image: linear-gradient(to right, #3b85c6, #8061a7, #e84970);
  }
}

.p-s17__title-sub1 {
  padding-top: 16px;
  font-size: 41px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 1px;
}
@media (max-width: 767px) {
  .p-s17__title-sub1 {
    font-size: 24px;
  }
}

.p-s17__title-sub2 {
  letter-spacing: 0.001em;
  line-height: 2;
  margin-top: -5px;
}

@media (max-width: 767px) {
  .p-s17__title-sub1 {
    padding-top: 20px;
    font-size: 24px;
    font-weight: 700;
  }
  .p-s17__title-sub2 {
    letter-spacing: normal;
    line-height: 1.94;
    margin-top: -6px;
    font-size: 15px;
    font-weight: 500;
    padding: 25px 0 25px;
  }
}
.bar {
  display: block;
  width: 180px;
  height: 1px;
  background-color: #ffffff;
  margin: 10px 0;
}

.p-s10__view-more {
  display: block;
  width: 300px;
  height: 70px;
  font-family: "Bebas Neue", "Noto Sans JP", "Helvetica Neue", "Helvetica", "Hiragino Sans", "ヒラギノ角ゴシック", YuGothic, "Yu Gothic", "メイリオ", Meiryo, "Arial", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 22px;
  font-stretch: normal;
  font-style: normal;
  line-height: 2.77;
  letter-spacing: 1.76px;
  text-align: center;
  border-radius: 60px;
  color: #fff;
}
@media (max-width: 767px) {
  .p-s10__view-more {
    margin: 0 auto;
  }
}

.p-s17__btn {
  margin: 30px 0 0 8vw;
}
@media (max-width: 767px) {
  .p-s17__btn {
    margin: 0 auto;
  }
}

/***********************************************
    トップページ　fontsize　設定
    ************************************************/
.article-top h1 {
  font-size: 120px;
}
@media (max-width: 1000px) {
  .article-top h1 {
    font-size: 80px;
  }
}
@media (max-width: 767px) {
  .article-top h1 {
    font-size: 60px;
    margin-top: 10px;
  }
}
.article-top h2 {
  font-size: 41px;
}
@media (max-width: 1000px) {
  .article-top h2 {
    font-size: 24px;
  }
}
@media (max-width: 767px) {
  .article-top h2 {
    font-size: 24px;
  }
}
.article-top p {
  font-size: 18px;
}
@media (max-width: 1000px) {
  .article-top p {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .article-top p {
    font-size: 14.5px;
  }
}

/***********************************************
下層ページ
************************************************/
/*２ページ目　ABOUT*/
.p-s20__bg-white {
  margin-top: 160px;
  background-color: #fff;
  width: 95%;
  border-radius: 0 150px 0 0;
  padding: 185px 0 190px 100px;
}
@media (max-width: 767px) {
  .p-s20__bg-white {
    margin: 0;
    width: 100%;
    padding: 15px;
    border-radius: 0 40px 0 0;
  }
}

.p-s20__inner {
  width: 80%;
  max-width: 1204px;
  margin: 0 auto;
}
@media (max-width: 1000px) {
  .p-s20__inner {
    width: 100%;
    margin: 0 auto 50px;
  }
}

.p-s20__container {
  width: 90%;
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  padding-top: 100px;
}
.p-s20__container.--right {
  margin-left: auto;
  padding-top: 85px;
}
.p-s20__container.--left {
  flex-direction: row;
}
@media (max-width: 1000px) {
  .p-s20__container {
    width: 100%;
    display: block;
    padding-top: 60px;
  }
  .p-s20__container.--right {
    padding-top: 50px;
  }
}

.p-s20__left {
  width: 49%;
}
.p-s20__left.--s40 {
  width: 55%;
  padding-top: 65px;
}
@media (max-width: 1000px) {
  .p-s20__left.--s40 {
    width: 100%;
    padding-top: 15px;
  }
}
@media (max-width: 1000px) {
  .p-s20__left {
    width: 100%;
  }
}

.p-s20__container-heading {
  font-size: 41px;
  font-weight: 700;
  padding-left: 30px;
}
@media (max-width: 1000px) {
  .p-s20__container-heading {
    font-size: 22px;
  }
}

.p-s20__text {
  padding-top: 20px;
  line-height: 1.5;
  font-size: 16px;
}
@media (max-width: 1000px) {
  .p-s20__text {
    padding-right: 60px;
  }
}
@media (max-width: 767px) {
  .p-s20__text {
    font-size: 14px;
    padding-right: 0px;
  }
}

.p-s20__right {
  width: 45%;
}
@media (max-width: 1000px) {
  .p-s20__right {
    width: 60%;
    margin: 0 auto 20px;
  }
}
@media (max-width: 767px) {
  .p-s20__right {
    width: 90%;
    margin: 0 auto 20px;
  }
}
.p-s20__right.--s40 {
  width: 38%;
}
@media (max-width: 767px) {
  .p-s20__right.--s40 {
    width: 100%;
    margin: 0 auto 0px;
  }
}

/*３ページ目　COATING*/
.p-s30__bg-white {
  margin-top: 160px;
  background-color: #fff;
  width: 95%;
  border-radius: 0 150px 0 0;
  padding: 185px 0 190px 100px;
}
@media (max-width: 767px) {
  .p-s30__bg-white {
    margin-top: 0px;
    width: 100%;
    padding: 15px;
    border-radius: 0 40px 0 0;
  }
}

.p-s30__inner {
  width: 80%;
  max-width: 1204px;
  margin: 0 auto -4px;
}
@media (max-width: 767px) {
  .p-s30__inner {
    width: 100%;
    margin: 0 auto 50px;
  }
}

.p-s30__container {
  width: 100%;
  padding-top: 100px;
}
@media (max-width: 767px) {
  .p-s30__container {
    padding-top: 60px;
  }
}

.p-s30__container-title-ja {
  font-size: 41px;
  text-align: center;
  margin: 0 auto;
  font-weight: 700;
  padding: 46px 0;
  z-index: 10;
}
@media (max-width: 767px) {
  .p-s30__container-title-ja {
    font-size: 20px;
    padding: 15px 0 15px;
  }
}
.p-s30__container-title-ja::before {
  content: "VEHICLE";
  display: inline;
  font-size: 240px;
  font-family: "Bebas Neue", "Noto Sans JP", "Helvetica Neue", "Helvetica", "Hiragino Sans", "ヒラギノ角ゴシック", YuGothic, "Yu Gothic", "メイリオ", Meiryo, "Arial", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  text-align: center;
  color: #F3F3F6;
  margin: 0 auto;
  position: absolute;
  top: -90px;
  left: 50%;
  transform: translateX(-50%);
  z-index: -3;
  letter-spacing: 0.025em;
}
@media (max-width: 767px) {
  .p-s30__container-title-ja::before {
    font-size: 70px;
    top: -20px;
  }
}
@media (min-width: 1001px) {
  .p-s30__container-title-ja.--car {
    padding: 70px 0 50px;
  }
}
.p-s30__container-title-ja.--car::before {
  content: "CAR";
}
@media (min-width: 1001px) {
  .p-s30__container-title-ja.--car::before {
    top: -50px;
  }
}
@media (min-width: 1001px) {
  .p-s30__container-title-ja.--publicspace {
    padding: 86px 0 44px;
  }
}
.p-s30__container-title-ja.--publicspace::before {
  content: "PUBLIC SPACE";
  white-space: nowrap;
}
@media (min-width: 1001px) {
  .p-s30__container-title-ja.--publicspace::before {
    top: -50px;
  }
}
@media (min-width: 1001px) {
  .p-s30__container-title-ja.--other {
    padding: 84px 0 42px;
  }
}
.p-s30__container-title-ja.--other::before {
  content: "OTHER";
}
@media (min-width: 1001px) {
  .p-s30__container-title-ja.--other::before {
    top: -50px;
  }
}

.p-s30__items {
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 20;
}
@media (max-width: 767px) {
  .p-s30__items {
    display: block;
  }
}

.p-s30__item {
  width: 31%;
  position: relative;
}

.p-s30__item a {
  transition: all 0.2s linear 0s;
}

.p-s30__item a:hover {
  opacity: 0.7;
}
@media (max-width: 767px) {
  .p-s30__item {
    width: 100%;
    margin-bottom: 15px;
  }
}
.p-s30__item::after {
  content: "バス";
  font-size: 18px;
  background-color: #fff;
  position: absolute;
  bottom: 0px;
  left: 0;
  padding: 24px 35px;
  border-radius: 0 20px 0 0;
  text-align: center;
}
.p-s30__item.--2::after {
  content: "航空機";
}
.p-s30__item.--3::after {
  content: "船";
}
.p-s30__item.--4::after {
  content: "革シート";
}
.p-s30__item.--5::after {
  content: "布シート";
}
.p-s30__item.--6::after {
  content: "ステアリング";
}
.p-s30__item.--7::after {
  content: "ホテルのロビー";
}
.p-s30__item.--8::after {
  content: "空港ラウンジ";
}
.p-s30__item.--9::after {
  content: "飲食店";
}
.p-s30__item.--10::after {
  content: "カバン";
}
.p-s30__item.--11::after {
  content: "靴";
}
.p-s30__item.--12::after {
  content: "革ジャン";
}

/*４ページ目　PRODUCT*/
.p-s40__inner {
  padding-top: 155px;
  padding-bottom: 165px;
}
@media (max-width: 767px) {
  .p-s40__inner {
    width: 80%;
    padding-top: 30px;
    padding-bottom: 100px;
    margin: 0 auto;
  }
}

.p-s40__container {
  width: 100%;
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  padding-top: 90px;
}
.p-s40__container.--right {
  margin-left: auto;
  padding-top: 85px;
}
.p-s40__container.--left {
  flex-direction: row;
}
@media (max-width: 767px) {
  .p-s40__container {
    width: 100%;
    display: block;
    padding-top: 41px;
  }
  .p-s40__container.--right {
    padding-top: 50px;
  }
}

.p-s40__number {
  margin-right: -15px;
  width: 60px;
}
@media (max-width: 767px) {
  .p-s40__number {
    width: 40px;
  }
}

.p-s40__text {
  padding-top: 26px;
  line-height: 1.5;
  font-size: 16px;
}
@media (max-width: 767px) {
  .p-s40__text {
    font-size: 14px;
    padding-top: 0;
  }
}

@media (min-width: 1001px) {
  .p-s40__texts {
    width: 58% !important;
  }
}
@media (max-width: 767px) {
  .p-s40__texts {
    width: 100%;
  }
}

.p-s40__flex {
  display: flex;
  align-items: center;
}
/*５ページ目　company*/
.p-s50__bg-white {
  margin-top: min(160px, 5vw);
  background-color: #fff;
  width: 95%;
  border-radius: 0 150px 0 0;
  padding: min(190px, 5vw) 0 min(190px, 5vw) 80px;
}
@media (max-width: 1000px) {
  .p-s50__bg-white {
    border-radius: 0 30px 0 0;
    padding: 60px 10px 60px;
  }
}

.p-s50__table {
  width: 80%;
  max-width: 1204px;
  margin: 0 auto;
  text-align: left;
  border-collapse: collapse;
}
.p-s50__table:first-child {
  border-top: 1px solid rgba(112, 112, 112, 0.23);
}
.p-s50__table th,
.p-s50__table td {
  padding: 20px 0;
  border-bottom: 1px solid rgba(112, 112, 112, 0.23);
  font-size: 16px;
  line-height: 1.3;
}
@media (max-width: 767px) {
  .p-s50__table th,
  .p-s50__table td {
    font-size: 13px;
  }
}
.p-s50__table th {
  width: 600px;
}
.p-s50__table td {
  width: 1000px;
}
@media (max-width: 1000px) {
  .p-s50__table {
    width: 93%;
  }
}

/*６ページ目　contact*/
.p-s60__inner {
  display: block;
  width: 90%;
  max-width: 1200px;
  margin: -25px auto;
}
.p-s60__inner p {
  line-height: 1.75;
  text-align: center;
}
@media (max-width: 767px) {
  .p-s60__inner {
    width: 95%;
    margin: 0 auto;
  }
}

.p-s60__form {
  padding-top: 12px;
}

.p-s60__submit {
  display: block;
  width: 300px;
  height: 70px;
  border-radius: 9px;
  padding: 30px 60px;
  margin: 40px auto 20px;
  color: #fff;
}
@media (max-width: 767px) {
  .p-s60__submit.--confirm {
    padding: 0px 60px;
  }
}

input.tel {
  width: 135px;
}
@media (max-width: 767px) {
  input.tel {
    width: 83px;
  }
}

input.tel2 {
  width: 173px;
}
@media (max-width: 767px) {
  input.tel2 {
    width: 100px;
  }
}

.p-s60__thanks-text {
  width: 95%;
  margin-top: 165px;
  background-color: #fff;
  text-align: center;
  padding: 150px 0;
  border-radius: 0 150px 0 0;
}
.p-s60__thanks-text h2 {
  padding-top: 16px;
  font-size: 41px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.06em;
}
.p-s60__thanks-text p {
  letter-spacing: 0.001em;
  line-height: 2;
  margin-top: 40px;
}
@media (max-width: 767px) {
  .p-s60__thanks-text {
    padding: 80px 0;
    margin: 80px 0 0;
    border-radius: 0 50px 0 0;
  }
  .p-s60__thanks-text h2 {
    padding-top: 20px;
    font-size: 27px;
    font-weight: 700;
  }
  .p-s60__thanks-text p {
    font-size: 15px;
    letter-spacing: 0.001em;
    line-height: 2;
    margin-top: -6px;
  }
}
