@charset "UTF-8";
/* Header
========================================================================== */
/* Header Logo */
/* header-nav
========================================================================== */
/* sub-nav */
/* head　category */
/* Main
========================================================================== */
/* タイトル
========================================================================== */
/* youtube
========================================================================== */
/* footer
========================================================================== */
/* 画像表示
========================================================================== */
/*===========
inview
===========*/
/*===========
.imgBox
===========*/
/* 追従ボタン
========================================================================== */

.pc {
  display: none;
}

.sp {
  display: block;
}

.header {
  width: 94vw;
  min-height: 50px;
  border-radius: 25px;
  margin: 0 auto;
  z-index: 10;
  position: fixed;
  top: 10px;
  left: 50%;
  transform: translate(-50%, 0);
}

.header-blur {
  width: 94vw;
  min-height: 50px;
  border-radius: 25px;
  margin: 0 auto;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.header-white {
  width: 94vw;
  min-height: 50px;
  border-radius: 25px;
  margin: 0 auto;
  background-color: rgba(255, 255, 255, 0.8);
  border: 1px solid #1B2C26;
  padding: 0 30px;
}

.header-wrap {
  width: 94vw;
  min-height: 50px;
  border-radius: 25px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.header-primary {
  margin: 0;
}

.header-secondary {
  width: calc(100% - 200px);
  padding-right: 60px;
}

.header__logo-wrap {
  z-index: 10;
  width: 100%;
}

.header__logo {
  width: 145px;
  line-height: 0;
}

.nav {
  max-width: 100%;
  background-color: rgba(255, 255, 255, 0.8);
  border: 1px solid #1B2C26;
  border-radius: 25px;
}
.nav summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding: 0 1em;
  color: #1B2C26;
  font-weight: 600;
  cursor: pointer;
}
.nav summary::-webkit-details-marker {
  display: none;
}
.nav summary .nav-btn-wrap {
  z-index: 10;
  display: inline-block;
  position: absolute;
  right: 30px;
  cursor: pointer;
}
.nav summary .nav-btn {
  position: relative;
  display: block;
  height: 2px;
  width: 42px;
  border-radius: 3px;
}
.nav summary .nav-btn span {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1rem;
  line-height: 27px;
  transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
}
.nav summary .nav-btn:before {
  content: "";
  display: block;
  height: 100%;
  width: 100%;
  position: absolute;
  background: #2A367D;
  border-radius: 3px;
  transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
  top: 12px;
}
.nav summary .nav-btn:after {
  content: "";
  display: block;
  height: 100%;
  width: 100%;
  position: absolute;
  background: #2A367D;
  border-radius: 3px;
  transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
  bottom: 12px;
}
.nav .sub-nav {
  transform: translateY(-10px);
  opacity: 0;
  margin: 0;
  padding: 0.2em 1em 1em;
  color: #333333;
  transition: transform 0.5s, opacity 0.5s;
}

.nav[open] summary .nav-btn span {
  display: none;
}
.nav[open] summary .nav-btn:before {
  transform: rotate(-16deg);
  top: 0;
}
.nav[open] summary .nav-btn:after {
  transform: rotate(16deg);
  bottom: 0;
}
.nav[open] summary .nav-btn {
  background: rgba(0, 0, 0, 0);
  transition: 0.2192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
}
.nav[open] summary .header__nav .header__nav-txt {
  opacity: 0.3;
}
.nav[open] summary .header__nav .header__nav-txt:hover {
  background: rgba(255, 255, 255, 0.5);
}
.nav[open] summary .header__nav .header__nav-txt a {
  pointer-events: none;
}
.nav[open] summary .header__nav .header__nav-contact {
  opacity: 0.3;
}
.nav[open] summary .header__nav .header__nav-contact:hover {
  background: rgba(255, 255, 255, 0.5);
}
.nav[open] summary .header__nav .header__nav-contact a {
  pointer-events: none;
}
.nav[open] summary .header__nav .header__nav-contact-pc {
  opacity: 0.3;
}
.nav[open] summary .header__nav .header__nav-contact-pc:hover {
  background: rgba(255, 255, 255, 0.5);
}
.nav[open] summary .header__nav .header__nav-contact-pc a {
  pointer-events: none;
  background: #F2EADE;
}
.nav[open] summary .header__nav .header__nav-tel {
  opacity: 0.3;
}
.nav[open] summary .header__nav .header__nav-tel:hover {
  background: rgba(255, 255, 255, 0.5);
}
.nav[open] summary .header__nav .header__nav-tel a {
  pointer-events: none;
}
.nav[open] .sub-nav {
  transform: none;
  opacity: 1;
}

.sub-nav__list-wrap {
  border-top: 1px solid #1B2C26;
  border-bottom: 1px solid #1B2C26;
  padding: 20px 0;
  letter-spacing: 0.15em;
}

.sub-nav__list {
  display: flex;
  justify-content: center;
  flex-direction: column;
  flex-wrap: wrap;
  font-size: 1.5rem;
  margin: 30px 0;
  gap: 20px 0;
}
.sub-nav__list li {
  text-align: center;
}
.sub-nav__list li a {
  text-decoration: underline;
}

.sub-nav__tel {
  text-align: center;
  padding: 20px 0 30px;
}
.sub-nav__tel .tel {
  font-size: 1.8rem;
}
.sub-nav__tel .time {
  font-size: 1.2rem;
}

.header__nav {
  z-index: 10;
  font-size: 1.2rem;
  text-align: center;
  white-space: nowrap;
}

.header__nav-txt {
  display: none;
  border: 1px solid #1B2C26;
  background: #F2EADE;
  line-height: 34px;
  border-radius: 18px;
  margin-right: 16px;
}
.header__nav-txt a {
  display: block;
  padding: 0 25px 0 25px;
}
.header__nav-txt:hover {
  background: #22BCDD;
}

.header__nav-contact {
  position: relative;
  width: 30px;
  height: 30px;
  border: 1px solid #1B2C26;
  background: rgba(255, 255, 255, 0.5);
  background: #F2EADE;
  border-radius: 15px;
  margin-right: 10px;
}
.header__nav-contact a {
  position: absolute;
  left: 0;
  display: block;
  padding: 0;
  width: 29px;
  height: 29px;
  background-image: url("../img/common/nav/head_icon-mail.png");
  background-position: center center;
  background-size: 19px auto;
  background-repeat: no-repeat;
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
}
.header__nav-contact:hover {
  background: #22BCDD;
}

.header__nav-contact-pc {
  position: relative;
  display: none;
  border: 1px solid #1B2C26;
  line-height: 34px;
  border-radius: 18px;
  margin-right: 16px;
  overflow: hidden;
}
.header__nav-contact-pc::before {
  position: absolute;
  left: 25px;
  content: "";
  display: block;
  width: 24.5px;
  height: 34px;
  background-image: url("../img/common/nav/head_icon-mail.png");
  background-position: center left;
  background-size: 24.5px auto;
  background-repeat: no-repeat;
}
.header__nav-contact-pc {
  background: #F2EADE;
}
.header__nav-contact-pc a {
  display: block;
  padding: 0 25px 0 55px;
}
.header__nav-contact-pc:hover {
  background: #22BCDD;
}

.header__nav-tel {
  position: relative;
  width: 30px;
  height: 30px;
  border: 1px solid #1B2C26;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 15px;
  margin-right: 10px;
}
.header__nav-tel a {
  position: absolute;
  left: 0;
  display: block;
  padding: 0;
  width: 29px;
  height: 29px;
  background-image: url("../img/common/nav/head_icon-tel.png");
  background-position: center center;
  background-size: 30px auto;
  background-repeat: no-repeat;
  overflow: hidden;
  text-indent: 102%;
  white-space: nowrap;
}
.header__nav-tel:hover {
  background: #3CC6B4;
}

.main {
  width: 100%;
}

.headline1 {
  position: relative;
  font-size: 1.8rem;
  color: #2A367D;
  text-align: center;
}

.youtube {
  width: 100%;
}

.youtube-mv {
  width: 100%;
  aspect-ratio: 16/9;
}
.youtube-mv iframe {
  width: 100%;
  height: 100%;
  border-radius: 16px;
}

.footer {
  padding: 50px 0 100px;
  border-top: 1px solid #3B3B3B;
  background: #F7F6F4;
}

.footer__logo {
  margin: 0 auto;
  width: 195px;
}

.footer__link-wrap {
  border-top: 1px solid #3B3B3B;
  border-bottom: 1px solid #3B3B3B;
  padding: 40px 0;
}

.footer__link {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: min(4.8vw, 1.8rem);
}
.footer__link a {
  color: #3B3B3B;
}
.footer__link li:not(:last-child) {
  padding-bottom: 10px;
}
.footer__link li:hover {
  opacity: 0.7;
}

.footer__txt {
  text-align: center;
  color: #3B3B3B;
  font-weight: 400;
  font-size: min(3.73vw, 1.4rem);
  margin-top: 20px;
}

.fadeIn_up {
  opacity: 0;
  transform: translate(0, 50%);
  transition: 2s;
}

.fadeIn_up.is-show {
  transform: translate(0, 0);
  opacity: 1;
}

.imgBox {
  text-align: center;
  margin: 0;
}
.imgBox img {
  max-width: 100%;
  height: auto;
  vertical-align: top;
}

.fixed_btn {
  position: fixed;
  z-index: 99999;
  bottom: 0;
  left: calc(50% - 170px);
  width: 340px;
  border-radius: 16px 16px 0 0;
  background-color: #1258C9;
  text-align: center;
}
.fixed_btn a {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  background-color: #1258C9;
  border-radius: 16px 16px 0 0;
  border: 1px solid #1B2C26;
  padding: 4px;
}
.fixed_btn a span {
  display: block;
}
.fixed_btn a span:first-child {
  font-size: 27px;
}
.fixed_btn a span:nth-child(2) {
  font-size: 14px;
  line-height: 20px;
  writing-mode: vertical-rl;
}
.fixed_btn a span:nth-child(3) {
  position: relative;
  font-size: 21px;
  padding: 0 10px;
  margin: 0 6px;
}
.fixed_btn a span:nth-child(3)::before {
  content: "";
  position: absolute;
  left: 0;
  top: calc(50% - 14px);
  background: #fff;
  width: 2px;
  height: 27px;
}
.fixed_btn a span:nth-child(3)::after {
  content: "";
  position: absolute;
  right: 0;
  top: calc(50% - 14px);
  background: #fff;
  width: 2px;
  height: 27px;
}
.fixed_btn a span:nth-child(4) {
  font-size: 10px;
  margin-right: 10px;
}
.fixed_btn a::after {
  position: absolute;
  bottom: calc(50% - 9px);
  right: 30px;
  content: "";
  width: 18px;
  height: 18px;
  background-image: url("../img/common/arrow_under.png");
  background-position: center;
  background-size: contain;
}
.fixed_btn a:hover {
  opacity: 0.8;
}

@media screen and (min-width: 750px) {
  .pc {
    display: block;
  }
  .sp {
    display: none;
  }
  .header {
    min-height: 80px;
    border-radius: 40px;
    top: 20px;
  }
  .header-blur {
    min-height: 80px;
    border-radius: 40px;
  }
  .header-white {
    min-height: 80px;
    border-radius: 40px;
  }
  .header-wrap {
    min-height: 80px;
    border-radius: 40px;
  }
  .header-secondary {
    width: calc(100% - 300px);
    padding-right: 100px;
  }
  .header__logo {
    width: 275px;
  }
  .nav {
    border-radius: 40px;
  }
  .nav summary .nav-btn-wrap {
    right: 50px;
  }
  .nav summary {
    padding: 0 2em;
  }
  .nav summary .nav-btn {
    width: 80px;
  }
  .nav summary .nav-btn span {
    top: -12px;
    font-size: 1.2rem;
    line-height: 27px;
    transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
  }
  .nav summary .nav-btn:before {
    top: 15px;
  }
  .nav summary .nav-btn:after {
    bottom: 15px;
  }
  .nav .sub-nav {
    padding: 0.3em 2em 1.5em;
  }
  .sub-nav__list {
    flex-direction: row;
    font-size: 2rem;
    letter-spacing: 0.2em;
  }
  .sub-nav__list li::before {
    content: "";
    padding: 0 10px;
  }
  .sub-nav__list li::after {
    content: "｜";
    padding: 0 10px;
  }
  .sub-nav__list li:last-child:after {
    content: "";
  }
  .sub-nav__tel .tel {
    font-size: 2.7rem;
  }
  .sub-nav__tel .time {
    font-size: 1.8rem;
  }
  .header__nav-contact {
    width: 36px;
    height: 36px;
    border-radius: 18px;
    margin-right: 16px;
  }
  .header__nav-contact a {
    width: 34px;
    height: 34px;
    background-size: 24px auto;
  }
  .header__nav-tel {
    width: 36px;
    height: 36px;
    border-radius: 18px;
    margin-right: 16px;
  }
  .header__nav-tel a {
    width: 34px;
    height: 34px;
    background-size: 34px auto;
  }
  .youtube-mv {
    width: 560px;
  }
  .footer {
    padding: 50px 0 30px;
  }
  .footer__logo {
    width: 230px;
  }
  .footer__link-wrap {
    padding: 20px 0;
  }
  .footer__link {
    flex-direction: row;
    font-size: min(1.37vw, 2rem);
  }
  .footer__link li:not(:last-child) {
    padding-bottom: 0;
    padding: 0;
  }
  .footer__link li:not(:last-child)::after {
    content: "｜";
    color: #3B3B3B;
    padding: 10px;
  }
  .footer__txt {
    font-size: 1.4rem;
    margin-top: 40px;
  }
  .fixed_btn {
    top: 290px;
    right: 0;
    left: auto;
    bottom: auto;
    width: 90px;
    border-radius: 34px 0 0 34px;
    background-color: #1258C9;
    text-align: center;
  }
  .fixed_btn a {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #fff;
    background-color: #1258C9;
    border-radius: 34px 0 0 34px;
    border: 1px solid #1B2C26;
    padding: 30px 0;
  }
  .fixed_btn a span {
    display: block;
  }
  .fixed_btn a span:first-child {
    font-size: 43px;
    writing-mode: vertical-rl;
    margin-bottom: 5px;
  }
  .fixed_btn a span:nth-child(2) {
    font-size: 21px;
    line-height: 21px;
    margin-bottom: 20px;
    writing-mode: horizontal-tb;
  }
  .fixed_btn a span:nth-child(3) {
    position: relative;
    font-size: 21px;
    line-height: 24px;
    margin-bottom: 20px;
  }
  .fixed_btn a span:nth-child(3)::before {
    content: "";
    width: 36px;
    height: 2px;
    display: inline-block;
    background-color: #fff;
    position: absolute;
    bottom: -8px;
    top: auto;
    left: calc(50% - 18px);
  }
  .fixed_btn a span:nth-child(3)::after {
    content: "";
    width: 36px;
    height: 2px;
    display: inline-block;
    background-color: #fff;
    position: absolute;
    bottom: -8px;
    top: auto;
    left: calc(50% - 18px);
    top: -10px;
  }
  .fixed_btn a span:nth-child(4) {
    font-size: 14px;
    line-height: 16px;
    margin-bottom: 35px;
    margin-right: 0;
  }
  .fixed_btn a::after {
    position: absolute;
    bottom: 30px;
    left: calc(50% - 13px);
    content: "";
    width: 26px;
    height: 26px;
    background-image: url("../img/common/arrow_under.png");
    background-position: center;
    background-size: contain;
  }
  .fixed_btn a:hover {
    opacity: 0.8;
  }
}
@media screen and (min-width: 1230px) {
  .header__nav-contact {
    display: none;
  }
  .header__nav-contact-pc {
    display: block;
  }
  .header__nav-txt {
    display: block;
  }
}/*# sourceMappingURL=common.css.map */