@charset "UTF-8";
/*==============================
-Import Files
===============================*/
/*==============================
-setting
===============================*/
/* ======= Color / font 設定 ======= */
body {
  background-color: #ffffff;
}

body {
  font-family: 'Noto Sans JP', sans-serif;
}

/* =======  container grid設定 ======= */
/* =======  ドラッグした時のカラーを指定 ======= */
::selection {
  background: #EFEDE8;
  color: #74A74B;
}

​
::-moz-selection {
  background: #EFEDE8;
  color: #74A74B;
}

/* http://meyerweb.com/eric/tools/css/reset/
v2.0 | 20110126
License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul, li {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

input, button, textarea, select {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

/*==============================
 root.scss
===============================*/
:root {
  --container-desktop: 1280px;
  --grid-gutter: 30px;
}

/*==============================
-Variable
===============================*/
/* ======= mixin breakpoint ======= */
/* ======= prefix ======= */
/* ======= positioncenter ======= */
/* ==============================
-Global
=============================== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
}

html {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 62.5%;
  height: 100%;
}
@media only screen and (max-width: 767px) {
  html {
    margin-top: 0 !important;
  }
}

body {
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  color: #4A4A4A;
  font-size: 12px;
  letter-spacing: 1px;
  height: 100%;
  font-feature-settings: "palt";
}

.clearfix::after {
  content: "";
  display: block;
  clear: both;
}

a, a:hover {
  -webkit-tap-highlight-color: transparent;
  text-decoration: none;
  outline: none;
}

img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

video {
  max-width: 100%;
}

h1 {
  font-size: 36px;
  font-weight: bold;
}

h2 {
  font-size: 30px;
  font-weight: bold;
}

h3 {
  font-size: 24px;
  font-weight: bold;
}

h4 {
  font-size: 18px;
  font-weight: bold;
}

h5 {
  font-size: 14px;
  font-weight: bold;
}

h6 {
  font-size: 12px;
  font-weight: bold;
}

p {
  font-size: 12px;
}

a {
  font-size: 12px;
}

#wpadminbar {
  position: fixed !important;
}
@media only screen and (max-width: 767px) {
  #wpadminbar {
    position: fixed !important;
    top: auto !important;
    bottom: 0 !important;
  }
}

@media only screen and (max-width: 767px) {
  .swiper-container {
    padding: 0 !important;
  }
}

/* ===== @class ===== */
.l-container {
  margin: 0 auto;
  max-width: calc( 1280px + 30px);
  padding: 0 calc( 30px / 2);
}
@media only screen and (max-width: 1450px) {
  .l-container {
    padding: 0 100px;
  }
}
@media only screen and (max-width: 900px) {
  .l-container {
    padding: 0 calc( 30px / 2);
  }
}
@media only screen and (max-width: 767px) {
  .l-container {
    max-width: calc(100%);
  }
}
@media only screen and (max-width: 767px) {
  .l-container .l-full {
    margin-left: calc( 30px / -2);
    margin-right: calc( 30px / -2);
  }
}

.l-row {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  margin-left: calc( 30px / -2);
  margin-right: calc( 30px / -2);
}

.l-full {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
}

[class*="-grid-"] {
  position: relative;
  font-size: 10px;
}

.l-grid-1 {
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: calc(( 100% / ( 12 / 1)) - 30px - 0.1px);
  margin: 0 calc( 30px / 2);
  max-width: calc(( 100% / ( 12 / 1)) - 30px);
}

.l-grid-2 {
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: calc(( 100% / ( 12 / 2)) - 30px - 0.1px);
  margin: 0 calc( 30px / 2);
  max-width: calc(( 100% / ( 12 / 2)) - 30px);
}

.l-grid-3 {
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: calc(( 100% / ( 12 / 3)) - 30px - 0.1px);
  margin: 0 calc( 30px / 2);
  max-width: calc(( 100% / ( 12 / 3)) - 30px);
}

.l-grid-4 {
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: calc(( 100% / ( 12 / 4)) - 30px - 0.1px);
  margin: 0 calc( 30px / 2);
  max-width: calc(( 100% / ( 12 / 4)) - 30px);
}

.l-grid-5 {
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: calc(( 100% / ( 12 / 5)) - 30px - 0.1px);
  margin: 0 calc( 30px / 2);
  max-width: calc(( 100% / ( 12 / 5)) - 30px);
}

.l-grid-6 {
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: calc(( 100% / ( 12 / 6)) - 30px - 0.1px);
  margin: 0 calc( 30px / 2);
  max-width: calc(( 100% / ( 12 / 6)) - 30px);
}

.l-grid-7 {
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: calc(( 100% / ( 12 / 7)) - 30px - 0.1px);
  margin: 0 calc( 30px / 2);
  max-width: calc(( 100% / ( 12 / 7)) - 30px);
}

.l-grid-8 {
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: calc(( 100% / ( 12 / 8)) - 30px - 0.1px);
  margin: 0 calc( 30px / 2);
  max-width: calc(( 100% / ( 12 / 8)) - 30px);
}

.l-grid-9 {
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: calc(( 100% / ( 12 / 9)) - 30px - 0.1px);
  margin: 0 calc( 30px / 2);
  max-width: calc(( 100% / ( 12 / 9)) - 30px);
}

.l-grid-10 {
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: calc(( 100% / ( 12 / 10)) - 30px - 0.1px);
  margin: 0 calc( 30px / 2);
  max-width: calc(( 100% / ( 12 / 10)) - 30px);
}

.l-grid-11 {
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: calc(( 100% / ( 12 / 11)) - 30px - 0.1px);
  margin: 0 calc( 30px / 2);
  max-width: calc(( 100% / ( 12 / 11)) - 30px);
}

.l-grid-12 {
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: calc(( 100% / ( 12 / 12)) - 30px - 0.1px);
  margin: 0 calc( 30px / 2);
  max-width: calc(( 100% / ( 12 / 12)) - 30px);
}

.l-grid-auto {
  flex: 1;
  margin: 0 calc( 30px / 2);
}

.l-tile-grid-1 {
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: calc(( 100% / ( 12 / 1)) - 0.1px);
  max-width: calc(( 100% / ( 12 / 1)));
}

.l-tile-grid-2 {
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: calc(( 100% / ( 12 / 2)) - 0.1px);
  max-width: calc(( 100% / ( 12 / 2)));
}

.l-tile-grid-3 {
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: calc(( 100% / ( 12 / 3)) - 0.1px);
  max-width: calc(( 100% / ( 12 / 3)));
}

.l-tile-grid-4 {
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: calc(( 100% / ( 12 / 4)) - 0.1px);
  max-width: calc(( 100% / ( 12 / 4)));
}

.l-tile-grid-5 {
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: calc(( 100% / ( 12 / 5)) - 0.1px);
  max-width: calc(( 100% / ( 12 / 5)));
}

.l-tile-grid-6 {
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: calc(( 100% / ( 12 / 6)) - 0.1px);
  max-width: calc(( 100% / ( 12 / 6)));
}

.l-tile-grid-7 {
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: calc(( 100% / ( 12 / 7)) - 0.1px);
  max-width: calc(( 100% / ( 12 / 7)));
}

.l-tile-grid-8 {
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: calc(( 100% / ( 12 / 8)) - 0.1px);
  max-width: calc(( 100% / ( 12 / 8)));
}

.l-tile-grid-9 {
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: calc(( 100% / ( 12 / 9)) - 0.1px);
  max-width: calc(( 100% / ( 12 / 9)));
}

.l-tile-grid-10 {
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: calc(( 100% / ( 12 / 10)) - 0.1px);
  max-width: calc(( 100% / ( 12 / 10)));
}

.l-tile-grid-11 {
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: calc(( 100% / ( 12 / 11)) - 0.1px);
  max-width: calc(( 100% / ( 12 / 11)));
}

.l-tile-grid-12 {
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: calc(( 100% / ( 12 / 12)) - 0.1px);
  max-width: calc(( 100% / ( 12 / 12)));
}

.l-tile-grid-auto {
  flex: 1;
}

.l-offset-left-1 {
  margin-left: calc(( 100% / ( 12 / 1)));
}

.l-offset-left-2 {
  margin-left: calc(( 100% / ( 12 / 2)));
}

.l-offset-left-3 {
  margin-left: calc(( 100% / ( 12 / 3)));
}

.l-offset-left-4 {
  margin-left: calc(( 100% / ( 12 / 4)));
}

.l-offset-left-5 {
  margin-left: calc(( 100% / ( 12 / 5)));
}

.l-offset-left-6 {
  margin-left: calc(( 100% / ( 12 / 6)));
}

.l-offset-left-7 {
  margin-left: calc(( 100% / ( 12 / 7)));
}

.l-offset-left-8 {
  margin-left: calc(( 100% / ( 12 / 8)));
}

.l-offset-left-9 {
  margin-left: calc(( 100% / ( 12 / 9)));
}

.l-offset-left-10 {
  margin-left: calc(( 100% / ( 12 / 10)));
}

.l-offset-left-11 {
  margin-left: calc(( 100% / ( 12 / 11)));
}

.l-offset-left-12 {
  margin-left: calc(( 100% / ( 12 / 12)));
}

.l-offset-right-1 {
  margin-right: calc(( 100% / ( 12 / 1)));
}

.l-offset-right-2 {
  margin-right: calc(( 100% / ( 12 / 2)));
}

.l-offset-right-3 {
  margin-right: calc(( 100% / ( 12 / 3)));
}

.l-offset-right-4 {
  margin-right: calc(( 100% / ( 12 / 4)));
}

.l-offset-right-5 {
  margin-right: calc(( 100% / ( 12 / 5)));
}

.l-offset-right-6 {
  margin-right: calc(( 100% / ( 12 / 6)));
}

.l-offset-right-7 {
  margin-right: calc(( 100% / ( 12 / 7)));
}

.l-offset-right-8 {
  margin-right: calc(( 100% / ( 12 / 8)));
}

.l-offset-right-9 {
  margin-right: calc(( 100% / ( 12 / 9)));
}

.l-offset-right-10 {
  margin-right: calc(( 100% / ( 12 / 10)));
}

.l-offset-right-11 {
  margin-right: calc(( 100% / ( 12 / 11)));
}

.l-offset-right-12 {
  margin-right: calc(( 100% / ( 12 / 12)));
}

@media only screen and (max-width: 767px) {
  [class*="l-offset-left-"] {
    margin-left: 0;
  }
}

@media only screen and (max-width: 767px) {
  [class*="l-offset-right-"] {
    margin-right: 0;
  }
}

@media only screen and (max-width: 767px) {
  [class*="l-grid-"] {
    flex-grow: 1;
    flex-shrink: 0;
    flex-basis: calc(100% - 30px - 0.1px);
    max-width: calc(100% - 30px);
    margin-left: calc( 30px / 2);
    margin-right: calc( 30px / 2);
  }
}

@media only screen and (max-width: 767px) {
  [class*="l-tile-grid-"] {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: 100%;
    max-width: 100%;
  }
}

/* ===== @mixin ===== */
/* ======================================================
_c-all.scss
====================================================== */
/* ======================
固定ページメインヴィジュアル
========================= */
.c-page-main {
  position: relative;
  z-index: 1;
  padding-bottom: 100px;
  margin-bottom: 50px;
}
.c-page-main::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 95%;
  height: 100%;
  background-color: #EFEDE8;
  border-radius: 0 0 160px 0;
  z-index: -1;
}
@media only screen and (max-width: 900px) {
  .c-page-main::before {
    width: 100%;
  }
}
.c-page-main::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: calc( 100% - 200px);
  background-color: #74A74B;
  z-index: -2;
}
@media only screen and (max-width: 900px) {
  .c-page-main::after {
    display: none;
  }
}

.c-page-mainvisual {
  padding-top: 230px;
}
@media only screen and (max-width: 900px) {
  .c-page-mainvisual {
    padding-top: 150px;
  }
  .c-page-mainvisual .l-full {
    flex-flow: row wrap-reverse;
  }
}

.c-page-mainvisual-gridleft {
  display: grid;
  justify-items: center;
  align-items: center;
  background-color: #74A74B;
  padding: 100px 40px 100px 10%;
}
@media only screen and (max-width: 1500px) {
  .c-page-mainvisual-gridleft {
    padding: 100px 40px 100px 5vw;
  }
}
@media only screen and (max-width: 900px) {
  .c-page-mainvisual-gridleft {
    padding: 50px 0;
  }
}

.c-page-mainvisual-title-box {
  width: 100%;
}
@media only screen and (max-width: 900px) {
  .c-page-mainvisual-title-box {
    padding: 0 30px;
  }
}

.c-page-mainvisual-head {
  color: #fff;
  font-family: "Nunito", sans-serif;
  font-size: 60px;
  margin-bottom: 70px;
  font-weight: 800;
}
@media only screen and (max-width: 900px) {
  .c-page-mainvisual-head {
    font-size: 30px;
    letter-spacing: 5px;
    text-align: center;
    border-bottom: 2px solid #F1D940;
    margin-bottom: 20px;
    padding-bottom: 20px;
  }
}

.c-page-mainvisual-subhead {
  display: block;
  font-size: 20px;
  margin-top: 15px;
}
@media only screen and (max-width: 900px) {
  .c-page-mainvisual-subhead {
    font-size: 15px;
    letter-spacing: 1px;
  }
}

.c-page-mainvisual-lead {
  color: #fff;
  font-size: 17px;
  letter-spacing: 2.2px;
  line-height: 2;
}
@media only screen and (max-width: 1280px) {
  .c-page-mainvisual-lead {
    font-size: 17px;
  }
}
@media only screen and (max-width: 900px) {
  .c-page-mainvisual-lead {
    font-size: 14px;
  }
}

.c-page-mainvisual-gridright {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-top: 30%;
}
@media only screen and (max-width: 900px) {
  .c-page-mainvisual-gridright {
    padding-top: 56.25%;
  }
}

.c-page-contents-head-wrap {
  text-align: center;
  margin-bottom: 50px;
}

.c-page-contents-head {
  color: #74A74B;
  font-family: "Nunito", sans-serif;
  font-size: 60px;
  font-weight: 800;
  margin-bottom: 5px;
}
@media only screen and (max-width: 900px) {
  .c-page-contents-head {
    font-size: 43px;
  }
}

.c-page-contents-subhead {
  color: #74A74B;
  font-size: 17px;
  font-weight: 500;
}
@media only screen and (max-width: 900px) {
  .c-page-contents-subhead {
    font-size: 14px;
  }
}

.c-page-contents-border {
  content: '';
  width: 100px;
  height: 1px;
  margin: 30px auto 0;
  background-color: #74A74B;
}
@media only screen and (max-width: 900px) {
  .c-page-contents-border {
    margin: 20px auto 0;
  }
}

/* ======================
フェードイン
========================= */
.a-fadein {
  -webkit-animation: a-fadein 0.8s both 0.4s ease;
  animation: a-fadein 0.8s both 0.4s ease;
  visibility: visible !important;
  backface-visibility: hidden;
  transform: perspective(0);
}

@-webkit-keyframes a-fadein {
  0% {
    opacity: 0;
    transform: translate3d(0, 30px, 0) perspective(0);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) perspective(0);
  }
}
@keyframes a-fadein {
  0% {
    opacity: 0;
    transform: translate3d(0, 30px, 0) perspective(0);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) perspective(0);
  }
}
/*==============================
-Component
===============================*/
.c-text-wrapper {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  padding: 120px 0;
}

.c-text-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.c-text-lead, .p-contact-text, .p-contact-index, .p-contact-index-formlabel select,
.p-contact-index-formlabel select option, .p-privacy-text, .p-privacy-lead, .p-privacy-title, .p-privacy-desc {
  display: block;
  font-size: 14px;
  font-weight: normal;
  letter-spacing: 0.05em;
  line-height: 1.6;
  text-align: left;
}
@media only screen and (max-width: 767px) {
  .c-text-lead, .p-contact-text, .p-contact-index, .p-contact-index-formlabel select,
  .p-contact-index-formlabel select option, .p-privacy-text, .p-privacy-lead, .p-privacy-title, .p-privacy-desc {
    font-size: 16px;
  }
}

