* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Noto Serif JP", serif;
  color: #007e66;
  font-weight: bold;
}
.wrap {
  overflow: hidden;
}
a {
  text-decoration: none;
  color: inherit;
}
li {
  list-style: none;
}
.inline {
  display: inline-block;
}
h1,
h2,
h3,
h4,
h5,
p {
  letter-spacing: 1.2px;
  line-height: 1.7;
}
a {
  letter-spacing: 1.2px;
}
.img-status {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

header {
  width: 100%;
  padding: 0 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100px;
  position: fixed;
  top: 0;
  z-index: 999;
  background-color: transparent;
  color: #fff;
}
.logo img {
  width: 250px;
}
.header-nav ul {
  display: flex;
  align-items: center;
  font-weight: bold;
}
.header-nav li {
  margin-left: 2rem;
}
.header-nav li:not(:last-of-type) a {
  position: relative;
}
.header-nav li:not(:last-of-type) a::after {
  content: "";
  width: 100%;
  height: 2px;
  background-color: #007e66;
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  transform: scale(0);
  transition: transform 0.5s ease;
  transform-origin: right;
}
.header-nav li:not(:last-of-type):hover a::after {
  transform: scale(1);
  transform-origin: left;
}

.contact-btn {
  background-color: #007e66;
  color: #fff;
}
.contact-btn a {
  display: flex;
  padding: 1rem 2rem;
  justify-content: center;
  align-items: center;
}
.contact-btn img {
  width: 17px;
  margin-right: 0.5rem;
}
.more-btnwrap {
  margin-top: 5rem;
}
.under.more-btnwrap {
  margin-top: 1rem;
}
.more-btn {
  width: 250px;
  height: 50px;
  background-color: #007e66;
  color: #fff;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
}
.more-btn img {
  width: 20px;
  margin-left: 0.5rem;
}
header.fixed {
  background-color: #fff;
  color: #007e66;
  animation: header-fade 0.5s ease-in forwards alternate;
  opacity: 0;
}
@keyframes header-fade {
  to {
    opacity: 1;
  }
}
/*fv*/
.fv {
  position: relative;
  height: 100vh;
}
.fv-textwrap{
	position:absolute;
	left:10%;
	bottom:5%;
	z-index:10;
	width:9vw;
	min-width:100px;
	opacity:0;
	transform:translatey(10px);
	animation:fadeup 1s 0.5s ease-in-out alternate forwards;
}
@keyframes fadeup{
	to{
	opacity:1;
	transform:translatey(0);
	}
}
.fv-textwrap img{
	display:block;
	width:100%
}
/*==================================================
スライダーのためのcss
===================================*/
.fv-slider {
  position: relative;
  z-index: 1;
  /*↑z-indexの値をh1のz-indexの値よりも小さくして背景に回す*/
  height: 100vh; /*スライダー全体の縦幅を画面の高さいっぱい（100vh）にする*/
}
/*　背景画像設定　*/

.fv-slider .slider-item01 {
  background: url(../img/fv-img01.jpg);
}

.fv-slider .slider-item02 {
  background: url(../img/fv-img02.jpg);
}

.fv-slider .slider-item03 {
  background: url(../img/fv-img03.jpg);
}

.fv-slider .slider-item {
  width: 100%; /*各スライダー全体の横幅を画面の高さいっぱい（100%）にする*/
  height: 100vh; /*各スライダー全体の縦幅を画面の高さいっぱい（100vh）にする*/
  background-repeat: no-repeat; /*背景画像をリピートしない*/
  background-position: center; /*背景画像の位置を中央に*/
  background-size: cover; /*背景画像が.slider-item全体を覆い表示*/
}

/*矢印の設定*/

.fv-slider .slick-prev,
.fv-slider .slick-next {
  display: none;
}

/*about*/
.about {
  padding: 3rem 0;
  position: relative;
}
.about::before {
  z-index: -1;
  content: "";
  width: 200px;
  height: 100%;
  background: url("../img/bg-washi.jpg") no-repeat center / cover;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0.7;
}

.about-inner {
  width: 90%;
  max-width: 1100px;
  margin: 2rem auto;
}
.section-title {
  font-size: 1rem;
  line-height: 1;
}
.section-title::before {
  content: attr(data-en);
  font-size: 5.5rem;
  color: #007e66;
  text-transform: uppercase;
  letter-spacing: 4px;
  display: block;
  font-family: "Kolker Brush", cursive;
}

.section-title span {
  padding: 0.5rem;
  margin-top: 0.5rem;
  display: inline-block;
}

.about-contents {
  margin-top: 8rem;
}

.about-contents-title {
  font-size: 2.3rem;
  letter-spacing: 3px;
  position: relative;
  z-index: 10;
}
.about-top {
  position: relative;
}
.about-img {
  position: absolute;
  right: 10%;
  top: -50%;
}
.about-img img {
  width: 300px;
}
.about-textwrap {
  margin-top: 6rem;
  font-weight: bold;
  font-size: 1.2rem;
}
.about-contents p + p {
  margin-top: 3rem;
}

.underline {
  border-bottom: 1px solid #000;
  display: inline-block;
  font-size: 1.6rem;
}

/*feature*/
.feature {
  padding: 3rem 0;
  position: relative;
}
.feature-inner {
  width: 90%;
  max-width: 1200px;
  margin: 3rem auto;
}
.feature-title {
  text-align: right;
}

.feature::before {
  z-index: -1;
  content: "";
  width: 200px;
  height: 100%;
  background: url("../img/bg-washi.jpg") no-repeat center / cover;
  position: absolute;
  right: 0;
  top: 0;
  opacity: 0.7;
}
.feature-item {
  display: flex;
}
.feature-contents {
  width: 100%;
  max-width: 1200px;
  margin: 4rem auto;
}

.feature-img {
  width: 50%;
  padding: 1rem;
}
.feature-img img.contain {
  object-fit: contain;
}
.feature-textwrap {
  width: 50%;
  padding: 5rem 3rem 2rem 3rem;
  position: relative;
}
.feature-textwrap::before {
  content: attr(data-num);
  z-index: -1;
  position: absolute;
  right: 0;
  top: -3rem;
  font-size: 10rem;
  font-weight: bold;
  color: #0078182c;
  font-family: "Kolker Brush", cursive;
}
.feature-item-title {
  font-size: 1.5rem;
}
.feature-item-title span {
  background-color: #007e66;
  color: #fff;
  padding: 0.5rem;
  margin-right: 0.5rem;
}
.feature-textwrap p {
  margin-top: 3rem;
  line-height: 2.5;
  font-size: 1.05rem;
}

.feature-item + .feature-item {
  margin-top: 4rem;
}
.feature-item:nth-of-type(even) {
  flex-direction: row-reverse;
}

/*middle*/
.middle {
  height: 400px;
  background: url(../img/middle.jpg) no-repeat center / cover;
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

/*business*/
.business-inner {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}
.business-title {
  position: relative;
  top: -2rem;
}
.business-contents {
  margin-top: 3rem;
  display: flex;
  justify-content: space-between;
}
.business-item {
  width: 49%;
  position: relative;
}
.business-img {
  position: relative;
  overflow: hidden;
}
.business-img img {
  transition: transform 0.5s ease;
}

.business-item.first:hover .business-img img {
  transform: scale(1.1);
}

.business-item.second:hover .business-img img {
  transform: scale(1.1);
}

.business-img {
  width: 100%;
  height: 270px;
  position: relative;
}
.business-img h3 {
  position: absolute;
  bottom: 0;
  left: 0;
  color: #fff;
  text-align: center;
  padding: 0.2rem 0;
  z-index: 2;
  font-size: 1.3rem;
  background-color: #007e66;
  width: 100%;
}

/*blog*/
.blog {
  padding: 4rem 0;
}
.blog-inner {
  max-width: 1200px;
  width: 90%;
  margin: 3rem auto;
}

.blog-title span {
  margin-left: 0.5rem;
}
.blog-contents {
  margin-top: 5rem;
}
.blog-img {
  position: relative;
}
.genre {
  position: absolute;
  left: 0;
  top: 0;
  background-color: #007e66;
  color: #fff;
  padding: 0.2rem 0.5rem;
  font-size: 0.9rem;
}
.blog-textwrap {
  padding: 0.2rem;
}
.blog-item-title {
  font-size: 1rem;
}
.date {
  opacity: 0.7;
  font-size: 0.8rem;
}
/*==================================================
スライダーのためのcss
===================================*/
.slider {
  /*横幅94%で左右に余白を持たせて中央寄せ*/
  width: 94%;
  margin: 0 auto;
}

.slider img {
  width: 100%; /*スライダー内の画像を横幅100%に*/
  height: auto;
}

/*slickのJSで書かれるタグ内、スライド左右の余白調整*/

.slider .slick-slide {
  margin: 0 10px;
}

/*矢印の設定*/

/*戻る、次へ矢印の位置*/
.slick-prev,
.slick-next {
  position: absolute; /*絶対配置にする*/
  top: 42%;
  cursor: pointer; /*マウスカーソルを指マークに*/
  outline: none; /*クリックをしたら出てくる枠線を消す*/
  border-top: 2px solid #666; /*矢印の色*/
  border-right: 2px solid #666; /*矢印の色*/
  height: 15px;
  width: 15px;
}

.slick-prev {
  /*戻る矢印の位置と形状*/
  left: -1.5%;
  transform: rotate(-135deg);
}

.slick-next {
  /*次へ矢印の位置と形状*/
  right: -1.5%;
  transform: rotate(45deg);
}

/*ドットナビゲーションの設定*/

.slick-dots {
  text-align: center;
  margin: 20px 0 0 0;
}

.slick-dots li {
  display: inline-block;
  margin: 0 5px;
}

.slick-dots button {
  color: transparent;
  outline: none;
  width: 8px; /*ドットボタンのサイズ*/
  height: 8px; /*ドットボタンのサイズ*/
  display: block;
  border-radius: 50%;
  background: #ccc; /*ドットボタンの色*/
}

.slick-dots .slick-active button {
  background: #333; /*ドットボタンの現在地表示の色*/
}

/*footer-inner*/
footer {
  padding: 1rem 0;
  margin-top: 6rem;
}
.footer-inner {
  width: 90%;
  margin: 0 auto;
  display: flex;
}
.footer-logo {
  width: 250px;
}
.footer-logo img {
  display: block;
  width: 100%;
}

.copyright {
  opacity: 0.5;
  margin-top: 1rem;
}
.footer-nav {
  margin-left: 3rem;
  margin-top: 1rem;
}
.footer-nav ul {
  display: flex;
  flex-wrap: wrap;
}
.footer-nav li {
  margin: 0.5rem 0 0.5rem 1rem;
}

/*u-style*/
.u-fv {
  padding-top: 150px;
}
.u-fv-bg {
  height: 400px;
  width: 100%;
  background: url("../img/u-fv.jpg") no-repeat center / cover;
  background-attachment: fixed;
  background-position: top;
  background-size: cover;
  background-repeat: no-repeat;
  margin-top: 1.5rem;
}

.u-section-top {
  text-align: center;
  font-size: 1.1rem;
  padding: 4rem 1rem 3rem;
}
.u-fv-title {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.2;
}

.u-fv-title::after {
  content: attr(data-en);
  font-size: 4rem;
  font-weight: bold;
  text-transform: uppercase;
  display: block;
  letter-spacing: 3px;
  font-family: "Kolker Brush", cursive;
  margin-top: 0.5rem;
}

/*u-共通*/
.u-inner {
  width: 92%;
  max-width: 1200px;
  margin: 3rem auto;
}
.personal-table {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
  border-collapse: collapse;
}
td {
  padding: 2.5rem 0;
  border-bottom: 1px solid rgba(2, 35, 0, 0.3);
  font-weight: normal;
  line-height: 2;
}
th {
  padding: 2.5rem 0;
  text-align: left;
  border-bottom: 1px solid #007e66;
  letter-spacing: 2px;
  vertical-align: top;
  font-size: 1.05rem;
}

th {
  width: 200px;
}

/*u-business*/
.u-business-contents {
  display: flex;
  flex-wrap: wrap;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.u-business-item {
  width: 30%;
  margin: 1rem;
}
.u-business-item-img {
  height: 250px;
}

.u-business-text {
  padding: 1.5rem 1rem;
}
.u-business-text p {
  font-weight: normal;
  margin-top: 0.5rem;
}
.u-business-item-title {
  text-align: center;
}
.u-business-second {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}
.u-business-second h2 {
  border-bottom: 1px solid #007e66;
  padding: 0.2rem;
  font-size: 1.3rem;
}
.u-business-second p {
  margin-top: 1rem;
}

/*contract*/
.contract-item {
  width: 100%;
  display: flex;
  height: 300px;
  margin-top: 2rem;
}
.contract-contents {
  margin-top: 4rem;
}
.contract-img {
  width: 60%;
}

.contract-item:nth-of-type(even) {
  flex-direction: row-reverse;
}
.contract-textwrap {
  width: 40%;
  padding: 3rem 5rem;
}
.contract-item:nth-of-type(odd) .contract-img {
  clip-path: polygon(0 0, 100% 0, 85% 100%, 0% 100%);
}
.contract-item:nth-of-type(even) .contract-img {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 15% 100%);
}
.contract-title {
  font-size: 1.7rem;
  display: inline-block;
  padding: 0.2rem 0.5rem;
}

.contract-textwrap p {
  margin-top: 2rem;
}

/*========= ローディング画面のためのCSS ===============*/
#splash {
  position: fixed;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 9999999;
  text-align: center;
  color: #fff;
}

#splash-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#splash-logo img {
  display: block;
  width: 60vw;
  max-width: 500px;
}

