@charset "utf-8";

/* -------------------------------------------------- */
/*  common
/* -------------------------------------------------- */

html {
  width: 100%;
  height: 100%;
  background: #f8f8f8;
}

body {
  width: 100%;
  line-height: 1.4;
  font-size: 16px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  background: #f9f9f9;
  color: #333;
}

.min {
  font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}

.got {
  font-family: "Noto Sans JP", sans-serif;
}

a {
  cursor: pointer;
  color: #777;
  word-break: break-all;
}

a:hover {
  opacity: 0.9;
}

a.doUnder {
  text-decoration: underline;
}

a.noUnder {
  text-decoration: none;
}

.material-icons {
  display: inline-flex;
  vertical-align: middle;
  font-size: inherit;
}

.bold {
  font-weight: bold;
}

.weightNormal {
  font-weight: normal;
}

.small {
  font-size: 85% !important;
}

.normal {
  font-size: 16px !important;
}

.large {
  font-size: 130% !important;
}

.flexAround {
  display: flex;
  justify-content: space-around;
}

.flexBetween {
  display: flex;
  justify-content: space-between;
}

.flexStart {
  display: flex;
  justify-content: flex-start;
}

.flexEnd {
  display: flex;
  justify-content: flex-end;
}

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

.coOrange {
  color: orange;
}

.coRed {
  color: #bb1f24;
}

.coGreen {
  color: #00a89c;
}

.coBlue {
  color: #3fa9f5;
}

.coBlue2 {
  color: #369;
}

.coDblue {
  color: #036;
}

.coWhite {
  color: #fefefe;
}

.coGray {
  color: #999;
}

.bgWhite {
  background: #fefefe;
}

.bgGray {
  background: #eee;
}

.bgBlack {
  background: #333;
  color: #fefefe;
}

.bgGreen {
  background: #5cb85c !important;
  color: #fff;
}

.bgRed {
  background: #bb1f24;
  color: #fff;
}

.bgOrange {
  background-color: #fce4c3;
}