.c-text-bg {
  display: block;
  position: relative;
  padding-top: 56.25%;
  text-align: center;
  margin: 0 auto;
  width: 100%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.c-text-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.c-text-btn {
  position: relative;
  display: block;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0.05em;
  line-height: 1.6;
  text-align: center;
  color: #F6F5F5;
  padding: 20px 15px;
  margin: 20px auto 0 auto;
  background-color: #4A4A4A;
  border: 2px solid #4A4A4A;
  z-index: 1;
  overflow: hidden;
  transition: ease .3s;
  cursor: pointer;
}
@media only screen and (max-width: 1170px) {
  .c-text-btn {
    font-size: 14px;
  }
}
@media only screen and (max-width: 767px) {
  .c-text-btn {
    width: 100%;
    font-size: 14px;
    letter-spacing: 0.05em;
    text-indent: 2px;
    margin: 0 auto 20px auto;
    padding: 15px 3px;
  }
}
.c-text-btn:hover {
  transition: ease .2s;
  color: #4A4A4A;
  background-color: #F6F5F5;
}

@media only screen and (max-width: 767px) {
  .c-text-display-pc {
    display: none;
  }
}

.c-text-display-sp {
  display: none;
}
@media only screen and (max-width: 767px) {
  .c-text-display-sp {
    display: block;
  }
}

.c-text-break-pc {
  display: block;
}
@media only screen and (max-width: 767px) {
  .c-text-break-pc {
    display: inline;
  }
}

.c-text-break-sp {
  display: inline;
}
@media only screen and (max-width: 767px) {
  .c-text-break-sp {
    display: block;
  }
}

.c-text-btn-area {
  display: block;
  text-align: center;
}

.c-text-btn-item {
  position: relative;
  display: block;
  color: #F6F5F5 !important;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0.05em;
  line-height: 1.6;
  text-align: center;
  width: 100%;
  padding: 20px 15px;
  margin: 20px auto 0 auto;
  background-color: #74A74B;
  border: 2px solid #74A74B;
  z-index: 1;
  overflow: hidden;
  transition: ease .3s;
  cursor: pointer;
}
@media only screen and (max-width: 1170px) {
  .c-text-btn-item {
    font-size: 14px;
  }
}
@media only screen and (max-width: 767px) {
  .c-text-btn-item {
    width: 100%;
    font-size: 14px;
    letter-spacing: 0.05em;
    text-indent: 2px;
    margin: 0 auto 20px auto;
    padding: 15px 3px;
  }
}
.c-text-btn-item:hover {
  transition: ease .2s;
  color: #4A4A4A !important;
  background-color: #F6F5F5;
}

@media only screen and (max-width: 767px) {
  .c-text-btn-sp {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: calc( ( 100% / ( 12 / 6)) - 30px - 0.1px);
    max-width: calc( ( 100% / ( 12 / 6)) - 30px);
    position: relative;
    margin: 0 calc( 30px / 2);
    padding-left: 5px;
    padding-right: 5px;
  }
}

.c-text-arrow-area {
  display: block;
  width: 100%;
  text-align: center;
  padding: 10px 0;
  margin: 0 auto;
  text-align: center;
}

.c-text-arrow {
  position: relative;
  display: inline-block;
  padding: 0;
  vertical-align: middle;
  margin: 0 auto;
  text-align: center;
  width: 100px;
  height: 50px;
}

.c-text-arrow::before,
.c-text-arrow::after {
  position: absolute;
  top: 0;
  left: 0;
  margin: 0 auto;
  text-align: center;
  content: '';
  vertical-align: middle;
}

.c-text-arrow-back::before {
  top: 0;
  left: 0;
  box-sizing: border-box;
  border: 50px solid transparent;
  border-left: 50px solid #4A4A4A;
  transform: rotate3d(0, 0, 1, 90deg) perspective(0);
  backface-visibility: hidden;
  margin: 0 auto;
  text-align: center;
}

/* ======================================================
_c-header.scss
====================================================== */
.c-header {
  position: absolute;
  width: 810px;
  z-index: 9999;
}
@media only screen and (max-width: 1200px) {
  .c-header {
    width: 65%;
  }
}
@media only screen and (max-width: 900px) {
  .c-header {
    width: 85%;
  }
}

.c-header-inner {
  color: #EFEDE8;
  padding: 15px 25px;
  background-color: #74A74B;
  border-radius: 0 0 50px 0;
}
@media only screen and (max-width: 900px) {
  .c-header-inner {
    padding: 10px 12px;
    border-radius: 0 0 40px 0;
  }
}

@media only screen and (max-width: 1200px) {
  .c-header-head-grid {
    padding: 10px 0;
  }
}

.c-header-subhead {
  font-size: 12px;
  padding-top: 10px;
  margin-bottom: 10px;
  letter-spacing: 2px;
}
@media only screen and (max-width: 1200px) {
  .c-header-subhead {
    font-size: 10px;
    letter-spacing: 1.4px;
    padding-top: 0;
  }
}
@media only screen and (max-width: 374px) {
  .c-header-subhead {
    font-size: 10px;
    letter-spacing: 0.5px;
  }
}
@media only screen and (max-width: 1200px) {
  .c-header-subhead span {
    font-size: 10px;
    display: none;
  }
}

.c-header-head {
  font-size: 22px;
  letter-spacing: 4px;
}
@media only screen and (max-width: 1200px) {
  .c-header-head {
    font-size: 19px;
    letter-spacing: 3px;
  }
}
@media only screen and (max-width: 900px) {
  .c-header-head {
    font-size: 17px;
    letter-spacing: 3px;
  }
}
@media only screen and (max-width: 374px) {
  .c-header-head {
    font-size: 17px;
    letter-spacing: 1px;
  }
}
.c-header-head span {
  font-size: 13px;
  font-weight: 500;
  margin-left: 10px;
}
@media only screen and (max-width: 1200px) {
  .c-header-head span {
    font-size: 12px;
  }
}
@media only screen and (max-width: 900px) {
  .c-header-head span {
    font-size: 10px;
    margin-left: 0;
  }
}

.c-headr-head-anchor {
  color: #fff;
  font-size: 22px;
  letter-spacing: 4px;
}
@media only screen and (max-width: 1200px) {
  .c-headr-head-anchor {
    font-size: 19px;
    letter-spacing: 3px;
  }
}
@media only screen and (max-width: 900px) {
  .c-headr-head-anchor {
    font-size: 17px;
    letter-spacing: 3px;
  }
}
@media only screen and (max-width: 374px) {
  .c-headr-head-anchor {
    font-size: 17px;
    letter-spacing: 1px;
  }
}
.c-headr-head-anchor span {
  font-size: 13px;
  font-weight: 500;
  margin-left: 10px;
}
@media only screen and (max-width: 900px) {
  .c-headr-head-anchor span {
    font-size: 10px;
    margin-left: 0;
  }
}

.c-header-time-grid {
  border-left: 1px solid #ddd;
  padding: 10px 0 0 30px;
}
@media only screen and (max-width: 1200px) {
  .c-header-time-grid {
    padding: 10px 10px;
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
  }
}
@media only screen and (max-width: 767px) {
  .c-header-time-grid {
    display: none;
  }
}

.c-header-time-text {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 4px;
  margin-bottom: 10px;
}
@media only screen and (max-width: 1200px) {
  .c-header-time-text {
    letter-spacing: 2px;
  }
}

.c-header-time {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 4px;
}
@media only screen and (max-width: 1200px) {
  .c-header-time {
    font-size: 20px;
    letter-spacing: 3px;
  }
}
@media only screen and (max-width: 1100px) {
  .c-header-time {
    font-size: 16px;
  }
}
@media only screen and (max-width: 935px) {
  .c-header-time {
    font-size: 14px;
  }
}
@media only screen and (max-width: 900px) {
  .c-header-time {
    font-size: 17px;
  }
}
.c-header-time .fa-clock {
  margin-right: 5px;
}

.c-header-sns-grid {
  padding: 10px;
}
@media only screen and (max-width: 900px) {
  .c-header-sns-grid {
    position: absolute;
    right: 0;
    top: 8px;
    height: 63px;
    padding-left: 1px;
    display: grid;
    justify-items: center;
    align-items: center;
  }
}

.fa-twitter {
  color: #75a74b;
  font-size: 23px;
  background-color: #EFEDE8;
  padding: 10px;
  border-radius: 50%;
  box-shadow: 3px 3px 9px #66916d;
  transition: .2s;
  -webkit-transition: .2s;
}
@media only screen and (max-width: 374px) {
  .fa-twitter {
    padding: 8px;
  }
}

.c-header-sns {
  text-align: center;
}
@media only screen and (max-width: 900px) {
  .c-header-sns {
    float: right;
    padding-left: 5px;
  }
}
.c-header-sns a {
  transition: .2s;
  -webkit-transition: .2s;
}
.c-header-sns a:hover .fa-twitter {
  color: #55acee;
}

/*==============================
_c-header-triger
===============================*/
.c-header-nav {
  position: fixed;
  top: 30px;
  right: 20px;
  z-index: 999999;
}
@media only screen and (max-width: 900px) {
  .c-header-nav {
    top: 10px;
  }
}

.c-header-nav-box {
  position: relative;
  display: flex;
  align-items: center;
  transition: 0.6s cubic-bezier(0.86, 0, 0.07, 1);
}
@media only screen and (max-width: 1000px) {
  .c-header-nav-box {
    height: 100px;
  }
}
@media only screen and (max-width: 900px) {
  .c-header-nav-box {
    width: auto;
    height: auto;
  }
}
.c-header-nav-box.active {
  transition: 0.6s cubic-bezier(0.86, 0, 0.07, 1);
}
.c-header-nav-box.active .c-header-nav-list {
  transition: 0.6s cubic-bezier(0.86, 0, 0.07, 1);
  opacity: 0;
  width: 15px;
}
.c-header-nav-box.active .c-header-nav-list-in {
  opacity: 0;
  transition: 0.3s;
}
@media only screen and (max-width: 1000px) {
  .c-header-nav-box.active .c-header-nav-list-anchor {
    font-size: 10px;
    transition: 0.3s;
  }
}
.c-header-nav-box.active .c-header-triger-text {
  opacity: 0;
  transition: 0.6s cubic-bezier(0.86, 0, 0.07, 1);
}
.c-header-nav-box.active .c-header-triger-text02 {
  opacity: 1;
  transition: 0.6s cubic-bezier(0.86, 0, 0.07, 1);
}

.c-header-nav-list {
  display: grid;
  width: 250px;
  height: 100px;
  padding: 5px 5%;
  margin-right: -5px;
  background-color: #EFEDE8;
  border-radius: 20px 0 0 20px;
  transition: 0.6s cubic-bezier(0.86, 0, 0.07, 1);
  box-shadow: 2px 5px 20px #5d5d5d7a;
}
@media only screen and (max-width: 1000px) {
  .c-header-nav-list {
    width: 200px;
  }
}
@media only screen and (max-width: 900px) {
  .c-header-nav-list {
    display: none;
  }
}

.c-header-nav-list-in {
  display: grid;
  align-items: center;
  transition: 0.8s cubic-bezier(0.86, 0, 0.07, 1);
}
@media only screen and (max-width: 900px) {
  .c-header-nav-list-in {
    display: none;
  }
}
.c-header-nav-list-in:first-child {
  border-bottom: 1px solid #74A74B;
}

.c-header-nav-list-anchor {
  display: flex;
  align-items: center;
  color: #4A4A4A;
  font-size: 15px;
  font-weight: bold;
  transition: 0.8s cubic-bezier(0.86, 0, 0.07, 1);
}
@media only screen and (max-width: 1200px) {
  .c-header-nav-list-anchor {
    font-size: 13px;
  }
}
.c-header-nav-list-anchor:hover img {
  margin-right: 10px;
}
.c-header-nav-list-anchor img {
  width: 25px;
  margin-right: 5px;
  transition: .2s;
  -webkit-transition: .2s;
}

.c-header-triger {
  display: grid;
  position: relative;
  width: 120px;
  height: 120px;
  background-color: #F1D940;
  border-radius: 20px;
  cursor: pointer;
  z-index: 9999999;
  justify-items: center;
  align-items: center;
  transition: 0.6s cubic-bezier(0.86, 0, 0.07, 1);
  box-shadow: 2px 5px 20px #5d5d5d7a;
  transition: .15s;
  -webkit-transition: .15s;
}
.c-header-triger:hover {
  transform: scale(1.03, 1.03);
  -webkit-transform: scale(1.03, 1.03);
}
@media only screen and (max-width: 900px) {
  .c-header-triger {
    top: 0;
    right: -10px;
    width: 66px;
    height: 66px;
  }
}

.c-header-triger-box {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  -webkit-transform: translateY(-50%) translateX(-50%);
  width: 100%;
  text-align: center;
}

.c-header-triger-text {
  opacity: 1;
  margin-top: -20px;
  font-size: 18px;
  font-weight: bold;
  transition: 0.6s cubic-bezier(0.86, 0, 0.07, 1);
  position: relative;
  z-index: 999999;
}
@media only screen and (max-width: 900px) {
  .c-header-triger-text {
    margin-top: -13px;
    font-size: 10px;
  }
}

.c-header-triger-text02 {
  opacity: 0;
  margin-top: -18px;
  font-size: 18px;
  font-weight: bold;
  transition: 0.6s cubic-bezier(0.86, 0, 0.07, 1);
  position: relative;
  z-index: 999999;
}
@media only screen and (max-width: 900px) {
  .c-header-triger-text02 {
    margin-top: -10px;
    font-size: 10px;
  }
}

.c-header-triger-bar {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  -webkit-transform: translateY(-50%) translateX(-50%);
  margin: 0 auto;
  width: 28px;
  height: 2px;
  background: #4A4A4A;
  display: block;
  z-index: 9999999;
  border-radius: 4px 4px 4px 4px;
  transition: all .4s;
}
@media only screen and (max-width: 900px) {
  .c-header-triger-bar {
    height: 2px;
  }
}

.c-header-triger-bar:nth-of-type(1) {
  top: 15px;
  border-radius: 4px 4px 4px 4px;
}
@media only screen and (max-width: 900px) {
  .c-header-triger-bar:nth-of-type(1) {
    top: 5px;
  }
}

.c-header-triger-bar:nth-of-type(2) {
  top: 22px;
  width: 20px;
  border-radius: 4px 4px 4px 4px;
  transition: all .4s ease;
}
@media only screen and (max-width: 900px) {
  .c-header-triger-bar:nth-of-type(2) {
    top: 11px;
    width: 20px;
  }
}

.c-header-triger-bar:nth-of-type(3) {
  top: 29px;
  border-radius: 4px 4px 4px 4px;
}
@media only screen and (max-width: 900px) {
  .c-header-triger-bar:nth-of-type(3) {
    top: 17px;
  }
}

.c-header-triger-bar.active:nth-of-type(1) {
  transform: rotate(135deg);
  top: 20px;
  left: 46px;
}
@media only screen and (max-width: 900px) {
  .c-header-triger-bar.active:nth-of-type(1) {
    top: 10px;
    left: 29%;
  }
}

.c-header-triger-bar.active:nth-of-type(2) {
  transition: all .4s ease;
  opacity: 0;
  right: 40px;
  display: none;
}

.c-header-triger-bar.active:nth-of-type(3) {
  transform: rotate(-135deg);
  top: 20px;
  left: 46px;
}
@media only screen and (max-width: 900px) {
  .c-header-triger-bar.active:nth-of-type(3) {
    top: 10px;
    left: 29%;
  }
}

.c-header-tel-sp-anchor {
  display: none;
  position: fixed;
  top: 86px;
  right: 18px;
  color: #4A4A4A;
  font-size: 20px;
  padding: 13px;
  background-color: #f1d940;
  border-radius: 50%;
  z-index: 999999;
  box-shadow: 2px 2px 20px -10px #000000;
}
@media only screen and (max-width: 900px) {
  .c-header-tel-sp-anchor {
    display: block;
  }
}

.c-header-nav-contents-wrap {
  position: fixed;
  top: 0;
  right: -50%;
  width: 50.1%;
  height: 50.1vw;
  padding: 40px 60px;
  background: #74A74B;
  display: table;
  z-index: 10000;
  transition: 0.6s cubic-bezier(0.86, 0, 0.07, 1);
  transform: translateX(20%);
  border-radius: 0 0 0 170px;
}
@media only screen and (max-width: 1200px) {
  .c-header-nav-contents-wrap {
    height: 571px;
  }
}
@media only screen and (max-width: 900px) {
  .c-header-nav-contents-wrap {
    right: -100%;
    width: 100%;
    height: 100vh;
    padding: 30px;
    border-radius: unset;
  }
}
.c-header-nav-contents-wrap.active {
  right: 0;
  transition: 0.6s cubic-bezier(0.86, 0, 0.07, 1);
  transform: translateX(0);
}
.c-header-nav-contents-wrap.active .c-header-nav-contents-top-list, .c-header-nav-contents-wrap.active .c-header-nav-contents-list {
  opacity: 1;
  transition: 1s cubic-bezier(0.86, 0, 0.07, 1);
}

.c-header-nav-contents-top-list {
  opacity: 0;
  transition: 0.3s;
}

.c-header-nav-contents-top-list-in {
  display: inline-block;
}

.c-header-nav-contents-top-list-anchor {
  color: #F1D940;
  font-size: 18px;
  text-decoration: underline;
  margin-right: 20px;
  transition: .2s;
  -webkit-transition: .2s;
}
.c-header-nav-contents-top-list-anchor:hover {
  opacity: .8;
  text-decoration: none;
}
@media only screen and (max-width: 900px) {
  .c-header-nav-contents-top-list-anchor {
    font-size: 14px;
  }
}

.c-header-nav-contents-list {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  opacity: 0;
  transition: 0.3s;
  width: 65%;
}
@media only screen and (max-width: 900px) {
  .c-header-nav-contents-list {
    width: 100%;
  }
}
@media only screen and (max-width: 374px) {
  .c-header-nav-contents-list {
    padding-top: 50px;
  }
}

.c-header-nav-contents-list-in {
  padding: 5% 0;
}
@media only screen and (max-width: 900px) {
  .c-header-nav-contents-list-in {
    padding: 3% 0;
  }
}
@media only screen and (max-width: 374px) {
  .c-header-nav-contents-list-in {
    padding: 2% 0;
  }
}

.c-header-nav-contents-list-in-sp {
  display: none;
}
@media only screen and (max-width: 900px) {
  .c-header-nav-contents-list-in-sp {
    display: flex;
    justify-content: space-between;
  }
}

.c-header-nav-anchor {
  color: #F6F5F5;
  font-family: "Nunito", sans-serif;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  border-bottom: 1px solid #EFEDE8;
  padding-bottom: 10px;
  margin-bottom: 15px;
}
@media only screen and (max-width: 374px) {
  .c-header-nav-anchor {
    padding-bottom: 5px;
    margin-bottom: 10px;
  }
}
.c-header-nav-anchor:hover .c-header-nav-anchor-subname {
  transform: translateX(10px);
  -webkit-transform: translateX(10px);
}
.c-header-nav-anchor:hover .c-header-nav-anchor-name {
  opacity: .8;
}

.c-header-nav-anchor-name {
  font-size: 2.9vw;
  font-weight: 700;
  transition: .2s;
  -webkit-transition: .2s;
}
@media only screen and (max-width: 900px) {
  .c-header-nav-anchor-name {
    font-size: 32px;
  }
}
@media only screen and (max-width: 374px) {
  .c-header-nav-anchor-name {
    font-size: 24px;
  }
}
.c-header-nav-anchor-name::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: '\f04b';
  font-size: 20px;
  vertical-align: middle;
  padding-right: 5px;
}
@media only screen and (max-width: 900px) {
  .c-header-nav-anchor-name::before {
    font-size: 18px;
  }
}

