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

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

html {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

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

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

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

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

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

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

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

body {
  background-color: #ffffff;
  color: #231815;
  font-weight: 500;
  font-family: "Noto Sans JP", "Zen Maru Gothic", "Helvetica Neue", "Helvetica", "Hiragino Sans", "ヒラギノ角ゴシック", YuGothic, "Yu Gothic", "メイリオ", Meiryo, "Arial", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif !important;
  overflow-x: hidden;
}

img {
  width: 100%;
}

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

em {
  font-style: normal;
}

input,
label,
a {
  cursor: pointer;
}

a {
  transition: all 0.2s linear 0s;
}
a:hover {
  opacity: 0.7;
}

/***********************************************
header
************************************************/
.l-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  color: #000;
  height: auto;
}
@media (min-width: 992px) {
  .l-header {
    background-color: rgba(255, 255, 255, 0.8);
  }
}

.l-header__items {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 110px;
}
@media (min-width: 992px) {
  .l-header__items {
    height: auto;
    height: 80px;
    padding-left: 10px;
    max-width: 1300px;
    margin: 0 auto;
  }
}

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

a.l-header__logo {
  transition: all 0.2s linear 0s;
  display: block;
  width: 288px;
  margin-left: 20px;
}
a.l-header__logo:hover {
  opacity: 0.7;
}
@media (min-width: 992px) {
  a.l-header__logo {
    width: 250px;
    margin-top: 20px;
    margin-left: 30px;
  }
}

.header-tel {
  display: none;
}
@media (min-width: 992px) {
  .header-tel {
    width: 400px;
    display: block;
    margin-top: 20px;
    margin-right: 30px;
  }
}

/*==================================================
　5-3-3 左から右に線が伸びる（下部）
===================================*/
.l-header__nav-items li a {
  /*線の基点とするためrelativeを指定*/
  position: relative;
  color: #ffffff;
}

.l-header__nav-items li.current a,
.l-header__nav-items li a:hover {
  opacity: 0.7;
}

.l-header__nav-items li a::after {
  content: "";
  /*絶対配置で線の位置を決める*/
  position: absolute;
  bottom: -10px;
  left: 0;
  /*線の形状*/
  width: 100%;
  height: 1px;
  background: #ffffff;
  /*アニメーションの指定*/
  transition: all 0.6s;
  transform: scale(0, 1);
  /*X方向0、Y方向1*/
  transform-origin: left top;
  /*左上基点*/
}

/*現在地とhoverの設定*/
.l-header__nav-items li.current a::after,
.l-header__nav-items li a:hover::after {
  transform: scale(1, 1);
  /*X方向にスケール拡大*/
}

/***********************************************
header       右            *****/
.l-header__nav-items ul {
  display: none;
}
@media (min-width: 992px) {
  .l-header__nav-items ul {
    display: flex;
    align-items: center;
  }
}
@media (min-width: 992px) {
  .l-header__nav-items {
    display: flex;
  }
}

.l-header__insta-icon {
  display: block;
  width: 34px;
  padding: 0;
  margin: 23px 14px 0 0;
}
.l-header__insta-icon.--sp {
  margin-top: 0px;
  position: absolute;
  top: 17px;
  right: 70px;
}
@media (min-width: 992px) {
  .l-header__insta-icon.--sp {
    display: none;
  }
}

.l-header__nav-items ul > li {
  font-weight: 700;
  letter-spacing: 0.08em;
}
@media (min-width: 992px) {
  .l-header__nav-items ul > li {
    padding: 10px 18px;
    font-size: 18px;
  }
}
.l-header__nav-items ul > li a {
  transition: all 0.2s linear 0s;
  color: #333;
}
.l-header__nav-items ul > li a:hover {
  opacity: 0.7;
}

.fix-btn {
  position: fixed;
  top: 50px;
  right: 0;
  width: 12%;
  z-index: 999;
  transition: all 0.2s linear;
}
@media (min-width: 992px) {
  .fix-btn {
    display: none;
  }
}
.fix-btn:hover {
  transform: scale(1.05, 1.05);
}

a:has(.fix-btn):hover {
  opacity: 1;
}

/**************?
footer
/*************/
.l-footer a {
  transition: all 0.2s linear 0s;
  color: #fff;
  padding: 10px 0;
  display: block;
  font-weight: 400;
}
.l-footer a:hover {
  opacity: 0.7;
}
@media (min-width: 992px) {
  .l-footer {
    display: block;
    width: 100%;
    z-index: 900;
    font-size: 16px;
  }
}
.l-footer.--yellow {
  background-color: #fefbe9;
  padding: 10px 0 0;
}
@media (min-width: 992px) {
  .l-footer.--yellow {
    padding-top: 30px;
  }
}

.footer-inner {
  width: 80%;
  max-width: 1200px;
  margin: 20px auto 0;
  text-align: center;
}

.l-footer__nav-items {
  width: 75%;
}
.l-footer__nav-items ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin: 10px auto 0;
}
@media (min-width: 992px) {
  .l-footer__nav-items ul {
    margin: 0 auto 0px;
    flex-wrap: wrap;
    justify-content: flex-start;
  }
}
.l-footer__nav-items ul > li {
  display: block;
}
@media (min-width: 992px) {
  .l-footer__nav-items ul > li {
    padding: 10px 40px;
  }
}

.l-footer__copyright {
  font-size: 7px;
  color: #2b2522;
  background-color: #fefbe9;
  display: block;
  font-weight: 400;
  padding: 10px 0 20px;
  letter-spacing: 0.6px;
}
@media (min-width: 992px) {
  .l-footer__copyright {
    font-size: 15px;
    padding: 0px 70px 30px;
    margin: 0 auto;
    text-align: center;
  }
}

.backtop {
  padding: 0 !important;
  width: 150px;
  position: fixed;
  right: -10px;
  bottom: 0;
  z-index: 999;
}
@media (min-width: 992px) {
  .backtop {
    width: 200px;
    left: 80%;
    transform: translateX(-50%);
  }
}

.l-footer__vertical-line {
  width: 1px;
  height: 110px;
  background-color: #b2b2b2;
}

/***********************************************
    cv ボタン　最下部固定
    ************************************************/
.l-footer-cv {
  display: flex;
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 800;
  font-size: 15px;
  font-weight: 700;
  background-color: #ffffff;
  height: 75px;
  width: 100%;
}
@media (min-width: 992px) {
  .l-footer-cv {
    display: none;
  }
}

a.l-footer-cv__btn {
  width: 50%;
  padding: 27px;
  text-align: center;
  border-right: solid 1px #fff;
  line-height: 1.5;
  color: #fff !important;
  display: block;
  width: 50%;
  height: 100%;
  background-color: #7fbe26;
  padding: 27px 0px;
  font-size: 14px;
}
a.l-footer-cv__btn::after {
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(45deg);
  width: 10px;
  height: 10px;
  position: absolute;
  top: 42%;
  right: 10px;
}
@media (min-width: 992px) {
  a.l-footer-cv__btn {
    width: 320px;
    height: 75px;
    right: 0;
    background-color: #7fbe26;
    color: #231815;
    font-size: 16px;
    padding: 25px;
  }
  a.l-footer-cv__btn::after {
    border-color: #7fbe26;
    right: 20px;
  }
  a.l-footer-cv__btn.--pc {
    padding: 25px;
    background-color: #7fbe26;
    color: #fff;
  }
  a.l-footer-cv__btn.--pc::after {
    border-color: #fff;
  }
}

@media (min-width: 992px) {
  .l-footer__text-small {
    font-size: 11px;
  }
}