.bgOrangeBdr {
  background-color: #fce4c3;
  background-image: -webkit-gradient(linear, 0 0, 100% 100%, color-stop(.25, #fbecd8), color-stop(.25, transparent), color-stop(.5, transparent), color-stop(.5, #fbecd8), color-stop(.75, #fbecd8), color-stop(.75, transparent), to(transparent));
  -webkit-background-size: 14px 14px;
}

.bgGreenBdr {
  background-color: #bee2dd;
  background-image: -webkit-gradient(linear, 0 0, 100% 100%, color-stop(.25, #dff1ee), color-stop(.25, transparent), color-stop(.5, transparent), color-stop(.5, #dff1ee), color-stop(.75, #dff1ee), color-stop(.75, transparent), to(transparent));
  -webkit-background-size: 14px 14px;
}

.bgDisabled {
  background: #ccc !important;
  color: #333 !important;
}

.addShadow {
  box-shadow: 0 0 4px 4px rgba(0, 0, 0, 0.1);
}

.addShadowDrop {
  -webkit-filter: drop-shadow(2px 0 2px #555);
}

.addShadowDropWhite {
  -webkit-filter: drop-shadow(2px 2px 0 #f9f9f9);
}

.addRadius {
  border-radius: 3px;
}

.txtLeft {
  text-align: left !important;
}

.txtCenter {
  text-align: center !important;
}

.txtRight {
  text-align: right !important;
}

img {
  vertical-align: bottom;
}

table {
  width: 100%;
}

ul {
  list-style: none;
}

summary {
  list-style: none;
}

/* PC */
@media screen and (min-width: 1024px) {
  .spOnly {
    display: none !important;
  }

  .noWrapPc {
    white-space: nowrap;
  }

  .fullWrap {
    width: 1200px;
    margin: 0 auto;
  }

  .cmnWrap {
    width: calc(1200px - 2em);
    margin: 0 auto;
    padding: 0 1em;
  }
  
  @media screen and (max-width: 1199px) {
    .fullWrap {
      width: 1024px;
      margin: 0 auto;
    }
    
    .cmnWrap {
      width: 1000px;
      margin: 0 auto;
      padding: 0 12px;
    }
  }
}

/* SP */
@media screen and (max-width: 1023px) {  
  .pcOnly {
    display: none !important;
  }

  .spLeft {
    text-align: left !important;
  }

  img.strc {
    width: 100%;
  }

  .noWrapSp {
    white-space: nowrap;
  }

  .fullWrap {
    width: 100%;
    margin: 0 auto;
  }

  .cmnWrap {
    width: 96%;
    margin: 0 auto;
  }
    
  .tbLeft {
    text-align: left !important;
  }
  @media screen and (max-width: 767px) {
    body{
      font-size: 14px;
    }
  }
}

/* -------------------------------------------------- */
/*  msg.php
/* -------------------------------------------------- */
.msgWrap {
  margin-bottom: 1.5em;
}
.errMsg, .exeMsg {
  padding: 1em;
  margin-top: 1.5em;
  font-weight: bold;
}
.errMsg {
  border: solid 1px #c00;
  color: #c00;
}
.exeMsg {
  border: solid 1px #00a89c;
  color: #00a89c;
}
/* ~768px */
@media screen and (max-width: 767px) {
  .msgWrap {
    margin-bottom: 1em;
  }
  .errMsg, .exeMsg {
    padding: 0.5em 0.75em;
    margin-top: 1em;
  }
}

/* -------------------------------------------------- */
/*  header
/* -------------------------------------------------- */
header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  background: #fefefe;
}
header .logo {
  width: 100%;
  display: flex;
  align-items: center;
  margin-left: 5px;
  height: 60px;
}
header .user, header .apply, header .menu {
  display: block;
  text-decoration: none;
  padding: 3px 0;
  min-width: 60px;
  border-left: solid 1px #ccc;
  font-size: 10px;
  color: #333;
  font-weight: bold;
}
header .menu {
  border-left: solid 1px #00a89c;
  background: #00a89c;
  color: #fefefe;
}
main {
  padding-top: 60px;
}

/* ハンバーガーメニュー ------------------------------ */
/* 消しておくものをまとめて処理 */
header #menu,
header #menu ~ .menuWrap,
header #menu ~ .close,
header #menu:checked ~ .menuWrap .sp {
  display: none;
}
/* ポインター化 */
header label[for="menu"] {
  cursor: pointer;
}
/* チェックが入った際に消すものをまとめて処理 */
header #menu:checked ~ .open {
  display: none;
}
/* チェックが入った際に表示するものをアニメーションごとに処理 */
header #menu:checked ~ .menuWrap {
  display: block;
  animation: slideIn 0.8s;
}
header #menu:checked ~ .close {
  display: block;
  animation: rotation 0.8s;
}
@keyframes slideIn {
  0% {
    opacity: 0;
    transform: translateY(-65px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes rotation {
  0% {
    opacity: 0;
    transform:rotateX(0);
  }
  100% {
    opacity: 100;
    transform:rotateX(360deg);
  }
}
/* 装飾 */
header #menu:checked ~ .menuWrap {
  position: absolute;
  top: 60px;
  right: auto;
  background: #00a89c;
  box-shadow: 0 5px 4px 2px rgb(0 0 0 / 10%);
  padding: 1em;
}
header #menu:checked ~ .menuWrap ul {
  align-items: stretch;
}
header #menu:checked ~ .menuWrap ul li {
  display: flex;
  align-items: center;
  width: calc(100% / 5 - 1px);
  border-right: #eee 1px solid;
  padding: 0.5em 0;
  text-align: center;
}
header #menu:checked ~ .menuWrap ul li:last-child {
  border-right: 0;
}
header #menu:checked ~ .menuWrap ul li a {
  display: block;
  width: 100%;
  color: #fefefe;
  text-decoration: none;
}
@media screen and (max-width: 1199px) {
  header #menu:checked ~ .menuWrap {
    padding: 1em 12px;
  }
}
@media screen and (max-width: 1023px) {
  header #menu:checked ~ .menuWrap {
    padding: 1em 2%;
  }
  header #menu:checked ~ .menuWrap .sp {
    display: inline-block;
  }
}
@media screen and (max-width: 767px) {
  header #menu:checked ~ .menuWrap {
    font-size: 12px;
  }
}