.c-header-nav-anchor-subname {
  font-size: 21px;
  font-weight: 600;
  transition: .2s;
  -webkit-transition: .2s;
}
@media only screen and (max-width: 1100px) {
  .c-header-nav-anchor-subname {
    font-size: 14px;
  }
}
@media only screen and (max-width: 900px) {
  .c-header-nav-anchor-subname {
    font-size: 12px;
  }
}

.c-header-nav-contents-sublist-in {
  margin-bottom: 25px;
}
@media only screen and (max-width: 900px) {
  .c-header-nav-contents-sublist-in {
    margin-bottom: 12px;
  }
}

.c-header-nav-contents-sublist-anchor {
  color: #F1D940;
  font-size: 1.2vw;
  text-decoration: underline;
  transition: .2s;
  -webkit-transition: .2s;
}
.c-header-nav-contents-sublist-anchor:hover {
  opacity: .8;
}
@media only screen and (max-width: 900px) {
  .c-header-nav-contents-sublist-anchor {
    font-size: 14px;
  }
}

.c-header-nav-time-sp-wrap {
  display: none;
  position: absolute;
  bottom: 5%;
  left: 0;
  width: 100%;
  justify-content: space-between;
  padding: 0 30px;
}
@media only screen and (max-width: 900px) {
  .c-header-nav-time-sp-wrap {
    display: flex;
  }
}

.c-header-nav-time-title {
  font-size: 11px;
  color: #f2d940;
  margin-bottom: 7px;
  letter-spacing: 2px;
}

.c-header-nav-time-hours {
  font-size: 20px;
  color: #f2d940;
  letter-spacing: 4px;
  font-weight: 600;
}

.c-header-nav-sns-sp .fa-twitter {
  color: #75a74b;
  font-size: 23px;
  background-color: #EFEDE8;
  padding: 10px;
  border-radius: 50%;
  box-shadow: 3px 3px 9px #66916d;
}

.c-header-agency {
  margin: 20px 0 0 40px;
}
@media only screen and (max-width: 900px) {
  .c-header-agency {
    margin: 10px 0 0 15px;
  }
}

.c-header-agency-img {
  width: 255px;
}
@media only screen and (max-width: 1350px) {
  .c-header-agency-img {
    width: 220px;
  }
}
@media only screen and (max-width: 1280px) {
  .c-header-agency-img {
    width: 200px;
  }
}
@media only screen and (max-width: 1280px) {
  .c-header-agency-img {
    width: 170px;
  }
}

.c-header-agency-text {
  color: #003298;
  font-size: 13px;
  font-weight: bold;
  margin-top: 8px;
}
@media only screen and (max-width: 1350px) {
  .c-header-agency-text {
    font-size: 12px;
  }
}
@media only screen and (max-width: 900px) {
  .c-header-agency-text {
    font-size: 11px;
  }
}

/* ======================================================
_c-footer.scss
====================================================== */
.p-top-about-voice-box {
  position: relative;
}
@media only screen and (max-width: 900px) {
  .p-top-about-voice-box {
    width: 90%;
    margin: 0 auto;
  }
}

.p-top-about-voice {
  color: #74A74B;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  max-width: 700px;
  padding: 20px;
  margin: 0 auto 40px;
  background: #fff;
  box-shadow: 2px 2px 8px 0 #ddd;
  border-radius: 30px;
}
@media only screen and (max-width: 900px) {
  .p-top-about-voice {
    font-size: 14px;
    padding: 20px 0;
  }
}

.p-top-about-voice-arrow {
  content: '';
  position: absolute;
  transform: rotate(45deg);
  bottom: -10px;
  left: 50%;
  width: 20px;
  height: 20px;
  margin-left: -10px;
  background: #fff;
  box-shadow: 3px 4px 5px 0 #eee;
}

.p-top-about-contact-wrap {
  display: grid;
  justify-items: center;
  background-color: #74A74B;
  padding: 100px 0;
  border-radius: 0 80px 0 0;
}
@media only screen and (max-width: 900px) {
  .p-top-about-contact-wrap {
    padding: 100px 0 180px;
  }
}

.p-top-about-contact-box {
  width: 60%;
}
@media only screen and (max-width: 1500px) {
  .p-top-about-contact-box {
    width: 80%;
  }
}
@media only screen and (max-width: 1500px) {
  .p-top-about-contact-box {
    width: 80%;
  }
}

.p-top-about-contact-head {
  color: #F6F5F5;
  font-size: 47px;
  font-family: "Nunito", sans-serif;
  font-weight: 800;
  margin-bottom: 20px;
}
@media only screen and (max-width: 900px) {
  .p-top-about-contact-head {
    font-size: 43px;
    margin-bottom: 10px;
  }
}
.p-top-about-contact-head span {
  display: block;
  font-size: 17px;
  margin-top: 10px;
}
@media only screen and (max-width: 900px) {
  .p-top-about-contact-head span {
    font-size: 14px;
    margin-top: 8px;
  }
}

.p-top-about-border {
  content: '';
  width: 90px;
  height: 2px;
  margin-bottom: 20px;
  background-color: #F1D940;
}

.p-top-about-contact-lead {
  color: #F6F5F5;
  font-size: 15px;
  letter-spacing: 3px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.p-top-about-contact-teltime {
  color: #EFEDE8;
  font-size: 15px;
  margin-bottom: 40px;
}

.p-top-about-contact-tel-btn {
  display: block;
  color: #4A4A4A;
  font-family: "Nunito", sans-serif;
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  padding: 20px 0 18px;
  margin-bottom: 20px;
  border-radius: 30px;
  background-color: #F1D940;
  box-shadow: 2px 2px 20px -10px #000000;
  transition: .2s;
  -webkit-transition: .2s;
}
.p-top-about-contact-tel-btn:hover {
  transform: scale(0.98, 0.98);
  -webkit-transform: scale(0.98, 0.98);
}
@media only screen and (max-width: 900px) {
  .p-top-about-contact-tel-btn {
    font-size: 18px;
    line-height: 1.3;
  }
}
.p-top-about-contact-tel-btn img {
  width: 25px;
}

.p-top-about-contact-form-btn {
  display: block;
  color: #4A4A4A;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  line-height: 1.4;
  padding: 20px 20px;
  border-radius: 30px;
  background-color: #F1D940;
  box-shadow: 2px 2px 20px -10px #000000;
  transition: .2s;
  -webkit-transition: .2s;
}
.p-top-about-contact-form-btn:hover {
  transform: scale(0.95, 0.95);
  -webkit-transform: scale(0.95, 0.95);
}
@media only screen and (max-width: 900px) {
  .p-top-about-contact-form-btn {
    font-size: 14px;
    line-height: 1.8;
  }
}
.p-top-about-contact-form-btn img {
  width: 25px;
}

.p-top-about-access-wrap {
  display: grid;
  justify-items: center;
  background-color: #EFEDE8;
  padding: 100px 0;
  border-radius: 80px 0 0 0;
}
@media only screen and (max-width: 767px) {
  .p-top-about-access-wrap {
    margin-top: -70px;
    border-radius: 0 80px 0 80px;
  }
}

.p-top-about-access-box {
  width: 60%;
}
@media only screen and (max-width: 1500px) {
  .p-top-about-access-box {
    width: 80%;
  }
}
@media only screen and (max-width: 1500px) {
  .p-top-about-access-box {
    width: 80%;
  }
}

.p-top-about-access-head {
  color: #4A4A4A;
  font-family: "Nunito", sans-serif;
  margin-bottom: 20px;
  font-size: 47px;
  font-weight: 800;
}
@media only screen and (max-width: 900px) {
  .p-top-about-access-head {
    font-size: 43px;
  }
}
.p-top-about-access-head span {
  display: block;
  font-size: 17px;
  margin-top: 10px;
}
@media only screen and (max-width: 900px) {
  .p-top-about-access-head span {
    margin-top: 5px;
  }
}

.p-top-about-border {
  content: '';
  width: 90px;
  height: 3px;
  background-color: #F1D940;
}

.p-top-about-access-map {
  width: 100%;
  height: 190px;
  margin-bottom: 20px;
}

.p-top-about-access-address {
  font-size: 15px;
  font-weight: bold;
  letter-spacing: 2px;
  line-height: 1.5;
  margin-bottom: 10px;
}

.p-top-about-access-lead {
  font-size: 13px;
  letter-spacing: 2px;
  line-height: 1.5;
}

.c-footer {
  overflow: hidden;
  position: relative;
  margin-top: -75px;
  z-index: -1;
}

@media only screen and (max-width: 900px) {
  .c-footer-nav {
    margin-bottom: 40px;
  }
}

.c-footer-nav-wrap {
  margin: 70px auto 80px;
}
@media only screen and (max-width: 900px) {
  .c-footer-nav-wrap {
    margin: 0;
  }
  .c-footer-nav-wrap .l-grid-auto {
    max-width: calc(100% - 40px);
    margin: 0 calc( 40px / 2);
  }
}
@media only screen and (max-width: 900px) and (max-width: 880px) {
  .c-footer-nav-wrap .l-grid-auto:last-child {
    flex-basis: calc(100% - 30px - 0.1px);
  }
  .c-footer-nav-wrap .l-grid-auto:last-child .c-footer-nav {
    display: flex;
    justify-content: space-around;
  }
}

@media only screen and (max-width: 900px) and (max-width: 880px) and (max-width: 767px) {
  .c-footer-nav-wrap .l-grid-auto:last-child .c-footer-nav {
    display: block;
  }
}

.c-footer-nav-head {
  margin-bottom: 13px;
}

.c-footer-nav-head-anchor {
  display: block;
  color: #F1D940;
  font-size: 15px;
  letter-spacing: 3px;
  transition: .15s;
  -webkit-transition: .15s;
}
.c-footer-nav-head-anchor:hover {
  text-decoration: underline;
}
.c-footer-nav-head-anchor::before {
  content: '●';
}

.c-fooer-nav-list-in {
  margin-bottom: 13px;
}

.c-footer-nav-list-anchor {
  color: #F6F5F5;
  font-size: 13px;
  letter-spacing: 3px;
  transition: .15s;
  -webkit-transition: .15s;
}
.c-footer-nav-list-anchor:hover {
  text-decoration: underline;
}
.c-footer-nav-list-anchor::before {
  content: '―';
}

.c-footer-credit-box {
  text-align: center;
  margin: 0 auto;
  max-width: calc( 1280px + 30px);
  padding: 20px calc( 30px / 2);
  margin-top: 80px;
  background-color: #EFEDE8;
}
@media only screen and (max-width: 1400px) {
  .c-footer-credit-box {
    width: 80%;
  }
}
@media only screen and (max-width: 767px) {
  .c-footer-credit-box {
    display: none;
  }
}

.c-footer-credit-box-sp {
  display: none;
  text-align: center;
  margin: 0 auto 50px;
  width: 100%;
  padding: 20px calc( 30px / 2);
  background-color: #EFEDE8;
}
@media only screen and (max-width: 767px) {
  .c-footer-credit-box-sp {
    display: block;
  }
}

.c-footer-credit {
  color: #74A74B;
  font-size: 17px;
  font-weight: 600;
}
@media only screen and (max-width: 900px) {
  .c-footer-credit {
    font-size: 15px;
  }
}

.c-footer-agency {
  width: 255px;
  margin: 80px auto 0;
}
@media only screen and (max-width: 767px) {
  .c-footer-agency {
    display: none;
  }
}

.c-footer-box {
  position: relative;
  background-color: #74A74B;
  padding: 100px 0;
  border-radius: 0 0 360px 0;
}
@media only screen and (max-width: 900px) {
  .c-footer-box {
    padding: 110px 0 30px;
    border-radius: 0 0 180px 0;
  }
}

.c-footer-copy {
  position: absolute;
  bottom: 30px;
  right: 0;
  text-align: center;
  transform: rotate(-45deg);
}
@media only screen and (max-width: 900px) {
  .c-footer-copy {
    bottom: 6px;
    right: -23px;
  }
}

.c-footer-copy-text {
  color: #74A74B;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  margin-bottom: 13px;
}
@media only screen and (max-width: 900px) {
  .c-footer-copy-text {
    font-size: 11px;
    letter-spacing: 1.4px;
    margin-bottom: 8px;
  }
}

.c-footer-copy-img {
  width: 53px;
}
@media only screen and (max-width: 900px) {
  .c-footer-copy-img {
    width: 40px;
  }
}

/*==============================
-Single
===============================*/
.s-postcontent-unit {
  margin-top: 40px;
}

.s-postcontent-title {
  display: block;
  font-size: 22px;
  font-weight: bold;
  letter-spacing: 1px;
  word-wrap: break-word;
  line-height: 1.75;
  margin-bottom: 20px;
}
@media only screen and (max-width: 767px) {
  .s-postcontent-title {
    font-size: 20px;
    letter-spacing: 2px;
    line-height: 1.75;
  }
}

.s-postcontent-header {
  display: block;
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 1px;
  word-wrap: break-word;
  line-height: 2;
  margin-bottom: 20px;
}
@media only screen and (max-width: 767px) {
  .s-postcontent-header {
    font-size: 18px;
    line-height: 1.6;
  }
}

.s-postcontent-lead {
  display: block;
  font-size: 14px;
  font-weight: normal;
  word-wrap: break-word;
  line-height: 1.75;
  letter-spacing: 1px;
  margin-bottom: 20px;
}
@media only screen and (max-width: 767px) {
  .s-postcontent-lead {
    font-size: 12px;
    line-height: 1.75;
  }
}

.s-postcontent-notes {
  display: inline-block;
  background-color: #cc0000;
  padding: 2px 10px;
  letter-spacing: 1px;
  font-size: 11px;
  font-weight: bold;
  line-height: 1.75;
  color: #F6F5F5;
  word-wrap: break-word;
}
@media only screen and (max-width: 767px) {
  .s-postcontent-notes {
    font-size: 11px;
    line-height: 1.75;
    letter-spacing: 1px;
  }
}

.s-postcontent-strong {
  font-weight: bold;
  color: inherit;
  letter-spacing: inherit;
  font-size: inherit;
  line-height: inherit;
}

.s-postcontent-strike {
  text-decoration: line-through;
  color: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  font-size: inherit;
  line-height: inherit;
  text-align: inherit;
}

.s-postcontent-colored {
  color: #f00;
  text-decoration: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  font-size: inherit;
  line-height: inherit;
  text-align: inherit;
}

.s-postcontent-big {
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 2px;
  text-decoration: inherit;
  color: inherit;
  line-height: inherit;
  text-align: inherit;
}
@media only screen and (max-width: 767px) {
  .s-postcontent-big {
    font-size: 16px;
    line-height: 1.75;
    letter-spacing: 1px;
  }
}

.s-postcontent-links {
  display: inline;
  font-size: 14px;
  letter-spacing: 1px;
  line-height: 2;
  text-decoration: underline;
  color: inherit;
  text-align: inherit;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  word-wrap: break-word;
}
.s-postcontent-links:hover {
  text-decoration: none;
}
@media only screen and (max-width: 767px) {
  .s-postcontent-links {
    font-size: 13px;
    line-height: 1.75;
    letter-spacing: 1px;
  }
}

.s-postcontent-linklead {
  display: block;
  width: 100%;
  font-size: 14px;
  letter-spacing: 1px;
  word-wrap: break-word;
  line-height: 2;
  color: inherit;
  text-align: inherit;
}
@media only screen and (max-width: 767px) {
  .s-postcontent-linklead {
    font-size: 13px;
    line-height: 1.75;
    letter-spacing: 1px;
  }
}

.s-postcontent-inlinelink {
  display: inline-block;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 1px;
  line-height: 2;
  margin-top: 15px;
  margin-bottom: 20px;
  transition: ease .3s;
  word-wrap: break-word;
}
.s-postcontent-inlinelink:hover {
  text-decoration: underline;
  transition: ease .2s;
}
@media only screen and (max-width: 767px) {
  .s-postcontent-inlinelink {
    font-size: 14px;
    line-height: 1.75;
    letter-spacing: 1px;
  }
}

/*==============================
-Single
===============================*/
.s-sc-space {
  display: block;
  padding-top: 40px;
}
@media only screen and (max-width: 767px) {
  .s-sc-space {
    padding-top: 20px;
  }
}

.s-sc-title {
  display: block;
  font-size: 17px;
  font-weight: bold;
  letter-spacing: 2px;
  line-height: 1.6;
  margin-bottom: 10px;
}
@media only screen and (max-width: 767px) {
  .s-sc-title {
    font-size: 16px;
    letter-spacing: 2px;
    line-height: 1.6;
  }
}

.s-sc-sectiontitle {
  position: relative;
  margin-bottom: 30px;
}
.s-sc-sectiontitle::after {
  position: absolute;
  bottom: -25px;
  content: '';
  height: 5px;
  width: 60px;
  background-color: #74A74B;
}
@media only screen and (max-width: 767px) {
  .s-sc-sectiontitle::after {
    bottom: -10px;
    height: 3px;
    width: 25px;
  }
}

.s-sc-sectiontitleen {
  position: absolute;
  font-family: "Nunito", sans-serif;
  font-size: 80px;
  font-weight: bold;
  color: #EFEDE8;
  z-index: -1;
  left: 0;
  transform: translate3d(0, -50%, 0) perspective(0);
  top: 45%;
}
@media only screen and (max-width: 767px) {
  .s-sc-sectiontitleen {
    font-size: 44px;
  }
}

.s-sc-sectiontitleja {
  color: #74A74B;
  font-size: 36px;
  letter-spacing: 6px;
}
@media only screen and (max-width: 767px) {
  .s-sc-sectiontitleja {
    font-size: 24px;
    letter-spacing: 4px;
  }
}

.s-sc-benefits {
  display: block;
  position: relative;
  top: 0;
  left: 0;
  color: #74A74B;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 2px;
  line-height: 1.6;
  padding-left: 20px;
  margin-bottom: 10px;
  border-bottom: 1px solid #74A74B;
}
@media only screen and (max-width: 767px) {
  .s-sc-benefits {
    font-size: 15px;
    line-height: 1.3;
    padding-left: 15px;
  }
}
.s-sc-benefits::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 10px;
  height: 100%;
  background-color: #74A74B;
}