/*========= 画面遷移のためのCSS ===============*/

/*画面遷移アニメーション*/
.splashbg {
  display: none;
}

/*bodyにappearクラスがついたら出現*/
body.appear .splashbg {
  display: block;
  content: "";
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  transform: scaleX(0);
  background-color: #007e66; /*伸びる背景色の設定*/
  animation-name: PageAnime;
  animation-duration: 1.2s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
}

@keyframes PageAnime {
  0% {
    transform-origin: left;
    transform: scaleX(0);
  }
  50% {
    transform-origin: left;
    transform: scaleX(1);
  }
  50.001% {
    transform-origin: right;
  }
  100% {
    transform-origin: right;
    transform: scaleX(0);
  }
}

/*画面遷移の後現れるコンテンツ設定*/
#container {
  opacity: 0; /*はじめは透過0に*/
  margin-top: 0;
}

/*bodyにappearクラスがついたら出現*/
body.appear #container {
  animation-name: PageAnimeAppear;
  animation-duration: 1s;
  animation-delay: 0.8s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes PageAnimeAppear {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/*========= ナビゲーションのためのCSS ===============*/
#g-nav {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
}
/*アクティブになったエリア*/
#g-nav.panelactive {
  /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
  position: fixed;
  z-index: 999;
  top: 0;
  width: 100%;
  height: 100vh;
}

