@charset "UTF-8";
/* ----------------------------------------------------------------
Setting
---------------------------------------------------------------- */
html {
  height: 100%;
  overflow: auto;
  font-size: 15px;
}
img {
  vertical-align: bottom;
  max-width: 100%;
}
ol, ul {
  list-style-type: none;
}
a {
  text-decoration: none;
}
a, a:hover, a:visited {
  color: inherit;
}
@media screen and (min-width: 1026px) {
  /*PCのみ*/
  a img {
    transition: opacity 0.2s ease-out;
  }
  a:hover {
    text-decoration: underline;
  }
  a:hover img {
    opacity: 0.6;
  }
}
body {
  color: #000000;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  position: relative;
  overflow: hidden;
}
/*--ここから記述--*/
/* ----------------------------------------------------------------
共通
---------------------------------------------------------------- */
.zen-maru-gothic-regular {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 400;
  font-style: normal;
}
.zen-maru-gothic-medium {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-style: normal;
}
.zen-maru-gothic-bold {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-style: normal;
}
.monomaniac-one-regular {
  font-family: "Monomaniac One", sans-serif;
  font-weight: 400;
  font-style: normal;
}
.sp, .pc, .pctablet, .sptablet {
  display: none;
}
@media screen and (min-width: 1026px) {
  .pctablet {
    display: block !important;
  }
}
@media screen and (max-width: 1025px) {
  .sptablet {
    display: block !important;
  }
}
@media screen and (min-width: 768px) {
  /*PCのみ*/
  .pc {
    display: block !important;
  }
}
@media screen and (max-width: 767px) {
  /*Spのみ*/
  .sp {
    display: block !important;
  }
}
.h2_area {
  margin-bottom: 40px;
}
.h2_area h2 {
  font-family: "Monomaniac One", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 6.2rem;
  line-height: 1;
  margin-bottom: 10px;
}
.h2_area p.sub {
  font-size: 1.3rem;
  letter-spacing: 0.2rem;
}
.btn_area {
  margin-top: 40px;
}
.btn_area .btn a {
  display: block;
  font-size: 1.7rem;
  max-width: 315px;
  width: 100%;
  position: relative;
  background: #57b6f7;
  transition: background-color 0.3s ease;
  color: #fff;
  border-radius: 5px;
  text-align: center;
  padding: 0.5rem 1rem;
  margin: auto;
}
.btn_area .btn a:before {
  content: "";
  position: absolute;
  width: 90px;
  height: 80px;
  background: url("../img/paint_y.svg")0 0 no-repeat;
  background-size: contain;
  top: 0;
  bottom: 0;
  margin: auto;
  right: -45px;
}
.btn_area .btn a:after {
  content: "";
  position: absolute;
  width: 25px;
  height: 18px;
  background: url("../img/arrow_b.svg")0 0 no-repeat;
  background-size: contain;
  top: 0;
  bottom: 0;
  margin: auto;
  right: -8px;
}
.btn_area .btn a:hover {
  text-decoration: none;
  background: #2e9cf5;
}
@media screen and (max-width: 767px) {
  /*spのみ*/
  .h2_area {
    margin-bottom: 20px;
  }
  .h2_area h2 {
    font-size: 3.5rem;
    margin-bottom: 5px;
  }
  .h2_area p.sub {
    font-size: 1.2rem;
  }
  .btn_area .btn a {
    font-size: 1.3rem;
    max-width: 255px;
  }
  .btn_area .btn a:before {
    width: 74px;
    height: 66px;
    right: -38px;
  }
  .btn_area .btn a:after {
    width: 22px;
    height: 16px;
    right: -7px;
  }
  .btn_area {
    margin-top: 30px;
  }
}
/* ----------------------------------------------------------------
header
---------------------------------------------------------------- */
header {
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 1000;
}
/* スクロール後に固定されたヘッダー */
header.fixed {
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: background-color 0.4s ease, box-shadow 0.4s ease;
}
header h1 a {
  display: block;
}
header a:hover {
  text-decoration: none;
}
@media screen and (min-width: 1026px) {
  /*PCのみ*/
  header .inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 65px;
    max-width: 1240px;
    padding: 0 20px;
    width: 100%;
    margin: 0 auto;
  }
  header h1 {
    font-size: 10px;
    text-align: center;
  }
  header h1 img {
    width: 130px;
    display: block;
    padding-bottom: 5px;
  }
  header .gnav {
    display: flex;
    align-items: center;
    height: 100%;
  }
  header .gnav nav ul {
    display: flex;
  }
  header .gnav nav ul li a {
    font-size: 1.2rem;
    color: #38a9cc;
    position: relative;
    text-align: center;
    margin: 0 20px;
    display: block;
  }
  header .gnav nav ul li a:hover {
    opacity: 1;
  }
  header .gnav nav ul li a::after {
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    content: '';
    width: calc(100% - 20px);
    height: 1px;
    background: #38a9cc;
    bottom: 0px;
    transform: scale(0, 1);
    transform-origin: left top;
    transition: transform 0.6s;
  }
  header .gnav nav ul li a:hover::after {
    transform: scale(1, 1);
  }
  header .mail_btn a {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #bebebe;
    height: 65px;
    width: 65px;
    transition: background-color 0.3s ease;
  }
  header .mail_btn a img {
    width: 30px;
  }
  header .mail_btn a:hover img {
    opacity: 1;
  }
  header .mail_btn a:hover {
    background: #a2a2a2;
  }
}
@media screen and (max-width: 1025px) {
  header {
    height: 38px;
    z-index: 900;
  }
  header .inner {
    padding: 0 5%;
    height: 100%;
    display: flex;
    align-items: center;
  }
  header h1 img {
    width: 80px;
    margin-right: 10px;
	    display: block;
  vertical-align: middle; 
  }
#headr_logo a {
  display: flex;
  align-items: center; 
  min-height: 56px;  
}
}
/* ----------------------------------------------------------------
ハンバーガーメニュー
---------------------------------------------------------------- */
.menu-toggle {
  display: none;
  cursor: pointer;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1000;
  height: 38px;
  width: 38px;
  padding: 3px 0px;
}
.menu-toggle span {
  display: block;
  width: 23px;
  height: 1px;
  margin: 7px 8px;
  background: #000;
  transition: all 0.3s ease;
}
.menu-toggle.active span.ac_no {
  display: none;
}
.menu-toggle.active span:first-child {
  transform: rotate(-45deg);
}
.menu-toggle.active span:last-child {
  transform: rotate(45deg);
}
.menu-toggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}
@media (max-width: 1025px) {
  .menu-toggle {
    display: block;
  }
  .gnav {
    position: fixed;
    right: -100vw;
    top: 38px;
    width: 100vw;
    background: #000000e3;
    transition: right 0.3s ease;
    z-index: 999;
  }
  .gnav.open {
    right: 0;
  }
  .gnav ul {
    padding: 10px 4% 10px 4%;
  }
  .gnav ul li a {
    display: block;
    padding: 25px 35px 25px 15px;
    color: #fff;
    border-bottom: 1px #7b7b7b dashed;
    font-size: 1.2rem;
    position: relative;
    letter-spacing: 0.1em;
  }
  .gnav ul li:last-child a {
    border-bottom: none;
  }
  .gnav ul li a:before {
    content: ">";
    font-family: "noto-sans-cjk-jp", sans-serif;
    font-style: normal;
    position: absolute;
    font-size: 12px;
    right: 5px;
    color: #fff;
    margin-top: -6px;
    top: 50%;
    line-height: 1;
  }
  .gnav ul li.sp_btn {
    margin-top: 40px;
  }
  .gnav ul li.sp_btn a {
    font-size: 0.8rem;
    border: solid 1px #fff;
    padding: 10px 15px;
    border-radius: 50px;
    text-align: center;
    width: 230px;
  }
}
/* ----------------------------------------------------------------
footer
---------------------------------------------------------------- */
footer {
  background: #8acadf;
  padding: 30px 0 10px;
}
#copy {
  color: #fff;
  text-align: center;
  font-size: 0.8rem;
}
@media screen and (min-width: 1026px) {
  /*PCのみ*/
  #footer_nav_area {
    max-width: 1240px;
    padding: 0 20px;
    width: 100%;
    margin: 0 auto 30px;
    display: flex;
    justify-content: space-between;
    align-items: start;
  }
  #footer_nav_area #footer_logo {
    width: 130px;
    display: block;
  }
  #footer_nav_area #footer_nav {
    display: flex;
    width: 550px;
    flex-wrap: wrap;
    justify-content: end;
  }
  #footer_nav_area #footer_nav > ul {
    display: flex;
    margin-bottom: 5px;
    flex-wrap: wrap;
  }
  #footer_nav_area #footer_nav ul > li + li {
    position: relative;
  }
  #footer_nav_area #footer_nav ul > li + li::before {
    content: "";
    display: block;
    height: 1em;
    border-left: 1px solid #fff;
    position: absolute;
    top: 0;
    margin: auto;
    transform: rotate(25deg);
  }
  #footer_nav_area #footer_nav ul > li a {
    font-size: 1rem;
    position: relative;
    text-align: center;
    padding: 0 20px;
    margin: 0 10px;
    display: block;
    color: #fff;
    transition: opacity 0.2s ease-out;
  }
  #footer_nav_area #footer_nav ul > li a:hover {
    opacity: 0.6;
    text-decoration: none;
  }
}
@media (max-width: 1025px) {
  footer {
    padding: 20px 5% 10px;
  }
  #footer_nav {
    display: none;
  }
  #footer_nav_area #footer_logo {
    width: 80px;
    margin: 0 auto 20px;
    display: block;
  }
}
/* ----------------------------------------------------------------
contact
---------------------------------------------------------------- */
#contact .h2_area p {
  color: #fff;
}
#contact .h2_area h2 span {
  color: #fff;
}
#contact {
  background: #ffc7c9;
  position: relative;
  padding: 80px 0;
}
#contact:before {
  position: absolute;
  content: "";
  background: url("../img/bg_parts_003.png")center center no-repeat;
  max-width: 1100px;
  width: 100%;
  height: 100%;
  background-size: contain;
  margin: auto;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 0;
}
#contact .inner {
  max-width: 1000px;
  margin: 0 auto;
  width: 100%;
  text-align: center;
  position: relative;
}
#contact .txt_area {
  margin-bottom: 50px;
}
#contact .txt_area .mail {
  width: 220px;
  margin: 0 auto 30px;
}
#contact .txt_area p {
  font-size: 1.8rem;
  line-height: 1.8;
}
.contact_btn .btn {
  position: relative;
  display: inline-block;
}
.contact_btn a {
  display: inline-block;
  position: relative;
  padding: 18px 66px;
  background: #e5f7ffba;
  color: #66bde2;
  font-weight: 700;
  font-size: 2.2rem;
  text-decoration: none;
  border-radius: 9999px;
  border: 2px solid #a7e0f8;
  transition: all 0.3s ease;
  z-index: 1;
}
.contact_btn .btn:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 9999px;
  background: #7cd2e7;
  border: 2px solid #fff;
  transform: translate(-4px, 8px);
  z-index: 0;
}
.contact_btn a:hover {
  background: #d2f1ff;
}
@media (max-width: 1025px) {
  #contact {
    padding: 30px 5% 40px;
  }
  #contact .txt_area .mail {
    width: 150px;
    margin: 0 auto 20px;
  }
  #contact .txt_area p {
    font-size: 1.2rem;
  }
  #contact .txt_area {
    margin-bottom: 30px;
  }
  .contact_btn a {
    padding: 18px 36px;
    font-size: 1.5rem;
  }
  #contact:before {
    background: url("../img/bg_parts_003_sp.png")center center no-repeat;
    background-size: cover;
  }
}
/* ----------------------------------------------------------------
パスワード保護
---------------------------------------------------------------- */
.post-password-form {
font-size: 1rem !important;
}
.post-password-form input[type="password"] {
  border:1px solid #ddd;
  padding: 0 1em;
}
.post-password-form input[type="submit"] {
  border:none;
  color:#ffffff;
  background:#000000;
	    padding: 10px;
}