.l-footer-cv__sp {
  display: inline;
}
@media (min-width: 992px) {
  .l-footer-cv__sp {
    display: none;
  }
}

.l-footer__wrapper {
  margin-top: 40px;
  color: #fff;
}

.l-footer__logo-nav-flex {
  display: none;
}
@media (min-width: 992px) {
  .l-footer__logo-nav-flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 40px 0;
  }
}

.l-footer__nav {
  margin-top: 30px;
  padding: 15px 0;
}
.l-footer__nav ul {
  display: none;
}
@media (min-width: 992px) {
  .l-footer__nav ul {
    display: flex;
    justify-content: center;
  }
}

.l-footer__nav ul > li {
  font-weight: 700;
}
@media (min-width: 992px) {
  .l-footer__nav ul > li {
    padding: 30px 15px;
    font-size: 18px;
  }
}
@media (min-width: 1300px) {
  .l-footer__nav ul > li {
    padding: 30px 30px;
    font-size: 22px;
  }
}
.l-footer__nav ul > li a {
  transition: all 0.2s linear 0s;
  /*********フッターナビゲーション文字の色********/
  color: #fff;
}
.l-footer__nav ul > li a:hover {
  opacity: 0.7;
}

.l-footer__logo {
  transition: all 0.2s linear 0s;
  display: block;
}
.l-footer__logo:hover {
  opacity: 0.7;
}
@media (min-width: 992px) {
  .l-footer__logo {
    width: 400px;
    margin: 0 auto;
  }
}

.l-footer__info {
  margin: 16px 0 9px 0;
  font-size: 16px;
  font-weight: normal;
  line-height: 1.65;
  letter-spacing: normal;
  text-align: left;
  color: #333;
}

.l-footer__contact-bg {
  padding: 30px 0 20px;
  margin: 30px 0 0 0;
  background-color: #fafafa;
}
@media (min-width: 992px) {
  .l-footer__contact-bg {
    padding: 80px 0;
    margin: 0;
  }
}

.footer__address {
  text-align: center;
  font-size: 16px;
  display: inline-block;
  line-height: 1.3;
  padding: 20px 0;
}
.footer__address em {
  display: none;
}
@media (min-width: 992px) {
  .footer__address em {
    display: inline;
  }
}
@media (min-width: 992px) {
  .footer__address {
    font-size: 18px;
    padding: 30px 0 40px;
  }
}

.footer-green {
  background: #93bd3b;
  padding: 10px 0 30px;
}
@media (min-width: 992px) {
  .footer-green {
    padding: 10px 0 10px;
  }
}

.c-inner__left {
  position: relative;
}

.pc-flex {
  width: 93%;
  margin: 0 auto;
  text-align: left;
}
@media (min-width: 992px) {
  .pc-flex {
    width: 80%;
  }
}
@media (min-width: 992px) {
  .pc-flex {
    display: flex;
    justify-content: space-around;
    align-items: center;
    max-width: 800px;
    margin: 0 auto;
  }
}

.footer-tel, .footer-line {
  display: block;
  margin: 30px 24px 0 34px;
}
@media (min-width: 992px) {
  .footer-tel, .footer-line {
    display: block;
    margin: 10px 10px 0 10px;
    padding: 20px;
  }
}

.footer-tel {
  padding: 15px 0 10px;
}
@media (min-width: 992px) {
  .footer-tel {
    padding: 0;
  }
}

.c-inner__center {
  min-width: 330px;
  width: 93%;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  line-height: 1.3;
}
@media (min-width: 992px) {
  .c-inner__center {
    width: 80%;
  }
}

.c-inner__left {
  width: 93%;
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}
@media (min-width: 992px) {
  .c-inner__left {
    width: 80%;
  }
}

