@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700;900&family=Oswald:wght@500;600;700&family=Noto+Serif+JP:wght@500;600;700&display=swap");
html {
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #fff;
  color: #363636;
  font-size: 0.9rem;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.5;
  overflow-x: hidden;
  position: relative;
}
@media screen and (min-width: 375px) {
  body {
    font-size: 1rem;
  }
}

a {
  background-color: transparent;
  -webkit-text-decoration-skip: objects;
  text-decoration: none;
  cursor: pointer;
  transition: 0.3s;
}
a:hover {
  outline-width: 0;
  text-decoration: none;
  opacity: 0.8;
}

img {
  max-width: 100%;
  height: auto;
  border-style: none;
  display: inline-block;
  -o-object-fit: contain;
     object-fit: contain;
}

strong {
  font-weight: 700;
}

/* ============= common class ================ */
.inner {
  width: calc(100% - 20px);
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
@media screen and (min-width: 768px) {
  .inner {
    max-width: 1000px;
  }
}

@media screen and (min-width: 576px) {
  .disp_xs {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  .disp_tab {
    display: none !important;
  }
  .disp_pc {
    display: none !important;
  }
  .disp_notsp {
    display: none !important;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .disp_sp {
    display: none !important;
  }
  .disp_pc {
    display: none !important;
  }
}
@media screen and (min-width: 1024px) {
  .disp_sp {
    display: none !important;
  }
  .disp_tab {
    display: none !important;
  }
  .disp_notpc {
    display: none !important;
  }
}
.oswald {
  font-family: "Oswald", sans-serif !important;
  font-weight: 500;
}

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

.semi {
  font-weight: 600 !important;
}

.bold {
  font-weight: 700 !important;
}

.center {
  text-align: center;
}

/*------------------------------------------------------
    header
-------------------------------------------------------*/
.header {
  width: 100%;
  background-color: #fff;
  position: relative;
  z-index: 1041;
}
@media screen and (min-width: 768px) {
  .header {
    min-height: 91px;
  }
}
.header__lead {
  height: 25px;
  background-color: #F15D04;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header__lead__container {
  width: calc(100% - 20px);
  max-width: 1200px;
}
.header__lead__txt {
  color: #fff;
  font-size: 14px;
  white-space: nowrap;
  line-height: 25px;
}
@media screen and (min-width: 420px) and (max-width: 767px) {
  .header__lead__container {
    max-width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .header__lead__txt {
    display: flex;
    overflow: hidden;
  }
  .header__lead__txt span {
    flex-shrink: 0;
  }
  .header__lead__txt span:nth-child(odd) {
    animation: loop1 20s -10s infinite linear;
  }
  .header__lead__txt span:nth-child(even) {
    animation: loop2 20s infinite linear;
  }
}
@media screen and (min-width: 768px) {
  .header__lead {
    height: 21px;
  }
}
@media screen and (min-width: 1440px) {
  .header__lead__container {
    transform: translateX(-20px);
  }
}
@keyframes loop1 {
  0% {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes loop2 {
  0% {
    transform: translateX(0);
  }
  to {
    transform: translateX(-200%);
  }
}
.header__container {
  width: calc(100% - 20px);
  max-width: 1200px;
  height: 100%;
  padding: 20px 0 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
@media screen and (min-width: 768px) {
  .header__container {
    width: calc(100% - 30px);
    height: auto;
    padding-top: 0;
  }
}
.header__ttl {
  width: calc(100% - 140px);
  padding-bottom: 1px;
}
.header__ttl__txt01 {
  color: #303030;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.03em;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}
.header__ttl__txt02 {
  width: 100%;
  color: #F15D04;
  font-weight: 700;
  font-size: 18px;
  line-height: 1;
  display: block;
}
.header__ttl__txt03 {
  color: #000;
  font-size: 14px;
  line-height: 1.142;
  white-space: nowrap;
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 375px) {
  .header__ttl__txt02 {
    font-size: 20px;
  }
}
@media screen and (min-width: 768px) {
  .header__ttl {
    width: auto;
  }
  .header__ttl__txt01 {
    position: relative;
    top: -2px;
    left: 0;
  }
  .header__ttl__txt02 {
    padding-bottom: 7px;
  }
  .header__ttl__txt03 {
    flex-direction: row;
    grid-gap: 1em;
  }
}
@media screen and (min-width: 1024px) {
  .header__ttl__txt03 {
    grid-gap: 1em;
  }
}
@media screen and (min-width: 1440px) {
  .header__ttl {
    margin-left: -20px;
  }
}
.header__btns {
  padding: 0 48px 2px 0;
  display: flex;
  align-items: flex-end;
  grid-gap: 5px;
  position: absolute;
  top: 27px;
  right: 0;
}
.header__btns__btn {
  width: 44px;
  height: 44px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header__btns__btn--tel {
  background: linear-gradient(180deg, #9BDB3D 0%, #1C950B 100%);
  border-radius: 4px;
}
.header__btns__btn--tel img {
  width: 25px;
  display: block;
}
.header__btns__btn--mail {
  background: linear-gradient(180deg, #FF9300 0%, #F78500 25%, #EB5100 100%);
  border-radius: 4px;
}
.header__btns__btn--mail img {
  width: 28px;
  display: block;
}
.header__btns__btn--menu {
  width: 53px;
  height: 53px;
  background-color: #F9A200;
  flex-direction: column;
  position: fixed;
  top: 42px;
  right: 0;
  cursor: pointer;
  z-index: 1042;
  transform: translateY(-2px);
}
.header__btns__btn--menu span {
  width: 28px;
  height: 3px;
  border-radius: 2px;
  margin-bottom: 6px;
  background-color: #fff;
  transition: 0.5s;
}
.header__btns__btn--menu span:last-child {
  margin-bottom: 0;
}
.header__btns__btn--menu.fixed {
  transform: translateY(0);
}
.header__btns__btn--menu.open {
  position: fixed;
  top: 0 !important;
  right: 0;
  z-index: 1000000;
}
.header__btns__btn--menu.open span {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  transform: rotate(45deg);
}
.header__btns__btn--menu.open span + span {
  transform: rotate(-45deg);
}
.header__btns__btn--menu.open span:last-child {
  transform: scale(0);
}
@media screen and (min-width: 768px) {
  .header__btns {
    height: 70px;
    padding: 0 65px 0 0;
    align-items: center;
    grid-gap: 10px;
    font-size: 100%;
    position: relative;
    top: 0;
  }
  .header__btns__btn {
    width: auto;
    padding: 0 8px;
    letter-spacing: -0.2px;
    white-space: nowrap;
    grid-gap: 5px;
  }
  .header__btns__btn:hover {
    color: #fff;
  }
  .header__btns__btn--tel {
    height: 35px;
    background: linear-gradient(180deg, #52B53A 0%, #52B53A 45%, #229507 55%, #229507 100%);
    box-shadow: 0 4px #146A00;
    display: flex;
    align-items: center;
  }
  .header__btns__btn--tel .oswald {
    font-weight: 500;
    font-size: 23px;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 2px rgba(0, 0, 0, 0.3);
  }
  .header__btns__btn--tel img {
    width: 15px;
  }
  .header__btns__btn--mail {
    height: 35px;
    background-color: #E38B2F;
    box-shadow: 0 4px #A0570B;
    font-size: 19px;
    font-weight: 700;
    display: flex;
    align-items: center;
  }
  .header__btns__btn--mail img {
    width: 20px;
  }
  .header__btns__btn--menu {
    width: 70px;
    height: 70px;
    grid-gap: 0;
    transition: transform 0.3s ease;
    top: 20px;
    transform: translateY(0);
  }
  .header__btns__btn--menu span {
    width: 32px;
    margin-bottom: 7.5px;
  }
  .header__btns__btn--menu.open {
    transform: translateX(-428px);
  }
  .header__btns__btn img {
    flex-shrink: 0;
  }
}
@media screen and (min-width: 1024px) {
  .header__btns {
    margin-left: 10px;
    grid-gap: 5px;
  }
  .header__btns__btn--tel, .header__btns__btn--mail {
    width: 190px;
    height: 55px;
    padding: 0 4px;
    line-height: 1;
    flex-wrap: wrap;
    align-content: center;
    grid-gap: 2px 5px;
  }
  .header__btns__btn--tel .text, .header__btns__btn--mail .text {
    width: 100%;
    text-align: center;
  }
  .header__btns__btn--tel span {
    display: block;
  }
  .header__btns__btn--tel .text {
    font-size: 14px;
  }
  .header__btns__btn--mail {
    padding: 0 4px;
    font-size: 16px;
    grid-gap: 2px;
  }
  .header__btns__btn--mail img {
    width: 18px;
  }
  .header__btns__btn--mail .text {
    font-size: 14px;
  }
}
@media screen and (min-width: 1200px) {
  .header__btns {
    margin-right: 0;
  }
}
@media screen and (min-width: 1440px) {
  .header__btns {
    padding-right: 0;
    grid-gap: 10px;
  }
  .header__btns__btn--tel, .header__btns__btn--mail {
    width: 230px;
    padding: 0 8px;
  }
  .header__btns__btn--tel {
    width: 220px;
    padding-top: 3px;
  }
  .header__btns__btn--tel .text {
    margin-top: -3px;
  }
  .header__btns__btn--mail {
    font-size: 19px;
    grid-gap: 2px 5px;
  }
  .header__btns__btn--mail img {
    width: 20px;
  }
}
.header__credit {
  width: 100%;
  max-width: 220px;
}
.header__credit__txt {
  margin-bottom: 5px;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
}
.header__credit img {
  width: 100%;
  display: block;
}
@media screen and (min-width: 1024px) {
  .header__credit {
    max-width: 200px;
    margin: 0 0 0 auto;
  }
}
@media screen and (min-width: 1200px) {
  .header__credit {
    max-width: 250px;
    margin: 0 10px 0 auto;
  }
}
.header__menu {
  width: 0;
  height: 100vh;
  background: #F6A503;
  position: fixed;
  top: 0;
  right: 0;
  pointer-events: none;
  opacity: 0;
  transition: 0.3s;
  z-index: 1041;
  overflow-y: auto;
}
.header__menu.open {
  width: 100%;
  opacity: 1;
  pointer-events: auto;
}
.header__menu__container {
  width: calc(100% - 20px);
  max-width: 355px;
  padding: 83px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.header__menu__nav_wrap {
  width: 100%;
  padding: 30px 20px 32px 20px;
  margin-bottom: 20px;
  background-color: #fff;
  border-radius: 8px;
}
.header__menu__nav {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 29px 0;
}
.header__menu__navlink {
  padding: 0 0 0 20px;
  color: #F15D04;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  display: block;
  position: relative;
}
.header__menu__navlink::before {
  content: "";
  width: 9px;
  height: 9px;
  border-top: 2px solid #F15D04;
  border-right: 2px solid #F15D04;
  display: block;
  transform: rotate(45deg);
  position: absolute;
  top: 6px;
  left: 0;
}
.header__menu__btnblk {
  width: 100%;
  padding: 14px 16px 25px;
  margin: 0 auto;
  background-color: #fff;
  border-radius: 8px;
}
.header__menu__btnblk__txt {
  margin-bottom: 20px;
  color: #191919;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.03em;
  line-height: 1.2;
}
.header__menu__btns {
  display: grid;
  grid-gap: 14px;
}
.header__menu__btns__btn {
  width: 100%;
  height: 95px;
  border-radius: 3px;
  color: #fff;
  letter-spacing: -0.2px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.header__menu__btns__btn:hover {
  color: #fff;
}
.header__menu__btns__btn img {
  margin-right: 5px;
}
.header__menu__btns__btn--tel {
  padding-bottom: 28px;
  margin-bottom: 8px;
  background: linear-gradient(180deg, #52B53A 0%, #52B53A 50%, #229507 60%, #229507 100%);
  box-shadow: 0 4px #146A00;
  font-size: 39px;
  font-weight: 500;
  text-shadow: 0 2px 2px rgba(0, 0, 0, 0.3);
}
.header__menu__btns__btn--tel .oswald {
  margin-bottom: 10px;
  display: block;
}
.header__menu__btns__btn--tel .icon {
  width: 22px;
}
.header__menu__btns__btn--tel .note {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
  text-shadow: none;
  position: absolute;
  bottom: 10px;
  left: 20%;
}
.header__menu__btns__btn--mail {
  padding: 4px 0 0 0;
  background: #F88600;
  box-shadow: 0 4px #F15D04;
  font-weight: 700;
  flex-wrap: wrap;
  align-items: center;
}
.header__menu__btns__btn--mail__txt1 {
  width: 100%;
  font-size: 15px;
}
.header__menu__btns__btn--mail__txt1 span {
  color: #ff0;
}
.header__menu__btns__btn--mail__txt2 {
  margin: -10px 0 10px;
  font-size: 20px;
  display: block;
}
.header__menu__btns__btn--mail__txt2 .icon {
  width: 33px;
  transform: translate(-14px, -2px);
}
@media screen and (min-width: 375px) {
  .header__menu__nav_wrap {
    padding: 30px 0px 32px 40px;
  }
}
@media screen and (min-width: 768px) {
  .header__menu {
    height: 100vh;
    top: 0;
  }
  .header__menu.open {
    width: 428px;
  }
}

/*------------------------------------------------------
    footer
-------------------------------------------------------*/
.footer__company {
  padding: 30px 0;
}
.footer__company__ttl {
  margin-bottom: 18px;
  color: #F15D04;
  font-size: 33px;
  font-weight: 700;
}
.footer__company__table {
  width: 100%;
  max-width: 355px;
  margin: 0 auto;
  line-height: 1.5;
}
.footer__company__table th, .footer__company__table td {
  padding: 10px 0;
  border-bottom: 1px solid #D3D3D3;
  font-weight: 400;
}
.footer__company__table th {
  width: 130px;
}
@media screen and (min-width: 768px) {
  .footer__company__table td a.tel {
    pointer-events: none;
  }
}
.footer__copyright {
  width: 100%;
  height: 24px;
  background-color: #45b702;
  color: #fff;
  font-size: 14px;
  line-height: 24px;
  text-align: center;
}
.footer__btns {
  width: 100%;
  padding-bottom: 4px;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 1039;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s linear;
}
.footer__btns__container {
  width: 100%;
  max-width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer__btns__list {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.footer__btns__btn {
  width: 100%;
  height: 56px;
  border-radius: 3px;
  padding: 0 8px;
  color: #fff;
  letter-spacing: -0.2px;
  line-height: 1;
  white-space: nowrap;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  align-content: center;
  grid-gap: 0 5px;
}
.footer__btns__btn:hover {
  color: #fff;
}
.footer__btns__btn .text {
  width: 100%;
  font-weight: 500;
  letter-spacing: -0.01em;
  text-align: center;
}
.footer__btns__btn img {
  display: block;
  flex-shrink: 0;
}
.footer__btns__btn--tel {
  padding: 0 11px 0 0;
  background: #45B702;
  box-shadow: 0 4px #146A00;
  font-size: 125%;
  align-items: flex-start;
}
.footer__btns__btn--tel .oswald {
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
}
.footer__btns__btn--tel .text {
  font-size: 70%;
  line-height: 1;
  display: block;
}
.footer__btns__btn--tel img {
  width: 0.7em;
  margin-top: 2px;
}
.footer__btns__btn--mail {
  background: #F88600;
  box-shadow: 0 4px #F15D04, -3px -3px 6px rgba(0, 0, 0, 0.16) inset;
  font-weight: 700;
  text-align: center;
}
.footer__btns__btn--mail__txt1 {
  width: 100%;
  margin-bottom: 5px;
  font-size: 87.5%;
  display: block;
}
.footer__btns__btn--mail__txt1 span {
  color: #FFFF00;
}
.footer__btns__btn--mail__txt2 {
  font-size: 87.5%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer__btns__btn--mail__txt2 img {
  width: 1.57em;
}
@media screen and (min-width: 768px) {
  .footer__btns {
    background: #F6A503;
  }
  .footer__btns__container {
    width: calc(100% - 20px);
    max-width: 1171px;
    height: 66px;
    grid-gap: 6px;
  }
  .footer__btns__list {
    width: 46.8%;
    grid-gap: 10px;
    flex-shrink: 0;
  }
  .footer__btns__btn {
    width: 100%;
    max-width: 300px;
    height: 58px;
    grid-gap: 10px 5px;
  }
  .footer__btns__btn--tel {
    padding: 0;
    position: relative;
  }
  .footer__btns__btn--tel::after {
    content: "";
    width: 30px;
    height: 30px;
    background: url(../images/cta_btn.png) center/contain no-repeat;
    display: block;
    position: absolute;
    bottom: 20px;
    right: -2px;
  }
  .footer__btns__btn--tel .oswald {
    margin-right: 30px;
    display: block;
  }
  .footer__btns__btn--tel .text {
    padding: 0 2px;
    font-size: 14px;
  }
  .footer__btns__btn--tel .text span {
    color: #ff0;
  }
  .footer__btns__btn--tel img {
    margin: 3px 0 0 0;
  }
  .footer__btns__btn--mail {
    box-shadow: 0 4px #F15D04;
  }
  .footer__btns__btn--mail__txt1 {
    margin-bottom: -4px;
  }
  .footer__btns__img {
    width: 100%;
    max-width: 360px;
    height: 80px;
    margin: 0 -10px -4px 10px;
    display: block;
    flex-shrink: 0;
    align-self: flex-end;
    -o-object-position: right bottom;
       object-position: right bottom;
  }
}
@media screen and (min-width: 830px) {
  .footer__btns__container {
    justify-content: center;
  }
}
@media screen and (min-width: 1024px) {
  .footer__btns__container {
    width: calc(100% - 30px);
    max-width: 1166px;
    justify-content: space-between;
  }
  .footer__btns__list {
    width: calc(100% - 550px);
    grid-gap: 16px;
  }
  .footer__btns__btn--tel {
    font-size: 30px;
    grid-gap: 5px;
  }
  .footer__btns__btn--tel::after {
    bottom: -12px;
    left: calc(50% + 95px);
  }
  .footer__btns__btn--tel .oswald {
    margin: 0;
  }
  .footer__btns__btn--mail__txt1 {
    font-size: 14px;
  }
  .footer__btns__btn--mail__txt2 {
    font-size: 18px;
  }
  .footer__btns__img {
    max-width: 524px;
    height: 90px;
    margin: 0 0 -4px 0;
  }
}
@media screen and (min-width: 1200px) {
  .footer__btns__container {
    height: 90px;
    padding: 5px 0;
  }
  .footer__btns__btn {
    height: 76px;
  }
  .footer__btns__btn--tel {
    margin-right: 5px;
  }
  .footer__btns__btn--tel::after {
    width: 40px;
    height: 40px;
    bottom: -10px;
    right: 8px;
  }
  .footer__btns__btn--tel--tel {
    font-size: 32px;
  }
  .footer__btns__btn--tel--tel::after {
    width: 36px;
    height: 36px;
  }
  .footer__btns__btn--tel--tel .oswald {
    margin-bottom: 11px;
  }
  .footer__btns__btn--tel--tel img {
    margin: 9px -9px 2px -3px;
  }
  .footer__btns__btn--mail {
    margin-left: 5px;
  }
  .footer__btns__btn--mail__txt1 {
    margin-bottom: 0;
    font-size: 16px;
  }
  .footer__btns__btn--mail__txt2 {
    font-size: 21px;
  }
  .footer__btns__img {
    max-width: 530px;
    height: 112px;
    margin: 0 3px -9px -3px;
  }
}
.footer.visible {
  padding-bottom: 60px;
}
.footer.visible .footer__btns {
  opacity: 1;
  pointer-events: auto;
}
@media screen and (min-width: 768px) {
  .footer.visible {
    padding-bottom: 90px;
  }
}

/*------------------------------------------------------
    contents
-------------------------------------------------------*/
.secTtl {
  width: 100%;
  height: 52px;
  margin-bottom: 30px;
  background: linear-gradient(180deg, #FF9300 0%, #F78500 25%, #EB5100 100%);
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  text-shadow: 1px 2px 0px rgba(0, 0, 0, 0.16);
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .secTtl {
    height: 52px;
    font-size: 24px;
  }
}

/* pagination */
ul.page-numbers {
  width: 100%;
  margin-top: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  grid-gap: 12px;
}
ul.page-numbers .page-numbers {
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}
ul.page-numbers .page-numbers.current {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  color: #fff;
  font-weight: 700;
}
ul.page-numbers .page-numbers.next {
  width: 8px;
  margin-left: 4px;
}
ul.page-numbers .page-numbers.prev {
  width: 8px;
  margin-right: 4px;
  transform: scale(-1, 1);
}
@media screen and (min-width: 768px) {
  ul.page-numbers {
    max-width: 480px;
    margin: 50px auto 0;
  }
}