@charset "UTF-8";
/*	cmn-color
------------------------------------ */
/*	transition,hover
------------------------------------ */
/*	media-screen
------------------------------------ */
/*	font
------------------------------------ */
@font-face {
  font-family: "Noto sans Regular";
  src: url("../fonts/noto-sans-jp-r.woff") format("woff");
}
@font-face {
  font-family: "Noto sans Medium";
  src: url("../fonts/noto-sans-jp-m.woff") format("woff");
}
@font-face {
  font-family: "Noto sans Bold";
  src: url("../fonts/noto-sans-jp-b.woff") format("woff");
}
@font-face {
  font-family: "Noto sans Black";
  src: url("../fonts/noto-sans-jp-black.woff") format("woff");
}
@font-face {
  font-family: "tsukushi";
  src: url("../fonts/TsukushiAMaruGothic_2_0.otf");
}
/*	layout
------------------------------------ */
/*	cmn-color
------------------------------------ */
/*	transition,hover
------------------------------------ */
/*	media-screen
------------------------------------ */
/*	font
------------------------------------ */
@font-face {
  font-family: "Noto sans Regular";
  src: url("../fonts/noto-sans-jp-r.woff") format("woff");
}
@font-face {
  font-family: "Noto sans Medium";
  src: url("../fonts/noto-sans-jp-m.woff") format("woff");
}
@font-face {
  font-family: "Noto sans Bold";
  src: url("../fonts/noto-sans-jp-b.woff") format("woff");
}
@font-face {
  font-family: "Noto sans Black";
  src: url("../fonts/noto-sans-jp-black.woff") format("woff");
}
@font-face {
  font-family: "tsukushi";
  src: url("../fonts/TsukushiAMaruGothic_2_0.otf");
}
/*	layout
------------------------------------ */
/*	font-size  cmn
------------------------------------ */
/* =========================================
  base  PC
========================================= */
body { /* fontはcmn-txtに合わせる */
  width: 100%;
  min-width: 320px;
  max-width: 750px;
  margin: auto;
  color: #3f3b39;
  font-family: "Noto sans Regular", sans-serif;
  font-size: 24px;
  font-size: 2.4rem;
  letter-spacing: 0.096em;
  line-height: 1.583;
}
@media screen and (max-width: 480px) {
  body {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

/* ======================================= ==
  form  PC
========================================= */
select,
textarea,
input[type=tel],
input[type=num],
input[type=text],
input[type=email] {
  max-width: 100%;
  padding: 11.5px;
  background: #fff;
  border: 1px solid #c7c7c7;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  resize: none;
}
@media screen and (max-width: 480px) {
  select,
  textarea,
  input[type=tel],
  input[type=num],
  input[type=text],
  input[type=email] {
    padding: 10px;
  }
}

textarea {
  width: 100%;
}

/* ボタン
-------------------------------------------------- */
button[name=back],
input[type=submit] {
  width: 100%;
  max-width: 300px;
  height: 60px;
  padding: 0;
  text-align: center;
  background: #45b7ff;
  border-radius: 0;
  border: none;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  color: #fff;
  position: relative;
  line-height: 60px;
  z-index: 1;
}
button[name=back]:hover,
input[type=submit]:hover {
  opacity: 0.8;
}
button[name=back]::before, button[name=back]::after,
input[type=submit]::before,
input[type=submit]::after {
  content: none;
}

button[name=back]:hover,
input[type=submit]:hover {
  cursor: pointer;
}

button[name=back][disabled],
input[type=submit][disabled] {
  pointer-events: none;
}

input[name=check] {
  margin-left: auto;
  margin-right: auto;
}
input[name=check][disabled] {
  pointer-events: none;
}

input[name=back] {
  margin-left: auto;
  margin-right: auto;
  background: #898f9c !important;
}

.send {
  margin-top: 20px;
}

/* チェックボックス・ラジオボタン
-------------------------------------------------- */
input[type=radio],
input[type=checkbox] {
  display: inline-block;
  margin-right: 6px;
}

input[type=radio] + label,
input[type=checkbox] + label {
  position: relative;
  display: inline-block;
  line-height: 30px;
  cursor: pointer;
}

input[type=radio],
input[type=checkbox] {
  display: none;
  margin: 0;
}

input[type=radio] + label,
input[type=checkbox] + label {
  padding: 0 0 0 24px;
  font-size: 25px;
  font-size: 2.5rem;
  line-height: 1;
  margin-right: 33px;
}
@media screen and (max-width: 480px) {
  input[type=radio] + label,
  input[type=checkbox] + label {
    font-size: 15px;
    font-size: 1.5rem;
  }
}

input[type=radio] + label::before,
input[type=checkbox] + label::before {
  content: "";
  position: absolute;
  top: 59%;
  left: -4px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: block;
  width: 20px;
  height: 20px;
  margin-top: -11px;
  background: #FFF;
}

input[type=radio] + label::before {
  border: 2px solid #ccc;
  border-radius: 30px;
}

input[type=checkbox] + label::before {
  border: 2px solid #ccc;
}

input[type=radio]:checked + label::after,
input[type=checkbox]:checked + label::after {
  content: "";
  position: absolute;
  top: 59%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: block;
}

input[type=radio]:checked + label::after {
  left: 1px;
  width: 10px;
  height: 10px;
  margin-top: -6px;
  background: #3f3b39;
  border-radius: 8px;
}

input[type=checkbox]:checked + label::after {
  left: 3px;
  width: 16px;
  height: 8px;
  margin-top: -8px;
  border-left: 3px solid #333;
  border-bottom: 3px solid #333;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

/*==================================================
テーブル
================================================== */
.contact-form-table {
  width: 100%;
  margin: 10px auto 0;
}
.contact-form-table tr:nth-of-type(n+2) th {
  border-top: 1px solid #fff;
}
.contact-form-table th, .contact-form-table td {
  padding: 15px 25px;
  border: 1px solid #eaeaea;
  font-family: "Noto sans Regular", sans-serif;
  font-size: 24px;
  font-size: 2.4rem;
  letter-spacing: 0.1em;
  vertical-align: middle;
}
@media screen and (max-width: 480px) {
  .contact-form-table th, .contact-form-table td {
    font-size: 14px;
    font-size: 1.4rem;
  }
}
.contact-form-table th {
  width: 454px;
  background-color: #e4f1fc;
  color: #3f3b39;
}
.contact-form-table td {
  background-color: #fff;
}
.contact-form-table a {
  color: #3f3b39;
}
@media screen and (max-width: 480px) {
  .contact-form-table {
    margin-top: 20px;
  }
  .contact-form-table th, .contact-form-table td {
    padding: 10px;
    font-size: 14px;
    font-size: 1.4rem;
  }
}
.contact-form-table label[for=agree] {
  margin: 0;
}

input::-webkit-input-placeholder {
  font-size: 24px;
  font-size: 2.4rem;
  padding-left: 9px;
  color: #999999;
  letter-spacing: 0.04em;
}

input::-moz-placeholder {
  font-size: 24px;
  font-size: 2.4rem;
  padding-left: 9px;
  color: #999999;
  letter-spacing: 0.04em;
}

input:-ms-input-placeholder {
  font-size: 24px;
  font-size: 2.4rem;
  padding-left: 9px;
  color: #999999;
  letter-spacing: 0.04em;
}

input::-ms-input-placeholder {
  font-size: 24px;
  font-size: 2.4rem;
  padding-left: 9px;
  color: #999999;
  letter-spacing: 0.04em;
}

input::placeholder {
  font-size: 24px;
  font-size: 2.4rem;
  padding-left: 9px;
  color: #999999;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 480px) {
  input::-webkit-input-placeholder {
    font-size: 14px;
    font-size: 1.4rem;
  }
  input::-moz-placeholder {
    font-size: 14px;
    font-size: 1.4rem;
  }
  input:-ms-input-placeholder {
    font-size: 14px;
    font-size: 1.4rem;
  }
  input::-ms-input-placeholder {
    font-size: 14px;
    font-size: 1.4rem;
  }
  input::placeholder {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.privacy-wrap {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  margin: 40px auto 0;
  position: relative;
}
.privacy-wrap .error-text {
  font-size: 24px;
  font-size: 2.4rem;
}
@media screen and (max-width: 480px) {
  .privacy-wrap .error-text {
    font-size: 14px;
    font-size: 1.4rem;
  }
}
.privacy-wrap .required-mark {
  right: 0;
  left: auto;
}
@media screen and (max-width: 480px) {
  .privacy-wrap .required-mark {
    margin-left: 5px;
  }
}
.privacy-wrap a {
  display: inline-block;
  text-decoration: underline;
  color: #3f3b39;
}
.privacy-wrap .inline-privacy-policy-txt {
  margin: 0;
}
.privacy-wrap .inline-privacy-policy-txt a {
  display: inline-block;
  text-decoration: underline;
  color: #3f3b39;
}
.privacy-wrap .privacy-txt {
  font-size: 24px;
  font-size: 2.4rem;
  font-family: "Noto sans Regular", sans-serif;
  color: #3f3b39;
}
@media screen and (max-width: 480px) {
  .privacy-wrap .privacy-txt {
    font-size: 14px;
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 480px) {
  .privacy-wrap {
    margin-top: 30px;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

/* スマホ表示時にはテーブルを縦向きにする */
.contact-form-table,
.contact-form-table tbody,
.contact-form-table tr,
.contact-form-table th,
.contact-form-table td {
  width: auto;
  display: block;
}

/* ご住所だけ2段なのでマージンを開ける */
input[name="items[address]"] {
  margin-top: 8px;
}

/* 「不正な送信です」「時間を空けて再度送信ください」などのセキュリティエラー文 */
.sec-error-text {
  text-align: center;
  color: #ff0000;
}

/* 「任意」「必須」マーク */
.required-mark {
  font-family: "Noto sans Bold", sans-serif;
  font-size: 24px;
  font-size: 2.4rem;
  letter-spacing: 0.1em;
  color: #222222;
}
@media screen and (min-width: 481px) {
  .required-mark {
    margin-right: 5px;
  }
}
@media screen and (max-width: 480px) {
  .required-mark {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

/* 「~が入力されていません」などの未記入エラー文 */
.error-text {
  margin: 0 0 4px;
  color: #e74c3c;
}

/* 送信・確認ボタン */
.contact-submits-wrap {
  margin: 50px auto 0;
  text-align: center;
}

/* プライバシーポリシー */
label[for=agree] a {
  text-decoration: underline;
  word-break: keep-all;
}

.inline-privacy-policy {
  width: 100%;
  max-width: 670px;
  height: 252px;
  margin: 30px auto 0;
  border: 1px solid #f0f0f0;
}
.inline-privacy-policy-wrap {
  margin: 15px auto 0;
  background: #fff;
}
.inline-privacy-policy-txt {
  max-width: 96%;
  margin: auto;
  padding-top: 25px;
  padding-bottom: 10px;
  text-align: center;
  font-size: 24px;
  font-size: 2.4rem;
  font-family: "Noto sans Regular", sans-serif;
  color: #3f3b39;
  letter-spacing: 0.12em;
}
@media screen and (max-width: 480px) {
  .inline-privacy-policy-txt {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.inline-privacy-policy-inner {
  width: 100%;
  height: 100%;
  overflow: auto;
  display: inline-block;
}

.inline-privacy-policy iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: none;
}

/* リキャプチャ */
.contact-recaptcha-wrap {
  margin: 30px auto 0;
  display: table;
}

/* safariの自動CSSを打ち消す */
* {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.disable-auto-tel a {
  color: inherit;
  text-decoration: none;
}

a[href^="tel:"] {
  pointer-events: none;
}

.sec-inner,
.bread-inner {
  width: 1080px;
  max-width: 100%;
  margin: auto;
}

.sp-only, .middle-only {
  display: none !important;
}

/*	parts  PC
------------------------------------ */
a {
  display: inline-block;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
a:hover {
  opacity: 0.7;
}

.br {
  display: inline-block;
}

.over {
  overflow: hidden;
}

.cmn-txt,
#privacy .txt-box,
form p {
  font-family: "Noto sans Regular", sans-serif;
  font-size: 24px;
  font-size: 2.4rem;
  color: #3f3b39;
  letter-spacing: 0.096em;
  line-height: 1.583;
}
@media screen and (max-width: 480px) {
  .cmn-txt,
  #privacy .txt-box,
  form p {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.ofj {
  width: 100%;
  height: 100%;
  margin: auto;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

/*	cmn-btn  PC
------------------------------------ */
.cmn-btn {
  display: inline-block;
  width: 100%;
  height: 50px;
  border-radius: 25px;
  margin: auto;
  background: #ffb618;
  border: 2px solid #ff7418;
  text-align: center;
  font-family: "Noto sans Bold", sans-serif;
  font-size: 25px;
  font-size: 2.5rem;
  letter-spacing: 0.06em;
  color: #fff;
  line-height: 46px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
@media screen and (max-width: 480px) {
  .cmn-btn {
    font-size: 15px;
    font-size: 1.5rem;
  }
}
.cmn-btn::after {
  content: "";
  display: inline-block;
  width: 8px;
  height: 12px;
  margin: auto;
  background: url(../img/top/cmn-btn-arrow.png) no-repeat center/contain;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 15px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.cmn-btn-wrap {
  text-align: center;
}
.cmn-btn:hover {
  opacity: 1;
  background-color: #ff7418;
  color: #fff;
}
.cmn-btn:hover::after {
  right: 13px;
}

/*	cmn-table  PC
------------------------------------ */
.cmn-table {
  width: 100%;
  margin: auto;
  border-top: 1px solid #3f3b39;
  border-bottom: 1px solid #3f3b39;
}
.cmn-table tr:nth-of-type(n+2) {
  border-top: 1px solid #3f3b39;
}
.cmn-table th, .cmn-table td {
  padding: 16px 0;
  font-size: 19px;
  font-size: 1.9rem;
  color: #3f3b39;
  vertical-align: middle;
  white-space: pre-line;
}
@media screen and (max-width: 480px) {
  .cmn-table th, .cmn-table td {
    font-size: 14px;
    font-size: 1.4rem;
  }
}
.cmn-table th {
  width: 41%;
  padding-left: 7.143%;
  font-family: "Noto sans Bold", sans-serif;
  letter-spacing: 0.09em;
}
.cmn-table td {
  padding-right: 5.9%;
  font-family: "Noto sans Medium", sans-serif;
  letter-spacing: 0.08em;
}
.cmn-table td span {
  color: #45b7ff;
}
.cmn-table a {
  color: #3f3b39;
}

/*	heading  PC
------------------------------------ */
.head-type01 {
  text-align: center;
}
.head-type01-txt {
  display: inline-block;
  padding: 2px 10px 8px;
  background-size: auto auto;
  background-color: rgb(96, 223, 255);
  background-image: -webkit-repeating-linear-gradient(315deg, transparent, transparent 10px, rgb(125, 229, 255) 10px, rgb(125, 229, 255) 20px);
  background-image: repeating-linear-gradient(135deg, transparent, transparent 10px, rgb(125, 229, 255) 10px, rgb(125, 229, 255) 20px);
  border-radius: 9px;
  font-family: "tsukushi", sans-serif;
  font-size: 50px;
  font-size: 5rem;
  letter-spacing: 0.1em;
  color: #fff;
  line-height: 1;
}
@media screen and (max-width: 480px) {
  .head-type01-txt {
    font-size: 25px;
    font-size: 2.5rem;
  }
}
.head-type02 {
  padding-bottom: 20px;
  background: url(../img/head-type02-border.png) no-repeat center bottom;
  text-align: center;
  font-family: "Noto sans Bold", sans-serif;
  font-size: 45px;
  font-size: 4.5rem;
  letter-spacing: 0.12em;
  color: #3f3b39;
}
@media screen and (max-width: 480px) {
  .head-type02 {
    font-size: 23px;
    font-size: 2.3rem;
  }
}
.head-type02:first-letter {
  color: #45b7ff;
}
.head-type03 {
  font-family: "Noto sans Bold", sans-serif;
  font-size: 28px;
  font-size: 2.8rem;
  letter-spacing: 0.06em;
  color: #45b7ff;
}
@media screen and (max-width: 480px) {
  .head-type03 {
    font-size: 16px;
    font-size: 1.6rem;
  }
}
.head-type04 {
  width: 100%;
  margin: 30px auto 0;
  padding: 1.5px 20px;
  border-left: 10px solid #45b7ff;
  background-color: #fff;
  font-family: "Noto sans Bold", sans-serif;
  font-size: 30px;
  font-size: 3rem;
  letter-spacing: 0.06em;
  color: #45b7ff;
}
@media screen and (max-width: 480px) {
  .head-type04 {
    font-size: 17px;
    font-size: 1.7rem;
  }
}
.head-type05 {
  padding-bottom: 10px;
  border-bottom: 2px solid #60dfff;
  font-family: "Noto sans Bold", sans-serif;
  font-size: 30px;
  font-size: 3rem;
  letter-spacing: 0.06em;
  color: #3f3b39;
  line-height: 1.6;
}
@media screen and (max-width: 480px) {
  .head-type05 {
    font-size: 17px;
    font-size: 1.7rem;
  }
}

/*	pagetop  PC
------------------------------------ */
.fixed {
  display: inline-block;
  max-width: 120px;
  text-align: center;
  position: fixed;
  right: 20px;
  bottom: 20px;
  -webkit-transition: 0.5s all ease;
  transition: 0.5s all ease;
  z-index: 100;
}

.top-btn {
  margin: 100px auto 0;
}

/*	breadcrumb  PC
------------------------------------ */
.breadcrumb li {
  font-size: 16px;
  font-size: 1.6rem;
  font-family: "Noto sans Regular", sans-serif;
  color: #3f3b39;
  letter-spacing: 0.12em;
}
@media screen and (max-width: 480px) {
  .breadcrumb li {
    font-size: 12px;
    font-size: 1.2rem;
  }
}
@media screen and (min-width: 481px) {
  .breadcrumb li:nth-of-type(3) {
    max-width: 53%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}
@media screen and (max-width: 480px) {
  .breadcrumb li:last-child {
    width: 35%;
    display: block;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }
  .breadcrumb li:nth-of-type(2) {
    width: auto;
  }
}

.bread-inner {
  width: 100%;
  max-width: 1080px;
  margin: auto;
  position: relative;
  z-index: 9;
}

.breadcrumb a {
  display: inline-block;
  color: #3f3b39;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.breadcrumb a:hover {
  opacity: 0.7;
}

.breadcrumb .fle {
  width: 100%;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
@media screen and (min-width: 481px) {
  .breadcrumb .fle {
    max-width: 1080px;
  }
}
@media screen and (max-width: 480px) {
  .breadcrumb .fle {
    width: 90%;
    top: 0;
    left: 4%;
  }
}

.breadcrumb .fle li:not(:first-child)::before {
  content: "|";
  padding: 0 5px;
  color: #3f3b39;
}

/*	ggmap  PC
------------------------------------ */
.ggmap {
  width: 100%;
  height: 0;
  padding-top: 53.125%;
  overflow: hidden;
  position: relative;
}

.ggmap iframe {
  border: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* =========================================
  header  PC
========================================= */
/*	templeteの打ち消し
------------------------------------ */
.header-inner {
  max-width: 750px;
  background: #fff;
}

.inner {
  width: 100%;
  max-width: 750px;
}

.header-inner .inner ul {
  width: 248px;
}

.header-inner .inner ul li:nth-child(1) p {
  display: block;
}

.header-inner .inner ul li:nth-child(1) {
  font-size: 18px;
  font-size: 1.8rem;
}
@media screen and (max-width: 480px) {
  .header-inner .inner ul li:nth-child(1) {
    font-size: 13px;
    font-size: 1.3rem;
  }
}
@media screen and (min-width: 769px) {
  .header-inner .inner ul li:nth-child(1) a {
    padding-top: 5px;
  }
}

.header-inner .inner ul li:nth-child(2) p {
  font-size: 18px;
  font-size: 1.8rem;
}
@media screen and (max-width: 480px) {
  .header-inner .inner ul li:nth-child(2) p {
    font-size: 13px;
    font-size: 1.3rem;
  }
}

.header-inner .inner ul li:nth-child(2), .header-inner .inner ul li:nth-child(3) {
  border: none;
  border-radius: 0;
  background: none;
}

.header-inner .inner ul li:nth-child(3) {
  width: auto;
  height: auto;
}

.header-inner .inner ul li:nth-child(2) {
  width: auto;
  height: auto;
}

.header-inner .inner ul li:nth-child(3) {
  padding-left: 20px;
}

.main-catch {
  width: 52%;
  height: auto;
  top: auto;
  bottom: 31px;
}

.footer-nav, .header-nav {
  background: #45b7ff;
}

.header-nav ul li {
  width: 20%;
}
.header-nav ul li a {
  padding: 12px 0 10px;
}

.header-inner .inner {
  padding: 0;
}

/*	headline  PC
------------------------------------ */
.header-inner {
  padding: 12px 20px 12px 30px;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  left: 0;
}
.header-inner .inner li {
  border-left: 1px solid #b2b2b2 !important;
}
.header-inner .inner li:nth-child(2) p {
  color: #3f3b39 !important;
}
.header-inner .inner li a {
  padding: 0 20px;
}

.header-nav li:last-of-type a {
  padding-top: 17px;
}
.header-nav li:last-of-type p {
  margin-top: 15px;
}
.header-nav p {
  margin: 10px auto 0;
  font-family: "Noto sans Bold", sans-serif;
  font-size: 17px;
  font-size: 1.7rem;
  letter-spacing: 0.08em;
  color: #fff;
  line-height: 1;
}
@media screen and (max-width: 480px) {
  .header-nav p {
    font-size: 13px;
    font-size: 1.3rem;
  }
  .header-nav ul li p {
    font-size: 1.2rem;
  }
}

/*	gnav  PC
------------------------------------ */
#nav {
  max-width: 320px;
  width: 80%;
  height: 100vh;
  background-color: #fff;
  position: fixed;
  top: 0;
  z-index: 1000;
  overflow-y: scroll;
}
#nav li {
  border-top: 1px solid #45b7ff;
}
#nav li::-webkit-scrollbar {
 display: none;
}
#nav a {
  display: block;
  padding: 14px 0 14px 12.5%;
  font-family: "Noto sans Medium", sans-serif;
  font-size: 16px;
  font-size: 1.6rem;
  color: #3f3b39;
  letter-spacing: 0.12em;
}
@media screen and (max-width: 480px) {
  #nav a {
    font-size: 14px;
    font-size: 1.4rem;
  }
}
#nav a::after {
  content: none !important;
}
#nav a::hover {
  color: #45b7ff;
}
#nav .nav-card {
  padding: 30px 0 15px;
  text-align: center;
}
#nav .nav-false {
  position: absolute;
  top: 0;
  left: -50px;
  cursor: pointer;
}

.open #nav {
  display: block;
  right: calc(50% - 375px);
}
.open #nav li {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

/*	mv  PC
------------------------------------ */
/*	sp-menu-btn  PC
------------------------------------ */
.sp-menu-btn-wrp {
  position: static;
}

.sp-menu-btn-wrp .sp-menu-btn {
  width: 66px;
  height: 66px;
}

.sp-menu-btn-wrp {
  background: #ffb618;
  border-radius: 50%;
}

.sp-menu-btn-wrp .sp-menu-btn span {
  width: 34px;
  height: 4px;
}

.sp-menu-btn-wrp .sp-menu-btn .top {
  top: 18px;
}

.sp-menu-btn-wrp .sp-menu-btn .bottom {
  top: 42px;
}

.sp-menu-btn.active .top {
  -webkit-transform: translateY(13px) translateX(0px) rotate(45deg);
          transform: translateY(13px) translateX(0px) rotate(45deg);
}

.sp-menu-btn.active .bottom {
  -webkit-transform: translateY(-11px) translateX(0px) rotate(-45deg);
          transform: translateY(-11px) translateX(0px) rotate(-45deg);
}

/* =========================================
  footer  PC
========================================= */
#footer {
  padding-bottom: 100px;
}
#footer .footer-nav {
  padding: 0;
  border: none;
}
#footer .footer-nav ul li {
  width: 50%;
  border-top: 1px solid #60dfff;
}
#footer .footer-nav ul li:last-child {
  margin: 0;
}
#footer .footer-nav ul li:nth-of-type(2n) {
  border-left: 1px solid #60dfff;
}
#footer .footer-nav ul li a {
  display: block;
  width: 100%;
  padding: 20px 0;
  background-color: #45b7ff;
  text-align: center;
  font-family: "Noto sans Bold", sans-serif;
  font-size: 25px;
  font-size: 2.5rem;
  letter-spacing: 0.09em;
  color: #fff;
}
@media screen and (max-width: 480px) {
  #footer .footer-nav ul li a {
    font-size: 15px;
    font-size: 1.5rem;
  }
}
#footer .footer-inner {
  padding: 60px 6.25% 50px;
  background: #ffffff;
  text-align: center;
  color: #3f3b39;
}
#footer .f-txt {
  font-size: 24px;
  font-size: 2.4rem;
  letter-spacing: 0.09em;
  color: #3f3b39;
  font-family: "Noto sans Medium", sans-serif;
  line-height: 1.875;
}
@media screen and (max-width: 480px) {
  #footer .f-txt {
    font-size: 14px;
    font-size: 1.4rem;
  }
}
#footer .copyright {
  padding: 11px;
  background: #e0f9ff;
  text-align: center;
}
#footer .copyright-txt, #footer .copyright-link {
  color: #3f3b39;
  font-family: "Noto sans Medium", sans-serif;
  letter-spacing: 0.09em;
  font-size: 17px;
  font-size: 1.7rem;
}
@media screen and (max-width: 480px) {
  #footer .copyright-txt, #footer .copyright-link {
    font-size: 13px;
    font-size: 1.3rem;
  }
}
#footer .copyright-link {
  display: inline-block;
  padding: 0 3px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