.s-sc-underline {
  text-decoration: underline;
  font-weight: 500;
}

.s-sc-through {
  text-decoration: line-through;
  font-weight: 500;
}

.s-sc-red {
  color: #CB0C0C;
  font-weight: bold;
}

.s-sc-lead {
  display: block;
  font-size: 16px;
  font-weight: normal;
  line-height: 2.8;
  letter-spacing: 2px;
}
@media only screen and (max-width: 1000px) {
  .s-sc-lead {
    font-size: 15px;
    line-height: 2.5;
  }
}
@media only screen and (max-width: 767px) {
  .s-sc-lead {
    font-size: 13px;
  }
}
.s-sc-lead + .s-sc-lead {
  margin-top: 5px;
}

.s-sc-attention {
  display: inline-block;
  background-color: red;
  padding: 2px 10px;
  letter-spacing: 2px;
  font-size: 11px;
  font-weight: normal;
  line-height: 1.6;
  color: white;
  margin-bottom: 10px;
}
@media only screen and (max-width: 767px) {
  .s-sc-attention {
    font-size: 11px;
    line-height: 1.6;
    letter-spacing: 2px;
  }
}

.s-sc-linklead {
  display: block;
  width: 100%;
  font-size: 16px;
  letter-spacing: 2px;
  line-height: 3;
  color: inherit;
  word-break: break-all;
  text-align: left;
}
@media only screen and (max-width: 767px) {
  .s-sc-linklead {
    font-size: 13px;
    line-height: 1.6;
    letter-spacing: 2px;
  }
}

.s-sc-link {
  display: inline;
  color: #74A74B;
  font-size: 16px;
  letter-spacing: 2px;
  line-height: 1.6;
  word-break: break-all;
  text-align: left;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.s-sc-link:hover {
  color: #F1D940;
  text-decoration: none;
}
@media only screen and (max-width: 767px) {
  .s-sc-link {
    font-size: 13px;
    line-height: 1.75;
    letter-spacing: 2px;
  }
}

.s-sc-movie {
  position: relative;
  padding-top: 28.125%;
  margin-bottom: 10px;
  width: 50% !important;
}
@media only screen and (max-width: 767px) {
  .s-sc-movie {
    width: 100% !important;
    padding-top: 56.25%;
  }
}

.s-sc-movie iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}

/*==============================
-Single
===============================*/
.s-header-wrap {
  padding-top: 230px;
}
@media only screen and (max-width: 900px) {
  .s-header-wrap {
    padding-top: 180px;
  }
}

@media only screen and (max-width: 900px) {
  .s-contents-wrap .l-container {
    padding: 0;
  }
}

.s-contents-image {
  position: relative;
  width: 97%;
  margin: 0 auto;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  padding-top: 56.25%;
}
@media only screen and (max-width: 900px) {
  .s-contents-image {
    width: 100%;
  }
}

.s-contents-text-box {
  position: relative;
  padding: 40px 35px;
  display: grid;
  align-items: center;
}
@media only screen and (max-width: 900px) {
  .s-contents-text-box {
    padding: 30px 25px;
  }
}
.s-contents-text-box::before {
  position: absolute;
  content: '';
  width: 13px;
  height: 100%;
}

.text-box-news {
  background-color: #fff;
}
.text-box-news::before {
  background-color: #74A74B;
}
@media only screen and (max-width: 900px) {
  .text-box-news::before {
    display: none;
  }
}
.text-box-news .s-contents-text-day {
  color: #74A74B;
}
.text-box-news .s-contents-text-title {
  color: #74A74B;
}

.text-box-column {
  background-color: #74A74B;
}
.text-box-column::before {
  background-color: #F1D940;
}
@media only screen and (max-width: 900px) {
  .text-box-column::before {
    display: none;
  }
}
.text-box-column .s-contents-text-day {
  color: #EFEDE8;
}
.text-box-column .s-contents-text-title {
  color: #EFEDE8;
}

.s-contents-text-day {
  font-size: 17px;
  letter-spacing: 1.4px;
  margin-bottom: 18px;
}
@media only screen and (max-width: 900px) {
  .s-contents-text-day {
    font-size: 14px;
    margin-bottom: 18px;
  }
}

.s-contents-text-title {
  font-size: 20px;
  letter-spacing: 2px;
}
@media only screen and (max-width: 900px) {
  .s-contents-text-title {
    font-size: 17px;
  }
}

.s-contents-text-lead {
  padding: 100px 40px;
}
@media only screen and (max-width: 900px) {
  .s-contents-text-lead {
    padding: 50px 25px;
  }
}

/*==============================
-t-form-confirmation.scss
===============================*/
.t-form-confirm-wrapper {
  background-color: #DCE2CF;
  border: 1px solid #74A74B;
  border-radius: 30px;
  padding-bottom: 80px;
}
@media only screen and (max-width: 900px) {
  .t-form-confirm-wrapper {
    padding: 0 20px 50px;
  }
}

.p-form-confirmation-wrapper {
  padding-top: 120px;
  text-align: center;
}

.t-form-confirmation-body {
  background: #F6F5F5;
}

.t-form-confirmation-inners {
  color: #4A4A4A;
}

.t-form-confirmation-lead {
  color: #74A74B;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 2px;
  text-align: center;
  padding: 100px 0 50px;
  line-height: 1.5;
}
@media only screen and (max-width: 900px) {
  .t-form-confirmation-lead {
    font-size: 13px;
    text-align: justify;
    padding: 40px 10px 30px;
  }
}

.t-form-confirmation-table {
  width: 100%;
  margin: 0 0 40px 0;
}
.t-form-confirmation-table tr:last-child th {
  border: none;
}

.t-form-confirmation-table td,
table.formTable th {
  background: #F6F5F5;
  border-bottom: 1px solid #74A74B;
  font-size: 14px;
  padding: 15px;
  color: #4A4A4A;
}
@media only screen and (max-width: 900px) {
  .t-form-confirmation-table td,
  table.formTable th {
    display: block;
    font-size: 12px;
    padding: 10px 10px;
    border: none;
  }
}

.t-form-confirmation-table th {
  border-bottom: 1px solid #74A74B;
  border-right: 1px solid #74A74B;
  background: rgba(116, 167, 75, 0.16);
  color: #74A74B;
  text-align: left;
  font-size: 14px;
  padding: 30px 10px;
  width: 30%;
  text-align: right;
}
@media only screen and (max-width: 900px) {
  .t-form-confirmation-table th {
    display: block;
    text-align: left;
    width: 100%;
    padding: 10px 0 10px 10px;
    border: none;
  }
}

.t-form-confirmation-submit-btn {
  background-color: #74A74B;
  color: #EFEDE8;
  padding: 20px 15px;
  width: 100%;
  margin-top: 15px;
  outline: none;
  cursor: pointer;
  font-weight: bold;
  border: 2px solid #74A74B;
  transition: .2s;
  -webkit-transition: .2s;
}
@media only screen and (max-width: 900px) {
  .t-form-confirmation-submit-btn {
    padding: 15px;
    margin: 0;
  }
}
.t-form-confirmation-submit-btn:hover {
  color: #74A74B;
  background: none;
}

.t-form-confirmation-return-btn, .t-form-confirmation-return-btn-error {
  background: #aaa;
  border: 2px solid #aaa;
  color: #111;
  padding: 20px 15px;
  width: 80%;
  margin-top: 15px;
  outline: none;
  cursor: pointer;
  border-radius: 50px;
  font-weight: bold;
  transition: .2s;
  -webkit-transition: .2s;
}
.t-form-confirmation-return-btn:hover, .t-form-confirmation-return-btn-error:hover {
  background: none;
  color: #aaa;
}

.t-form-confirmation-return-btn-error {
  width: 100px;
  padding: 10px 15px;
}

.t-form-confirmation-center {
  text-align: center;
}

.t-form-confirmation-footer {
  text-align: center;
  font-size: 12px;
  color: #fff;
  padding: 20px 0;
  margin-top: 70px;
}

p.error_messe {
  margin: 5px 0;
  color: red;
}

/*==============================
-t-form-thanks.scss
===============================*/
.t-form-thanks-wrapper {
  color: #74A74B;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 2px;
  text-align: center;
  padding: 100px 0;
  line-height: 1.5;
  background-color: #DCE2CF;
  border: 1px solid #74A74B;
  border-radius: 30px;
}
@media only screen and (max-width: 900px) {
  .t-form-thanks-wrapper {
    padding: 30px 20px;
  }
}

.t-form-thanks-inner {
  padding-top: 20px;
}
@media only screen and (max-width: 900px) {
  .t-form-thanks-inner {
    padding-top: 0;
  }
}

.t-form-thanks-heading {
  color: #74A74B;
  font-size: 15px;
  font-weight: bold;
  line-height: 2.5;
  margin-bottom: 20px;
}
@media only screen and (max-width: 900px) {
  .t-form-thanks-heading {
    font-size: 14px;
    line-height: 2;
    text-align: left;
  }
  .t-form-thanks-heading br {
    display: none;
  }
}

.t-form-thanks-line {
  width: 40%;
  height: 2px;
  margin: 25px auto 30px auto;
}

.t-form-thanks-lead {
  font-size: 13px;
  line-height: 30px;
  font-weight: 500;
}
@media only screen and (max-width: 900px) {
  .t-form-thanks-lead {
    font-size: 14px;
    text-align: left;
    line-height: 2;
  }
}

.t-form-thanks-anchor-btn {
  display: block;
  position: relative;
  font-size: 15px;
  font-weight: bold;
  padding: 20px 10px;
  border-radius: 30px;
  outline: none;
  border: none;
  max-width: 500px;
  margin-top: 60px;
  margin-left: auto;
  margin-right: auto;
  color: #EFEDE8;
  background-color: #74A74B;
  border: 2px solid #74A74B;
  transition: ease .3s;
}
@media only screen and (max-width: 900px) {
  .t-form-thanks-anchor-btn {
    width: 80%;
    padding: 10px;
  }
}
.t-form-thanks-anchor-btn:hover {
  transition: ease .2s;
  cursor: pointer;
  background-color: #EFEDE8;
  border: 2px solid #74A74B;
  color: #74A74B;
}

/*==============================
-Page
===============================*/
.p-form-title-text {
  color: #74A74B;
  font-size: 17px;
  text-align: center;
  font-weight: 500;
  margin-bottom: 45px;
}
@media only screen and (max-width: 900px) {
  .p-form-title-text {
    font-size: 14px;
  }
}

.t-form-box {
  padding: 80px 30px;
  background-color: #DCE2CF;
  border: 1px solid #74A74B;
  border-radius: 20px;
}
@media only screen and (max-width: 767px) {
  .t-form-box {
    padding: 50px 30px;
  }
}

.t-form-inner {
  width: 80%;
  margin: 0 auto;
}
@media only screen and (max-width: 1280px) {
  .t-form-inner {
    width: 90%;
  }
}
@media only screen and (max-width: 1000px) {
  .t-form-inner {
    width: 95%;
  }
}

#t-form-submit {
  width: 100%;
}

.t-form-dl {
  display: table;
  width: 100%;
  font-size: 16px;
}
@media only screen and (max-width: 900px) {
  .t-form-dl {
    display: block;
  }
}

.t-form-dt {
  display: table-cell;
  width: 25%;
  font-size: 16px;
  font-weight: bold;
  padding-right: 15px;
  overflow: hidden;
}
@media only screen and (max-width: 1280px) {
  .t-form-dt {
    width: 37%;
  }
}
@media only screen and (max-width: 900px) {
  .t-form-dt {
    display: block;
    width: 100%;
    padding: 0;
  }
}

.t-form-dd {
  display: table-cell;
  vertical-align: middle;
  width: 75%;
  padding-bottom: 35px;
}
@media only screen and (max-width: 900px) {
  .t-form-dd {
    display: block;
    width: 100%;
    padding-bottom: 40px;
    padding-top: 10px;
  }
}

.t-form-title {
  width: 75%;
  float: left;
  font-size: 15px;
  line-height: 18px;
  text-align: right;
  padding-right: 10px;
}
@media only screen and (max-width: 900px) {
  .t-form-title {
    text-align: left;
  }
}

.t-form-required {
  width: 40px;
  float: right;
  display: inline-block;
  padding: 3px 0;
  border: 1px solid #c23232;
  color: #DCE2CF;
  font-size: 12px;
  text-align: center;
  background-color: #c23232;
}

.t-form-optional {
  width: 25%;
  float: right;
  display: inline-block;
  padding: 3px 5px;
  border: 1px solid #eee;
  color: #eee;
  font-size: 13px;
  text-align: center;
}

