@charset "UTF-8";
/* aタグ設定
------------------------------------- */
@media (any-hover: hover) {
  a:hover, button:hover {
    opacity: 0.75;
  }
}

a, button {
  transition-property: all;
  transition-duration: 0.3s;
  transition-timing-function: ease;
  transition-delay: 0s;
  text-decoration: none;
  color: currentColor;
  cursor: pointer;
}

/* 基本設定
------------------------------------- */
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  -webkit-text-size-adjust: 100%;
  color: #484848;
  font-size: 1.6rem;
  font-family: "Noto sans JP", sans-serif;
}

ul {
  list-style: none;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

/* デフォルトの三角形アイコンを非表示にする */
summary {
  display: block;
  list-style: none;
}

summary::-webkit-details-marker,
summary::marker {
  display: none;
}

img {
  width: 100%;
  height: auto;
}

.teal {
  color: #0A93A5;
}

.bg_teal {
  background-color: #E2F6F4;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background-color: #fff;
}

.header__bottom {
  color: #fff;
  background-color: #77CCD0;
}

.btn::after {
  transition: transform 0.3s;
}

/* 表示状態 */
.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
}

@media (hover: hover) {
  .btn:hover {
    opacity: 1;
  }
  .btn:hover::after {
    transform: translate(3px, -50%);
  }
}
/* レスポンシブ設定
------------------------------------- */
@media screen and (min-width: 769px) {
  body {
    font-size: 1.6rem;
  }
  .sp {
    display: none !important;
  }
  #wrapper {
    padding-top: 162px;
  }
  .inner {
    max-width: 1060px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
  }
  .btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 500px;
    height: 60px;
    margin-top: 60px;
    margin-left: auto;
    margin-right: auto;
    color: #fff;
    background-color: #EC8136;
    font-weight: 700;
    border-radius: 6px;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  }
  .btn::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 21px;
    transform: translateY(-50%);
    display: block;
    width: 18px;
    height: 18px;
    background: url("/wp/wp-content/themes/okatashi-theme/assets/images/icon_btn_arrow.svg") 0 0 no-repeat;
    background-size: contain;
    transition: transform 0.3s;
  }
  .header {
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  }
  .header .header__left {
    width: 280px;
  }
  .header.scrolled .header__top {
    height: 80px;
  }
  .header.scrolled .header__item a, .header.scrolled .header__item span {
    padding: 9px 21px 9px;
  }
  .header.scrolled .header__detail a {
    padding: 3px;
  }
  .header.scrolled .header__menu {
    height: auto;
  }
  .header.scrolled .header__detail-list {
    top: 44px;
  }
  .header__top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100px;
    padding-left: 30px;
    padding-right: 30px;
  }
  .header__right {
    display: flex;
    align-items: center;
    gap: 20px;
  }
  .header__info {
    width: 166px;
  }
  .header__phone {
    width: 189px;
  }
  .header__line {
    width: 176px;
  }
  .header__menu {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: -moz-fit-content;
    width: fit-content;
    height: 62px;
    margin-left: auto;
    margin-right: auto;
  }
  .header__item {
    position: relative;
    font-size: 1.8rem;
    font-weight: 700;
  }
  .header__item a, .header__item span {
    display: block;
    padding: 18px 21px 22px;
  }
  .header__item:hover .header__detail-list {
    opacity: 1;
    visibility: visible;
  }
  .header__detail-list {
    position: absolute;
    top: 62px;
    left: 0;
    width: 225px;
    padding: 20px;
    color: #484848;
    background-color: #fff;
    border-radius: 8px;
    font-size: 1.4rem;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }
  .header__detail-list .header__detail a {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 3px;
  }
  .header__detail-list .header__detail a::before {
    content: "";
    flex-shrink: 0;
    display: block;
    width: 4px;
    height: 6px;
    background: url("/wp/wp-content/themes/okatashi-theme/assets/images/common/header_menu_icon.svg") 0 0 no-repeat;
    background-size: contain;
  }
  .footer {
    padding-top: 56px;
    background-color: #FCF5E2;
  }
  .footer .inner {
    padding-bottom: 60px;
  }
  .footer__logo {
    display: block;
  }
  .footer__logo span {
    font-size: 1.4rem;
    font-weight: 700;
  }
  .footer__logo img {
    margin-top: 10px;
    width: 223px;
  }
  .footer__container {
    display: flex;
    justify-content: space-between;
    margin-top: 37px;
  }
  .footer__content {
    width: 30.9%;
  }
  .footer__topic {
    padding-bottom: 3px;
    font-weight: 900;
    border-bottom: 1px solid #484848;
  }
  .footer__topic:not(:first-of-type) {
    margin-top: 26px;
  }
  .footer__list {
    margin-top: 10px;
  }
  .footer__link {
    display: flex;
    margin-top: 6px;
    font-weight: 700;
    font-size: 1.4rem;
  }
  .footer__link::before {
    content: "";
    display: block;
    background: url("/wp/wp-content/themes/okatashi-theme/assets/images/common/footer_icon.svg") 0 0 no-repeat;
    background-size: contain;
    width: 21px;
    height: 21px;
  }
  .footer__text {
    margin-top: 10px;
    font-size: 1.4rem;
    font-weight: 700;
  }
  .footer__text a {
    text-decoration: underline;
    font-feature-settings: "palt";
  }
  .footer__phone {
    display: block;
    margin-top: 26px;
  }
  .footer__consult {
    display: block;
    margin-top: 10px;
  }
  .footer__bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 38px;
    color: #fff;
    background-color: #484848;
    font-size: 1.2rem;
    font-weight: 700;
  }
  .floating_ad {
    display: none;
  }
  .back-to-top {
    position: fixed;
    bottom: 15px;
    right: 15px;
    width: 60px;
    height: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding-top: 18px;
    font-size: 1.2rem;
    background-color: rgba(255, 122, 19, 0.8);
    color: #fff;
    border: none;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    z-index: 99;
    transition: opacity 0.4s ease, visibility 0.4s ease;
  }
  .back-to-top::before {
    content: "";
    display: block;
    width: 26px;
    height: 15px;
    background: url("/wp/wp-content/themes/okatashi-theme/assets/images/common/icon_pagetop.svg") 0 0 no-repeat;
    background-size: contain;
  }
}
@media screen and (max-width: 1000px) {
  .header__item {
    font-size: 1.4rem;
  }
  .header__item a, .header__item span {
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media screen and (max-width: 768px) {
  .pc {
    display: none !important;
  }
  #wrapper {
    padding-top: 65px;
  }
  .inner {
    padding-left: 18px;
    padding-right: 18px;
  }
  .btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 60px;
    margin-top: 30px;
    margin-left: auto;
    margin-right: auto;
    color: #fff;
    background-color: #EC8136;
    font-weight: 700;
    border-radius: 6px;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  }
  .btn::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 21px;
    transform: translateY(-50%);
    display: block;
    width: 18px;
    height: 18px;
    background: url("/wp/wp-content/themes/okatashi-theme/assets/images/icon_btn_arrow.svg") 0 0 no-repeat;
    background-size: contain;
  }
  .btn__inner {
    padding-left: 17px;
    padding-right: 17px;
  }
  .header {
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  }
  .header .header__left {
    width: 136px;
  }
  .header__top {
    display: flex;
    align-items: center;
    gap: 11px;
    height: 70px;
    padding-left: 9px;
  }
  .header__info {
    width: 94px;
  }
  .header__phone {
    display: none;
  }
  .header__bottom {
    display: none;
  }
  .header__line {
    display: none;
  }
  .menu__btn {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 300;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    width: 100px;
    height: 70px;
    padding: 16px 22px 12px;
    color: #fff;
    background-color: #77CCD0;
  }
  .menu__btn .bar {
    display: block;
    width: 40px;
    height: 2px;
    background-color: #fff;
  }
  .menu__btn .menu__text {
    font-size: 1.4rem;
    font-weight: 700;
  }
  .menu__btn.is-open span.bar_top {
    transform: translate(0, 8px) rotate(30deg);
  }
  .menu__btn.is-open span.bar_middle {
    opacity: 0;
    transform: scaleX(0);
  }
  .menu__btn.is-open span.bar_bottom {
    transform: translate(0, -5px) rotate(-30deg);
  }
  .menu {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100vh;
    opacity: 0;
    visibility: hidden;
    transition: opacity, visibility;
    transition-duration: 240ms;
    background-color: rgba(0, 0, 0, 0.3);
  }
  .menu.is-open {
    opacity: 1;
    visibility: visible;
  }
  .menu__container {
    position: relative;
    z-index: 100;
    width: 100%;
    height: 100%;
    padding-bottom: 53px;
    background-color: #fff;
    text-align: center;
    overflow-y: auto;
  }
  .menu__overlay {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99;
    display: none;
    width: 100%;
    height: 100vh;
    cursor: pointer;
  }
  .menu__logo {
    width: 55px;
    margin-left: auto;
    margin-right: auto;
  }
  .menu__list {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-top: 1px solid #231815;
    margin-top: 118px;
  }
  .menu__item a {
    position: relative;
    display: block;
    padding-top: 14px;
    padding-bottom: 14px;
    font-size: 1.6rem;
    font-weight: 700;
  }
  .menu__sns-list {
    display: flex;
    width: -moz-fit-content;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
  }
  .menu__sns {
    width: 70px;
  }
  .menu__sns a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 10px;
  }
  .menu__sns img {
    width: 30px;
    height: 30px;
  }
  .menu__link {
    position: relative;
    background: none;
    border-bottom: 1px solid #231815;
    font-size: 1.6rem;
    font-weight: 700;
    width: 100%;
    padding: 15px 0;
    text-align: left;
    cursor: pointer;
  }
  .menu__link span {
    display: block;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background-color: #3B3B3B;
    border-radius: 50%;
  }
  a.menu__link span {
    background: url("/wp/wp-content/themes/okatashi-theme/assets/images/menu_link-icon.svg") 0 0 no-repeat;
    background-size: contain;
  }
  button.menu__link span {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  button.menu__link span::before, button.menu__link span::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: block;
    background-color: #fff;
  }
  button.menu__link span::before {
    width: 9px;
    height: 1px;
  }
  button.menu__link span::after {
    width: 1px;
    height: 9px;
    transition: opacity 0.3s;
  }
  .menu__item.open button.menu__link span::after {
    opacity: 0;
  }
  .menu__child {
    margin: 0;
    font-size: 1.4rem;
    list-style: none;
    text-align: left;
    background-color: #FCF5E2;
  }
  .menu__child li {
    position: relative;
    padding-left: 31px;
    border-bottom: 1px solid #fff;
  }
  .menu__child li::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translateY(-50%) rotate(45deg);
    display: block;
    width: 5px;
    height: 5px;
    border-top: 1px solid #231815;
    border-right: 1px solid #231815;
  }
  .menu__child li a {
    display: block;
    padding: 10px 0;
  }
  .menu__info {
    margin-top: 40px;
    width: 53%;
    margin-left: auto;
    margin-right: auto;
  }
  .menu__banner_phone {
    display: block;
    width: 80%;
    margin-top: 10px;
    margin-left: auto;
    margin-right: auto;
  }
  .menu_banner_line {
    display: block;
    width: 80%;
    margin-top: 14px;
    margin-left: auto;
    margin-right: auto;
  }
  .footer {
    padding-top: 26px;
    padding-bottom: 80px;
    background-color: #FCF5E2;
  }
  .footer .inner {
    padding-bottom: 30px;
    padding-left: 38px;
    padding-right: 38px;
  }
  .footer__logo {
    display: block;
  }
  .footer__logo span {
    display: block;
    width: -moz-fit-content;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.3rem;
    font-weight: 700;
  }
  .footer__logo img {
    margin-top: 6px;
    width: 300px;
    margin-left: auto;
    margin-right: auto;
  }
  .footer__container {
    display: flex;
    justify-content: center;
    margin-top: 25px;
  }
  .footer__topic {
    font-weight: 900;
    border-bottom: 1px solid #484848;
    padding-bottom: 7px;
  }
  .footer__topic:not(:first-of-type) {
    margin-top: 17px;
  }
  .footer__list {
    margin-top: 10px;
  }
  .footer__link {
    display: flex;
    margin-top: 6px;
    font-weight: 700;
    font-size: 1.4rem;
  }
  .footer__link::before {
    content: "";
    display: block;
    background: url("/wp/wp-content/themes/okatashi-theme/assets/images/common/footer_icon.svg") 0 0 no-repeat;
    background-size: contain;
    width: 21px;
    height: 21px;
  }
  .footer__text {
    margin-top: 5px;
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.2;
  }
  .footer__text a {
    text-decoration: underline;
    font-feature-settings: "palt";
  }
  .footer__phone {
    display: block;
    margin-top: 26px;
  }
  .footer__consult {
    display: block;
    margin-top: 5px;
  }
  .footer__bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 38px;
    color: #fff;
    background-color: #484848;
    font-size: 1.2rem;
    font-weight: 700;
  }
  .floating_ad {
    position: fixed;
    bottom: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
    width: 100%;
    height: 80px;
    background: url("/wp/wp-content/themes/okatashi-theme/assets/images/common/floating_ad-bg.svg") 0 0 repeat;
    background-size: cover;
    z-index: 2;
  }
  .floating_ad-btn {
    width: 177px;
  }
  .back-to-top {
    position: fixed;
    bottom: 80px;
    right: 0;
    width: 60px;
    height: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding-top: 18px;
    font-size: 1.2rem;
    background-color: rgba(255, 122, 19, 0.8);
    color: #fff;
    border: none;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    z-index: 99;
    transition: opacity 0.4s ease, visibility 0.4s ease;
  }
  .back-to-top::before {
    content: "";
    display: block;
    width: 26px;
    height: 15px;
    background: url("/wp/wp-content/themes/okatashi-theme/assets/images/common/icon_pagetop.svg") 0 0 no-repeat;
    background-size: contain;
  }
}
@media screen and (max-width: 374px) {
  .footer__logo span {
    font-size: 1.2rem;
  }
  .footer__logo img {
    width: 250px;
  }
}/*# sourceMappingURL=base.css.map */