#footer .copyright-link:hover {
  opacity: 0.7;
}

/* =========================================

  sub layout  PC

========================================= */
/*	sub mv  PC
------------------------------------ */
.sv {
  width: 100%;
  padding: 140px 0;
  text-align: center;
  position: relative;
}
.sv-works {
  background: url(../img/sub/works.png) no-repeat center/cover;
}
.sv-staff {
  background: url(../img/sub/staff.png) no-repeat center/cover;
}
.sv-case {
  background: url(../img/sub/case.png) no-repeat center/cover;
}
.sv-recruit {
  background: url(../img/sub/recruit.png) no-repeat center/cover;
}
.sv-faq {
  background: url(../img/sub/faq.png) no-repeat center/cover;
}
.sv-movie {
  background: url(../img/sub/movie.png) no-repeat center/cover;
}
.sv-company {
  background: url(../img/sub/company.png) no-repeat center/cover;
}
.sv-news {
  background: url(../img/sub/news.png) no-repeat center/cover;
}
.sv-contact {
  background: url(../img/sub/contact.png) no-repeat center/cover;
}
.sv-complete {
  background: url(../img/sub/complete.png) no-repeat center/cover;
}
.sv-privacy {
  background: url(../img/sub/privacy.png) no-repeat center/cover;
}
.sv-privacy .sv-catch-txt {
  font-size: 30px;
  font-size: 3rem;
}
@media screen and (max-width: 480px) {
  .sv-privacy .sv-catch-txt {
    font-size: 17px;
    font-size: 1.7rem;
  }
}
.sv-site {
  background: url(../img/sub/site.png) no-repeat center/cover;
}
.sv-e404 {
  background: url(../img/sub/e404.png) no-repeat center/cover;
}
.sv-e404 .sv-catch-txt {
  font-size: 30px;
  font-size: 3rem;
}
@media screen and (max-width: 480px) {
  .sv-e404 .sv-catch-txt {
    font-size: 17px;
    font-size: 1.7rem;
  }
}
.sv-catch {
  display: inline-block;
  padding: 5px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 30px;
}
.sv-catch-txt {
  display: block;
  padding: 30px;
  border: 2px solid #60dfff;
  border-radius: 30px;
  font-family: "Noto sans Bold", sans-serif;
  font-size: 40px;
  font-size: 4rem;
  letter-spacing: 0.12em;
  color: #3f3b39;
  line-height: 1;
}
@media screen and (max-width: 480px) {
  .sv-catch-txt {
    font-size: 22px;
    font-size: 2.2rem;
  }
}