.c-inner__flex {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.c-inner__flex.--sp_block {
  display: block;
}
@media (min-width: 992px) {
  .c-inner__flex.--sp_block {
    display: flex;
  }
}

.c-heading {
  text-align: center;
  margin: 65px 0 20px;
}

.c-heading__jp {
  font-size: 35px;
  font-weight: 700;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: -2px;
  text-align: center;
  color: #000;
  position: relative;
}
.c-heading__jp::before {
  content: "";
  background-image: url(../img/logo-heading.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top left;
  width: 50px;
  height: 50px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}
@media (min-width: 992px) {
  .c-heading__jp::before {
    width: 74px;
    height: 74px;
  }
}
.c-heading__jp.--contact {
  letter-spacing: 0em;
  color: #fff;
}
.c-heading__jp.--contact::before {
  background-image: none;
}
.c-heading__jp.--contact + .c-heading__en {
  letter-spacing: 0em;
  color: #fff;
  padding: 5px 0;
}

.c-heading__en {
  display: inline-block;
  margin-top: -10px;
  font-size: 18px;
  font-weight: 700;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: -1px;
  text-align: center;
  color: #000;
}

.c-icon {
  position: relative;
}
.c-icon::before {
  content: "";
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
}
.c-icon::after {
  content: "";
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
}

/***********************************************
左から右へグイっと登場
************************************************/
.c-icon__from-left {
  animation: fadeIn 1s cubic-bezier(0.9, 0, 0.2, 1) 0.5s 1 normal backwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.c-icon__keyword {
  position: absolute;
  color: transparent;
}

/***********************************************
文字の両サイドに画像配置
************************************************/
.c-icon__both-side {
  position: relative;
}
.c-icon__both-side::before, .c-icon__both-side::after {
  content: "";
  display: inline-block;
  width: 10%;
  aspect-ratio: 100/133;
  background-image: url();
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
}
.c-icon__both-side::after {
  background-image: url();
}

/***********************************************
アンダーライン
************************************************/
.c-icon__marker {
  background: linear-gradient(transparent 60%, yellow 30%);
  display: inline-block;
}

.c-icon__under-line {
  border-bottom: 10px solid #000;
  display: inline-block;
  padding-bottom: 10px;
}

/***********************************************
　ハンバーガーメニュー　細いスクロールバー
************************************************/
.c-icon__scroll-bar {
  overflow-x: auto;
  width: 100%;
  max-width: 100%;
  height: 100vh;
  overflow-y: auto;
}
.c-icon__scroll-bar::-webkit-scrollbar {
  width: 5px;
  height: 2px;
  border-radius: 10px;
}
.c-icon__scroll-bar::-webkit-scrollbar-track {
  border-radius: 10px;
  background-color: #D5D5D5;
}
.c-icon__scroll-bar::-webkit-scrollbar-thumb {
  background-color: #969696;
}

/***********************************************
　MV　SCROLL DOWN のモーション
************************************************/
.c-icon__scrolldown1 {
  position: absolute;
  left: 30px;
  bottom: -50px;
  height: 50px;
}

/*====== 9-1-1 縦線が動いてスクロールを促す =======*/
/*スクロールダウン全体の場所*/
.c-icon__scrolldown1 {
  /*描画位置※位置は適宜調整してください*/
  position: absolute;
  left: 58px;
  bottom: 69px;
  /*全体の高さ*/
  height: 50px;
}

/*Scrollテキストの描写*/
.c-icon__scrolldown1 span {
  /*描画位置*/
  position: absolute;
  left: -32px;
  bottom: 59px;
  /*テキストの形状*/
  color: #D5C1A1;
  width: 70px;
  font-size: 14px;
  font-weight: 400;
  transform: rotate(90deg);
}

/* 線の描写 */
.c-icon__scrolldown1::after {
  content: "";
  /*描画位置*/
  position: absolute;
  top: 0;
  /*線の形状*/
  width: 2px;
  height: 30px;
  background: #D5C1A1;
  /*線の動き1.4秒かけて動く。永遠にループ*/
  animation: pathmove 1.4s ease-in-out infinite;
  opacity: 0;
}

/*高さ・位置・透過が変化して線が上から下に動く*/
@keyframes pathmove {
  0% {
    height: 0;
    top: 10px;
    opacity: 0;
  }
  30% {
    height: 30px;
    opacity: 1;
  }
  100% {
    height: 0;
    top: 55px;
    opacity: 0;
  }
}
/***********************************************
read more　線の色が変わる
************************************************/
/*== 線の上を別の線が伸びる */
.c-button__more {
  /*線の基点とするためrelativeを指定*/
  position: relative;
  /*リンクの形状*/
  color: #fff;
  padding: 10px 10px 10px 10px;
  display: inline-block;
  text-decoration: none;
  outline: none;
}

/*線の設定*/
.c-button__more::before,
.c-button__more::after {
  content: "";
  /*絶対配置で線の位置を決める*/
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 0;
  /*線の形状*/
  background: #231815;
  width: 50%;
  height: 2px;
  /*アニメーションの指定*/
  transition: all 0.3s ease-in-out;
}

.c-button__more.--white::before,
.c-button__more.--white::after {
  /*線の形状*/
  background: #fff;
}

/*hover時に伸びる線の形状*/
.c-button__more::after {
  width: 0;
  background: #ffffff;
}

.c-button__more.--white::after {
  background: #231815;
}

/*hover時に100%に伸びる*/
.c-button__more:hover::after {
  width: 50%;
}

/*矢印の設定*/
.c-button__more span {
  position: relative;
}

.c-button__more span::after {
  content: "";
  /*絶対配置で矢印の位置を決める*/
  position: absolute;
  top: 0.6em;
  right: -36px;
  /*矢印の形状*/
  width: 5px;
  height: 5px;
  border-top: 1px solid #231815;
  border-right: 1px solid #231815;
  transform: rotate(45deg);
  /*アニメーションの指定*/
  transition: all 0.3s;
}

.c-button__more.--white span::after {
  border-color: #fff;
}

/*hover時に矢印が移動*/
.c-button__more:hover span::after {
  right: -41px;
}

.--side {
  /*== 線の上を別の線が伸びる */
  /*線の設定*/
  /*hover時に伸びる線の形状*/
  /*hover時に100%に伸びる*/
  /*矢印の設定*/
  /*hover時に矢印が移動*/
}
.--side .c-button__more {
  /*線の基点とするためrelativeを指定*/
  position: relative;
  /*リンクの形状*/
  color: #fff;
  padding: 10px 80px 10px 20px;
  display: inline-block;
  text-decoration: none;
  outline: none;
}
@media (min-width: 992px) {
  .--side .c-button__more {
    padding-right: 137px;
  }
}
.--side .c-button__more::before,
.--side .c-button__more::after {
  content: "";
  position: absolute;
  z-index: 1;
  bottom: 20px;
  left: 105px;
  background: #5d595a;
  width: 24%;
  height: 1px;
  transition: all 0.3s ease-in-out;
}
@media (min-width: 992px) {
  .--side .c-button__more::before,
  .--side .c-button__more::after {
    bottom: 23px;
    left: 129px;
  }
}
.--side .c-button__more.--white::before,
.--side .c-button__more.--white::after {
  /*線の形状*/
  background: #fff;
}
.--side .c-button__more::after {
  width: 0;
  background: #ffffff;
}
.--side .c-button__more.--white::after {
  background: #000000;
}
.--side .c-button__more:hover::after {
  width: 24%;
}
.--side .c-button__more span {
  position: relative;
}
.--side .c-button__more span::after {
  content: "";
  /*絶対配置で矢印の位置を決める*/
  position: absolute;
  top: 0.6em;
  right: -36px;
  /*矢印の形状*/
  width: 5px;
  height: 5px;
  border-top: 1px solid #231815;
  border-right: 1px solid #231815;
  transform: rotate(45deg);
  /*アニメーションの指定*/
  transition: all 0.3s;
}
.--side .c-button__more.--white span::after {
  border-color: #fff;
}
.--side .c-button__more:hover span::after {
  right: -41px;
}

/***************
*トップページ「　　」セクション
****************/
.p-top__mv {
  padding: 300px 20px 100px;
  background-image: url();
  background-size: cover;
  margin: 80px auto 0 0;
}
@media (min-width: 992px) {
  .p-top__mv {
    padding: 300px 0 150px;
    max-width: none;
  }
}
.p-top__mv.--1 {
  background-image: url();
}

@font-face {
  font-family: "ShinMGoProR";
  src: url("../font/shinmgopro-r.otf") format("opentype");
}
@font-face {
  font-family: "ShinMGoProB";
  src: url("../font/shinmgopro-b.otf") format("opentype");
}
.mv {
  background-color: #FEFBE9;
  padding-top: 25%;
}

@media (min-width: 768px) {
  .mv {
    padding-top: 67px;
  }
}
.mv__inner {
  position: relative;
  background-color: #ffffff;
  padding-top: 3.125%;
}

@media (min-width: 768px) {
  .mv__inner {
    padding-top: 57px;
  }
}
/**
.mv__inner::before {
  content: "";
  position: absolute;
  display: block;
 // background-image: url(../img/bg_sp.png);
  background-repeat: no-repeat;
  background-size: 100%;
  width: 100%;
  aspect-ratio: 957/359;
  top: 0;
  left: 0;
}
@media (min-width: 768px) {
  .mv__inner::before {
  //  background-image: url(../img/bg_pc.png);
    width: max(100%, 1336px);
    aspect-ratio: 2980/359;
    left: 50%;
    margin-left: calc(max(100%, 1336px) / -2);
  }
}**/
@media (min-width: 768px) {
  .mv__inner::after {
    content: "";
    position: absolute;
    display: block;
    background-image: url(../img/bg_pc_02.png);
    background-repeat: no-repeat;
    background-size: 100%;
    width: 100%;
    aspect-ratio: 2672/360;
    bottom: clamp(43px, 7.4652777778vw, 86px);
    left: 0;
    z-index: 2;
  }
}
.mv__contents {
  position: relative;
  max-width: 914px;
  padding-right: clamp(11px, 1.9097222222vw, 22px);
  padding-left: clamp(10px, 1.7361111111vw, 20px);
  margin-right: auto;
  margin-left: auto;
}

.mv__list {
  margin-bottom: clamp(17px, 2.9513888889vw, 34px);
}

@media (min-width: 768px) {
  .mv__list {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    -moz-column-gap: clamp(13.5px, 2.34375vw, 27px);
    column-gap: clamp(13.5px, 2.34375vw, 27px);
    margin-bottom: clamp(6px, 1.0416666667vw, 12px);
  }
}
.mv__item--01 {
  width: 43.48%;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 768px) {
  .mv__item--01 {
    flex: 1 1 270px;
  }
}
@media (min-width: 768px) {
  .mv__item--02 {
    flex: 1 1 575px;
  }
}
.mv__list02 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  -moz-column-gap: clamp(33px, 5.7291666667vw, 66px);
  column-gap: clamp(33px, 5.7291666667vw, 66px);
}

@media (max-width: 767px) {
  .mv__list02 {
    margin-top: clamp(-26px, -2.2569444444vw, -13px);
  }
}
@media (min-width: 768px) {
  .mv__list02 {
    -moz-column-gap: clamp(12.5px, 2.1701388889vw, 25px);
    column-gap: clamp(12.5px, 2.1701388889vw, 25px);
  }
}
@media (max-width: 767px) {
  .mv__item02 {
    flex: 1 1 133px;
  }
}
@media (min-width: 768px) {
  .mv__item02--02 {
    flex: 1 1 274px;
    margin-top: -92px;
  }
}
@media (min-width: 768px) {
  .mv__item02--03 {
    flex: 1 1 276px;
    margin-top: -3px;
  }
}
.mv__title {
  position: relative;
  width: 70.235%;
  margin: 0px auto 0;
  z-index: 2;
}

@media (min-width: 768px) {
  .mv__title {
    width: 50.115%;
  }
}
.mv__image {
  position: relative;
  width: 148.495%;
  margin-top: clamp(-8px, -0.6944444444vw, -4px);
  margin-left: -24.245%;
  z-index: 1;
}

@media (min-width: 768px) {
  .mv__image {
    width: 164.377%;
    margin-top: clamp(-177px, -8.340278vw, -40px);
    margin-left: -33.1885%;
  }
}
@media (min-width: 768px) {
  .mv__image {
    width: 141.377%;
    margin-top: clamp(-50px, -4.3402777778vw, -25px);
    margin-left: -21.1885%;
  }
}
@media (min-width: 768px) {
  .mv__inner::after {
    content: "";
    position: absolute;
    display: block;
    background-image: url(../img/bg_pc_02.png);
    background-repeat: no-repeat;
    background-size: 100%;
    width: 100%;
    aspect-ratio: 2672/227;
    bottom: clamp(0px, 7.4652777778vw, 0px);
    left: 0;
    z-index: 2;
  }
}
@media (min-width: 768px) {
  .mv__image {
    width: 150.377%;
    margin-top: clamp(-269px, -17.340278vw, -51px);
    margin-left: -25.1885%;
  }
}
@media (min-width: 768px) {
  .mv__list {
    display: block;
  }
}
.mv__item--01 {
  width: 63.48%;
  margin-right: auto;
  margin-left: auto;
}

.mv-sp {
  display: block;
}
@media (min-width: 992px) {
  .mv-sp {
    display: none;
  }
}

.mv-pc {
  display: none;
}
@media (min-width: 992px) {
  .mv-pc {
    display: block;
  }
}

/***************
*トップページ「　ニュース　」セクション
****************/
.news-section {
  background-color: #fefbe9;
  padding: 20px 0 30px;
}
@media (min-width: 992px) {
  .news-section {
    padding: 80px 0 30px;
  }
}

.top-inner {
  width: 93%;
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
}
@media (min-width: 992px) {
  .top-inner {
    width: 80%;
    max-width: 900px;
  }
}

.--pdb {
  margin-bottom: 20px;
}
@media (min-width: 992px) {
  .--pdb {
    margin-bottom: 0;
  }
}

/***************
*トップページ「　CTA　」セクション
****************/
.cta-section {
  padding: 10px 0 20px;
}
.cta-section.--cta1 {
  background-color: #fefbe9;
  padding: 10px 0 50px;
}

.bg-white {
  background-color: #fff;
  padding: 0px 50px 30px;
}
@media (min-width: 992px) {
  .bg-white {
    padding: 0px 50px 60px;
  }
}

.cta2-inner {
  margin: 20px auto -30px;
}

.cta-bg {
  background-color: #fff88e;
  padding: 20px;
  border-radius: 15px;
}

.cta-title {
  display: block;
  margin: 5px auto 7px;
  width: 80%;
}
@media (min-width: 992px) {
  .cta-title {
    width: 80%;
    margin: 10px auto 0px;
  }
}

.cta-tel {
  display: block;
  padding: 20px 0;
}
@media (min-width: 992px) {
  .cta-tel {
    padding-right: 20px;
  }
}

.cta-sp-flex {
  display: flex;
}

@media (min-width: 992px) {
  .cta-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}

.cta-mail {
  display: block;
  padding: 0px 24px 0 10px;
  transition: all 0.2s linear;
}
.cta-mail:hover {
  transform: scale(1.02, 1.02);
}
@media (min-width: 992px) {
  .cta-mail {
    padding: 20px;
  }
}

a.opa {
  display: block;
  height: 100%;
  width: 100%;
}
a.opa:hover {
  opacity: 1;
}

.cta-item {
  padding: 10px 5px;
}
.cta-item.--1 {
  padding: 0;
}
@media (min-width: 992px) {
  .cta-item.--1 {
    padding: 10px 5px;
  }
}

/***************
*トップページ「　在宅でも、工賃を得ながら
自分のペースで就労支援をご利用できます　」セクション
****************/
.office {
  background-color: #FEFBE9;
}
@media (min-width: 992px) {
  .office {
    padding: 0 0 0px;
  }
}

.office:nth-last-of-type(n+2) {
  padding-bottom: clamp(41px, 9.2881944444vw, 107px);
}

.office__inner {
  position: relative;
  width: min(100%, 1040px);
  padding: 0 clamp(10px, 1.7361111111vw, 20px);
  margin: 0 auto;
  padding-top: 12.5vw;
  margin-right: auto;
  margin-left: auto;
}

@media (max-width: 767px) {
  .office__inner {
    padding-right: 0;
    padding-left: 0;
  }
}
@media (min-width: 768px) {
  .office__inner {
    padding-top: calc(min(100vw - clamp(20px, 3.4722222222vw, 40px), 1000px) / 1437 * 181);
  }
}
.office__inner::before {
  content: "";
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  top: 1px;
  left: 0px;
  /*0*/
  border-top: 0;
  border-right: 50vw solid transparent;
  border-bottom: 12.5vw solid #ffffff;
  /*12.5vw*/
  border-left: 50vw solid transparent;
}

@media (768px < width < 1000px) {
  .office__inner::before {
    content: "";
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    top: 1px;
    left: 10px;
    /*0*/
    border-top: 0;
    border-right: 48vw solid transparent;
    border-bottom: 12.1vw solid #ffffff;
    /*12.5vw*/
    border-left: 48vw solid transparent;
  }
}
/**
@media (min-width: 768px) {
    .office__inner::before {
        left: clamp(10px, 1.7361111111vw, 20px);
        border-right: calc(min(100vw - clamp(20px, 3.4722222222vw, 40px), 1000px) / 2) solid transparent;
        border-bottom: calc(min(100vw - clamp(20px, 3.4722222222vw, 40px), 1000px) / 1437 * 181) solid #ffffff;
        border-left: calc(min(100vw - clamp(20px, 3.4722222222vw, 40px), 1000px) / 2) solid transparent;
    }
}**/
@media (min-width: 1000px) {
  .office__inner::before {
    left: clamp(10px, 1.7361111111vw, 20px);
    border-right: calc(min(100vw - clamp(20px, 3.4722222222vw, 40px), 1000px) / 2) solid transparent;
    border-bottom: calc(min(100vw - clamp(20px, 3.4722222222vw, 40px), 1000px) / 1437 * 181) solid #ffffff;
    border-left: calc(min(100vw - clamp(20px, 3.4722222222vw, 40px), 1000px) / 2) solid transparent;
  }
}
.office__inner::after {
  content: "";
  position: absolute;
  display: block;
  background-image: url(../img/img_office.png);
  background-repeat: no-repeat;
  background-size: 100%;
  width: 91.25%;
  aspect-ratio: 292/52;
  top: clamp(7px, 1.2152777778vw, 14px);
  left: 50%;
  margin-left: -45.625%;
}

@media (min-width: 768px) {
  .office__inner::after {
    width: 75.866%;
    top: clamp(28.5px, 4.2534722222vw, 49px);
    margin-left: -37.933%;
  }
}
.office__contents {
  background-color: #ffffff;
  width: 100%;
  padding-right: clamp(10px, 1.7361111111vw, 20px);
  padding-bottom: clamp(27px, 5.2083333333vw, 60px);
  padding-left: clamp(10px, 1.7361111111vw, 20px);
}

@media (min-width: 768px) {
  .office__contents {
    padding-right: clamp(25px, 4.3402777778vw, 50px);
    padding-left: clamp(25px, 4.3402777778vw, 50px);
  }
}
.office__title {
  position: relative;
  font-size: clamp(1.3rem, 0.65rem + 2.03125vw, 3.9rem);
  font-weight: 700;
  line-height: clamp(2.2rem, 1.1rem + 3.4375vw, 6.6rem);
  letter-spacing: clamp(0.75px, 0.1302083333vw, 1.5px);
  text-align: center;
  padding-top: clamp(29px, 5.0347222222vw, 58px);
  margin-bottom: clamp(12px, 2.0833333333vw, 24px);
}

@media (min-width: 768px) {
  .office__title {
    font-size: clamp(0.95rem, 0.7125rem + 0.7421875vw, 1.9rem);
    line-height: clamp(1.15rem, 0.8625rem + 0.8984375vw, 2.3rem);
    padding-top: clamp(3px, 0.5208333333vw, 6px);
  }
}
.office__title::before {
  content: "";
  position: absolute;
  display: block;
  background-repeat: no-repeat;
  background-size: 100%;
  width: 10.335%;
  aspect-ratio: 31/27;
  top: calc((100vw - clamp(20px, 3.4722222222vw, 40px)) * 0.10335 / 31 * -27 + clamp(19px, 3.2986111111vw, 38px));
  left: 50%;
  margin-left: -5.165%;
}

@media (min-width: 768px) {
  .office__title::before {
    width: 5.335%;
    top: calc(min(100vw - clamp(70px, 12.1527777778vw, 140px), 900px) * 0.05335 / 31 * -27 - clamp(8.5px, 1.4756944444vw, 17px));
    margin-left: -2.6685%;
  }
}
.office__title picture {
  display: block;
  padding-top: clamp(2px, 0.5208333333vw, 6px);
  margin-right: auto;
  margin-left: auto;
}

.office__text {
  font-size: clamp(1.8rem, 0.9rem + 2.8125vw, 5.4rem);
  font-weight: 700;
  line-height: clamp(2.6rem, 1.3rem + 4.0625vw, 7.8rem);
  letter-spacing: clamp(0.75px, 0.1302083333vw, 1.5px);
  text-align: center;
  margin-bottom: clamp(19px, 2.8645833333vw, 33px);
}

@media (min-width: 768px) {
  .office__text {
    font-size: clamp(1.3rem, 0.975rem + 1.015625vw, 2.6rem);
    line-height: clamp(2rem, 1.5rem + 1.5625vw, 4rem);
  }
}
.office__features {
  font-size: clamp(1.4rem, 0.7rem + 2.1875vw, 4.2rem);
  font-weight: 700;
  line-height: clamp(2.4rem, 1.2rem + 3.75vw, 7.2rem);
  letter-spacing: clamp(0.75px, 0.1302083333vw, 1.5px);
  text-align: center;
  margin-bottom: clamp(4px, 1.0416666667vw, 12px);
}

@media (min-width: 768px) {
  .office__features {
    font-size: clamp(1rem, 0.75rem + 0.78125vw, 2rem);
    line-height: clamp(1.75rem, 1.3125rem + 1.3671875vw, 3.5rem);
  }
}
.office__features__list {
  margin-bottom: clamp(29px, 3.0381944444vw, 35px);
}

@media (min-width: 768px) {
  .office__features__list {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-right: auto;
    margin-left: auto;
  }
}
.office__features__item {
  position: relative;
  font-size: clamp(1.4rem, 0.7rem + 2.1875vw, 4.2rem);
  line-height: clamp(2rem, 1rem + 3.125vw, 6rem);
  padding-left: 1.5em;
}

@media (min-width: 768px) {
  .office__features__item {
    font-size: clamp(0.9rem, 0.675rem + 0.703125vw, 1.8rem);
    line-height: clamp(1.65rem, 1.2375rem + 1.2890625vw, 3.3rem);
  }
}
.office__features__item::before {
  content: "";
  position: absolute;
  display: block;
  content: "○";
  top: 0;
  left: 0;
}

.office__gallery {
  display: grid;
  -moz-column-gap: clamp(10.5px, 1.4322916667vw, 16.5px);
  column-gap: clamp(10.5px, 1.4322916667vw, 16.5px);
  row-gap: clamp(13px, 1.5625vw, 18px);
  margin-bottom: clamp(13px, 1.4756944444vw, 17px);
}

@media (min-width: 768px) {
  .office__gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}
.office__gallery img {
  border-radius: clamp(10px, 1.3020833333vw, 15px);
}

.office__gallery02 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -moz-column-gap: clamp(14px, 1.7361111111vw, 20px);
  column-gap: clamp(14px, 1.7361111111vw, 20px);
  row-gap: clamp(11px, 1.9097222222vw, 22px);
  margin-bottom: clamp(26px, 2.6909722222vw, 31px);
}

@media (min-width: 768px) {
  .office__gallery02 {
    grid-template-columns: repeat(4, 1fr);
  }
}
.office__gallery02 img {
  border-radius: clamp(10px, 1.3020833333vw, 15px);
}

.office__map {
  margin-bottom: clamp(15px, 2.6041666667vw, 30px);
}

@media (min-width: 768px) {
  .office__map {
    margin-bottom: clamp(4.5px, 0.78125vw, 9px);
  }
}
.office__map iframe {
  width: 100%;
  height: clamp(200px, 30.9027777778vw, 356px);
  border: none;
}

.office__address {
  text-align: center;
  letter-spacing: clamp(0.75px, 0.1302083333vw, 1.5px);
  margin-bottom: clamp(5px, 0.8680555556vw, 10px);
}

@media (min-width: 768px) {
  .office__address {
    display: flex;
    justify-content: center;
    align-items: center;
    -moz-column-gap: clamp(8.5px, 1.4756944444vw, 17px);
    column-gap: clamp(8.5px, 1.4756944444vw, 17px);
    margin-bottom: clamp(28.5px, 4.9479166667vw, 57px);
  }
}
.office__address__title {
  font-size: clamp(1.2rem, 0.6rem + 1.875vw, 3.6rem);
  line-height: clamp(2rem, 1rem + 3.125vw, 6rem);
  border-radius: clamp(3px, 0.4340277778vw, 5px);
  padding-right: clamp(19px, 2.7777777778vw, 32px);
  padding-left: clamp(19px, 2.7777777778vw, 32px);
}

@media (max-width: 767px) {
  .office__address__title {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-right: auto;
    margin-bottom: clamp(4px, 0.6944444444vw, 8px);
    margin-left: auto;
  }
}
@media (min-width: 768px) {
  .office__address__title {
    font-size: clamp(0.8rem, 0.6rem + 0.625vw, 1.6rem);
    line-height: clamp(1.45rem, 1.0875rem + 1.1328125vw, 2.9rem);
  }
}
.office__address__contents {
  font-size: clamp(1rem, 0.5rem + 1.5625vw, 3rem);
  line-height: clamp(1.8rem, 0.9rem + 2.8125vw, 5.4rem);
}

@media (min-width: 768px) {
  .office__address__contents {
    font-size: clamp(0.8rem, 0.6rem + 0.625vw, 1.6rem);
    line-height: clamp(2rem, 1.5rem + 1.5625vw, 4rem);
  }
}
.office__contact__title {
  font-size: clamp(1.3rem, -0.1857142857rem + 4.6428571429vw, 2.6rem);
  font-weight: 700;
  line-height: clamp(1.6rem, -0.2285714286rem + 5.7142857143vw, 3.2rem);
  text-align: center;
  border-top-width: clamp(0.3px, 0.0868055556vw, 1px);
  border-bottom-width: clamp(0.3px, 0.0868055556vw, 1px);
  margin-bottom: clamp(8px, 2.0833333333vw, 24px);
}

@media (max-width: 767px) {
  .office__contact__title {
    padding-top: clamp(2px, 0.3472222222vw, 4px);
    padding-bottom: clamp(2px, 0.3472222222vw, 4px);
  }
}
@media (min-width: 768px) {
  .office__contact__title {
    font-size: clamp(1.15rem, 0.8625rem + 0.8984375vw, 2.3rem);
    line-height: clamp(1.95rem, 1.4625rem + 1.5234375vw, 3.9rem);
    letter-spacing: clamp(0.75px, 0.1302083333vw, 1.5px);
  }
}
.office__contact {
  padding-right: clamp(11px, 2.4305555556vw, 28px);
  padding-left: clamp(11px, 2.4305555556vw, 28px);
}

@media (min-width: 768px) {
  .office__contact {
    display: flex;
    justify-content: center;
    align-items: center;
    -moz-column-gap: clamp(15px, 2.1701388889vw, 25px);
    column-gap: clamp(15px, 2.1701388889vw, 25px);
  }
}
.office__contact__item {
  position: relative;
}

@media (max-width: 767px) {
  .office__contact__item {
    width: min(100%, 530px);
    margin-right: auto;
    margin-left: auto;
  }
}
@media (max-width: 767px) {
  .office__contact__item:nth-last-of-type(n+2) {
    margin-bottom: clamp(8px, 2.6041666667vw, 30px);
  }
}
.office__contact__item::before {
  content: "";
  position: absolute;
  display: block;
  width: clamp(30px, 4.4270833333vw, 51px);
  height: clamp(30px, 4.4270833333vw, 51px);
  top: 50%;
  left: 0;
  border-radius: 50%;
  margin-top: clamp(-25.5px, -2.2135416667vw, -15px);
}

.office__contact__item::after {
  content: "";
  position: absolute;
  display: block;
  background-repeat: no-repeat;
  background-size: 100%;
  top: 50%;
}

.office__contact__item--tel {
  padding-left: clamp(36px, 5.2951388889vw, 61px);
}

@media (min-width: 768px) {
  .office__contact__item--tel {
    flex: 1 1 449px;
  }
}
.office__contact__item--tel::after {
  background-image: url(../img/icon_phone_w.svg);
  width: clamp(19px, 2.7777777778vw, 32px);
  aspect-ratio: 1/1;
  left: clamp(5.5px, 0.8246527778vw, 9.5px);
  margin-top: clamp(-16px, -1.3888888889vw, -9.5px);
}

.office__contact__item--mail {
  padding-left: clamp(16px, 2.4305555556vw, 28px);
}

@media (min-width: 768px) {
  .office__contact__item--mail {
    flex: 1 1 366px;
  }
}
.office__contact__item--mail::after {
  background-image: url(../img/icon_mail_w.svg);
  width: clamp(18px, 2.6041666667vw, 30px);
  aspect-ratio: 18/13;
  left: clamp(6px, 0.9114583333vw, 10.5px);
  margin-top: calc(clamp(18px, 2.6041666667vw, 30px) / 18 * 13 / -2);
}

.office__contact__item--mail a {
  font-size: clamp(1.1rem, -0.1571428571rem + 3.9285714286vw, 2.2rem);
  font-weight: 700;
  line-height: clamp(1.9rem, -0.2714285714rem + 6.7857142857vw, 3.8rem);
  text-align: center;
  border-width: clamp(2px, 0.2604166667vw, 3px);
  border-radius: clamp(3px, 0.4340277778vw, 5px);
  padding-top: clamp(2.5px, 0.390625vw, 4.5px);
  padding-bottom: clamp(2.5px, 0.390625vw, 4.5px);
}

@media (min-width: 768px) {
  .office__contact__item--mail a {
    font-size: clamp(0.85rem, 0.6375rem + 0.6640625vw, 1.7rem);
    line-height: clamp(1.45rem, 1.0875rem + 1.1328125vw, 2.9rem);
    padding-left: clamp(9.5px, 1.1284722222vw, 13px);
  }
}
.office__contact__item--mail a span {
  position: relative;
  padding-right: clamp(8px, 1.0416666667vw, 12px);
}

.office__contact__item--mail a span::after {
  content: "";
  position: absolute;
  display: block;
  background-repeat: no-repeat;
  background-size: 100%;
  width: clamp(6px, 0.8680555556vw, 10px);
  aspect-ratio: 7/10;
  top: 50%;
  right: 0;
  margin-top: calc(clamp(6px, 0.8680555556vw, 10px) / 7 * 10 / -2);
}

.office__contact__tel__text {
  font-size: clamp(1.1rem, -0.1571428571rem + 3.9285714286vw, 2.2rem);
  font-weight: 700;
  line-height: clamp(1.7rem, -0.2428571429rem + 6.0714285714vw, 3.4rem);
}

@media (min-width: 768px) {
  .office__contact__tel__text {
    font-size: clamp(0.75rem, 0.5625rem + 0.5859375vw, 1.5rem);
    line-height: clamp(1.35rem, 1.0125rem + 1.0546875vw, 2.7rem);
  }
}
.office__contact__box {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  -moz-column-gap: clamp(9px, 1.3020833333vw, 15px);
  column-gap: clamp(9px, 1.3020833333vw, 15px);
}

.office__contact__office {
  flex: 0 1 clamp(94px, 26.0416666667vw, 300px);
  color: #ffffff;
  font-size: clamp(0.9rem, -0.1285714286rem + 3.2142857143vw, 1.8rem);
  font-weight: 600;
  line-height: clamp(1.5rem, -0.2142857143rem + 5.3571428571vw, 3rem);
  text-align: center;
  border-radius: clamp(4px, 0.5208333333vw, 6px);
}

@media (min-width: 768px) {
  .office__contact__office {
    flex: 0 1 clamp(94px, 13.8888888889vw, 160px);
    font-size: clamp(0.65rem, 0.4875rem + 0.5078125vw, 1.3rem);
    line-height: clamp(1rem, 0.75rem + 0.78125vw, 2rem);
  }
}
.office__contact__tel {
  flex: 1 1;
  font-family: "ShinMGoProB", sans-serif;
  font-size: clamp(1.5rem, -0.2142857143rem + 5.3571428571vw, 3rem);
  line-height: clamp(1.9rem, -0.2714285714rem + 6.7857142857vw, 3.8rem);
}

@media (min-width: 768px) {
  .office__contact__tel {
    font-size: clamp(1.15rem, 0.8625rem + 0.8984375vw, 2.3rem);
    line-height: clamp(1.45rem, 1.0875rem + 1.1328125vw, 2.9rem);
  }
}
.office1 .office__title::before {
  background-image: url(../img/icon_house_gr.svg);
}

.office1 .office__title picture {
  width: 68.67%;
}

@media (min-width: 768px) {
  .office1 .office__title picture {
    width: 35.668%;
  }
}
.office1 .office__contact__title {
  border-top-color: #93BC3B;
  border-bottom-color: #93BC3B;
}

.office1 .office__title span,
.office1 .office__contact__title,
.office1 .office__contact,
.office1 .office__contact a {
  color: #93BC3B;
}

.office1 .office__contact__item::before,
.office1 .office__contact__office {
  background-color: #93BC3B;
}

.office1 .office__address__title {
  background-color: #E1ECD0;
}

.office1 .office__contact__item--mail a {
  border-color: #93BC3B;
}

.office1 .office__contact__item--mail a span::after {
  background-image: url(../img/icon_arrow_gr.svg);
}

.office2 .office__title::before {
  background-image: url(../img/icon_house_bl.svg);
}

.office2 .office__title picture {
  width: 54.335%;
}

@media (min-width: 768px) {
  .office2 .office__title picture {
    width: 32.668%;
  }
}
.office2 .office__contact__title {
  border-top-color: #37A6B0;
  border-bottom-color: #37A6B0;
}

.office2 .office__title span,
.office2 .office__contact__title,
.office2 .office__contact,
.office2 .office__contact a {
  color: #37A6B0;
}

.office2 .office__contact__item::before,
.office2 .office__contact__office {
  background-color: #37A6B0;
}

.office2 .office__address__title {
  background-color: #DEEDEC;
}

.office2 .office__contact__item--mail a {
  border-color: #37A6B0;
}

.office2 .office__contact__item--mail a span::after {
  background-image: url(../img/icon_arrow_bl.svg);
}

.office3 .office__title::before {
  background-image: url(../img/icon_house_o.svg);
}

.office3 .office__title picture {
  width: 54.335%;
}

@media (min-width: 768px) {
  .office3 .office__title picture {
    width: 32.668%;
  }
}
.office3 .office__contact__title {
  border-top-color: #DD960F;
  border-bottom-color: #DD960F;
}

.office3 .office__title span,
.office3 .office__contact__title,
.office3 .office__contact,
.office3 .office__contact a {
  color: #DD960F;
}

.office3 .office__contact__item::before,
.office3 .office__contact__office {
  background-color: #DD960F;
}

.office3 .office__address__title {
  background-color: #F9E8AB;
}

.office3 .office__contact__item--mail a {
  border-color: #DD960F;
}

.office3 .office__contact__item--mail a span::after {
  background-image: url(../img/icon_arrow_o.svg);
}

.office-flex {
  display: block;
}
@media (min-width: 992px) {
  .office-flex {
    display: flex;
  }
  .office-flex .office__gallery__item {
    flex: 1;
  }
}
@media (min-width: 992px) and (min-width: 992px) {
  .office-flex .office__map {
    flex: 2;
    margin-left: 30px;
  }
  .office-flex .office__map iframe {
    height: 100%;
  }
}

.office-title {
  display: block;
  margin: 85px 0 30px;
}

/***************
*トップページ「　　」セクション
****************/
/***************
*トップページ「　　」セクション
****************/
/***************
*トップページ「 　」セクション
****************/
/***************
*トップページ「　　」セクション
****************/
/***************
*トップページ「　　」セクション
****************/
/***************
*トップページ「　　」セクション
****************/
/***************
*トップページ「　CONTACT　」セクション
****************/
.p-s16__contact-section {
  position: relative;
}

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

.p-contact__form-section {
  color: #292929;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}
@media (min-width: 992px) {
  .p-contact__form-section {
    width: 80%;
  }
}

input[type=text],
textarea,
select {
  color: #292929;
  font-size: 15px;
  background-color: #ffffff;
  padding: 13px 15px;
  margin: 5px 0;
  border: 3px solid #231815;
  font-size: 14px;
  width: 100%;
  font-weight: 500;
  box-shadow: inset 1px 1px 3px rgb(220, 220, 220), inset -1px -1px 3px rgb(220, 220, 220);
}
input[type=text]:focus,
textarea:focus,
select:focus {
  border: 1px solid #4877B0;
  outline: 0;
}
input[type=text]::placeholder,
textarea::placeholder,
select::placeholder {
  color: #999999;
  font-weight: 400;
}

th {
  font-size: 15px;
  font-weight: 500;
  padding: 10px;
  background-color: #eef5dd;
  border: 3px solid #231815;
}
@media (min-width: 992px) {
  th {
    font-size: 16px;
  }
}

label.required {
  position: relative;
}
label.required::after {
  content: "必 須";
  color: #ffffff;
  background-color: #EB5D35;
  position: relative;
  font-size: 11px;
  font-weight: 500;
  padding: 1px 5px 2px;
  margin-left: 4px;
}
label.required.--accept {
  display: inline-block;
}
label.required.--accept::after {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -10px;
}

label.non-required {
  position: relative;
}
label.non-required::after {
  content: "任 意";
  color: #ffffff;
  background-color: #7d7d7d;
  position: relative;
  font-size: 11px;
  font-weight: 500;
  padding: 1px 5px 2px;
  margin-left: 4px;
}

.p-postal-code {
  padding-left: 40px;
  width: 100%;
  position: relative;
}
.p-postal-code::before {
  content: "〒";
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
}
@media (min-width: 992px) {
  .p-postal-code {
    width: 300px;
  }
}

.contact-section td {
  padding: 7px 6px;
  border: 3px solid #231815;
  border-top: none;
}
@media (min-width: 992px) {
  .contact-section td {
    border-top: 3px solid #231815;
  }
}
.contact-section .no-border {
  border-top: none;
}
@media (min-width: 992px) {
  .contact-section .no-border {
    border-top: 3px solid #231815;
  }
}

/*
input[type=submit] {
    border: none;
    background-color: #696969;
    width: 100%;
    margin: 50px auto;
    display: block;
    color: #fff;
    font-weight: 400;
    transition: all 0.2s linear 0s;
    padding: 18px 15px;
    border: 1px solid #696969;

    &:hover {
        background-color: #ffffff;
        color: #696969;
        border: 1px solid #696969;
    }

    @include f.mq('pc') {
        font-size: 18px;
        margin: 0px auto;
    }
}*/
textarea {
  margin: 0;
  width: 100%;
  min-height: 100px;
}
@media (min-width: 992px) {
  textarea {
    min-height: 230px;
  }
}

/***********************************************
*チェックボックス*
************************************************/
.wpcf7-checkbox {
  display: block;
}
@media (min-width: 992px) {
  .wpcf7-checkbox {
    display: flex;
  }
}
.wpcf7-checkbox .wpcf7-list-item {
  margin: 0;
}

.wpcf7-form-control-wrap {
  display: block;
}

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

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

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

.wpcf7-list-item-label {
  display: block;
  position: relative;
  font-size: 16px;
  padding: 10px 30px;
  transition: all 0.2s linear 0s;
}
@media (min-width: 992px) {
  .wpcf7-list-item-label {
    padding-left: 36px;
  }
}

@media (min-width: 992px) {
  .wpcf7-checkbox {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
  }
}

.wpcf7-list-item-label::before {
  content: "";
  position: absolute;
  top: 9px;
  /* 上からの位置 */
  left: 0;
  height: 22px;
  /* 大きさ */
  width: 22px;
  /* 大きさ */
  border: solid 1px #999999;
  /* 線 */
  border-radius: 5px;
  box-sizing: border-box;
  background: #fff;
  background-color: #fafafa;
  transition: all 0.2s linear 0s;
}
@media (min-width: 992px) {
  .wpcf7-list-item-label::before {
    width: 30px;
    height: 30px;
  }
}

input[type=checkbox]:checked + .wpcf7-list-item-label::after {
  content: "";
  position: absolute;
  top: 12px;
  left: 8px;
  /* チェックの位置 */
  width: 5px;
  height: 9px;
  /* チェックの大きさ */
  border-right: solid 2px #000000;
  border-bottom: solid 2px #000000;
  transform: rotate(45deg);
}
@media (min-width: 992px) {
  input[type=checkbox]:checked + .wpcf7-list-item-label::after {
    top: 17px;
    left: 12px;
  }
}

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

.p-contact__privacy-note {
  font-weight: 400;
  margin: 30px 0 0;
}
.p-contact__privacy-note p {
  font-size: 14px;
}

/***********************************************
お問合せ、確認・thanks
************************************************/
.p-contact__confirm-btn-flex {
  display: block;
}
@media (min-width: 992px) {
  .p-contact__confirm-btn-flex {
    display: flex;
    flex-direction: row-reverse;
    margin-bottom: 60px;
  }
}

.wpcf7-previous {
  border: 1px solid #292929;
  background-color: #fff;
  width: 300px;
  border-radius: 40px;
  margin: -30px auto 76px;
  display: block;
  color: #292929;
  font-weight: 400;
  transition: all 0.2s linear 0s;
  padding: 18px 15px;
}
.wpcf7-previous:hover:hover {
  background-color: #292929;
  color: #fff;
  border: 1px solid #292929;
}
@media (min-width: 992px) {
  .wpcf7-previous {
    font-size: 18px;
    margin: 50px auto;
  }
}

/***********************************************
thanks
************************************************/
.p-contact__indicator-thanks {
  width: 100%;
  margin: 50px auto 30px;
}
@media (min-width: 992px) {
  .p-contact__indicator-thanks {
    width: 460px;
    margin: 90px auto 0;
  }
}

.p-contact__thanks-title {
  font-size: 20px;
  text-align: center;
  margin: 25px 0 30px;
}
@media (min-width: 992px) {
  .p-contact__thanks-title {
    font-size: 24px;
    margin: 70px 0 40px;
  }
}

.p-contact__back-btn {
  font-size: 14px;
  display: block;
  text-align: center;
  border: 1px solid #292929;
  background-color: #fff;
  width: 300px;
  border-radius: 40px;
  display: block !important;
  color: #292929;
  font-weight: 400;
  transition: all 0.2s linear 0s;
  padding: 18px 15px;
  margin: 60px auto 80px;
}
.p-contact__back-btn:hover {
  background-color: #BB77B2;
  color: #fff;
  border: 1px solid #BB77B2;
}
@media (min-width: 992px) {
  .p-contact__back-btn {
    font-size: 18px;
    margin: 60px auto 120px;
  }
}

.p-s16__contact-content-bar {
  border-top: 1px solid #707070;
  border-bottom: 1px solid #707070;
  padding: 30px 0 0px;
  margin: 30px auto 50px;
}
@media (min-width: 992px) {
  .p-s16__contact-content-bar {
    padding: 50px 0 70px;
    margin: 50px auto;
  }
}

.p-s16__tel {
  width: 200px;
  display: block;
  margin: 40px auto 0;
}
@media (min-width: 992px) {
  .p-s16__tel {
    width: 500px;
  }
}

.c-inner__contact {
  width: 100%;
}
@media (min-width: 992px) {
  .c-inner__contact {
    width: 80%;
    margin: 0 auto;
  }
}

.p-s16__top-texts {
  font-size: 15px;
  line-height: 1.75;
  padding: 10px 0;
}
@media (min-width: 992px) {
  .p-s16__top-texts {
    font-size: 16px;
  }
}

.p-s16__required-text {
  font-size: 80%;
  padding: 10px 0 30px;
}
.p-s16__required-text em {
  color: #FF0000;
}

.p-s16__thanks-img {
  height: 100%;
  padding-top: 100vw;
  background-image: url(../img/thanks.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
@media (min-width: 992px) {
  .p-s16__thanks-img {
    width: 100%;
    padding-top: 100vw;
  }
}

.contact-title {
  margin: 140px 0 60px;
  display: block;
}
@media (min-width: 992px) {
  .contact-title {
    margin: 150px 0 70px;
  }
}

.content-title {
  width: 45%;
  min-width: 190px;
  display: block;
  margin: 30px auto 0px;
}
@media (min-width: 992px) {
  .content-title {
    width: 50%;
    max-width: 800px;
    margin: 30px auto 15px 0;
  }
}
.content-title.--info {
  width: 30%;
}
@media (min-width: 992px) {
  .content-title.--info {
    width: 40%;
  }
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 30px;
}

th,
td {
  padding: 20px 0;
  font-size: 16px;
  width: 100%;
  line-height: 1.5;
}
@media (min-width: 992px) {
  th,
  td {
    font-size: 18px;
  }
}

th {
  text-align: center;
  display: block;
  padding: 10px 0;
}
th span {
  display: inline-block;
  width: 100%;
  padding: 10px 5px;
  background-color: #E5E5E5;
  letter-spacing: 0.1em;
}
@media (min-width: 992px) {
  th {
    display: table-cell;
    vertical-align: top;
    width: 30%;
  }
}

td {
  display: block;
}
@media (min-width: 992px) {
  td {
    display: table-cell;
    width: 70%;
    padding-left: 30px;
    margin: 0;
  }
}

.mail-td td {
  display: block;
}

.agree {
  display: block;
  margin: 50px 0;
}

input[type=image] {
  display: block;
  margin: 30px auto;
  width: 80%;
}

.accept-bg {
  background-color: #f7f8f8;
  padding: 20px 0;
  text-align: center;
}
.accept-bg .wpcf7-form-control-wrap {
  width: 90%;
  margin: 0 auto;
}
.accept-bg .wpcf7-list-item-label {
  font-weight: 700;
  font-size: 18px;
}
@media (min-width: 992px) {
  .accept-bg .wpcf7-list-item-label {
    font-size: 26px;
  }
}

.accept-text {
  width: 90%;
  margin: 0 auto;
  text-align: center;
  font-size: 11px;
  line-height: 1.6;
  padding: 10px 0;
}
@media (min-width: 992px) {
  .accept-text {
    font-size: 16px;
  }
}

.thanks-section {
  text-align: center;
  line-height: 1.75;
}
.thanks-section h2 {
  font-size: 24px;
  padding: 10px 0 30px;
  color: #7FBE26;
}
.thanks-section p {
  font-size: 20px;
  padding: 20px 0 100px;
}

.accept-btn {
  display: block;
  max-width: 600px;
  transition: all 0.2s linear;
}
.accept-btn:hover {
  transform: scale(1.05, 1.05);
}

.back-btn,
.send-btn-small {
  /* width: 196px;
   height: 50px;*/
  width: 162px !important;
  height: 53px !important;
  display: block;
  margin: 0px 10px 25px;
  background: center/contain no-repeat url(../img/back-btn.png);
}

.send-btn-small {
  border: none;
  background: center/contain no-repeat url(../img/send-btn-small.png);
  transition: all 0.2s linear;
}
.send-btn-small:hover {
  transform: scale(1.05, 1.05);
}
.send-btn-small.--contact {
  width: 300px !important;
  height: 80px !important;
  color: transparent;
  display: block;
  margin: 30px auto;
  background: center/contain no-repeat url(../img/button.png);
}
@media (min-width: 992px) {
  .send-btn-small.--contact {
    width: 400px !important;
  }
}

.btn-flex {
  display: flex;
  justify-content: center;
}