/* -------------------------------------------------- */
/*  footer.php
/* -------------------------------------------------- */
footer {
  padding: 2em 0;
}
footer .line_tool + .flexStart {
  margin: 1em 0;
}
footer .image {
  margin-right: 1em;
}
footer img {
  width: 200px;
}
footer h2 {
  font-size: 30px;
}
footer ul {
  margin-top: 1.5em;
}
footer ul a {
  color: #ccc;
  margin-right: 1.5em;
}
/* 768px~1024px */
@media screen and (max-width: 1023px) {
  footer {
    padding: 1.5em 0;
  }
  footer ul a, footer .copyright {
    font-size: 12px;
  }
}
/* ~768px */
@media screen and (max-width: 767px) {
  footer .cmnWrap {
    width: 90%;
  }
  footer .image {
    display: none;
  }
  footer .image + div {
    width: 100%;
  }
  footer h2 {
    font-size: 20px;
  }
  footer ul {
    margin-top: 1em;
    width: 100%;
    height: 5em;
    flex-wrap: wrap;
    flex-direction: column;
  }
  footer ul li {
    width: 50%;
  }
  footer ul a, footer .copyright {
    font-size: 11px;
  }
}

/* -------------------------------------------------- */
/*  index.php
/* -------------------------------------------------- */

/* アイキャッチ ------------------------------ */
.eyeCatch {
  position: relative;
}
.eyeCatch .image {
  width: 100%;
}
.eyeCatch .image img {
  width: 100%;
}
.eyeCatch h1, .eyeCatch h2 {
  position: absolute;
}
.eyeCatch h1 {
  left: 0.25em;
  bottom: 2.5em;
  font-size: 50px;
}
.eyeCatch h2 {
  left: 0.45em;
  bottom: 2em;
  font-size: 40px;
}
/* 1024px~1200px */
@media screen and (max-width: 1199px) {
  .eyeCatch h1 {
    left: 0.75em;
    bottom: 2em;
  }
  .eyeCatch h2 {
    left: 1.1em;
    bottom: 1.35em;
  }
}
/* 768px~1024px */
@media screen and (max-width: 1023px) {
  .eyeCatch h1 {
    bottom: 1.75em;
    font-size: 40px;
  }
  .eyeCatch h2 {
    left: 1.2em;
    bottom: 1.25em;
    font-size: 30px;
  }
}
/* ~768px */
@media screen and (max-width: 767px) {
  .eyeCatch h1 {
    left: 0.7em;
    bottom: 1.15em;
    font-size: 26px;
  }
  .eyeCatch h2 {
    left: 1.35em;
    bottom: 0.75em;
    font-size: 16px;
  }
}
/* SE */
@media screen and (max-width: 320px) {
  .eyeCatch h1 {
    bottom: 1em;
  }
}

/* 注意文 ------------------------------ */
.cautionTxt {
  margin-top: 0.5em;
}
.cautionTxtBr {
  display: none;
}
/* ~1024px */
@media screen and (max-width: 1023px) {
  .cautionTxt {
    font-size: 10px !important;
  }
}
/* ~768px */
@media screen and (max-width: 767px) {
  .cautionTxtBr {
    display: block;
  }
}