/*	privacy  PC
------------------------------------ */
#privacy .privacy-box {
  max-width: 1080px;
  margin: 50px auto 0;
}
#privacy .privacy-box p {
  margin: 10px auto 0;
}
#privacy .privacy-box ul {
  padding-left: 20px;
}
#privacy .privacy-box li {
  list-style: disc;
}

/*	site  PCSP
------------------------------------ */
@media screen and (max-width: 480px) {
  #site .cmn-bg-sub {
    background-size: auto;
  }
}
#site .site-ul {
  width: 100%;
  max-width: 880px;
  margin: 30px auto 0;
}
@media screen and (max-width: 480px) {
  #site .site-ul {
    margin-top: 10px;
  }
}
#site .site-li {
  border-bottom: 1px solid #3f3b39;
}
#site .site-link {
  display: block;
  padding: 15px 2%;
  color: #3f3b39;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
#site .site-link:hover {
  opacity: 0.7;
}

/*	e404  PCSP
------------------------------------ */
#e404 .sec-inner {
  padding: 147px 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #3f3b39;
}
#e404 .top {
  display: contents;
  color: #3f3b39;
  text-decoration: underline;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
#e404 .top:hover {
  opacity: 0.7;
}
#e404 .section-content {
  text-align: center;
}
@media screen and (max-width: 480px) {
  #e404 .sec-inner {
    padding: 50px 15px;
  }
  #e404 .section-content {
    margin-top: 0;
  }
}

