* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Noto Sans JP", sans-serif;
  position: relative;
}
a {
  text-decoration: none;
  color: inherit;
}
h1,
h2,
h3,
h4,
h5,
h6,
p {
  line-height: 1.7;
  letter-spacing: 1.2px;
}
li {
  list-style: none;
}
.img-status {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.inline {
  display: inline-block;
}

/*header*/
header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 800;
}
.header-inner {
  width: 90%;
  margin: 0 auto;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-logo img {
  width: 120px;
}

.header-nav {
  color: #fff;
  display: flex;
}
.blog-btn {
  display: block;
  margin-right: 2rem;
  background-color: #f36e45;
  color: #fff;
  padding: 0.8rem 2rem;
  font-weight: bold;
}
.nav-items {
  margin-top: 6rem;
  position: relative;
  z-index: 991;
}

.nav-items li {
  padding: 3rem 0 0 3rem;
  opacity: 0;
  transform: translateX(50%);
  transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
}

.nav-items li.show {
  opacity: 1;
  transform: translateX(0);
}

.nav-items li:nth-of-type(1) {
  transition-delay: 0.5s;
}
.nav-items li:nth-of-type(2) {
  transition-delay: 0.6s;
}
.nav-items li:nth-of-type(3) {
  transition-delay: 0.7s;
}
.nav-items li:nth-of-type(4) {
  transition-delay: 0.8s;
}
.nav-items li a {
  font-size: 1.1rem;
  font-weight: bold;
  display: block;
}
.nav-items span {
  display: flex;
  align-items: center;
}
.nav-items li a {
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease-in;
}
.nav-items li a.active {
  transform: scale(1.2);
}
.nav-items li a::before {
  content: attr(data-en);
  font-size: 2.5rem;
  text-transform: uppercase;
}
.nav-items span::before {
  width: 50px;
  margin-right: 1rem;
  height: 3px;
  background-color: #fff;
  content: "";
}

/*==================================================
　5-2-6 3本線が回転して×に
===================================*/

/*ボタン外側※レイアウトによってpositionや形状は適宜変更してください*/
.openbtn {
  /*ボタン内側の基点となるためrelativeを指定。
追従するナビゲーションの場合はfixed＋top、rightといった位置をセットで指定*/
  position: fixed;
  background: transparent;
  cursor: pointer;
  top: 1rem;
  right: 1rem;
  width: 50px;
  height: 50px;
  border-radius: 5px;
  z-index: 999;
}

/*ボタン内側*/
.openbtn span {
  display: inline-block;
  transition: all 0.4s; /*アニメーションの設定*/
  position: absolute;
  left: 14px;
  height: 3px;
  border-radius: 2px;
  background: rgb(236, 94, 0);
}
.openbtn.active span {
  background-color: #fff;
}

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

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

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

/*activeクラスが付与されると線が回転して×になる*/

.openbtn.active span:nth-of-type(1) {
  top: 18px;
  left: 18px;
  transform: translateY(6px) rotate(-135deg);
  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(135deg);
  width: 30%;
}

/*fv*/
.fv {
  height: 100vh;
  width: 100%;
  position: relative;
}
.fv-img img {
  width: 85%;
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.fv-text {
  position: absolute;
  top: 50%;
  font-size: 3rem;
  right: 10%;
  transform: rotateZ(-4deg);
  padding: 0 0.5rem;
  text-shadow: 2px 2px 0 #fff;
}
.fv-title img {
  width: 600px;
  position: absolute;
  bottom: 10%;
  left: 5%;
}
.fv-circle {
  width: 24vw;
  min-width: 200px;
  position: absolute;
  top: 35%;
  right: 10%;
  animation: circle 15s linear infinite forwards;
  z-index: 2;
}
@keyframes circle {
  0% {
    transform: rotateZ(0deg);
  }

  100% {
    transform: rotateZ(360deg);
  }
}

.header-nav {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  right: 0;
  transform: translateX(100%);
  background-color: #006c86;
  z-index: 990;
  transition: transform 0.5s ease-in-out;
}
.header-nav.active {
  transform: translateX(0);
}

.fv-bottom {
  width: 100%;
  position: absolute;
  bottom: 0;
  height: 250px;
  left: 0;
  display: flex;
  align-items: flex-end;
}
.fv-bottom img {
  width: 100%;
  object-fit: contain;
  display: block;
}

/*追加ここまで*/

.header-nav {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  right: 0;
  transform: translateX(100%);
  background-color: #006c86;
  z-index: 990;
  transition: transform 0.5s ease-in-out;
}
.header-nav.active {
  transform: translateX(0);
}


/*u-共通*/
.u-fv {
  background: url(../img/u-fv-bg.png) no-repeat center / cover;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.u-fv-title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  color: #fff;
  text-align: center;
}
.u-fv-title::before {
  content: attr(data-en);
  font-size: 3.5rem;
  text-transform: uppercase;
}

.u-section-inner {
  max-width: 1000px;
  margin: 0 auto;
  width: 95%;
  padding: 1rem;
}

/*terms*/
.terms-item {
  line-height: 1.7;
}
.terms-item + .terms-item {
  margin-top: 2rem;
}
.term-item-title {
  padding: 1rem 0;
}
.terms-lists {
  padding-left: 2rem;
}
.terms-lists li {
  position: relative;
  margin-top: 1rem;
}
.terms-lists li::before {
  content: attr(data-num);
  position: absolute;
  left: -2rem;
  top: 0;
}

.terms-lists-innerlists {
  position: relative;
  padding-left: 2rem;
}
.terms-lists-innerlists li {
  padding-left: 0.5rem;
}
.agree-box {
  text-align: center;
  margin-top: 4rem;
}
.register-anc {
  padding: 1rem 3rem;
  background-color: #006c86;
  color: #fff;
  margin: 3rem auto;
  display: inline-block;
  pointer-events: none;
  opacity: 0.5;
}
.register-anc.check {
  pointer-events: initial;
  opacity: 1;
  cursor: pointer;
}

.btn-wrap {
  text-align: center;
}

.register-form-list {
  text-align: left;
  display: none;
}
.post-password-form {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: 80vh;
  padding: 2rem;
  text-align: center;
}
.post-password-form p {
  margin-top: 2rem;
}

.terms-table th {
  vertical-align: top;
  text-align: left;
  width: 200px;
}
.terms-table + .terms-table {
  margin-top: 0.5rem;
}
.red {
  color: rgb(216, 35, 35);
}

.thanks {
  height: 72.5vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 95%;
  margin: 0 auto;
  text-align: center;
}
.thanks-main-text {
  font-size: 2rem;
  font-weight: bold;
}
.thanks-sub-text {
  margin-top: 0.5rem;
}

.back-btn {
  padding: 1rem 3rem;
  background-color: #006c86;
  color: #fff;
  margin-top: 2rem;
}


/*footer*/
footer {
  background-color: #006c86;
  padding: 2rem 0;
}
footer p {
  text-align: center;
  color: #fff;
}
.footer-nav {
  display: flex;
  width: 90%;
  margin: 0 auto;
  justify-content: center;
  color: #fff;
  padding-bottom: 3rem;
  text-align: center;
}

.footer-nav ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.footer-nav li {
  margin: 1rem;
}
/*ContactForm7カスタマイズ*/
table.CF7_table {
  margin: 2rem auto 0;
  border: 3px solid #e5e5e5;
	width:90%;
}

table.CF7_table tr {
  border-top: 1px solid #e5e5e5;
}

.single .entry-content table.CF7_table,
.page .entry-content table.CF7_table {
  display: table;
}


/*入力欄*/
.CF7_table input,
.CF7_table textarea {
  border: 1px solid #d8d8d8;
}

.CF7_table ::placeholder {
  color: #797979;
}

/*「必須」文字*/
.CF7_req {
  font-size: 0.9em;
  padding: 5px;
  background: #f79034; /*オレンジ*/
  color: #fff;
  border-radius: 3px;
  margin-right: 1em;
}

/*「任意」文字*/
.CF7_unreq {
  font-size: 0.9em;
  padding: 5px;
  background: #bdbdbd; /*グレー*/
  color: #fff;
  border-radius: 3px;
  margin-right: 1em;
}
.CF7_table th {
  padding: 1rem;
}
.CF7_table input,
.CF7_table textarea {
  width: 100%;
  padding: 1rem;
}
.CF7_table input[type="checkbox"],
.CF7_table input[type="radio"] {
  width: auto;
  padding: 0;
}

.CF7_table th {
  vertical-align: top;
}

/* タイトル列 */
@media screen and (min-width: 768px) {
  .CF7_table th {
    width: 40%; /*横幅*/
    background-color: #ebedf5; /*ブルーグレー*/
  }
}

/* レスポンシブ */
@media screen and (max-width: 768px) {
  table.CF7_table {
    width: 95%;
  }
  .CF7_table tr,
  .CF7_table td,
  .CF7_table th {
    display: block;
    width: 100%;
    line-height: 2.5em;
  }
  .CF7_table th {
    background-color: #ebedf5;
  }
}

/* 「送信する」ボタン */
.wpcf7 input.wpcf7-submit {
  background-color: #f79034; /* オレンジ*/
  border: 0;
  color: #fff;
  font-size: 1.2em;
  font-weight: bold;
  margin: 0 auto;
}

.CF7_btn {
  text-align: center;
  margin-top: 20px;
}

.wpcf7-spinner {
  width: 0;
  margin: 0;
}

.contact-contents {
  margin: 4rem 0;
}
.wpcf7 input.wpcf7-submit {
  padding: 1rem 3rem;
  cursor: pointer;
}

.CF7_btn {
  display: flex;
  flex-direction: column;
}
.wpcf7-select {
  padding: 1rem;
  width: 100%;
  border: 1px solid #d8d8d8;
}
.CF7_table td {
  padding: 0.5rem;
}

.kome_red{
	font-size:1.1rem;
	color:red;
	font-weight:bold;
	text-align:center;
	margin-top:1rem;
}