@charset "UTF-8";
/*
* Eric Meyer's Reset CSS v2.0 (http://meyerweb.com/eric/tools/css/reset/)
* http://cssreset.com
*/
* {
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

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,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
canvas,
details,
embed,
figure,
figcaption,
hgroup,
menu,
nav,
output,
ruby,
summary,
time,
mark,
audio,
video,
.mynav {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  vertical-align: baseline;
}

html {
  font-size: 62.5%;
  -webkit-text-size-adjust: 100%;
  width: 100%;
  height: 100%;
}

body {
  font-size: 1rem;
  width: 100%;
  height: 100%;
  line-height: 1.5;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
  border: 0;
}

small {
  font-size: 80%;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}

th,
td {
  vertical-align: top;
  text-align: left;
}

th {
  white-space: nowrap;
}

dd {
  /*  overflow: hidden;  */
  zoom: 1;
}

img {
  max-width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}

input,
textarea,
select {
  outline: none;
  font-size: 1.6rem;
}

input[type=submit],
input[type=clear] {
  cursor: pointer;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}

input[type=submit]:hover,
input[type=clear]:hover {
  filter: alpha(opacity=45);
  -moz-opacity: 0.45;
  opacity: 0.45;
}

button {
  padding: 0;
  border: none;
  outline: none;
  font: inherit;
  color: inherit;
  background: none;
}

/* ==========================================
  1. Variables (変数)
========================================== */
/* ==========================================
    2. Base 
========================================== */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

img {
  width: 100%;
  height: auto;
  vertical-align: middle;
}

body {
  color: #333333;
  font-family: "Zen Maru Gothic", system-ui, -apple-system, "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Noto Sans JP", sans-serif;
}

main {
  background-color: #fff;
  overflow-x: hidden;
}

a {
  -webkit-transition: opacity 0.7s;
  transition: opacity 0.7s;
}
a:hover {
  opacity: 0.8;
}

p {
  font-size: 18px;
  line-height: 1.782;
  white-space: pre-wrap;
}

.en {
  font-family: "M PLUS Rounded 1c", system-ui, -apple-system, "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-style: normal;
}

@media (max-width: 768px) {
  p {
    font-size: 15px;
  }
}
/* clippath設定 */
.clip_container {
  overflow: hidden;
  position: relative;
  -webkit-transform-origin: center;
  transform-origin: center;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

.clip_container.clip_shape01 {
  clip-path: url(#clip_shape01);
}

/* animation */
.js-fade,
.js-zoom {
  -webkit-transition: opacity 1s ease, -webkit-transform 2s cubic-bezier(0.25, 1, 0.5, 1);
  transition: opacity 1s ease, -webkit-transform 2s cubic-bezier(0.25, 1, 0.5, 1);
  transition: opacity 1s ease, transform 2s cubic-bezier(0.25, 1, 0.5, 1);
  transition: opacity 1s ease, transform 2s cubic-bezier(0.25, 1, 0.5, 1), -webkit-transform 2s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: opacity, transform;
}

/* フェード：下から上にスライドイン */
.js-fade {
  opacity: 0;
  -webkit-transform: translateY(40px);
          transform: translateY(40px);
}
.js-fade.is-show {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

/* ズーム：雲の画像などにおすすめ（拡大＋少し回転） */
.js-zoom {
  opacity: 0;
  -webkit-transform: scale(0.7) translateY(20px) rotate(-3deg);
          transform: scale(0.7) translateY(20px) rotate(-3deg);
}
.js-zoom.is-show {
  opacity: 1;
  -webkit-transform: scale(1) translateY(0) rotate(0);
          transform: scale(1) translateY(0) rotate(0);
}

/* 時間差（Delay）のユーティリティ */
.u-delay-200 {
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}

.u-delay-400 {
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}

.u-delay-600 {
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}

/* スマホ（タブレット未満） */
@media screen and (max-width: 767px) {
  .l-header__title {
    font-size: 15px;
  }
  .l-header__title span {
    font-size: 13px;
  }
  .c-nav {
    display: none;
  }
  .c-lang {
    display: none;
  }
}
:root {
  color-scheme: light;
}

body {
  margin: 0;
}

.l-header {
  position: absolute;
  inset: 0 0 auto 0;
  z-index: 10;
}
.l-header__title a {
  color: inherit;
  text-decoration: none;
}
.l-header__title {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.6;
  margin: 0;
  text-align: left;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 auto;
          flex: 0 1 auto;
  min-width: 0;
  color: #61B51A;
}
.l-header__title span {
  font-size: 18px;
  color: #333333;
  display: block;
}

.l-header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 50px;
  padding: 16px 24px;
}
.l-header__inner .c-nav {
  margin-left: auto;
}

.l-header__toggle {
  display: none;
}

.l-header__spnav {
  opacity: 0;
  pointer-events: none;
}

.l-head {
  background: url("../img/bg_head.png") no-repeat, #FEFBE8;
  background-size: cover;
}

.l-second {
  background-color: #F7FFF2;
}

.l-third {
  background-color: #FEFBE8;
}

.l-top h2 {
  text-align: center;
  font-size: 35px;
  font-weight: 500;
  margin-bottom: 45px;
  position: relative;
  padding-top: 60px;
}
.l-top h2::before {
  content: "";
  background: url("../img/img_h2.svg") no-repeat center;
  background-size: contain;
  width: 50px;
  height: 50px;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.l-top h3 {
  font-size: 25px;
  font-weight: 500;
  margin: 0 0 15px;
}
.l-top__mv {
  position: relative;
  padding: 110px 0 50px;
  margin-bottom: 30px;
}
.l-top__mv--img {
  max-width: 1200px;
  width: 80%;
  margin: 0 0 0 auto;
}
.l-top__mv--txt {
  position: absolute;
  left: 40px;
  bottom: 0;
}
.l-top__mv--txt p {
  font-weight: 500;
}
.l-top__mv--txt p span {
  color: #61B51A;
}
.l-top__mv--txt .txt-ja {
  font-size: 40px;
}
.l-top__mv--txt .txt-en {
  font-size: 35px;
}
.l-top__about {
  padding: 50px 0 140px;
}
.l-top__activity {
  position: relative;
  top: -100px;
  margin-bottom: -100px;
  border-radius: 120px;
  background-color: #fff;
}
.l-top__info {
  padding: 100px 0 80px;
}
.l-top__facebook {
  position: relative;
  top: -100px;
  margin-bottom: -100px;
  border-radius: 120px;
  background-color: #fff;
}
.l-top__contact {
  text-align: center;
}

.l-section h3 {
  font-size: 25px;
  font-weight: 500;
  margin: 0 0 15px;
}

/* contents */
.l-contents {
  width: 100%;
}
.l-contents__inner {
  width: 90%;
  margin: 0 auto;
  max-width: 1150px;
  padding: 100px 0;
}
.l-contents__inner article h2 {
  font-size: 28px;
  font-weight: bold;
  border-left: 15px solid #61B51A;
  padding-left: 10px;
  margin: 0 0 25px;
  color: #61B51A;
}
.l-contents__inner article p {
  margin-bottom: 20px;
}
.l-contents__txt p {
  margin-bottom: 20px;
}
.l-contents__head {
  background: url("../img/bg_sec-head.png") no-repeat;
  background-size: cover;
  text-align: center;
  padding: 130px 30px 100px;
}
.l-contents__head h1 {
  font-size: 35px;
  font-weight: 500;
}
.l-contents__contact {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  font-size: 16px;
}
.l-contents__contact form > p {
  margin-bottom: 15px;
}
.l-contents__contact .required span.ttl::before {
  content: "*";
  color: red;
  font-size: 1.3em;
}
.l-contents__contact .wpcf7 {
  margin-top: 30px;
}
.l-contents__contact select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.l-contents__contact input[type=text],
.l-contents__contact input[type=email],
.l-contents__contact input[type=tel],
.l-contents__contact select,
.l-contents__contact textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
}
.l-contents__contact .submit {
  text-align: center;
}
.l-contents__contact .wpcf7-spinner {
  display: none !important;
}
.l-contents__contact input[type=submit] {
  background: #61B51A;
  color: #fff;
  padding: 10px 40px;
  border: none;
  cursor: pointer;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  border-radius: 60px;
  margin: 0 auto;
}
.l-contents__contact input[type=submit]:hover {
  opacity: 0.8;
}

.l-footer {
  background-color: #FACF81;
  padding: 80px 0;
  position: relative;
}
.l-footer::before {
  content: "";
  width: 80px;
  height: 100px;
  background: url("../img/ico_glass.svg") no-repeat;
  background-size: contain;
  position: absolute;
  left: 5%;
  bottom: 0;
  z-index: 100;
}
.l-footer::after {
  content: "";
  width: 180px;
  height: 160px;
  background: url("../img/ico_tools.svg") no-repeat;
  background-size: contain;
  position: absolute;
  right: 0;
  bottom: 0;
}
.l-footer__inner {
  width: 90%;
  margin: 0 auto;
  max-width: 1150px;
  background-color: #fff;
  border-radius: 30px;
  padding: 50px 55px;
  position: relative;
}
.l-footer__ttl {
  border-bottom: 1px solid #FACF81;
  padding-bottom: 20px;
  margin-bottom: 20px;
}
.l-footer__ttl .txt-ja {
  font-size: 20px;
  font-weight: 600;
}
.l-footer__ttl .txt-en {
  font-size: 18px;
}
.l-footer__nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 15px;
}
.l-footer__nav ul li a {
  text-decoration: none;
  color: #333333;
  font-size: 16px;
  font-weight: 500;
}
.l-footer__nav ul li a::before {
  color: #FACF81;
  font-family: "Font Awesome 6 Free";
  content: "\f061";
  font-weight: bold;
  padding-right: 0.6em;
}
.l-footer__totop {
  position: absolute;
  top: 50px;
  right: 55px;
}
.l-footer__totop a {
  text-decoration: none;
  color: #61B51A;
  font-size: 20px;
  font-weight: bold;
  position: relative;
}
.l-footer__totop a::before {
  font-family: "Font Awesome 6 Free";
  content: "\f062";
  font-weight: bold;
  border: 1px solid #61B51A;
  color: #61B51A;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: -40px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 35px;
  height: 35px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.l-copyright {
  padding: 25px 20px 30px;
  text-align: center;
}
.l-copyright p {
  font-size: 16px;
}

@media (max-width: 1150px) {
  .l-header__inner {
    padding: 12px 10px;
    gap: 0;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .l-header__inner .c-nav {
    display: none;
  }
  .l-header__toggle {
    display: block;
    position: relative;
    cursor: pointer;
    z-index: 10000;
    height: 43px;
    width: 30%;
  }
  .l-header__toggle span {
    display: block;
    position: absolute;
    height: 3px;
    width: 30px;
    background: #333333;
    border-radius: 5px;
    right: 0;
    -webkit-transition: 0.35s ease-in-out;
    transition: 0.35s ease-in-out;
  }
  .l-header__toggle span:nth-child(1) {
    top: 5px;
  }
  .l-header__toggle span:nth-child(2) {
    top: 15px;
  }
  .l-header__toggle span:nth-child(3) {
    top: 25px;
  }
  .l-header__spnav {
    -webkit-transition: 0.4s;
    transition: 0.4s;
    -webkit-transform-origin: top center;
            transform-origin: top center;
    position: fixed;
    top: 0;
    padding: 20px 0;
    left: 0;
    height: auto;
    text-align: center;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.9);
    z-index: 1000;
    padding: 100px 0;
  }
  .l-header__spnav ul li {
    display: block;
    width: 100%;
  }
  .l-header__spnav ul li a {
    display: block;
    padding: 10px;
    margin: 0 20px;
  }
  .l-header.open .l-header__spnav {
    opacity: 1;
    pointer-events: visible;
  }
  .l-header.open .l-header__toggle span:nth-child(1) {
    top: 15px;
    -webkit-transform: rotate(315deg);
            transform: rotate(315deg);
  }
  .l-header.open .l-header__toggle span:nth-child(2) {
    width: 0;
    display: none;
  }
  .l-header.open .l-header__toggle span:nth-child(3) {
    top: 15px;
    -webkit-transform: rotate(-315deg);
            transform: rotate(-315deg);
  }
  .l-top__mv--txt {
    left: 2.5%;
  }
  .l-top__mv--txt .txt-ja {
    font-size: 34px;
  }
  .l-top__mv--txt .txt-en {
    font-size: 25px;
  }
}
@media (max-width: 768px) {
  .l-header__title {
    width: 70%;
    font-size: 14px;
    font-weight: 500;
  }
  .l-header__title span {
    font-size: 13px;
  }
  .l-top h2 {
    font-size: 22px;
    margin-bottom: 30px;
    padding-top: 30px;
  }
  .l-top h2::before {
    width: 25px;
    height: 25px;
  }
  .l-top h3 {
    font-size: 18px;
  }
  .l-top__mv {
    margin-bottom: 0;
    padding: 110px 0 80px;
  }
  .l-top__mv--img {
    width: 95%;
    position: relative;
  }
  .l-top__mv--txt {
    left: 2.5%;
  }
  .l-top__mv--txt .txt-ja {
    font-size: 20px;
  }
  .l-top__mv--txt .txt-en {
    font-size: 16px;
  }
  .l-top__about {
    padding: 0 0 90px;
  }
  .l-top__activity {
    border-radius: 60px;
  }
  .l-top__info {
    padding: 0 0 90px;
  }
  .l-top__facebook {
    border-radius: 60px;
  }
  .l-section h3 {
    font-size: 18px;
  }
  /* contents */
  .l-contents__inner {
    padding: 60px 0 80px;
  }
  .l-contents__inner article h2 {
    font-size: 23px;
    border-left: 10px solid #61B51A;
  }
  .l-contents__head {
    padding: 120px 10px 70px;
  }
  .l-contents__head h1 {
    font-size: 27px;
  }
  .l-footer {
    padding: 40px 0;
  }
  .l-footer::before {
    width: 50px;
    height: 60px;
    left: 0%;
  }
  .l-footer::after {
    content: "";
    width: 100px;
    height: 90px;
  }
  .l-footer__inner {
    padding: 30px 35px;
  }
  .l-footer__ttl {
    padding-top: 40px;
  }
  .l-footer__ttl .txt-ja {
    font-size: 15px;
  }
  .l-footer__ttl .txt-en {
    font-size: 13px;
  }
  .l-footer__nav ul {
    gap: 10px;
  }
  .l-footer__nav ul li a {
    font-size: 14px;
  }
  .l-footer__totop {
    top: 30px;
    right: 35px;
  }
  .l-footer__totop a {
    font-size: 17px;
  }
  .l-footer__totop a::before {
    width: 30px;
    height: 30px;
    left: -35px;
  }
  .l-copyright p {
    font-size: 14px;
  }
}
.c-nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.c-nav__list li a {
  color: #333333;
  font-size: 17px;
  text-decoration: none;
  font-weight: 600;
  border-radius: 8px;
}

.c-lang {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  gap: 20px;
  background-color: #fff;
  border-radius: 30px;
  padding: 8px 20px;
}

.c-lang__btn {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  display: inline-grid;
  place-items: center;
  cursor: pointer;
  overflow: hidden;
}
.c-lang__btn img {
  width: 30px;
  height: 30px;
  -o-object-fit: cover;
     object-fit: cover;
  border: 1px solid #E4E4E4;
  border-radius: 50%;
}

.c-siteimage {
  display: block;
  width: 100%;
  height: auto;
}

.c-heading-icon {
  position: relative;
  padding-left: 45px;
}
.c-heading-icon::before {
  content: "";
  width: 40px;
  height: 50px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
}
.c-heading-icon.-clock::before {
  background: url("../img/ico_clock.svg") no-repeat center;
  background-size: contain;
}
.c-heading-icon.-note::before {
  background: url("../img/ico_note.svg") no-repeat center;
  background-size: contain;
}

/* ベースのグリッド設定 */
.c-grid {
  display: grid;
  width: 100%;
}

/* 2分割用（Modifier） */
.c-grid.-col2 {
  grid-template-columns: repeat(2, 1fr);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
}

/* 3分割用（Modifier） */
.c-grid.-col3 {
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

@media (max-width: 768px) {
  .c-grid.-col2 {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .c-grid.-col2 .-sp-order1 {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    margin-bottom: 15px;
  }
  .c-grid.-col2 .-sp-order2 {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .c-grid.-col3 {
    grid-template-columns: repeat(2, 1fr);
    gap: 13px;
  }
}
/* CTA */
.c-btn__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 30px;
}

.c-btn {
  border-radius: 60px;
  max-width: 390px;
  width: 100%;
  padding: 15px 40px;
  font-size: 23px;
  font-weight: 500;
  text-decoration: none;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.c-btn span {
  font-size: 16px;
  font-weight: 400;
  display: block;
  line-height: 1.2;
}
.c-btn.-mail {
  background-color: #61B51A;
  color: #fff;
}
.c-btn.-mail p {
  display: inline-block;
}
.c-btn.-mail p::before {
  font-family: "Font Awesome 6 Free";
  content: "\f0e0";
  font-weight: bold;
  padding-right: 0.3em;
}
.c-btn.-form {
  background-color: #FBF568;
  color: #333333;
}
.c-btn.-form p {
  display: inline-block;
}
.c-btn.-form p::before {
  font-family: "Font Awesome 6 Free";
  content: "\f5ad";
  font-weight: bold;
  padding-right: 0.3em;
}
.c-btn.-tel {
  background-color: #FF9563;
  color: #fff;
}
.c-btn.-tel p {
  display: inline-block;
}
.c-btn.-tel p::before {
  font-family: "Font Awesome 6 Free";
  content: "\f095";
  font-weight: bold;
  padding-right: 0.3em;
}

@media (max-width: 768px) {
  .c-lang {
    gap: 10px;
    padding: 5px 10px;
    margin: 2px 0 0 0;
  }
  .c-lang__btn img {
    width: 20px;
    height: 20px;
  }
  .c-btn__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 15px;
  }
}
.p-gallery {
  list-style: none;
  padding: 0;
  margin: 0;
}
.p-gallery__item {
  border-radius: 30px;
  overflow: hidden;
  width: 100%;
  height: 100%;
  max-height: 240px;
}
.p-gallery__item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-white-box {
  background-color: #fff;
  padding: 50px 70px;
  position: relative;
  border-radius: 30px;
  margin: 60px auto;
}
.p-white-box::before {
  content: "";
  width: 25px;
  height: 80px;
  position: absolute;
  top: -20px;
  -webkit-transform: rotate(200deg);
          transform: rotate(200deg);
  left: 40px;
  background: url("../img/ico_pen.svg") no-repeat center;
  background-size: contain;
}

.p-contact-box {
  background: url("../img/bg_contact.png") no-repeat;
  background-size: cover;
  position: relative;
  padding: 60px;
  border-radius: 30px;
  text-align: center;
}
.p-contact-box::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.7);
  position: absolute;
  top: 0;
  left: 0;
}
.p-contact-box__inner {
  position: relative;
}
.p-contact-box h3 {
  margin-bottom: 35px;
}

.p-contact__info {
  display: inline-block;
  text-align: left;
  position: relative;
  padding-left: 4em;
  margin-bottom: 45px;
}
.p-contact__info::before {
  font-family: "Font Awesome 6 Free";
  content: "\f3c5";
  font-weight: bold;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 3.5em;
  color: #61B51A;
}
.p-contact__info .info-company {
  font-weight: 700;
}

.p-facebook__iframe {
  text-align: center;
}
.p-facebook__iframe iframe {
  text-align: center;
}

.p-select__wrap {
  position: relative;
}
.p-select__wrap select {
  padding-right: 30px;
}
.p-select__wrap::after {
  font-family: "Font Awesome 6 Free";
  content: "\f078";
  font-weight: bold;
  position: absolute;
  top: 5px;
  right: 10px;
  font-size: 1.2em;
  color: #333333;
}

@media (max-width: 768px) {
  .p-gallery__item {
    border-radius: 20px;
    max-height: 120px;
  }
  .p-white-box {
    padding: 30px 25px;
    margin: 30px auto;
  }
  .p-white-box p {
    font-size: 14px;
  }
  .p-white-box::before {
    content: "";
    width: 20px;
    height: 70px;
    top: -40px;
    left: 30px;
  }
  .p-contact-box {
    padding: 30px 20px;
  }
}
.u-m-auto {
  margin: 0 auto;
}

.u-mt0 {
  margin-top: 0 !important;
}

.u-mt5 {
  margin-top: 5px !important;
}

.u-mt10 {
  margin-top: 10px !important;
}

.u-mt15 {
  margin-top: 15px !important;
}

.u-mt20 {
  margin-top: 20px !important;
}

.u-mt25 {
  margin-top: 25px !important;
}

.u-mt30 {
  margin-top: 30px !important;
}

.u-mt35 {
  margin-top: 35px !important;
}

.u-mt40 {
  margin-top: 40px !important;
}

.u-mt45 {
  margin-top: 45px !important;
}

.u-mt50 {
  margin-top: 50px !important;
}

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

.u-mr5 {
  margin-right: 5px !important;
}

.u-mr10 {
  margin-right: 10px !important;
}

.u-mr15 {
  margin-right: 15px !important;
}

.u-mr20 {
  margin-right: 20px !important;
}

.u-mr25 {
  margin-right: 25px !important;
}

.u-mr30 {
  margin-right: 30px !important;
}

.u-mr35 {
  margin-right: 35px !important;
}

.u-mr40 {
  margin-right: 40px !important;
}

.u-mr45 {
  margin-right: 45px !important;
}

.u-mr50 {
  margin-right: 50px !important;
}

.u-mb0 {
  margin-bottom: 0 !important;
}

.u-mb5 {
  margin-bottom: 5px !important;
}

.u-mb10 {
  margin-bottom: 10px !important;
}

.u-mb15 {
  margin-bottom: 15px !important;
}

.u-mb20 {
  margin-bottom: 20px !important;
}

.u-mb25 {
  margin-bottom: 25px !important;
}

.u-mb30 {
  margin-bottom: 30px !important;
}

.u-mb35 {
  margin-bottom: 35px !important;
}

.u-mb40 {
  margin-bottom: 40px !important;
}

.u-mb45 {
  margin-bottom: 45px !important;
}

.u-mb50 {
  margin-bottom: 50px !important;
}

.u-mb60 {
  margin-bottom: 60px !important;
}

.u-mb70 {
  margin-bottom: 70px !important;
}

.u-mb80 {
  margin-bottom: 80px !important;
}

.u-ml0 {
  margin-left: 0 !important;
}

.u-ml5 {
  margin-left: 5px !important;
}

.u-ml10 {
  margin-left: 10px !important;
}

.u-ml15 {
  margin-left: 15px !important;
}

.u-ml20 {
  margin-left: 20px !important;
}

.u-ml25 {
  margin-left: 25px !important;
}

.u-ml30 {
  margin-left: 30px !important;
}

.u-ml35 {
  margin-left: 35px !important;
}

.u-ml40 {
  margin-left: 40px !important;
}

.u-ml45 {
  margin-left: 45px !important;
}

.u-ml50 {
  margin-left: 50px !important;
}

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

.u-pt5 {
  padding-top: 5px !important;
}

.u-pt10 {
  padding-top: 10px !important;
}

.u-pt15 {
  padding-top: 15px !important;
}

.u-pt20 {
  padding-top: 20px !important;
}

.u-pt25 {
  padding-top: 25px !important;
}

.u-pt30 {
  padding-top: 30px !important;
}

.u-pt35 {
  padding-top: 35px !important;
}

.u-pt40 {
  padding-top: 40px !important;
}

.u-pt45 {
  padding-top: 45px !important;
}

.u-pt50 {
  padding-top: 50px !important;
}

.u-pr0 {
  padding-right: 0 !important;
}

.u-pr5 {
  padding-right: 5px !important;
}

.u-pr10 {
  padding-right: 10px !important;
}

.u-pr15 {
  padding-right: 15px !important;
}

.u-pr20 {
  padding-right: 20px !important;
}

.u-pr25 {
  padding-right: 25px !important;
}

.u-pr30 {
  padding-right: 30px !important;
}

.u-pr35 {
  padding-right: 35px !important;
}

.u-pr40 {
  padding-right: 40px !important;
}

.u-pr45 {
  padding-right: 45px !important;
}

.u-pr50 {
  padding-right: 50px !important;
}

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

.u-pb5 {
  padding-bottom: 5px !important;
}

.u-pb10 {
  padding-bottom: 10px !important;
}

.u-pb15 {
  padding-bottom: 15px !important;
}

.u-pb20 {
  padding-bottom: 20px !important;
}

.u-pb25 {
  padding-bottom: 25px !important;
}

.u-pb30 {
  padding-bottom: 30px !important;
}

.u-pb35 {
  padding-bottom: 35px !important;
}

.u-pb40 {
  padding-bottom: 40px !important;
}

.u-pb45 {
  padding-bottom: 45px !important;
}

.u-pb50 {
  padding-bottom: 50px !important;
}

.u-pl0 {
  padding-left: 0 !important;
}

.u-pl5 {
  padding-left: 5px !important;
}

.u-pl10 {
  padding-left: 10px !important;
}

.u-pl15 {
  padding-left: 15px !important;
}

.u-pl20 {
  padding-left: 20px !important;
}

.u-pl25 {
  padding-left: 25px !important;
}

.u-pl30 {
  padding-left: 30px !important;
}

.u-pl35 {
  padding-left: 35px !important;
}

.u-pl40 {
  padding-left: 40px !important;
}

.u-pl45 {
  padding-left: 45px !important;
}

.u-pl50 {
  padding-left: 50px !important;
}

.u-pd0 {
  padding: 0 !important;
}

.u-df {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.u-dn {
  display: none;
}

.u-db {
  display: block;
}

.u-d_ib {
  display: inline-block;
}

.u-d_i {
  display: inline;
}

/**
*	レスポンシブ
*/
.u-pc {
  display: block !important;
}

.u-pc-flex {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}

.u-no-tablet {
  display: block !important;
}

.u-sp {
  display: none !important;
}

.u-sp-flex {
  display: none !important;
}

@media screen and (max-width: 1100px) {
  .u-no-tablet {
    display: none !important;
  }
}
@media screen and (max-width: 768px) {
  /**
  *	レスポンシブ
  */
  .u-pc {
    display: none !important;
  }
  .u-pc-flex {
    display: none !important;
  }
  .u-sp {
    display: block !important;
  }
  .u-sp-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .u-sp-block {
    display: block !important;
  }
}
/* float ----------------------- */
.u-fl-r {
  float: right !important;
}

.u-fl-l {
  float: left !important;
}

.u-fl-n {
  float: none !important;
}

.u-fl-clear {
  clear: both;
}

.u-float__box::after {
  display: block;
  content: "";
  clear: both;
}

/* =================
// micro clearfix
================== */
/* For modern browsers */
.u-cf:before,
.u-cf:after {
  content: "";
  display: block;
  overflow: hidden;
}

.u-cf:after {
  clear: both;
}

/* For IE 6/7 (trigger hasLayout) */
.u-cf {
  zoom: 1;
}

.u-clear {
  clear: both;
}

/* clearfix */
.u-clearfix::before {
  content: "";
  display: table;
}
.u-clearfix::after {
  content: "";
  display: table;
  clear: both;
}