/*丸の拡大*/
.circle-bg {
  position: fixed;
  z-index: 3;
  /*丸の形*/
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: #007e66;
  /*丸のスタート位置と形状*/
  transform: scale(0); /*scaleをはじめは0に*/
  top: calc(50% - 50px); /*50%から円の半径を引いた値*/
  left: calc(50% - 50px); /*50%から円の半径を引いた値*/
  transition: all 0.6s; /*0.6秒かけてアニメーション*/
}

.circle-bg.circleactive {
  transform: scale(50); /*クラスが付与されたらscaleを拡大*/
}

/*ナビゲーションの縦スクロール*/
#g-nav-list {
  display: none; /*はじめは表示なし*/
  /*ナビの数が増えた場合縦スクロール*/
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100vh;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

#g-nav.panelactive #g-nav-list {
  display: block; /*クラスが付与されたら出現*/
}

/*ナビゲーション*/
#g-nav ul {
  opacity: 0; /*はじめは透過0*/
  /*ナビゲーション天地中央揃え※レイアウトによって調整してください。不必要なら削除*/
  position: absolute;
  z-index: 999;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/*背景が出現後にナビゲーションを表示*/
#g-nav.panelactive ul {
  opacity: 1;
}

/* 背景が出現後にナビゲーション li を表示※レイアウトによって調整してください。不必要なら削除*/
#g-nav.panelactive ul li {
  animation-name: gnaviAnime;
  animation-duration: 1s;
  animation-delay: 0.2s; /*0.2 秒遅らせて出現*/
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes gnaviAnime {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/*リストのレイアウト設定*/
#g-nav li {
  text-align: center;
  list-style: none;
}