.t-form-index-formarea {
  font-family: 'Noto Sans JP', sans-serif;
  box-sizing: border-box;
  border: 1px solid rgba(117, 167, 75, 0.6);
  background: rgba(255, 255, 255, 0.9);
  color: #333;
  font-size: 16px;
  border-radius: 3px;
  padding: 15px 10px;
  width: 100%;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
@media only screen and (max-width: 767px) {
  .t-form-index-formarea {
    font-size: 16px;
    padding: 10px 10px;
  }
}

textarea.t-form-index-formarea {
  font-family: 'Noto Sans JP', sans-serif;
  border: 1px solid rgba(117, 167, 75, 0.6);
  background: rgba(255, 255, 255, 0.9);
  color: #333;
  font-size: 16px;
  padding: 15px 10px;
  border-radius: 3px;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  textarea.t-form-index-formarea {
    font-size: 16px;
  }
}

input:focus,
textarea:focus,
select:focus {
  outline: #74A74B auto 1px;
  outline-offset: -2px;
}

input::placeholder,
textarea::placeholder {
  color: #aaa;
}

.t-form-note {
  font-size: 14px;
  font-weight: bold;
  padding-top: 15px;
  padding-bottom: 10px;
}

.t-form-select {
  display: block;
  width: 100%;
}
.t-form-select:hover {
  cursor: pointer;
}

select {
  -moz-appearance: menulist;
  -webkit-appearance: menulist;
}

.t-form-index-formlabel select,
.t-form-index-formlabel select option {
  font-family: 'Noto Sans JP', sans-serif;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(117, 167, 75, 0.6);
  display: block;
  font-size: 16px;
  padding: 0 10px;
  position: relative;
  width: 100%;
  height: 50px;
  border-radius: 3px;
  color: #222;
}

.t-form-privacy {
  display: block;
  font-size: 14px;
  letter-spacing: 0.05em;
  line-height: 1.6;
  text-align: center;
}

.t-form-privacy-link-area {
  display: block;
  height: 160px;
  overflow-y: scroll;
  text-align: center;
  margin: 10px auto;
  padding: 10px;
  border: 1px solid rgba(117, 167, 75, 0.6);
  background: rgba(255, 255, 255, 0.9);
}

.t-form-privacy-title {
  display: block;
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 0.05em;
  line-height: 1.6;
  text-align: left;
  padding-bottom: 5px;
  margin-bottom: 5px;
  border-bottom: 1px solid rgba(117, 167, 75, 0.6);
  color: #333;
}

.t-form-privacy-descarea {
  display: block;
  font-size: 12px;
  font-weight: normal;
  letter-spacing: 0.05em;
  line-height: 1.6;
  text-align: left;
  padding-bottom: 5px;
  margin-bottom: 5px;
  color: #333;
}

.t-form-checkarea {
  padding: 10px 0;
  text-align: left;
}
.t-form-checkarea input[type="radio"] {
  position: absolute;
  opacity: 0;
}
.t-form-checkarea input[type="radio"] + .t-form-contact-check {
  font-size: 16px;
  letter-spacing: 0.05em;
  line-height: 1;
  margin-right: 10px;
}
.t-form-checkarea input[type="radio"] + .t-form-contact-check:before {
  content: '';
  background: #f4f4f4;
  border-radius: 100%;
  border: 1px solid #b4b4b4;
  display: inline-block;
  width: 20px;
  height: 20px;
  position: relative;
  top: -0.2em;
  margin-right: 10px;
  vertical-align: top;
  cursor: pointer;
  text-align: center;
  transition: all 250ms ease;
}
.t-form-checkarea input[type="radio"]:checked + .t-form-radiobtn:before {
  background-color: #f3dfbd;
  box-shadow: inset 0 0 0 4px #fff;
}
.t-form-checkarea input[type="radio"]:focus + .t-form-radiobtn:before {
  outline: none;
  border-color: #74A74B;
}
.t-form-checkarea input[type="radio"] + .t-form-radiobtn:empty:before {
  margin-right: 0;
}
.t-form-checkarea input[type="checkbox"] {
  position: absolute;
  opacity: 0;
}
.t-form-checkarea input[type="checkbox"] + .t-form-contact-check {
  font-size: 16px;
  letter-spacing: 0.05em;
  line-height: 1;
  margin-right: 10px;
}
.t-form-checkarea input[type="checkbox"] + .t-form-contact-check:before {
  content: '';
  background: #f4f4f4;
  border-radius: 50%;
  border: 1px solid rgba(117, 167, 75, 0.6);
  display: inline-block;
  width: 20px;
  height: 20px;
  position: relative;
  margin-right: 10px;
  vertical-align: top;
  cursor: pointer;
  text-align: center;
  transition: all 250ms ease;
}
.t-form-checkarea input[type="checkbox"]:checked + .t-form-contact-check:before {
  background-color: #74A74B;
  box-shadow: inset 0 0 0 4px #fff;
}
.t-form-checkarea input[type="checkbox"]:focus + .t-form-contact-check:before {
  outline: none;
  border-color: #74A74B;
}
.t-form-checkarea input[type="checkbox"] + .t-form-contact-check:empty:before {
  margin-right: 0;
}

.t-form-att-text {
  font-size: 14px;
  line-height: 1.6;
  padding: 10px;
  background-color: #eee;
  letter-spacing: 0.05em;
  margin-top: 25px;
  color: #e60012;
  text-align: center;
}
@media only screen and (max-width: 900px) {
  .t-form-att-text {
    font-size: 13px;
    margin-bottom: 10px;
  }
}

.t-form-radiobtn {
  position: relative;
  padding: 0 0 0 42px;
}
.t-form-radiobtn:hover {
  cursor: pointer;
}
.t-form-radiobtn::before {
  background-color: #fff;
  border-radius: 50%;
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 15px;
  margin-top: -10px;
  height: 19px;
  width: 19px;
}
.t-form-radiobtn::after {
  background-color: #ee6302;
  border-radius: 50%;
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 19px;
  margin-top: -6px;
  width: 11px;
  height: 11px;
  opacity: 0;
}

/*==============================
-Loading
===============================*/
/*==============================
-t-pagination
===============================*/
.t-pagination {
  width: 100%;
  text-align: center;
  padding-top: 100px;
}
@media only screen and (max-width: 900px) {
  .t-pagination {
    padding-top: 40px;
  }
}
.t-pagination .pagenation ul {
  display: flex;
  justify-content: center;
}
.t-pagination li {
  font-family: "Nunito", sans-serif;
  font-weight: bold;
  opacity: 0.6;
  margin: 0 10px;
  border-radius: 50%;
}
.t-pagination li a {
  font-size: 30px;
  color: #fff;
  display: inline-block;
  text-align: center;
  line-height: 60px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #74A74B;
  transition: .2s;
  -webkit-transition: .2s;
}
@media only screen and (max-width: 767px) {
  .t-pagination li a {
    font-size: 20px;
    line-height: 40px;
    width: 40px;
    height: 40px;
  }
}
.t-pagination li.active {
  opacity: 1;
  font-size: 30px;
  color: #fff;
  display: inline-block;
  text-align: center;
  line-height: 60px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #74A74B;
}
@media only screen and (max-width: 767px) {
  .t-pagination li.active {
    font-size: 20px;
    line-height: 40px;
    width: 40px;
    height: 40px;
  }
}
.t-pagination li:hover {
  opacity: 1;
  transition: .2s;
  -webkit-transition: .2s;
}
.t-pagination li.next {
  opacity: 1;
}
.t-pagination li.next a {
  color: #F1D940;
  font-size: 70px;
  background-color: unset;
}
@media only screen and (max-width: 767px) {
  .t-pagination li.next a {
    font-size: 48px;
  }
}
.t-pagination li.next a .fas {
  line-height: 0.9;
}
.t-pagination li.next a:hover {
  color: #f19a40;
}
.t-pagination li.prev {
  opacity: 1;
}
.t-pagination li.prev a {
  color: #F1D940;
  font-size: 70px;
  background-color: unset;
}
@media only screen and (max-width: 767px) {
  .t-pagination li.prev a {
    font-size: 48px;
  }
}
.t-pagination li.prev a .fas {
  line-height: 0.9;
}
.t-pagination li.prev a:hover {
  color: #f19a40;
}

/*==============================
-Page
===============================*/
.p-contact-header-wrap {
  padding: 300px 0 0;
}
@media only screen and (max-width: 900px) {
  .p-contact-header-wrap {
    padding: 180px 0 0;
  }
}

.p-contact-tel-box {
  text-align: center;
  padding: 80px 0;
  margin-bottom: 50px;
  background-color: #DCE2CF;
  border: 1px solid #74A74B;
  border-radius: 20px;
}
@media only screen and (max-width: 900px) {
  .p-contact-tel-box {
    padding: 50px 0;
    margin-bottom: 20px;
  }
}

.p-contact-tel-text {
  color: #74A74B;
  font-size: 17px;
  font-weight: 500;
  margin-bottom: 20px;
}
@media only screen and (max-width: 900px) {
  .p-contact-tel-text {
    font-size: 14px;
  }
}

.p-contact-tel-anchor {
  display: inline-block;
  color: #4A4A4A;
  font-family: "Nunito", sans-serif;
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 2px;
  line-height: 1;
  padding: 15px 50px;
  background-color: #F1D940;
  border-radius: 30px;
  box-shadow: 1px 2px 5px #bac1ac;
  transition: .2s;
  -webkit-transition: .2s;
}
@media only screen and (max-width: 900px) {
  .p-contact-tel-anchor {
    font-size: 18px;
    line-height: 1.3;
    padding: 10px 30px;
  }
}
.p-contact-tel-anchor:hover {
  transform: scale(1.05, 1.05);
  -webkit-transform: scale(1.05, 1.05);
}
.p-contact-tel-anchor img {
  width: 25px;
}

.p-contact-wrapper {
  padding: 300px 0 60px;
}
@media only screen and (max-width: 900px) {
  .p-contact-wrapper {
    padding: 210px 0 50px;
  }
}

.p-contact-text {
  margin-bottom: 80px;
}

.p-contact-form {
  margin-bottom: 80px;
}

.p-contact-index {
  margin-top: 20px;
  margin-bottom: 10px;
}
@media only screen and (max-width: 767px) {
  .p-contact-index {
    font-size: 12px;
  }
}

.p-contact-form-required {
  background-color: #c00;
  color: #F6F5F5;
  padding: 2px 5px;
  vertical-align: middle;
  margin-left: 20px;
  font-weight: bold;
  font-size: 11px;
}

.p-contact-index-formlabel select,
.p-contact-index-formlabel select option {
  background: rgba(255, 255, 255, 0.9);
  border: solid 1px #888;
  padding: 10px;
  position: relative;
  width: 100%;
  color: #888;
}
@media only screen and (max-width: 767px) {
  .p-contact-index-formlabel select,
  .p-contact-index-formlabel select option {
    font-size: 16px;
  }
}

.p-contact-select {
  display: block;
  width: 100%;
}

.p-contact-index-formarea {
  border: solid 1px #888;
  background: rgba(255, 255, 255, 0.9);
  color: #333;
  font-size: 14px;
  padding: 10px;
  width: 100%;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
@media only screen and (max-width: 767px) {
  .p-contact-index-formarea {
    font-size: 16px;
  }
}

textarea.p-contact-index-formarea {
  font-family: sans-serif;
  border: solid 1px #888;
  background: rgba(255, 255, 255, 0.9);
  color: #333;
  font-size: 16px;
  padding: 10px;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  textarea.p-contact-index-formarea {
    font-size: 16px;
  }
}

#p-contact-submit {
  width: 100%;
}

/*==============================
-Page
===============================*/
.p-privacy-wrapper {
  width: 100%;
  padding: 180px 0;
}
@media only screen and (max-width: 767px) {
  .p-privacy-wrapper {
    padding: 120px 0;
  }
}

.p-privacy-text {
  text-align: center;
  margin-bottom: 40px;
}

.p-privacy-lead {
  margin-bottom: 40px;
}

.p-privacy-descarea {
  display: block;
  width: 100%;
}

.p-privacy-title {
  font-size: 16px;
  font-weight: bold;
  color: #555;
  margin-bottom: 10px;
  border-bottom: 1px solid #ccc;
}

.p-privacy-desc {
  position: relative;
  display: inline-block;
  color: #4A4A4A;
  margin: 0 auto 40px auto;
  z-index: 1;
}

/*==============================
-P-404
===============================*/
.p-404-wrapper {
  padding: 300px 0 60px;
}
@media only screen and (max-width: 900px) {
  .p-404-wrapper {
    padding: 180px 0 50px;
  }
}

.p-404-box {
  color: #74A74B;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 2px;
  text-align: center;
  padding: 100px 0;
  line-height: 1.5;
  background-color: #DCE2CF;
  border: 1px solid #74A74B;
  border-radius: 30px;
}
@media only screen and (max-width: 900px) {
  .p-404-box {
    padding: 30px 20px;
  }
}

.p-404-inner {
  padding-top: 20px;
}
@media only screen and (max-width: 900px) {
  .p-404-inner {
    padding-top: 0;
  }
}

.p-404-heading {
  color: #74A74B;
  font-size: 15px;
  font-weight: bold;
  line-height: 2.5;
}
@media only screen and (max-width: 900px) {
  .p-404-heading {
    font-size: 14px;
    line-height: 2;
  }
}

.p-404-anchor-btn {
  display: block;
  position: relative;
  font-size: 15px;
  font-weight: bold;
  padding: 20px 10px;
  border-radius: 30px;
  outline: none;
  border: none;
  max-width: 500px;
  margin-top: 60px;
  margin-left: auto;
  margin-right: auto;
  color: #EFEDE8;
  background-color: #74A74B;
  border: 2px solid #74A74B;
  transition: ease .3s;
}
@media only screen and (max-width: 900px) {
  .p-404-anchor-btn {
    width: 80%;
    padding: 10px;
    margin-top: 40px;
  }
}
.p-404-anchor-btn:hover {
  transition: ease .2s;
  cursor: pointer;
  background-color: #EFEDE8;
  border: 2px solid #74A74B;
  color: #74A74B;
}

/*==============================
_p-top
===============================*/
.p-top-mv-wrap {
  position: relative;
  margin-bottom: 100px;
  padding-bottom: 100px;
}
.p-top-mv-wrap::before {
  content: '';
  position: absolute;
  left: 0;
  background-color: #EFEDE8;
  width: 90%;
  height: 100%;
  border-radius: 0 0 100px 0;
  z-index: -1;
}
@media only screen and (max-width: 900px) {
  .p-top-mv-wrap::before {
    width: 100%;
  }
}

.p-top-mv-about-grid {
  display: grid;
  justify-items: center;
  align-items: center;
  text-align: center;
}
@media only screen and (max-width: 900px) {
  .p-top-mv-about-grid {
    position: relative;
    z-index: 1;
  }
}

.p-top-mv-about-box {
  padding-top: 245px;
}
@media only screen and (max-width: 767px) {
  .p-top-mv-about-box {
    padding-top: 200px;
  }
}

.p-top-mv-about-logo {
  width: 13vw;
  margin-bottom: 40px;
  background-color: rgba(239, 237, 232, 0.8);
}
@media only screen and (max-width: 1400px) {
  .p-top-mv-about-logo {
    width: 38%;
  }
}
@media only screen and (max-width: 767px) {
  .p-top-mv-about-logo {
    margin-bottom: 20px;
  }
}

.p-top-mv-about-head {
  color: #74A74B;
  font-size: 1.5vw;
  letter-spacing: 7px;
  line-height: 1.5;
  margin-bottom: 30px;
}
@media only screen and (max-width: 1400px) {
  .p-top-mv-about-head {
    font-size: 19px;
    letter-spacing: 4px;
  }
}
@media only screen and (max-width: 767px) {
  .p-top-mv-about-head {
    font-size: 16px;
    margin-bottom: 25px;
  }
}
@media only screen and (max-width: 350px) {
  .p-top-mv-about-head {
    font-size: 15px;
    letter-spacing: 3px;
  }
}

.p-top-mv-about-lead {
  font-size: 1.2vw;
  margin-bottom: 30px;
  letter-spacing: 7px;
  line-height: 1.6;
}
@media only screen and (max-width: 1400px) {
  .p-top-mv-about-lead {
    font-size: 16px;
    letter-spacing: 5px;
  }
}
@media only screen and (max-width: 767px) {
  .p-top-mv-about-lead {
    font-size: 14px;
    margin-bottom: 0;
  }
}

.p-top-mv-about-anchor {
  display: inline-block;
  color: #F6F5F5;
  font-size: 13px;
  padding: 15px 40px;
  background-color: #4A4A4A;
  border-radius: 25px;
  box-shadow: 2px 5px 11px #1e1e1e2b;
  margin-top: 25px;
  transition: .2s;
  -webkit-transition: .2s;
}
.p-top-mv-about-anchor:hover {
  box-shadow: none;
}
.p-top-mv-about-anchor:hover .fa-arrow-right {
  transform: translateX(5px);
  -webkit-transform: translateX(5px);
}
.p-top-mv-about-anchor .fa-arrow-right {
  position: relative;
  color: #4A4A4A;
  font-size: 16px;
  padding: 4px;
  background-color: #F1D940;
  border-radius: 50%;
  margin-left: 10px;
  transition: .2s;
  -webkit-transition: .2s;
}

@media only screen and (max-width: 900px) {
  .p-top-mv-image-grid {
    position: absolute;
    top: 0;
    right: 0;
    width: 70%;
  }
}

.p-top-mv-image-box {
  position: relative;
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  padding-top: 50vw;
  border-radius: 0 0 0 170px;
}
@media only screen and (max-width: 1200px) {
  .p-top-mv-image-box {
    padding-top: 570px;
  }
}
@media only screen and (max-width: 767px) {
  .p-top-mv-image-box {
    padding-top: 100%;
    border-radius: 0 0 0 100px;
  }
}
.p-top-mv-image-box::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 10%;
  height: 100%;
  background-color: #74A74B;
}
@media only screen and (max-width: 900px) {
  .p-top-mv-image-box::before {
    display: none;
  }
}

.p-top-news-wrap {
  margin-bottom: 180px;
}

.p-top-news-inner {
  position: relative;
  width: 90%;
  padding: 85px;
  margin: -10% auto 0;
  background-color: #fff;
  border-radius: 30px;
  box-shadow: 2px 4px 24px #e9e9e9;
}
@media only screen and (max-width: 1300px) {
  .p-top-news-inner {
    padding: 1px 25px 55px;
    border-radius: 40px;
  }
}
@media only screen and (max-width: 900px) {
  .p-top-news-inner {
    padding: 30px 25px 30px;
    box-shadow: 2px 2px 20px #e8e8e8;
  }
}

.p-top-news-head-wrap {
  text-align: center;
  margin-top: -120px;
}
@media only screen and (max-width: 1300px) {
  .p-top-news-head-wrap {
    margin-top: -35px;
  }
}
@media only screen and (max-width: 900px) {
  .p-top-news-head-wrap {
    margin-top: -55px;
  }
}

.p-top-news-head {
  color: #74A74B;
  font-family: "Nunito", sans-serif;
  font-weight: 800;
  font-size: 60px;
}
@media only screen and (max-width: 900px) {
  .p-top-news-head {
    font-size: 43px;
  }
}

.p-top-news-subhead {
  color: #74A74B;
  font-size: 15px;
  font-weight: 800;
  padding-top: 5px;
  margin-bottom: 40px;
}
@media only screen and (max-width: 900px) {
  .p-top-news-subhead {
    font-size: 14px;
    margin-bottom: 25px;
  }
}