/* キャンペーン ------------------------------ */
/* タブ表示 */
.campaign {
  margin-top: 2em;
  padding-bottom: 5em;
  overflow: hidden;
}
.campaign .fullWrap {
  position: relative;
}
.campaign .fullWrap::before {
  display: inline-block;
  position: absolute;
  top: 0.5em;
  left: 1.5em;
  font-size: 50px;
  color: #ccc;
}
.campaign h3 {
  padding: 1em;
  position: relative;
  font-size: 30px;
  color: #333;
}

/* 768px~1024px */
@media screen and (max-width: 1023px) {
  .campaign {
    padding-bottom: 3em;
  }
  .campaign .fullWrap::before {
    top: 0.8em;
    font-size: 40px;
  }
}
/* ~768px */
@media screen and (max-width: 767px) {
  .campaign .fullWrap::before {
    top: 0.9em;
    font-size: 20px;
  }
  .campaign h3 {
    font-size: 15px;
  }
}
/* SE */
@media screen and (max-width: 320px) {
  .campaign .fullWrap::before {
    top: 1em;
    font-size: 16px;
  }
  .campaign h3 {
    font-size: 13px;
  }
}
/* 内容 */
.campaign .content {
  margin-top: 2em;
}
.campaign .content h4 {
  align-items: center;
  font-size: 30px;
}
.campaign .content h4 .mark {
  background: linear-gradient(-45deg, #888 0%, #888 50%, #00a89c 50%, #00a89c 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 1em;
  height: 1em;
  padding: 0.125em 0.125em 0.19em;
  margin-right: 0.25em;
}
.campaign .content h4 .mark span {
  color: #fff;
  font-weight: bold;
}
.campaign .content .text {
  margin-top: 1.5em;
  padding-left: 3em;
}
/* ~768px */
@media screen and (max-width: 767px) {
  .campaign {
    font-size: 13px;
  }
  .campaign .content {
    margin-top: 1.5em;
  }
  .campaign .content h4 {
    font-size: 15px;
  }
  .campaign .content .text {
    padding-left: 1.9em;
  }
}
/* SE */
@media screen and (max-width: 320px) {
  .campaign {
    font-size: 13px;
  }
  .campaign .content h4 {
    font-size: 13px;
  }
  .campaign .content .text {
    padding-left: 1.6em;
  }
}

/* ユーザーレビュー ------------------------------ */
/* タブ表示 */
.reviews {
  background: #00a89c;
  background: -moz-linear-gradient(top left, #66bb80 0%, #00a89c 100%);
  background: -webkit-gradient(linear, left top, right bottom, from(#66bb80), to(#00a89c));
  background: -webkit-linear-gradient(top left, #66bb80 0%, #00a89c 100%);
  background: -o-linear-gradient(top left, #66bb80 0%, #00a89c 100%);
  background: -ms-linear-gradient(top left, #66bb80 0%, #00a89c 100%);
  background: linear-gradient(to bottom right, #66bb80 0%, #00a89c 100%);
  padding-bottom: 5em;
  overflow: hidden;
}
.reviews .fullWrap {
  position: relative;
}
.reviews .fullWrap::before {
  display: inline-block;
  content: "reviews";
  position: absolute;
  top: 0.5em;
  left: 1.5em;
  font-size: 50px;
  color: #fefefe;
  opacity: 0.3;
}
.reviews h3 {
  padding: 1em;
  position: relative;
  font-size: 30px;
  color: #fefefe;
}
.reviews h3::before {
  display: inline-block;
  content: "";
  width: 100vw;
  height: 3em;
  position: absolute;
  top: 0;
  left: 37%;
  transform: skewX(45deg);
  background: #eee;
}
/* 768px~1024px */
@media screen and (max-width: 1023px) {
  .reviews {
    padding-bottom: 3em;
  }
  .reviews .fullWrap::before {
    top: 0.8em;
    font-size: 40px;
  }
}
/* ~768px */
@media screen and (max-width: 767px) {
  .reviews .fullWrap::before {
    top: 0.9em;
    font-size: 20px;
  }
  .reviews h3 {
    font-size: 15px;
  }
}
/* SE */
@media screen and (max-width: 320px) {
  .reviews .fullWrap::before {
    top: 1em;
    font-size: 16px;
  }
  .reviews h3 {
    font-size: 13px;
  }
}
/* 内容 */
.reviews .content {
  margin-top: 2em;
}
.reviews .content .flexBetween {
  width: calc(100% - 4em);
  padding: 2em;
  position: relative;
}
.reviews .content .flexBetween::before {
  display: inline-block;
  position: absolute;
  top: 0;
  right: 0.3em;
  font-size: 65px;
  color: #999;
  opacity: 0.3;
}
.reviews .content .image {
  width: calc(40% - 2em);
}
.reviews .content img {
  width: 400px;
  height: 400px;
  box-shadow: 7px 7px #00a89c;
  object-fit: cover;
}
.reviews .content .text {
  width: calc(100% - 400px - 2.5em);
}
.reviews .content h4 {
  align-items: center;
  font-size: 30px;
  margin-bottom: 0.75em;
}
.reviews .content h4.sp {
  display: none;
}
.reviews .content .reviewTxt {
  height: 259px;
  margin-bottom: 1.75em;
  overflow: auto;
}
/* 768px~1024px */
@media screen and (max-width: 1023px) {
  .reviews .content img {
    width: 300px;
    height: 300px;
  }
  .reviews .content .text {
    width: calc(100% - 300px - 2.5em);
  }
  .reviews .content .reviewTxt {
    height: 159px;
  }
}
/* ~768px */
@media screen and (max-width: 767px) {
  .reviews {
    font-size: 13px;
  }
  .reviews .content .flexBetween {
    flex-direction: column;
  }
  .reviews .content .flexBetween::before {
    font-size: 55px;
  }
  .reviews .content h4.sp {
    font-size: 15px;
    display: block;
  }
  .reviews .content .image {
    width: 100%;
    text-align: center;
  }
  .reviews .content img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 3px solid #00a89c;
    box-shadow: 0 0 #000;
  }
  .reviews .content .text {
    width: 100%;
  }
  .reviews .content .text h4 {
    display: none;
  }
  .reviews .content .reviewTxt {
    height: auto;
    overflow: hidden;
    margin-top: 1.5em;
    margin-bottom: 1.5em;
  }
}

/* オーバービュー ------------------------------ */
.overview {
  padding: 4em 0;
  background-image: repeating-linear-gradient(-45deg, #f8f8f8, #f8f8f8 7px, #eee 0, #eee 8px);
}
.overview h3 {
  position: relative;
  margin: 0 auto;
  width: 15em;
  padding: 20px;
  background: #00a89c;
  font-size: 30px;
  border-radius: 5px;
}
.overview h3::before{
  content: '';
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  left: 0;
  right: 0;
  bottom: -15px;
  margin: 0 auto;
  border-top: 15px solid #00a89c;
  border-right: 15px solid transparent;
  border-left: 15px solid transparent;
}
.overview .text {
  font-size: 20px;
  margin: 2.75em auto 0;
  width: 43em;
}
/* 768px~1024px */
@media screen and (max-width: 1023px) {
  .overview {
    padding: 3em 0;
  }
  .overview h3 {
    padding: 15px;
  }
  .overview .text {
    font-size: 16px;
  }
}
/* ~768px */
@media screen and (max-width: 767px) {
  .overview {
    padding: 2.5em 0 3em;
  }
  .overview h3 {
    font-size: 15px;
  }
  .overview .text {
    font-size: 14px;
    margin: 2.25em auto 0;
    width: 97%;
  }
}

/* -------------------------------------------------- */
/*  その他ページ
/* -------------------------------------------------- */

/* 共通 ------------------------------ */
.childPage {
  margin-top: 0;
}
/* エラーページ ------------------------------ */
.errorPage .fullWrap::before {

}
/* パスワード変更 ------------------------------ */
.passForget .fullWrap::before {
  content: "password";
}
/* 利用規約 ------------------------------ */
.termsPage .fullWrap::before {
  content: "";
}
.termsPage .hr {
  padding-bottom: 1.5em;
  border-bottom: #ccc 1px solid;
  margin-bottom: 1.5em;
}
.termsPage .hr .title {
  margin-bottom: 1em;
}
.termsPage .hr.last {
  padding-bottom: 0;
  border-bottom: 0;
  margin-bottom: 0;
}
/* 特商法に基づく表記 ------------------------------ */
.transactionPage .fullWrap::before {
  content: "transaction";
}
@media screen and (max-width: 1023px){
  .transactionPage h3 {
    font-size: 24.5px;
  }
  .transactionPage h3::before {
    height: 3.68em;
  }
}
@media screen and (max-width: 767px){
  .transactionPage h3 {
    font-size: 12.5px;
  }
  .transactionPage h3::before {
    height: 3.6em;
  }
}
/* お問い合わせページ ------------------------------ */
.contactPage .fullWrap::before {
  content: "";
}

/* -------------------------------------------------- */
/*  機能系ページ
/* -------------------------------------------------- */

/* マイページ ------------------------------ */
.myPage .fullWrap::before {
  content: "mypage";
}
.myPage .sp {
  display: none;
}
.myPage .leftTable th {
  width: 20em;
}
.myPage .leftTable td {
  vertical-align: middle;
}
.myPage.registration .fullWrap::before {
  content: "registration";
}
.myPage.registration .leftTable th,
.myPage.registration .leftTable td {
  border: 1px solid #fefefe;
}
.myPage.registration .leftTable td {
  color: #fefefe;
}
.myPage.invitation .url {
  width: 100%;
}
.myPage.invitation .url input {
  border-radius: 4px 0 0 4px;
}
.myPage.invitation button {
  display: block;
  width: 8em;
  background: #f4d919;
  color: #333;
  border: 0;
  border-radius: 0 4px 4px 0;
}
.myPage.invitation .flexCenter p:not(:first-of-type) {
  margin-left: 1.5em;
}
@media screen and (max-width: 1023px){
  .myPage .leftTable th {
    width: 12em;
  }
}
@media screen and (max-width: 767px){
  .myPage .sp {
    display: block;
  }
  .myPage .leftTable th {
    width: 6em;
  }
  .myPage.registration .leftTable th,
  .myPage.invitation .leftTable th {
    width: 9em;
  }
}

/* 登録情報管理 ------------------------------ */
.registrationPage .fullWrap::before {
  content: "";
}
.registrationPage .leftTable th {
  vertical-align: top;
}
.registrationPage .image img {
  width: 200px;
  height: 200px;
  box-shadow: 4px 4px #00a89c;
  object-fit: cover;
}
@media screen and (max-width: 767px){
  .registrationPage .leftTable th {
    width: 8em;
  }
  .registrationPage .image img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 3px solid #00a89c;
    box-shadow: 0 0 #000;
  }
}

/* 登録チェック ------------------------------ */
.registrationPage .mail {
  width: 100%;
}
.registrationPage .mail input {
  border-radius: 4px 0 0 4px;
}
.registrationPage button {
  display: block;
  width: 10em;
  background: #f4d919;
  color: #333;
  border: 0;
  border-radius: 0 4px 4px 0;
}

/* 本登録導線 ------------------------------ */
.registrationPage .allLineHeight {
  line-height: 1.7;
}
@media screen and (max-width: 1023px){
  .registrationPage .allLineHeight {
    line-height: 2;
  }
}

/* お支払い ------------------------------ */
.paymentPage .fullWrap::before {
  content: "payment";
}
.paymentPage .card img {
  margin-right: 0.25em;
}
.paymentPage .leftTable th {
  width: 10em;
}
@media screen and (max-width: 767px){
  .paymentPage .card img {
    margin-right: 0;
    height: 32px;
  }
}