#g-nav li a {
  color: #fff;
  text-decoration: none;
  padding: 1rem;
  display: flex;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: bold;
  font-size: 1.1rem;
  align-items: center;
  justify-content: center;
}
.contact-btn.nav-btn {
  margin-top: 2rem;
}

/*========= ボタンのためのCSS ===============*/
.openbtn {
  position: fixed;
  top: 1rem;
  right: 1rem;
  z-index: 9999; /*ボタンを最前面に*/
  cursor: pointer;
  width: 50px;
  height: 50px;
  display: none;
}

/*×に変化*/
.openbtn span {
  display: inline-block;
  transition: all 0.4s;
  position: absolute;
  left: 14px;
  height: 3px;

  background-color: #007e66;
  width: 45%;
}
.openbtn.active span {
  background-color: #fff;
}

.openbtn span:nth-of-type(1) {
  top: 15px;
}

.openbtn span:nth-of-type(2) {
  top: 23px;
}

.openbtn span:nth-of-type(3) {
  top: 31px;
}

.openbtn.active span:nth-of-type(1) {
  top: 18px;
  left: 18px;
  transform: translateY(6px) rotate(-45deg);
  width: 30%;
}

.openbtn.active span:nth-of-type(2) {
  opacity: 0;
}

.openbtn.active span:nth-of-type(3) {
  top: 30px;
  left: 18px;
  transform: translateY(-6px) rotate(45deg);
  width: 30%;
}