.p-top-news-images {
  position: relative;
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  padding-top: 56.25%;
  margin-bottom: 10px;
  display: grid;
  justify-items: center;
  align-items: center;
}

.p-top-news-readmore-anchor {
  position: absolute;
  color: #fff;
  padding: 5% 10%;
  background-color: rgba(0, 0, 0, 0.54);
  border-radius: 10px;
  transition: .2s;
  -webkit-transition: .2s;
  font-size: 14px;
}
.p-top-news-readmore-anchor:hover {
  transform: scale(1.03, 1.03);
  -webkit-transform: scale(1.03, 1.03);
  background-color: rgba(0, 0, 0, 0.7);
}
.p-top-news-readmore-anchor span {
  position: relative;
  display: inline-block;
  color: #fff;
  background-color: #F1D940;
  font-size: 12px;
  width: 20px;
  height: 20px;
  vertical-align: middle;
  margin-right: 8px;
  border-radius: 50%;
}
.p-top-news-readmore-anchor span .fa-plus {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0) perspective(0);
  backface-visibility: hidden;
  text-align: center;
  margin: 0 auto;
}

.p-top-news-title {
  color: #74A74B;
  font-size: 17px;
  margin-bottom: 7px;
  line-height: 1.5;
}
@media only screen and (max-width: 900px) {
  .p-top-news-title {
    font-size: 14px;
  }
}

.p-top-news-day {
  font-size: 14px;
}
@media only screen and (max-width: 900px) {
  .p-top-news-day {
    font-size: 12px;
    margin-bottom: 40px;
  }
}

.p-top-news-anchor-btn-box {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 100%;
  transform: translateY(40px) translateX(-50%);
  -webkit-transform: translateY(40px) translateX(-50%);
  display: grid;
  justify-items: center;
  align-items: center;
}

.p-top-news-anchor-btn {
  position: relative;
  color: #ffffff;
  font-family: "Nunito", sans-serif;
  font-size: 32px;
  font-weight: bold;
  width: 50px;
  height: 50px;
  margin-bottom: 7px;
  background-color: #4A4A4A;
  border-radius: 100%;
  box-shadow: 2px 4px 24px #e9e9e9;
  transition: .2s;
  -webkit-transition: .2s;
}
.p-top-news-anchor-btn .fa-plus {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0) perspective(0);
  backface-visibility: hidden;
  text-align: center;
  margin: 0 auto;
  left: 51.5%;
}
.p-top-news-anchor-btn:hover {
  background-color: #F1D940;
  transform: scale(0.95, 0.95);
  -webkit-transform: scale(0.95, 0.95);
  box-shadow: none;
}

.p-top-news-anchor-text {
  font-size: 13px;
  font-weight: bold;
  padding-top: 5px;
  transition: .2s;
  -webkit-transition: .2s;
}

.p-top-service-wrap {
  position: relative;
  margin-bottom: 200px;
}
@media only screen and (max-width: 900px) {
  .p-top-service-wrap {
    margin-bottom: 100px;
  }
}
.p-top-service-wrap::before {
  content: '';
  position: absolute;
  right: 0;
  background-color: #74A74B;
  width: 90%;
  height: 100%;
  border-radius: 100px 0 0 100px;
  z-index: -1;
}
@media only screen and (max-width: 900px) {
  .p-top-service-wrap::before {
    width: 100%;
  }
}

.p-top-service-contents {
  text-align: center;
  max-width: 1000px;
  padding: 90px 0;
  margin: 0 auto;
}
@media only screen and (max-width: 1600px) {
  .p-top-service-contents {
    max-width: 70%;
  }
}
@media only screen and (max-width: 900px) {
  .p-top-service-contents {
    max-width: 90%;
  }
}
@media only screen and (max-width: 767px) {
  .p-top-service-contents {
    max-width: 100%;
  }
}

.p-top-service-head {
  color: #F6F5F5;
  font-family: "Nunito", sans-serif;
  font-weight: 800;
  font-size: 60px;
}
@media only screen and (max-width: 900px) {
  .p-top-service-head {
    font-size: 43px;
    margin-bottom: 10px;
  }
}

.p-top-service-subhead {
  color: #F6F5F5;
  font-size: 17px;
  font-weight: 500;
  padding-top: 5px;
  margin-bottom: 40px;
}
@media only screen and (max-width: 900px) {
  .p-top-service-subhead {
    font-size: 14px;
  }
}

.p-top-service-box {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media only screen and (max-width: 767px) {
  .p-top-service-box {
    padding: 0 35px;
  }
}

.p-top-service-item {
  position: relative;
  background-color: #F6F5F5;
  text-align: center;
  border-radius: 30px;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.15);
  transition: .2s;
  -webkit-transition: .2s;
  width: 31%;
  margin-top: 30px;
}
@media only screen and (max-width: 767px) {
  .p-top-service-item {
    width: 47.5%;
    border-radius: 15px;
  }
}
.p-top-service-item:hover {
  box-shadow: none;
  opacity: .8;
}
.p-top-service-item:hover .p-top-service-plus {
  transform: scale(1.1, 1.1);
  -webkit-transform: scale(1.1, 1.1);
}

.p-top-service-anchor {
  width: 100%;
  height: 100%;
  display: block;
  padding: 40px 0;
}
@media only screen and (max-width: 900px) {
  .p-top-service-anchor {
    padding: 25px 0;
  }
}

.p-top-service-img {
  width: 31%;
  margin-bottom: 10px;
}
@media only screen and (max-width: 767px) {
  .p-top-service-img {
    width: 40%;
  }
}

.p-top-service-name {
  color: #4A4A4A;
  font-size: 17px;
  font-weight: 500;
  padding-top: 10px;
}
@media only screen and (max-width: 1200px) {
  .p-top-service-name {
    font-size: 16px;
    padding: 0 5px;
  }
}
@media only screen and (max-width: 900px) {
  .p-top-service-name {
    font-size: 14px;
  }
}
@media only screen and (max-width: 767px) {
  .p-top-service-name {
    padding-top: 5px;
  }
}

.p-top-service-plus {
  position: absolute;
  top: 17px;
  right: 20px;
  color: #ffffff;
  font-size: 24px;
  font-weight: bold;
  width: 39px;
  height: 39px;
  background-color: #F1D940;
  border-radius: 100%;
  transition: .2s;
  -webkit-transition: .2s;
}
.p-top-service-plus .fa-plus {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0) perspective(0);
  backface-visibility: hidden;
  text-align: center;
  margin: 0 auto;
}
@media only screen and (max-width: 1100px) {
  .p-top-service-plus {
    top: -5px;
    right: -5px;
    font-size: 24px;
  }
}
@media only screen and (max-width: 767px) {
  .p-top-service-plus {
    top: -5px;
    right: -5px;
    font-size: 24px;
  }
}

.p-top-column-wrap {
  position: relative;
  padding: 175px 0 120px;
  margin-bottom: 280px;
}
@media only screen and (max-width: 1500px) {
  .p-top-column-wrap {
    padding: 175px 0 100px;
    margin-bottom: 260px;
  }
}
@media only screen and (max-width: 900px) {
  .p-top-column-wrap {
    padding: 70px 0;
    margin-bottom: 60px;
  }
}
.p-top-column-wrap::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  background-color: #EFEDE8;
  width: 63%;
  height: 100%;
  z-index: -1;
}
@media only screen and (max-width: 900px) {
  .p-top-column-wrap::before {
    width: 100%;
  }
}
.p-top-column-wrap .js-top-column-swiper-container {
  overflow: hidden;
  padding-bottom: 15px;
  margin-top: 70px;
}
@media only screen and (max-width: 900px) {
  .p-top-column-wrap .js-top-column-swiper-container {
    margin-top: 50px;
  }
}

.p-top-column-head-wrap {
  text-align: left;
  margin-top: -120px;
}
@media only screen and (max-width: 900px) {
  .p-top-column-head-wrap {
    margin-top: 0;
  }
}

.p-top-column-head {
  color: #74A74B;
  font-family: "Nunito", sans-serif;
  font-size: 60px;
  font-weight: 800;
}
@media only screen and (max-width: 900px) {
  .p-top-column-head {
    font-size: 43px;
  }
}

.p-top-column-subhead {
  color: #74A74B;
  font-size: 17px;
  font-weight: 500;
  padding-top: 5px;
}
@media only screen and (max-width: 900px) {
  .p-top-column-subhead {
    font-size: 14px;
  }
}

.swiper-container-autoheight .swiper-slide {
  height: 100%;
  overflow: hidden;
  padding: 20px 0;
}

.p-top-column-post-box {
  position: relative;
  margin: 0 7%;
  padding: 20px;
  border-radius: 28px;
  background-color: #74A74B;
  box-shadow: 2px 2px 10px #adadad;
}
@media only screen and (max-width: 1500px) {
  .p-top-column-post-box {
    margin: 0 6%;
  }
}
@media only screen and (max-width: 900px) {
  .p-top-column-post-box {
    padding: 30px 25px;
    margin: 0 5%;
  }
}

.p-top-column-contents {
  margin-top: 100px;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .p-top-column-contents {
    margin-top: 50px;
  }
}

.p-top-column-post-image {
  position: relative;
  padding-top: 56.25%;
  margin-bottom: 15px;
  background-size: auto 120%;
  background-position: center;
  background-repeat: no-repeat;
  transition: .5s;
  -webkit-transition: .5s;
  display: grid;
  justify-items: center;
  align-items: center;
}
@media only screen and (max-width: 900px) {
  .p-top-column-post-image {
    margin-bottom: 18px;
    background-size: auto 130%;
  }
}

.p-top-column-readmore-anchor {
  position: absolute;
  color: #fff;
  padding: 5% 10%;
  background-color: rgba(0, 0, 0, 0.54);
  border-radius: 10px;
  transition: .2s;
  -webkit-transition: .2s;
  font-size: 14px;
}
.p-top-column-readmore-anchor:hover {
  transform: scale(1.03, 1.03);
  -webkit-transform: scale(1.03, 1.03);
  background-color: rgba(0, 0, 0, 0.7);
}
.p-top-column-readmore-anchor span {
  position: relative;
  display: inline-block;
  color: #fff;
  background-color: #F1D940;
  font-size: 12px;
  width: 20px;
  height: 20px;
  vertical-align: middle;
  margin-right: 8px;
  border-radius: 50%;
}
.p-top-column-readmore-anchor span .fa-plus {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0) perspective(0);
  backface-visibility: hidden;
  text-align: center;
  margin: 0 auto;
}

.p-top-column-title {
  color: #F6F5F5;
  font-size: 16px;
  letter-spacing: 3px;
  padding-bottom: 10px;
}
@media only screen and (max-width: 767px) {
  .p-top-column-title {
    font-size: 15px;
  }
}

.p-top-column-lead {
  color: #F6F5F5;
  font-size: 14px;
  font-weight: 400;
  text-align: right;
  letter-spacing: 2px;
  margin-bottom: 15px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@media only screen and (max-width: 767px) {
  .p-top-column-lead {
    margin-bottom: 13px;
    font-size: 13px;
  }
}

.p-top-column-anchor-btn-box {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 100%;
  transform: translateY(40px) translateX(-50%);
  -webkit-transform: translateY(40px) translateX(-50%);
  display: grid;
  justify-items: center;
  align-items: center;
}

.p-top-column-anchor-btn {
  position: relative;
  color: #ffffff;
  font-family: "Nunito", sans-serif;
  font-size: 32px;
  font-weight: bold;
  width: 50px;
  height: 50px;
  margin-bottom: 7px;
  background-color: #4A4A4A;
  border-radius: 100%;
  box-shadow: 2px 4px 24px #e9e9e9;
  transition: .2s;
  -webkit-transition: .2s;
}
.p-top-column-anchor-btn .fa-plus {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0) perspective(0);
  backface-visibility: hidden;
  text-align: center;
  margin: 0 auto;
  left: 51.5%;
}
.p-top-column-anchor-btn:hover {
  background-color: #F1D940;
  transform: scale(0.95, 0.95);
  -webkit-transform: scale(0.95, 0.95);
  box-shadow: none;
}

.p-top-column-anchor-text {
  font-size: 13px;
  font-weight: bold;
  padding-top: 5px;
  transition: .2s;
  -webkit-transition: .2s;
}

.p-top-column-post-swiper-button-prev, .p-top-column-post-swiper-button-next {
  background-image: none;
  top: 17%;
}
@media only screen and (max-width: 900px) {
  .p-top-column-post-swiper-button-prev, .p-top-column-post-swiper-button-next {
    top: 18%;
  }
}
@media only screen and (max-width: 767px) {
  .p-top-column-post-swiper-button-prev, .p-top-column-post-swiper-button-next {
    top: 55%;
  }
}
.p-top-column-post-swiper-button-prev .fas, .p-top-column-post-swiper-button-next .fas {
  font-size: 30px;
  color: #EFEDE8;
  background-color: #74A74B;
  border-radius: 50%;
  padding: 9px 10px;
  box-shadow: 2px 2px 10px #6767674f;
}
@media only screen and (max-width: 767px) {
  .p-top-column-post-swiper-button-prev .fas, .p-top-column-post-swiper-button-next .fas {
    font-size: 30px;
  }
}

.p-top-column-post-swiper-button-prev {
  right: 200px;
  left: auto;
}
@media only screen and (max-width: 767px) {
  .p-top-column-post-swiper-button-prev {
    right: auto;
    left: 1%;
  }
}

.p-top-column-post-swiper-button-next {
  right: 100px;
}
@media only screen and (max-width: 767px) {
  .p-top-column-post-swiper-button-next {
    right: 6%;
  }
}

.p-top-faq-wrap {
  position: relative;
  padding: 100px 0;
  margin-bottom: 45px;
}
@media only screen and (max-width: 900px) {
  .p-top-faq-wrap {
    padding: 100px 10px 70px;
    margin-bottom: 0;
  }
}

.p-top-faq-inner {
  position: relative;
  max-width: 1260px;
  padding: 90px 20px 20px;
  margin: -10% auto 0;
  background-color: #fff;
  border-radius: 30px;
  box-shadow: 2px 2px 20px rgba(0, 0, 0, 0.1);
}
@media only screen and (max-width: 900px) {
  .p-top-faq-inner {
    padding: 0 20px 20px;
    margin: 0 auto;
  }
}

.p-top-faq-head-wrap {
  text-align: center;
  margin-top: -120px;
}
@media only screen and (max-width: 900px) {
  .p-top-faq-head-wrap {
    position: absolute;
    top: 70px;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    -webkit-transform: translateY(-50%) translateX(-50%);
    margin-top: -55px;
  }
}

.p-top-faq-head {
  color: #74A74B;
  font-family: "Nunito", sans-serif;
  font-weight: 800;
  font-size: 60px;
}
@media only screen and (max-width: 900px) {
  .p-top-faq-head {
    font-size: 43px;
  }
}

.p-top-faq-subhead {
  color: #74A74B;
  font-size: 17px;
  padding-top: 5px;
  font-weight: 500;
  margin-bottom: 40px;
}
@media only screen and (max-width: 900px) {
  .p-top-faq-subhead {
    font-size: 14px;
    margin-bottom: 25px;
  }
}

.p-top-faq-contets-box {
  padding: 20px 50px;
}
@media only screen and (max-width: 900px) {
  .p-top-faq-contets-box {
    padding: 60px 0 0;
  }
}

.p-top-faq-contents-inner {
  border-bottom: 1px solid #9e9e9e;
  margin-bottom: 30px;
}

.p-top-faq-contets-head {
  color: #74A74B;
  font-size: 16px;
  margin-bottom: 14px;
}
@media only screen and (max-width: 900px) {
  .p-top-faq-contets-head {
    font-size: 14px;
    line-height: 1.4;
    margin-bottom: 10px;
  }
}
.p-top-faq-contets-head::before {
  content: 'Q';
  color: #74A74B;
  font-size: 30px;
  padding-right: 5px;
}
@media only screen and (max-width: 900px) {
  .p-top-faq-contets-head::before {
    font-size: 20px;
  }
}

.p-top-faq-contets-lead {
  font-size: 14px;
  padding-left: 35px;
  margin-bottom: 30px;
}
@media only screen and (max-width: 900px) {
  .p-top-faq-contets-lead {
    font-size: 12px;
    padding-left: 0;
    letter-spacing: 1.5px;
    line-height: 1.8;
  }
}

/*==============================
_p-service_carsales
===============================*/
.p-service_carsales-wrap {
  padding-bottom: 700px;
}
@media only screen and (max-width: 900px) {
  .p-service_carsales-wrap {
    padding-bottom: 310px;
  }
}

.p-service_carsales-merit-wrap {
  padding: 130px 0 0;
}
@media only screen and (max-width: 900px) {
  .p-service_carsales-merit-wrap {
    padding: 60px 0 0;
  }
}

.p-service_carsales-merit-box {
  margin-bottom: 100px;
}
@media only screen and (max-width: 900px) {
  .p-service_carsales-merit-box {
    margin-bottom: 50px;
  }
}