/* =========================================

  sub layout  SP

========================================= */
@media screen and (max-width: 768px) {
  /* =========================================
    base  SP
  ========================================= */
  .pc-only {
    display: none !important;
  }
  .sp-only {
    display: inherit !important;
  }
  a[href^="tel:"] {
    pointer-events: all;
  }
  /*	parts  SP
  ------------------------------------ */
  .sec-inner,
  .bread-inner,
  .middle-inner,
  .lg-inner .sec-inner.md {
    width: 100% !important;
  }
  /*	cmn-btn  SP
  ------------------------------------ */
  /*	cmn-table  SP
  ------------------------------------ */
  .cmn-table th, .cmn-table td {
    display: block;
    width: 100%;
    padding: 10px;
    text-align: left;
  }
  .cmn-table th {
    padding-bottom: 2px;
  }
  .cmn-table td {
    padding-top: 0;
  }
  /*	heading  SP
  ------------------------------------ */
  .head-type01-txt {
    padding: 4px 10px;
  }
  .head-type02 {
    background-size: 27px;
  }
  .head-type04 {
    margin-top: 15px;
    padding: 2px 12px;
    border-width: 5px;
  }
  /*	pagetop  SP
  ------------------------------------ */
  .fixed {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
        -ms-flex-align: end;
            align-items: flex-end;
    right: 20px;
  }
  /* =========================================
  header  SP
  ========================================= */
  /*	templeteの打ち消し
  ------------------------------------ */
  .header-inner {
    padding: 10px;
  }
  .header-inner .inner {
    padding: 0;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .header-logo {
    position: static;
    width: 44%;
  }
  /*	headline  SP
  ------------------------------------ */
  /*	mv  SP
  ------------------------------------ */
  /*	gnav  SP
  ------------------------------------ */
  /*	gnav-add  SP
  ------------------------------------ */
  /*	sp-menu-btn  SP
  ------------------------------------ */
  /*	ggmap  SP
  ------------------------------------ */
  /* =========================================
  footer  SP
  ========================================= */
  /* =========================================

    sub  SP

  ========================================= */
  /*	sub mv  SP
  ------------------------------------ */
  /*	------- */
}
@media screen and (max-width: 768px) and (max-width: 480px) {
  .header-logo {
    width: 118px;
  }
}
@media screen and (max-width: 768px) {
  .header-inner .inner ul {
    width: 45%;
  }
}
@media screen and (max-width: 768px) {
  .header-inner ul li {
    width: auto !important;
    background: none !important;
  }
}
@media screen and (max-width: 768px) {
  .header-inner .inner ul li a {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
        -ms-flex-align: end;
            align-items: flex-end;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 0 20px;
  }
}
@media screen and (max-width: 768px) and (max-width: 480px) {
  .header-inner .inner ul li a {
    padding: 0 13px;
  }
}
@media screen and (max-width: 768px) {
  .header-inner ul li img {
    width: auto;
    margin: auto;
    height: 26px;
    display: inline;
  }
}
@media screen and (max-width: 768px) {
  .header-inner ul li p {
    font-size: 18px;
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 768px) and (max-width: 480px) {
  .header-inner ul li p {
    font-size: 13px;
    font-size: 1.3rem;
  }
}
@media screen and (max-width: 768px) {
  .header-inner .inner ul li:nth-child(3) {
    padding-left: 20px;
  }
}
@media screen and (max-width: 768px) and (max-width: 480px) {
  .header-inner .inner ul li:nth-child(3) {
    padding-left: 10px;
  }
}
@media screen and (max-width: 768px) {
  .header-nav li:last-of-type a {
    padding-top: 12px;
  }
}
@media screen and (max-width: 768px) and (max-width: 480px) {
  .header-nav li:last-of-type a {
    padding-top: 19px;
  }
}
@media screen and (max-width: 768px) {
  .header-nav li:last-of-type img {
    height: 20px;
  }
}
@media screen and (max-width: 768px) {
  .header-nav li:last-of-type p {
    margin-top: 10px;
  }
}
@media screen and (max-width: 768px) {
  .open #nav li:nth-child(5) {
    margin: 0;
  }
}
@media screen and (max-width: 768px) {
  .open #nav {
    right: 0;
  }
}
@media screen and (max-width: 768px) {
  .sp-menu-btn-wrp .sp-menu-btn {
    width: 50px;
    height: 50px;
  }
  .sp-menu-btn-wrp .sp-menu-btn span {
    width: 28px;
    height: 2px;
  }
  .sp-menu-btn-wrp .sp-menu-btn .top {
    top: 16px;
  }
  .sp-menu-btn-wrp .sp-menu-btn .bottom {
    top: 32px;
  }
}
@media screen and (max-width: 768px) {
  .sp-menu-btn.active .top {
    top: 12px;
  }
}
@media screen and (max-width: 768px) {
  .sp-menu-btn.active .bottom {
    top: 35px;
  }
}
@media screen and (max-width: 768px) {
  #footer .copyright {
    width: 100%;
    margin: 20px auto 0;
    padding-bottom: 80px;
    text-align: center;
    position: static;
  }
  #footer .copyright-txt, #footer .copyright-link {
    font-size: 10px;
    font-size: 1rem;
  }
  #footer .copyright-link {
    white-space: nowrap;
  }
}
@media screen and (max-width: 768px) {
  .sv {
    padding: 25% 0;
  }
  .sv-catch {
    border-radius: 10px;
  }
  .sv-catch-txt {
    padding: 18px;
    border-radius: 10px;
  }
}
/*	------- */
/* =========================================
  breakpoint
========================================= */