/*アニメーション*/

/*全共通*/

.bgextend {
  animation-name: bgextendAnimeBase;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  position: relative;
  overflow: hidden; /*　はみ出た色要素を隠す　*/
  opacity: 0;
}

@keyframes bgextendAnimeBase {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/*中の要素*/
.bgappear {
  animation-name: bgextendAnimeSecond;
  animation-duration: 1s;
  animation-delay: 0.6s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes bgextendAnimeSecond {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/*左から右*/
.bgLRextend::before {
  animation-name: bgLRextendAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #666; /*伸びる背景色の設定*/
}
@keyframes bgLRextendAnime {
  0% {
    transform-origin: left;
    transform: scaleX(0);
  }
  50% {
    transform-origin: left;
    transform: scaleX(1);
  }
  50.001% {
    transform-origin: right;
  }
  100% {
    transform-origin: right;
    transform: scaleX(0);
  }
}

/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.bgappearTrigger,
.bgLRextendTrigger {
  opacity: 0;
}
.bgappearTrigger {
  background-color: #fff;
}

/*area*/
.u-area-base {
  width: 92%;
  margin: 4rem auto 0;
  max-width: 1000px;
}
.u-area-wrap {
  width: 92%;
  max-width: 1000px;
  margin: 4rem auto 0;
}

.u-area-title {
  border-bottom: 1px solid #000;
}

.u-area-contents {
  margin-top: 2rem;
}

.u-area-contents p {
  font-size: 1.1rem;
}
.area-text {
  margin-top: 1rem;
}
.u-area-contents img {
  display: block;
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
}
.area-bottom {
  margin-top: 3rem;
  font-size: 1.2rem;
}

/*contact*/
.u-contact-contents {
  width: 90%;
  max-width: 800px;
  margin: 5rem auto 0;
}
.cf7__list {
  display: flex;
  flex-wrap: wrap;
  margin: 2.5rem 0 3rem;
}
.wpcf7-form-control.wpcf7-text,
.wpcf7-form-control.wpcf7-tel {
  border: 1px solid #000;
}

.cf7__list dt:nth-of-type(n + 2),
.cf7__list dd:nth-of-type(n + 2) {
  margin-top: 30px;
}

.cf7__list dt {
  width: 35%;
  padding-top: 11px;
}

.cf7__list dd {
  width: 65%;
}

/* 必須・任意 */
.cf7__required,
.cf7__any {
  margin-right: 15px;
  padding: 6px 14px;
  color: #fff;
  font-size: 12px;
  vertical-align: 1px;
}

.cf7__required {
  background: #be1d1d;
}

.cf7__any {
  background: #878d8e;
}

/* input・textarea */
.cf7__list dd input[type="text"],
.cf7__list dd input[type="tel"],
.cf7__list dd input[type="email"],
.cf7__list dd textarea {
  width: 100%;
  padding: 15px 20px;
  background: #fff;
}

/* ドロップダウンメニュー */
.cf7__select {
  position: relative;
}

.cf7__select:before {
  position: absolute;
  top: 50%;
  right: 20px;
  z-index: 10;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 8px solid #000;
  border-right: 6px solid transparent;
  border-left: 6px solid transparent;
  pointer-events: none;
  content: "";
}

.cf7__select select {
  width: 100%;
  padding: 19px 20px;
  background: #f4f4f4;
  color: #a5a5a5;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

/* チェックボックス・ラジオボタン */
.cf7__list dd .wpcf7-checkbox,
.cf7__list dd .wpcf7-radio {
  display: block;
  padding: 15px 0 10px;
}

/* 縦並び（チェックボックス・ラジオボタン） */
.cf7__list dd .wpcf7-list-item {
  display: block;
  margin: 0;
}

.cf7__list dd .wpcf7-list-item:nth-child(n + 2) {
  margin-top: 18px;
}

/* マウスカーソル（チェックボックス・ラジオボタン） */
.cf7__list dd .wpcf7-list-item label {
  cursor: pointer;
}

/* チェックボックス・ラジオボタン */
input[type="checkbox"],
input[type="radio"] {
  position: relative;
  width: 18px;
  height: 18px;
  margin-right: 8px;
  border: 1px solid #bcbcbc;
  vertical-align: -3px;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

/* チェックボックス */
input[type="checkbox"]:checked {
  border: 1px solid #000;
  background: #000;
}

input[type="checkbox"]:checked:before {
  position: absolute;
  top: 2px;
  left: 5px;
  transform: rotate(50deg);
  width: 6px;
  height: 10px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  content: "";
}

/* ラジオボタン */
input[type="radio"] {
  border-radius: 50%;
}

input[type="radio"]:checked:before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #000;
  content: "";
}

/* プレースホルダー */
/* Google Chrome / Safari / Mozilla Firefox / Opera */
.cf7__list dd input[type="text"]::placeholder,
.cf7__list dd input[type="tel"]::placeholder,
.cf7__list dd input[type="email"]::placeholder,
.cf7__list dd textarea::placeholder {
  color: #a5a5a5;
}

/* Microsoft Edge */
.cf7__list dd input[type="text"]::-ms-input-placeholder,
.cf7__list dd input[type="tel"]::-ms-input-placeholder,
.cf7__list dd input[type="email"]::-ms-input-placeholder,
.cf7__list dd textarea::-ms-input-placeholder {
  color: #a5a5a5;
}

/* Internet Explorer */
.cf7__list dd input[type="text"]:-ms-input-placeholder,
.cf7__list dd input[type="tel"]:-ms-input-placeholder,
.cf7__list dd input[type="email"]:-ms-input-placeholder,
.cf7__list dd textarea:-ms-input-placeholder {
  color: #a5a5a5;
}

/* 送信ボタン */
.cf7__button {
  text-align: center;
margin-top:2rem;
}

input[type="submit"] {
  width: 260px;
  height: 60px;
  background: #007e66;
  color: #fff;
  outline: none;
  border: none;
  transition: opacity 0.6s;
  cursor: pointer;
}

input[type="submit"]:hover {
  opacity: 0.6;
}

/* ajax-loader */
.wpcf7-spinner {
  vertical-align: middle;
  display: none !important;
}
@media screen and (max-width: 767px) {
  .cf7__list dt {
    width: 100%;
    margin-bottom: 15px;
    padding-top: 0;
  }

  .cf7__list dd {
    width: 100%;
  }

  .cf7__list dd:nth-of-type(n + 2) {
    margin-top: 0;
  }

  .cf7__list dd .wpcf7-checkbox,
  .cf7__list dd .wpcf7-radio {
    padding: 15px 0 0;
  }

  /* 送信ボタン */
  input[type="submit"] {
    width: 180px;
    height: 56px;
  }
}

.contact-line {
  width: 100%;
  border-bottom: 1px solid #007e66;
}
.contact-line h3 {
  background-color: #007e66;
  color: #fff;
  display: inline-block;
  padding: 0.2rem 1rem;
}
/*achievement*/
.achievement-img {
  width: 100%;
  height: 250px;
}
.achievement-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.achievement-textwrap {
  padding: 0.5rem;
}
.achievement-title {
  font-size: 1.2rem;
  margin-top: 0.3rem;
}
.achievement-item p {
  margin-top: 0.5rem;
}

.u-achievement-contents {
  display: flex;
  width: 90%;
  max-width: 1200px;
  margin: 4rem auto;
  flex-wrap: wrap;
}
.u-achievement-item {
  width: calc((100% - 60px) / 3);
  margin: 20px 10px;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
}
.u-achievement-img {
  width: 100%;
  height: 250px;
}
.u-achievement-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.u-achievement-textwrap {
  padding: 1rem;
}
.u-achievement-title {
  font-size: 1.2rem;
  margin-top: 0.7rem;
}
.u-achievement-item p {
  margin-top: 0.5rem;
}
.initial {
  border-bottom: 1px solid #007e6666;
  padding-bottom: 0.5rem;
}

/*u-header*/
.u-header {
  color: #007e66;
  background-color: #fff;
}

p.small {
  font-size: 0.9rem;
  margin-top: 0.5rem;
  line-height: 1.5;
}

/*==================================================
スライダーのためのcss
===================================*/

/*画像の横幅を100%にしてレスポンシブ化*/
.gallery img {
  width: 100%;
  height: 100%;
  vertical-align: bottom; /*画像の下にできる余白を削除*/
}

/*メイン画像下に余白をつける*/
.gallery {
  margin: 0 0 5px 0;
}
.gallery .slick-slide {
  height: 500px;
}
.gallery .slick-slide img {
  height: 100%;
  display: block;
  object-fit: cover;
}

.gallery li {
  list-style: none;
}
/*矢印の設定*/

/*戻る、次へ矢印の位置*/
.gallery .slick-prev,
.gallery .slick-next {
  position: absolute; /*絶対配置にする*/
  z-index: 3;
  top: 42%;
  cursor: pointer; /*マウスカーソルを指マークに*/
  outline: none; /*クリックをしたら出てくる枠線を消す*/
  opacity: 1; /*デフォルトは.75が指定されている*/
  height: 35px;
  width: 35px;
}

.gallery .slick-prev {
  /*戻る矢印の位置と形状*/
  left: -5.5%;
  transform: rotate(0);
  border: none;
}

.gallery .slick-next {
  /*次へ矢印の位置と形状*/
  right: -5.5%;
  transform: rotate(0);
  border: none;
}

/*選択するサムネイル画像の設定*/

.choice-btn li {
  cursor: pointer;
  outline: none;
  list-style: none;
  width: 300px;
  height: 150px;
}

.choice-btn li img {
  opacity: 0.4; /*選択されていないものは透過40%*/
  width: 100%;
  display: block;
  height: 100%;
  object-fit: cover;
}

.choice-btn li.slick-current img {
  opacity: 1; /*選択されているものは透過しない*/
}

.single-achievement-contents {
  width: 90%;
  max-width: 800px;
  margin: 3rem auto 0;
}

.achievement-single-bottom {
  width: 90%;
  max-width: 900px;
  margin: 4rem auto 2rem;
}

.achievement-detail li {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #007e67a1;
  padding: 1rem 0;
}

.more-btnwrap.u-more-btn {
  width: 90%;
  max-width: 900px;
  margin: 3rem auto 0;
  display: flex;
  justify-content: center;
}

/*page-nav*/
.page-nav {
  text-align: center;
}
.wp-pagenavi span.current {
  background-color: #007e67a1;
  color: #fff;
}

/*rec*/
.rec {
  width: 90%;
  max-width: 700px;
  margin: 3rem auto 0;
  font-size: 0.9rem;
  text-align: center;
}
.rec a {
  text-decoration: underline;
}
.rec span {
  margin-left: 0.5rem;
}

/*contact追加*/
.contact-top-text-a {
  margin: 1rem 0 2rem;
}

/*breadcrumbs*/
.breadcrumbs-wrap {
  background-color: #007e66;
  color: #fff;
  padding: 0.5rem;
}
.breadcrumbs {
  width: 95%;
  max-width: 1200px;
  margin: 0 auto;
}

/*sitemap*/
.sitemap-lists {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 4rem 0;
}
.sitemap-lists ul {
  display: flex;
  flex-wrap: wrap;
}
.sitemap-lists li {
  width: 30%;
  text-align: center;
  margin: 1rem;
}
.sitemap-lists a {
  font-size: 1.2rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.sitemap-lists a img {
  display: block;
  width: 25px;
  margin-right: 0.5rem;
}

/*news*/
.news {
  padding: 4rem 0;
}
.news-inner {
  max-width: 1200px;
  width: 90%;
  margin: 3rem auto;
}
.news-lists {
  max-width: 1000px;
  width: 90%;
  margin: 0 auto;
}
.news-lists li {
  font-style: italic;
  border-bottom: 1px solid #007e66;
  display: flex;
  align-items: center;
  padding: 0.5rem;
}

.news-lists .date {
  margin-right: 1rem;
  font-size: 1rem;
}

/*sound*/
.u-sound-img {
  width: 95%;
  max-width: 900px;
  margin: 2rem auto 0;
}

.u-sound-img img {
  display: block;
  width: 100%;
}

.spam-checkbox{
text-align:center;
}

.contact-top-big{
width:fit-content;
font-size:1.5rem;
margin:0 auto 2rem;
text-align:center;
font-weight:bold;
border:5px double #be1d1d;
padding:1rem;
}