.p-service_carsales-merit-title {
  position: relative;
  display: grid;
  justify-items: center;
  align-items: center;
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  width: 100%;
  height: 110px;
  margin: 0 auto 40px;
  background: #74A74B;
}
@media only screen and (max-width: 900px) {
  .p-service_carsales-merit-title {
    width: calc( 100% + 60px / 2);
    height: auto;
    margin-left: calc( 30px / -2);
    margin-right: calc( 30px / -2);
    padding: 20px 0;
  }
}
.p-service_carsales-merit-title.p-service_carsales-merit-title:before {
  position: absolute;
  top: 0;
  left: 0;
  color: #F1D940;
  opacity: 0.2;
  font-size: 145px;
  line-height: 0.64;
  letter-spacing: -5px;
}
@media only screen and (max-width: 900px) {
  .p-service_carsales-merit-title.p-service_carsales-merit-title:before {
    position: unset;
    font-size: 60px;
    padding: 0 0 20px;
  }
}
.p-service_carsales-merit-title.merit01:before {
  content: '01';
}
.p-service_carsales-merit-title.merit02:before {
  content: '02';
}
.p-service_carsales-merit-title.merit03:before {
  content: '03';
}

.p-service_carsales-merit-title-border {
  display: none;
}
@media only screen and (max-width: 900px) {
  .p-service_carsales-merit-title-border {
    display: block;
    content: '';
    width: 20px;
    height: 1px;
    background-color: #F1D940;
    margin: 10px 0 15px;
  }
}

.p-service_carsales-merit-title-arrow {
  content: '';
  position: absolute;
  transform: rotate(45deg);
  bottom: -10px;
  left: 50%;
  width: 40px;
  height: 40px;
  margin-left: -20px;
  background: #74A74B;
  z-index: -1;
}

.p-service_carsales-merit-title-subhead {
  position: absolute;
  top: 40%;
  left: 50px;
  color: #F1D940;
}
@media only screen and (max-width: 900px) {
  .p-service_carsales-merit-title-subhead {
    top: 40px;
    left: auto;
  }
}

.p-service_carsales-merit-title-head {
  font-size: 22px;
  text-align: center;
  letter-spacing: 2px;
  line-height: 1.2;
  text-shadow: 1px 1px 7px #7e7e7e;
  width: 65%;
}
@media only screen and (max-width: 900px) {
  .p-service_carsales-merit-title-head {
    width: 100%;
    padding: 0 20px;
    font-size: 17px;
    letter-spacing: 3px;
    line-height: 2;
  }
}
@media only screen and (max-width: 767px) {
  .p-service_carsales-merit-title-head {
    text-align: left;
  }
}

.p-service_carsales-merit-image {
  width: 100%;
  padding-top: 56.25%;
  background-size: cover;
  background-position: center;
}
@media only screen and (max-width: 900px) {
  .p-service_carsales-merit-image {
    width: calc(100% - 40px);
    margin: 0 auto 20px;
  }
}

.p-service_carsales-merit-text-box {
  padding: 0 20px;
}

.p-service_carsales-merit-text-lead {
  font-size: 17px;
  letter-spacing: 2px;
  line-height: 2;
  margin-bottom: 20px;
  font-weight: 600;
}
@media only screen and (max-width: 1280px) {
  .p-service_carsales-merit-text-lead {
    font-size: 16px;
  }
}
@media only screen and (max-width: 900px) {
  .p-service_carsales-merit-text-lead {
    font-size: 14px;
  }
}

.p-service_carsales-merit-text-note {
  color: #74A74B;
  font-size: 18px;
  letter-spacing: 2px;
  line-height: 1.3;
}
@media only screen and (max-width: 1280px) {
  .p-service_carsales-merit-text-note {
    font-size: 16px;
  }
}
@media only screen and (max-width: 900px) {
  .p-service_carsales-merit-text-note {
    font-size: 14px;
    line-height: 2;
  }
}

.p-service_carsales-merit-box01 {
  width: calc( 100% - 10px );
  height: 100%;
  padding: 18px 20px;
  border: 2px solid #74A74B;
  border-radius: 20px;
  margin-right: auto;
}
@media only screen and (max-width: 900px) {
  .p-service_carsales-merit-box01 {
    width: 90%;
    margin: 0 auto;
  }
}
.p-service_carsales-merit-box01 .p-service_carsales-merit-head {
  color: #fff;
  font-size: 20px;
  text-align: center;
  padding: 15px 0;
  margin-bottom: 10px;
  background-color: #74A74B;
  border-radius: 5px;
}
@media only screen and (max-width: 900px) {
  .p-service_carsales-merit-box01 .p-service_carsales-merit-head {
    font-size: 14px;
  }
}
.p-service_carsales-merit-box01 .p-service_carsales-merit-lead {
  font-size: 17px;
  line-height: 2;
  letter-spacing: 2px;
  font-weight: 600;
}
@media only screen and (max-width: 1280px) {
  .p-service_carsales-merit-box01 .p-service_carsales-merit-lead {
    font-size: 17px;
  }
}
@media only screen and (max-width: 900px) {
  .p-service_carsales-merit-box01 .p-service_carsales-merit-lead {
    font-size: 14px;
  }
}

.p-service_carsales-merit-box02 {
  width: calc( 100% - 10px );
  height: 100%;
  padding: 18px 20px;
  margin-left: auto;
  border: 2px solid #F1D940;
  border-radius: 20px;
}
@media only screen and (max-width: 900px) {
  .p-service_carsales-merit-box02 {
    width: 90%;
    margin: 0 auto;
  }
}
.p-service_carsales-merit-box02 .p-service_carsales-merit-head {
  color: #fff;
  font-size: 20px;
  text-align: center;
  padding: 15px 0;
  margin-bottom: 10px;
  background-color: #F1D940;
  border-radius: 5px;
}
@media only screen and (max-width: 900px) {
  .p-service_carsales-merit-box02 .p-service_carsales-merit-head {
    font-size: 14px;
  }
}
.p-service_carsales-merit-box02 .p-service_carsales-merit-lead {
  font-size: 17px;
  line-height: 2;
  letter-spacing: 2px;
  font-weight: 600;
}
@media only screen and (max-width: 1280px) {
  .p-service_carsales-merit-box02 .p-service_carsales-merit-lead {
    font-size: 17px;
  }
}
@media only screen and (max-width: 900px) {
  .p-service_carsales-merit-box02 .p-service_carsales-merit-lead {
    font-size: 14px;
  }
}

.p-service_carsales-voice-wrap {
  position: relative;
  margin: -600px 0 50px;
  z-index: 1;
}
@media only screen and (max-width: 900px) {
  .p-service_carsales-voice-wrap {
    margin: -260px 0 50px;
  }
}

.p-service_carsales-voice-head-wrap {
  margin-top: -90px;
}
@media only screen and (max-width: 900px) {
  .p-service_carsales-voice-head-wrap {
    margin-top: -80px;
  }
}

.p-service_carsales-voice-box {
  max-width: 1200px;
  padding: 60px 70px;
  margin: 0 auto;
  background-color: #EFEDE8;
  box-shadow: 1px 1px 12px 0 #ddd;
  border-radius: 100px;
}
@media only screen and (max-width: 900px) {
  .p-service_carsales-voice-box {
    width: calc(100% - 40px);
    padding: 60px 10px 10px;
    border-radius: 40px;
  }
}

.p-service_carsales-voice-text {
  display: table;
  color: #74A74B;
  font-size: 20px;
  font-weight: 600;
  text-align: center;
  letter-spacing: 2px;
  line-height: 1.7;
  margin: 0 auto 70px;
  border-bottom: 2px solid #74A74B;
}
@media only screen and (max-width: 900px) {
  .p-service_carsales-voice-text {
    font-size: 14px;
    padding: 0 10px 30px;
    margin-bottom: 30px;
  }
}

.p-service_carsales-voice-contents-flex {
  margin-bottom: 50px;
}
.p-service_carsales-voice-contents-flex:nth-of-type(even) .p-service_carsales-voice-contents-tag {
  background-color: #74A74B;
}
.p-service_carsales-voice-contents-flex:nth-of-type(even) .p-service_carsales-voice-contents-title {
  color: #74A74B;
}
.p-service_carsales-voice-contents-flex:nth-of-type(odd) .p-service_carsales-voice-contents-tag {
  background-color: #F1D940;
}
.p-service_carsales-voice-contents-flex:nth-of-type(odd) .p-service_carsales-voice-contents-title {
  color: #F1D940;
}

.p-service_carsales-voice-contents-image {
  display: inline-block;
  width: 15%;
  padding-top: 15%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 25px;
}
@media only screen and (max-width: 767px) {
  .p-service_carsales-voice-contents-image {
    display: none;
  }
}

.p-service_carsales-voice-contents-box {
  display: inline-block;
  width: 84%;
  padding-left: 20px;
  vertical-align: top;
}
@media only screen and (max-width: 767px) {
  .p-service_carsales-voice-contents-box {
    width: 100%;
    padding: 5px;
  }
}

.p-service_carsales-voice-image-sp {
  display: none;
}
@media only screen and (max-width: 767px) {
  .p-service_carsales-voice-image-sp {
    display: block;
    width: 30%;
    padding-top: 30%;
    background-size: cover;
    border-radius: 20px;
  }
}

@media only screen and (max-width: 767px) {
  .p-service_carsales-voice-contents-sp-box {
    width: 68%;
    margin-left: auto;
  }
}

.p-service_carsales-voice-contents-top {
  position: relative;
  padding-bottom: 7px;
  margin-bottom: 10px;
}
@media only screen and (max-width: 767px) {
  .p-service_carsales-voice-contents-top {
    display: flex;
    padding-bottom: 20px;
  }
}
.p-service_carsales-voice-contents-top::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  margin: auto;
  background-image: linear-gradient(to right, #74A74B, #74A74B 10px, transparent 10px, transparent 10px);
  background-size: 17px 2px;
  background-repeat: repeat-x;
  opacity: 0.4;
}

.p-service_carsales-voice-contents-tag {
  display: inline-block;
  color: #fff;
  font-size: 12px;
  padding: 8px 15px;
  margin-right: 10px;
  border-radius: 30px;
}
@media only screen and (max-width: 900px) {
  .p-service_carsales-voice-contents-tag {
    font-size: 10px;
  }
}

.p-service_carsales-voice-contents-userneme {
  display: inline-block;
  font-size: 20px;
  margin-right: 20px;
}
@media only screen and (max-width: 900px) {
  .p-service_carsales-voice-contents-userneme {
    font-size: 14px;
  }
}

.p-service_carsales-voice-contents-title {
  display: inline-block;
  font-size: 20px;
  font-weight: 600;
}
@media only screen and (max-width: 900px) {
  .p-service_carsales-voice-contents-title {
    font-size: 13px;
    margin-top: 8px;
    margin-left: 2px;
    letter-spacing: 2px;
    line-height: 1.4;
  }
}

.p-service_carsales-voice-contents-lead {
  font-size: 15px;
  letter-spacing: 2px;
  line-height: 1.5;
}
@media only screen and (max-width: 900px) {
  .p-service_carsales-voice-contents-lead {
    font-size: 13px;
    text-align: justify;
    letter-spacing: 3px;
  }
}

/*==============================
_p-inspection
===============================*/
.p-service_inspection-wrap {
  padding-bottom: 700px;
}
@media only screen and (max-width: 900px) {
  .p-service_inspection-wrap {
    padding-bottom: 310px;
  }
  .p-service_inspection-wrap .c-page-mainvisual .l-full {
    flex-flow: row wrap-reverse;
  }
}

.p-service_inspection-wrap {
  padding: 130px 0 0;
}
@media only screen and (max-width: 900px) {
  .p-service_inspection-wrap {
    padding: 60px 0 0;
  }
}

.p-service_inspection-box {
  margin-bottom: 100px;
}
@media only screen and (max-width: 900px) {
  .p-service_inspection-box {
    margin-bottom: 50px;
  }
}
.p-service_inspection-box:nth-of-type(even) .p-service_inspection-title {
  background: #74A74B;
}
.p-service_inspection-box:nth-of-type(even) .p-service_inspection-title-arrow {
  background: #74A74B;
}
.p-service_inspection-box:nth-of-type(even) .p-service_inspection-text-lead span {
  color: #74A74B;
}
.p-service_inspection-box:nth-of-type(odd) .p-service_inspection-title {
  background: #F1D940;
}
.p-service_inspection-box:nth-of-type(odd) .p-service_inspection-title-arrow {
  background: #F1D940;
}
.p-service_inspection-box:nth-of-type(odd) .p-service_inspection-text-lead span {
  color: #DCC42C;
}

.p-service_inspection-title {
  position: relative;
  display: grid;
  justify-items: center;
  align-items: center;
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  width: 100%;
  height: 80px;
  margin: 0 auto 40px;
}
@media only screen and (max-width: 900px) {
  .p-service_inspection-title {
    width: calc( 100% + 60px / 2);
    height: auto;
    margin-left: calc( 30px / -2);
    margin-right: calc( 30px / -2);
    padding: 20px 0;
  }
}
.p-service_inspection-title::before {
  position: absolute;
  top: 0;
  left: 0;
  color: #F1D940;
  opacity: 0.2;
  font-size: 145px;
  line-height: 0.64;
  letter-spacing: -5px;
}
@media only screen and (max-width: 900px) {
  .p-service_inspection-title::before {
    position: unset;
    font-size: 60px;
    padding: 0 0 20px;
  }
}

.p-service_inspection-title-arrow {
  content: '';
  position: absolute;
  transform: rotate(45deg);
  bottom: -10px;
  left: 50%;
  width: 40px;
  height: 40px;
  margin-left: -20px;
  background: #74A74B;
  z-index: -1;
}

.p-service_inspection-title-subhead {
  position: absolute;
  top: 40%;
  left: 50px;
  color: #F1D940;
}
@media only screen and (max-width: 900px) {
  .p-service_inspection-title-subhead {
    top: 40px;
    left: auto;
  }
}

.p-service_inspection-title-head {
  font-size: 22px;
  text-align: center;
  letter-spacing: 2px;
  line-height: 1.2;
  text-shadow: 1px 1px 7px #7e7e7e;
  width: 65%;
}
@media only screen and (max-width: 900px) {
  .p-service_inspection-title-head {
    width: 100%;
    padding: 0 20px;
    font-size: 17px;
    letter-spacing: 3px;
    line-height: 2;
  }
}

.p-service_inspection-image {
  width: 90%;
  padding-top: 56.25%;
  background-size: cover;
  background-position: center;
}
@media only screen and (max-width: 900px) {
  .p-service_inspection-image {
    width: calc(100% - 40px);
    margin: 0 auto 20px;
  }
}

.p-service_inspection-text-box {
  padding: 0 20px;
}

.p-service_inspection-text-lead {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 2px;
  line-height: 2;
  margin-bottom: 20px;
}
@media only screen and (max-width: 1280px) {
  .p-service_inspection-text-lead {
    font-size: 15px;
  }
}
@media only screen and (max-width: 900px) {
  .p-service_inspection-text-lead {
    font-size: 14px;
  }
}

.p-service_inspection-text-anchor {
  color: #74A74B;
  font-size: 18px;
  font-weight: 600;
  text-decoration: underline;
}
@media only screen and (max-width: 1280px) {
  .p-service_inspection-text-anchor {
    font-size: 15px;
  }
}
@media only screen and (max-width: 900px) {
  .p-service_inspection-text-anchor {
    font-size: 14px;
  }
}

.p-service_inspection-text-note {
  color: #74A74B;
  font-size: 20px;
  letter-spacing: 2px;
  line-height: 1.3;
}
@media only screen and (max-width: 900px) {
  .p-service_inspection-text-note {
    font-size: 14px;
    line-height: 2;
  }
}

.p-service_inspection-regular-box {
  border: 2px solid #F1D940;
  padding: 18px 20px;
  margin: 50px 0;
}
.p-service_inspection-regular-box.regular-box01 {
  width: calc( 100% - 10px );
  margin-right: auto;
}
@media only screen and (max-width: 900px) {
  .p-service_inspection-regular-box.regular-box01 {
    width: calc( 100% - 40px );
    margin: 0 auto 20px;
  }
}
.p-service_inspection-regular-box.regular-box02 {
  width: calc( 100% - 10px );
  margin-left: auto;
}
@media only screen and (max-width: 900px) {
  .p-service_inspection-regular-box.regular-box02 {
    width: calc( 100% - 40px );
    margin: 0 auto 50px;
  }
}

.p-service_inspection-regular-head {
  position: relative;
  font-size: 20px;
  letter-spacing: 2px;
  padding: 8px 0 8px 17px;
  margin-bottom: 10px;
  border-bottom: 1px solid #F1D940;
}
@media only screen and (max-width: 900px) {
  .p-service_inspection-regular-head {
    font-size: 14px;
  }
}
.p-service_inspection-regular-head::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 10px;
  height: 100%;
  background-color: #F1D940;
}

.p-service_inspection-regular-lead {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 2px;
  line-height: 2;
}
@media only screen and (max-width: 900px) {
  .p-service_inspection-regular-lead {
    font-size: 14px;
  }
}

.p-service_inspection-flow-wrap {
  margin-bottom: 50px;
}

.p-service_inspection-flow-box {
  position: relative;
  max-width: 1195px;
  background-color: #fff;
  padding: 40px;
  margin: 0 auto 20px;
}
@media only screen and (max-width: 900px) {
  .p-service_inspection-flow-box {
    padding: 40px 20px 50px;
    margin: 0 auto;
  }
}

.p-service_inspection-flow-step {
  font-size: 20px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 20px;
}
.p-service_inspection-flow-step span {
  color: #74A74B;
}

.p-service_inspection-flow-step-title {
  color: #74A74B;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 2px;
  text-align: center;
  margin-bottom: 20px;
}

.p-service_inspection-flow-step-border {
  content: '';
  width: 50px;
  height: 2px;
  margin: 0 auto;
  background-color: #ddd;
}
@media only screen and (max-width: 900px) {
  .p-service_inspection-flow-step-border {
    margin-bottom: 20px;
  }
}

.p-service_inspection-flow-lead-grid {
  display: grid;
  justify-items: left;
  align-items: center;
}

.p-service_inspection-flow-lead {
  font-size: 14px;
  letter-spacing: 2px;
  line-height: 1.8;
}

@media only screen and (max-width: 900px) {
  .p-service_inspection-flow-images-grid {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    -webkit-transform: translateY(-50%) translateX(-50%);
    margin: 0;
  }
}

.p-service_inspection-flow-images-box {
  text-align: center;
}

.p-service_inspection-flow-images {
  width: 100px;
  opacity: 0.5;
}
@media only screen and (max-width: 900px) {
  .p-service_inspection-flow-images {
    width: 100%;
    opacity: 0.2;
  }
}

.p-service_inspection-flow-arrow {
  width: 48px;
  margin: -40px auto 0;
  position: relative;
}
@media only screen and (max-width: 900px) {
  .p-service_inspection-flow-arrow {
    margin: 0 auto;
  }
}

/*==============================
_p-maintenance
===============================*/
.p-maintenance-wrap {
  padding-bottom: 700px;
}
@media only screen and (max-width: 900px) {
  .p-maintenance-wrap {
    padding-bottom: 310px;
  }
}

.p-maintenance-merit-wrap {
  padding: 130px 0 0;
}
@media only screen and (max-width: 900px) {
  .p-maintenance-merit-wrap {
    padding: 60px 0 0;
  }
}

.p-maintenance-merit-box {
  margin-bottom: 100px;
}
@media only screen and (max-width: 900px) {
  .p-maintenance-merit-box {
    margin-bottom: 20px;
  }
}

.p-maintenance-merit-title {
  position: relative;
  display: grid;
  justify-items: center;
  align-items: center;
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  width: 100%;
  padding: 20px 50px 30px;
  margin: 0 auto 40px;
  background: #74A74B;
}
@media only screen and (max-width: 1170px) {
  .p-maintenance-merit-title {
    display: unset;
    padding: 20px 20px 30px;
  }
}
@media only screen and (max-width: 767px) {
  .p-maintenance-merit-title {
    display: grid;
    padding: 20px 10px 30px;
  }
  .p-maintenance-merit-title br {
    display: none;
  }
}
@media only screen and (max-width: 767px) and (max-width: 767px) {
  .p-maintenance-merit-title {
    max-width: 100%;
    margin: 0 0 40px;
  }
}

.p-maintenance-merit-title.p-maintenance-merit-title:before {
  color: #F1D940;
  opacity: 0.2;
  font-size: 60px;
  line-height: 0.64;
  letter-spacing: -5px;
}
@media only screen and (max-width: 900px) {
  .p-maintenance-merit-title.p-maintenance-merit-title:before {
    padding: 0 0 20px;
  }
}
.p-maintenance-merit-title.merit01:before {
  content: '01';
}
.p-maintenance-merit-title.merit02:before {
  content: '02';
}
.p-maintenance-merit-title.merit03:before {
  content: '03';
}

.p-maintenance-merit-title-arrow {
  content: '';
  position: absolute;
  transform: rotate(45deg);
  bottom: -10px;
  left: 50%;
  width: 40px;
  height: 40px;
  margin-left: -20px;
  background: #74A74B;
  z-index: -1;
}

.p-maintenance-merit-title-subhead {
  position: absolute;
  top: 40px;
  color: #F1D940;
}
@media only screen and (max-width: 1170px) {
  .p-maintenance-merit-title-subhead {
    left: 0;
    right: 50%;
    width: 100%;
  }
}

.p-maintenance-merit-title-border {
  content: '';
  width: 20px;
  height: 1px;
  background-color: #F1D940;
  margin: 20px 0 15px;
}
@media only screen and (max-width: 1170px) {
  .p-maintenance-merit-title-border {
    margin: 20px auto;
  }
}
@media only screen and (max-width: 767px) {
  .p-maintenance-merit-title-border {
    margin: 0 auto;
  }
}

.p-maintenance-merit-title-head {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 2px;
  line-height: 1.6;
  text-align: left;
}
@media only screen and (max-width: 1170px) {
  .p-maintenance-merit-title-head {
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .p-maintenance-merit-title-head {
    font-size: 14px;
    width: 78%;
    letter-spacing: 3px;
    line-height: 2;
    text-align: justify;
    margin-top: 20px;
  }
}

.p-maintenance-merit-message-flex {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding-bottom: 100px;
}
@media only screen and (max-width: 900px) {
  .p-maintenance-merit-message-flex {
    padding-bottom: 50px;
  }
}

@media only screen and (max-width: 900px) {
  .p-maintenance-merit-message-image-box {
    margin-bottom: 35px;
  }
}

.p-maintenance-merit-message-image {
  width: 110px;
}

.p-maintenance-merit-message-text-box {
  margin-left: 70px;
}
@media only screen and (max-width: 900px) {
  .p-maintenance-merit-message-text-box {
    width: 90%;
    margin: 0;
  }
}

.p-maintenance-merit-message-text {
  color: #74A74B;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 2px;
  line-height: 2;
}
@media only screen and (max-width: 900px) {
  .p-maintenance-merit-message-text {
    font-size: 14px;
  }
}

.p-maintenance-merit-border {
  content: '';
  width: 100%;
  height: 1px;
  background-color: #74A74B;
}
@media only screen and (max-width: 900px) {
  .p-maintenance-merit-border {
    width: 90%;
    margin: 0 auto;
  }
}

.p-maintenance-contents-wrap {
  padding: 100px 0 0;
}
@media only screen and (max-width: 900px) {
  .p-maintenance-contents-wrap {
    padding: 60px 0 30px;
  }
}

.p-maintenance-contents-box {
  margin-bottom: 50px;
}
@media only screen and (max-width: 1100px) {
  .p-maintenance-contents-box {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: calc( ( 100% / ( 12 / 6)) - 30px - 0.1px);
    max-width: calc( ( 100% / ( 12 / 6)) - 30px);
    position: relative;
    margin: 0 calc( 30px / 2);
    margin-bottom: 50px;
  }
}
@media only screen and (max-width: 767px) {
  .p-maintenance-contents-box {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: calc( ( 100% / ( 12 / 12)) - 30px - 0.1px);
    max-width: calc( ( 100% / ( 12 / 12)) - 30px);
    position: relative;
    margin: 0 calc( 30px / 2);
    max-width: calc(100% - 60px);
    margin-left: calc( 60px / 2);
    margin-right: calc( 60px / 2);
    margin-bottom: 50px;
  }
}
.p-maintenance-contents-box::after {
  content: '';
  position: absolute;
  top: 0;
  right: -3%;
  height: 100%;
  width: 1px;
  background-color: #74A74B;
}
@media only screen and (max-width: 767px) {
  .p-maintenance-contents-box::after {
    display: none;
  }
}
.p-maintenance-contents-box:nth-of-type(3)::after {
  width: 0;
}
.p-maintenance-contents-box:nth-of-type(6)::after {
  width: 0;
}
.p-maintenance-contents-box:last-child .p-maintenance-contents-lead {
  border: none;
}
@media only screen and (max-width: 1100px) {
  .p-maintenance-contents-box:nth-of-type(even)::after {
    display: none;
  }
  .p-maintenance-contents-box:nth-of-type(3)::after {
    width: 1px;
  }
}

.p-p-maintenance-contents-inner {
  padding: 0 20px;
}
@media only screen and (max-width: 767px) {
  .p-p-maintenance-contents-inner {
    padding: 0;
  }
}

.p-maintenance-contents-images-box {
  width: 80%;
  margin: 0 auto 30px;
}
@media only screen and (max-width: 900px) {
  .p-maintenance-contents-images-box {
    width: 90%;
  }
}

.p-maintenance-contents-images {
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  padding-top: 56.25%;
  box-shadow: -8px 8px #74A74B;
}

.p-maintenance-contents-title {
  color: #74A74B;
  font-size: 17px;
  letter-spacing: 2px;
  text-align: center;
  margin-bottom: 30px;
}
@media only screen and (max-width: 900px) {
  .p-maintenance-contents-title {
    font-size: 15px;
    text-align: left;
    margin-bottom: 10px;
  }
}

.p-maintenance-contents-lead {
  font-size: 14px;
  letter-spacing: 2px;
  line-height: 1.8;
  text-align: justify;
  margin-bottom: 30px;
}
@media only screen and (max-width: 767px) {
  .p-maintenance-contents-lead {
    font-size: 13px;
    padding-bottom: 50px;
    margin-bottom: 0;
    border-bottom: 1px solid #74A74B;
  }
}

/*==============================
-P-column
===============================*/
.p-column-post-wrap {
  padding: 150px 0 0;
  margin-bottom: 50px;
}
@media only screen and (max-width: 900px) {
  .p-column-post-wrap {
    padding: 100px 0 0;
  }
}

.p-column-post-box {
  padding: 30px;
  margin-bottom: 50px;
  background-color: #74A74B;
  border-radius: 20px;
  box-shadow: 0px 4px 10px #c2c2c2;
}
@media only screen and (max-width: 1350px) {
  .p-column-post-box {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: calc( ( 100% / ( 12 / 6)) - 30px - 0.1px);
    max-width: calc( ( 100% / ( 12 / 6)) - 30px);
    position: relative;
    margin: 0 calc( 30px / 2);
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .p-column-post-box {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: calc( ( 100% / ( 12 / 12)) - 30px - 0.1px);
    max-width: calc( ( 100% / ( 12 / 12)) - 30px);
    position: relative;
    margin: 0 calc( 30px / 2);
    margin-bottom: 30px;
  }
}

.p-column-post-images {
  position: relative;
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  padding-top: 56.25%;
  margin-bottom: 10px;
  display: grid;
  justify-items: center;
  align-items: center;
}

.p-column-post-anchor {
  position: absolute;
  color: #fff;
  padding: 5% 10%;
  background-color: rgba(0, 0, 0, 0.54);
  border-radius: 10px;
  transition: .2s;
  -webkit-transition: .2s;
  font-size: 14px;
}
.p-column-post-anchor:hover {
  transform: scale(1.03, 1.03);
  -webkit-transform: scale(1.03, 1.03);
  background-color: rgba(0, 0, 0, 0.7);
}
.p-column-post-anchor span {
  position: relative;
  display: inline-block;
  color: #fff;
  background-color: #F1D940;
  font-size: 12px;
  width: 20px;
  height: 20px;
  vertical-align: middle;
  margin-right: 8px;
  border-radius: 50%;
}
.p-column-post-anchor span .fa-plus {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0) perspective(0);
  backface-visibility: hidden;
  text-align: center;
  margin: 0 auto;
}

.p-column-post-title {
  color: #fff;
  font-size: 17px;
  margin-bottom: 7px;
}
@media only screen and (max-width: 900px) {
  .p-column-post-title {
    font-size: 16px;
  }
}

.p-column-post-day {
  color: #fff;
  font-size: 14px;
}

/*==============================
-P-news
===============================*/
.p-news-post-wrap {
  padding: 150px 0 0;
  margin-bottom: 50px;
}
@media only screen and (max-width: 900px) {
  .p-news-post-wrap {
    padding: 100px 0 0;
  }
}

.p-news-post-box {
  padding: 30px;
  margin-bottom: 50px;
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 0px 4px 10px #c2c2c2;
}
@media only screen and (max-width: 1350px) {
  .p-news-post-box {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: calc( ( 100% / ( 12 / 6)) - 30px - 0.1px);
    max-width: calc( ( 100% / ( 12 / 6)) - 30px);
    position: relative;
    margin: 0 calc( 30px / 2);
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .p-news-post-box {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: calc( ( 100% / ( 12 / 12)) - 30px - 0.1px);
    max-width: calc( ( 100% / ( 12 / 12)) - 30px);
    position: relative;
    margin: 0 calc( 30px / 2);
    margin-bottom: 30px;
  }
}

.p-news-post-images {
  position: relative;
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  padding-top: 56.25%;
  margin-bottom: 10px;
  display: grid;
  justify-items: center;
  align-items: center;
}

.p-news-post-anchor {
  position: absolute;
  color: #fff;
  padding: 5% 10%;
  background-color: rgba(0, 0, 0, 0.54);
  border-radius: 10px;
  transition: .2s;
  -webkit-transition: .2s;
  font-size: 14px;
}
.p-news-post-anchor:hover {
  transform: scale(1.03, 1.03);
  -webkit-transform: scale(1.03, 1.03);
  background-color: rgba(0, 0, 0, 0.7);
}
.p-news-post-anchor span {
  position: relative;
  display: inline-block;
  color: #fff;
  background-color: #F1D940;
  font-size: 12px;
  width: 20px;
  height: 20px;
  vertical-align: middle;
  margin-right: 8px;
  border-radius: 50%;
}
.p-news-post-anchor span .fa-plus {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0) perspective(0);
  backface-visibility: hidden;
  text-align: center;
  margin: 0 auto;
}

.p-news-post-title {
  color: #74A74B;
  font-size: 17px;
  margin-bottom: 7px;
}
@media only screen and (max-width: 900px) {
  .p-news-post-title {
    font-size: 16px;
  }
}

.p-news-post-day {
  font-size: 14px;
}

/*==============================
_p-company
===============================*/
.p-company-equipment-wrap {
  padding: 100px 0;
}

.p-company-equipment-crad-wrap {
  max-width: 1440px;
  margin: 20px auto 0;
}
@media only screen and (max-width: 900px) {
  .p-company-equipment-crad-wrap {
    padding: 0 15px;
  }
}

.p-company-equipment-card {
  display: flex;
  flex-wrap: wrap;
  background-color: #fff;
  margin-bottom: 20px;
  padding: 30px 25px 35px 25px;
}
@media only screen and (max-width: 1250px) {
  .p-company-equipment-card {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: calc( ( 100% / ( 12 / 12)) - 30px - 0.1px);
    max-width: calc( ( 100% / ( 12 / 12)) - 30px);
    position: relative;
    margin: 0 calc( 30px / 2);
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .p-company-equipment-card {
    padding: 30px 15px;
  }
}
.p-company-equipment-card .l-grid-6:last-child {
  margin-left: 0;
}

.p-company-equipment-card-images-box {
  width: 45%;
}
@media only screen and (max-width: 900px) {
  .p-company-equipment-card-images-box {
    width: 80%;
    margin: 0 auto 20px;
  }
}

.p-company-equipment-card-images {
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  padding-top: 60%;
  box-shadow: -8px 8px #74A74B;
}
@media only screen and (max-width: 900px) {
  .p-company-equipment-card-images {
    padding-top: 56.25%;
  }
}

.p-company-equipment-card-text-box {
  width: 55%;
  padding-left: 25px;
}
@media only screen and (max-width: 900px) {
  .p-company-equipment-card-text-box {
    width: 100%;
    padding: 0 10px;
  }
}

.p-company-equipment-card-head {
  color: #74A74B;
  font-size: 17px;
  margin-bottom: 7px;
}
@media only screen and (max-width: 900px) {
  .p-company-equipment-card-head {
    padding-top: 15px;
    font-size: 15px;
  }
}

.p-company-equipment-card-lead {
  font-size: 14px;
  letter-spacing: 2px;
  line-height: 1.8;
  text-align: justify;
}
@media only screen and (max-width: 767px) {
  .p-company-equipment-card-lead {
    font-size: 13px;
  }
}

@media only screen and (max-width: 900px) {
  .p-company-profile-wrap {
    padding-bottom: 50px;
    padding: 0 15px;
  }
}

.p-company-profile-table {
  width: 80%;
  margin: 0 auto;
}
@media only screen and (max-width: 1280px) {
  .p-company-profile-table {
    width: 100%;
  }
}

.p-company-profile-tr {
  border-bottom: 1px solid #74A74B;
}

.p-company-profile-th {
  color: #74A74B;
  font-size: 15px;
  letter-spacing: 3px;
  width: 30%;
  text-align: right;
  padding: 40px;
  background-color: rgba(116, 167, 75, 0.2);
  border-right: 1px solid #74A74B;
}
@media only screen and (max-width: 900px) {
  .p-company-profile-th {
    font-size: 12px;
    letter-spacing: 1px;
    padding: 20px 10px 20px 0;
  }
}

.p-company-profile-td {
  font-size: 15px;
  letter-spacing: 3px;
  line-height: 1.6;
  width: 70%;
  padding: 40px;
  background-color: #fff;
}
@media only screen and (max-width: 900px) {
  .p-company-profile-td {
    font-size: 12px;
    letter-spacing: 1px;
    line-height: 1.3;
    padding: 20px;
  }
}
