/*----------------------------
基本設定
----------------------------*/

:root {
  --zenkaku: 'Zen Kaku Gothic New', sans-serif;
  --main-color: #e95283;
  --font-main: #222222;
  --font-sub: #e95283;
  --border-color: #737373;
  --bg-color: #efefef;
  --drawer-bar-gap: 8px;
  --duration: 300ms;
  --easing: ease;
}

.com-img {
  display: block;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.com-img img {
  position: absolute;
  top: 50% !important;
  left: 50% !important;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  font-family: 'object-fit: cover; object-position: bottom';
  -o-object-position: center;
  object-position: center;
  min-height: 100%;
  min-width: 100%;
  transform: translateX(-50%) translateY(-50%);
  border-radius: 10px;
}

.text-l {
  text-align: left;
}

.text-c {
  text-align: center;
}

.text-r {
  text-align: right;
}

.pc-visible {
  display: block;
}
.sp-visible {
  display: none;
}
@media (max-width: 767px) {
  .pc-visible {
    display: none;
  }
  .sp-visible {
    display: block;
  }
}

img {
  max-inline-size: 100%;
  block-size: auto;
}

.container {
  max-inline-size: 1500px;
  margin-inline: auto;
  position: relative;
}

.inbox {
  width: 100%;
  padding-inline: 20px;
}

/*----------------------------
汎用
----------------------------*/
body {
  color: var(--font-main);
  font-family: var(--zenkaku);
  letter-spacing: 0.05em;
  line-height: 1.5;
  font-weight: 500;
  &::before {
    background-image: url(../img/pc/bg.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: '';
    display: block;
    z-index: -1;
  }
}

.c-button {
  margin-block-start: 20px;
  a {
    inline-size: 100%;
    border: 1px solid var(--main-color);
    background-color: var(--main-color);
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    border-radius: 8px;
    display: block;
    text-align: center;
    padding: 15px 10px;
    transition: all 0.3s ease;
    position: relative;
    &::before {
      content: '';
      display: inline-block;
      mask-image: url('../img/common/arrow.svg');
      mask-position: center;
      mask-repeat: no-repeat;
      mask-size: contain;
      background-color: #fff;
      position: absolute;
      right: 20px;
      top: 50%;
      transform: translateY(-50%);
      inline-size: 10px;
      aspect-ratio: 1 / 1;
      transition: all 0.3s ease;
    }
    &:hover {
      background-color: #fff;
      color: var(--main-color);
      &::before {
        background-color: var(--main-color);
      }
    }
  }
}

@media only screen and (max-width: 767px) {
  .c-button {
    a {
      inline-size: 100%;
    }
  }
}

/*----------------------------
title
----------------------------*/
.title__group {
  margin-block-end: 30px;
}
.title__jp {
  font-size: 24px;
  font-weight: 600;
  color: var(--font-main);
  margin-block-end: 5px;
}
.title__en {
  font-size: 12px;
  font-weight: 600;
  color: var(--font-sub);
  text-transform: uppercase;
}

.title__main {
  font-size: 30px;
  letter-spacing: 0.1em;
  margin-block-end: 30px;
  line-height: 1.2;
  color: var(--font-sub);
}
/*----------------------------
pc-nav
----------------------------*/
.pc-nav {
  inline-size: 210px;
  position: fixed;
  top: 0;
  left: calc(50% - (187.5px + 210px + 20px));
  transform: translateX(-100%);
  z-index: 100;
  background-color: #fff;
  padding: 40px 15px;
  border-radius: 0 0 10px 10px;
}

.pc-nav__title {
  font-size: 20px;
  font-weight: 600;
  color: var(--font-sub);
  margin-block-end: 30px;
}

.pc-nav__link {
  font-size: 18px;
  font-weight: 600;
  color: var(--font-sub);
  display: block;
  position: relative;
  transition: all 0.3s ease;
  padding-block: 20px;
  border-bottom: 1px solid var(--main-color);
  &:hover {
    opacity: 0.7;
  }
  &::after {
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    mask-image: url('../img/common/arrow.svg');
    mask-position: center;
    mask-repeat: no-repeat;
    mask-size: contain;
    background-color: var(--main-color);
    inline-size: 11px;
    aspect-ratio: 1 / 1;
  }
}

@media only screen and (max-width: 1255px) {
  .pc-nav {
    left: 0;
    transform: none;
  }
}

@media only screen and (max-width: 815px) {
  .pc-nav {
    display: none;
  }
}

/*----------------------------
contents
----------------------------*/
.contents {
  inline-size: 100%;
  max-inline-size: 375px;
  margin: 0 auto;
  background-color: #f8f8f8;
  border-left: 1px solid var(--main-color);
  border-right: 1px solid var(--main-color);
  overflow: hidden;
}

@media only screen and (max-width: 375px) {
  .contents {
    border: none;
  }
}

/*----------------------------
header
----------------------------*/
.header {
  padding: 20px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__logo {
  inline-size: 65vw;
  transition: all 0.3s ease;
  &:hover {
    opacity: 0.7;
  }
}

.sp-nav {
  display: none;
}
@media only screen and (max-width: 815px) {
  .header {
    padding: 30px 20px;
  }
  .sp-nav {
    display: block;
  }
  .drawer-button {
    position: fixed;
    top: 1%;
    right: 5%;
    z-index: 1002;
    display: flex;
    flex-direction: column;
    gap: 2px;
    align-items: center;
    justify-content: center;
    padding: 8px;
    touch-action: manipulation;
    cursor: pointer;
    background-color: transparent;
    border: none;
    background: var(--main-color);
    color: #fff;
    border-radius: 50vw;
    inline-size: 65px;
    aspect-ratio: 1 / 1;
    box-shadow: 0px 8px 4px -6px rgba(0, 0, 0, 0.5);
    transition: top 0.3s ease;
  }
  .drawer-button.scrolled {
    top: 2%;
  }

  .drawer-button:where(.is-open *) {
    background: #fff;
    color: var(--font-main);
  }

  .drawer-button__icon {
    position: relative;
    width: 30px;
    height: auto;
    aspect-ratio: 1;
  }

  .drawer-button__bar {
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    width: 100%;
    height: 2px;
    background-color: #fff;
    border-radius: 9999px;
  }

  .drawer-button__bar:where(.is-open *) {
    background-color: var(--main-color);
  }

  .drawer-button__bar:nth-child(1) {
    transform: translate(-50%, calc(-50% - var(--drawer-bar-gap)));
    transition: transform var(--duration) var(--easing);
  }

  .drawer-button__bar:nth-child(2) {
    transform: translate(-50%, -50%);
    transition: opacity var(--duration) var(--easing);
  }

  .drawer-button__bar:nth-child(3) {
    transform: translate(-50%, calc(-50% + var(--drawer-bar-gap)));
    transition: transform var(--duration) var(--easing);
  }

  .drawer-button__bar:nth-child(1):where(.is-open *) {
    transform: translate(-50%, -50%) rotate(45deg);
  }

  .drawer-button__bar:nth-child(2):where(.is-open *) {
    opacity: 0;
  }

  .drawer-button__bar:nth-child(3):where(.is-open *) {
    transform: translate(-50%, -50%) rotate(-45deg);
  }

  .drawer-button__text {
    font-size: 10px;
    line-height: 1;
  }

  .drawer-nav[hidden] {
    display: none;
  }

  .drawer-nav {
    position: fixed;
    inset: 0;
    z-index: 1001;
    background: transparent;
  }

  .drawer-nav__inner {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    padding: 48px 24px;
    background-color: var(--main-color);
    opacity: 1;
    transform: translate3d(100%, 0, 0);
    transition: transform var(--duration) var(--easing), opacity var(--duration) var(--easing);
    overflow-y: scroll;
  }

  .drawer-nav__inner:where(.is-open *) {
    transform: unset;
    opacity: 1;
  }
  .drawer-nav__contents {
    padding-block-start: 70px;
  }
  .drawer-nav__menu {
    display: flex;
    flex-direction: column;
    padding: 0;
    margin: 0;
    list-style: none;
  }

  .drawer-nav__item {
    border-bottom: 1px solid #fff;
    &:first-child {
      border-top: 1px solid #fff;
    }
  }

  .drawer-nav__link {
    display: block;
    padding: 20px 10px;
    line-height: 1.4;
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    position: relative;
    &::before {
      content: '';
      width: 6px;
      height: 6px;
      border: 0;
      border-top: solid 2px #fff;
      border-right: solid 2px #fff;
      transform: rotate(45deg);
      position: absolute;
      top: 0;
      right: 10px;
      bottom: 0;
      margin: auto;
    }
    &:focus {
      outline: none;
    }
  }

  .drawer__overlay {
    position: absolute;
    inset: 0;
    z-index: 0;
    cursor: pointer;
    background-color: rgb(0 0 0 / 32%);
    opacity: 0;
    transition: opacity var(--duration) var(--easing);
  }

  .is-open :where(.drawer__overlay) {
    opacity: 1;
  }

  @media (prefers-reduced-motion: reduce) {
    .drawer-button__bar,
    .drawer-nav__inner,
    .drawer__overlay {
      transition: none !important;
    }
  }

  .is-open :where(.drawer__overlay) {
    opacity: 1;
  }

  @media (prefers-reduced-motion: reduce) {
    .drawer-button__bar,
    .drawer-nav__inner,
    .drawer__overlay {
      transition: none !important;
    }
  }
  .drawer-nav__contact {
    padding-block: 20px;
    text-align: center;
    color: #fff;
  }
  .drawer-nav__tel {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.1;
    span {
      font-size: 36px;
    }
  }
  .drawer-nav__time {
    font-size: 12px;
  }
  .drawer-nav__btn {
    margin-block-start: 20px;
    a {
      inline-size: 100%;
      border: 1px solid #fff;
      background-color: #fff;
      color: var(--font-sub);
      font-size: 18px;
      font-weight: 600;
      line-height: 1.1;
      border-radius: 50vw;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      padding: 10px;
      margin-block-end: 5px;
      transition: all 0.3s ease;
      position: relative;
      &:hover {
        background-color: var(--main-color);
        color: #fff;
      }
      span {
        font-size: 12px;
        display: inline-block;
      }
    }
  }
  .drawer-nav__text {
    font-size: 12px;
    a {
      text-decoration: underline;
    }
  }
}

/*----------------------------
kv
----------------------------*/
.kv {
  position: relative;
}
.kv__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.kv__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.kv__contents {
  position: absolute;
  z-index: 1;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  p {
    font-size: 32px;
    font-weight: 900;
    color: var(--font-sub);
    line-height: 1.3;
  }
}
/*----------------------------
ぱんくず
----------------------------*/
.pankuzu {
  padding-block: 10px;
}
.pankuzu__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 5px 25px;
  li {
    font-size: 12px;
    position: relative;
    &:not(:last-child)::after {
      content: '';
      mask-image: url('../img/common/arrow02.svg');
      mask-position: center;
      mask-repeat: no-repeat;
      mask-size: contain;
      background-color: var(--font-main);
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      right: -16px;
      inline-size: 6px;
      block-size: 11px;
    }
    a {
      transition: all 0.3s ease;
      &:hover {
        color: var(--font-sub);
      }
    }
  }
}

/*----------------------------
top-about
----------------------------*/
.top-about {
  padding-block: 50px;
  p + p {
    margin-block-start: 20px;
  }
}
.top-about__title {
  color: var(--font-sub);
  font-size: 18px;
  font-weight: 600;
}
.top-about__text {
  font-size: 14px;
}
.top-about__img {
  margin-block-start: 50px;
}

/*----------------------------
top-worries
----------------------------*/
.worries {
  padding-block: 50px 0;
}
.worries__title {
  text-align: center;
  font-size: 24px;
  font-weight: 600;
  margin-block-end: 20px;
}
.worries__inner {
  background-color: var(--bg-color);
  position: relative;
  &::before {
    content: '';
    background-image: url('../img/top/worries_bg01.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    bottom: 100%;
    left: 0;
    width: 100%;
    aspect-ratio: 7.46 / 1;
  }
  &::after {
    content: '';
    background-image: url('../img/top/worries_bg02.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    aspect-ratio: 746 / 102;
  }
}
.top_worries__contents {
  padding-block-start: 80px;
}
.worries__img02 {
  inline-size: 60%;
  margin-inline: auto;
}
.worries__text {
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.8;
  margin-block-start: 20px;
  span {
    border-bottom: 2px solid var(--main-color);
  }
}

/*----------------------------
top-feature
----------------------------*/
.top-feature {
  padding-block: 50px 0;
}
.top-feature__contents {
  margin-block-start: 80px;
  display: flex;
  flex-direction: column;
  gap: 70px;
}
.top-feature__title {
  font-size: 22px;
  font-weight: 600;
  margin-block-end: 10px;
  color: var(--font-sub);
  line-height: 1.3;
  position: relative;
  z-index: 1;
  &::before {
    line-height: 1;
    font-size: 100px;
    position: absolute;
    bottom: 0;
    left: 0;
    color: rgba(0, 0, 0, 0);
    -webkit-text-stroke: 2px #ffd7e4;
    z-index: -1;
  }
  &.--01 {
    &::before {
      content: '01.';
    }
  }
  &.--02 {
    &::before {
      content: '02.';
    }
  }
  &.--03 {
    &::before {
      content: '03.';
    }
  }
  &.--04 {
    &::before {
      content: '04.';
    }
  }
}
.top-feature__text {
  margin-block-start: 10px;
}
.top-feature__button {
  margin-block-start: 30px;
  .c-button {
    margin-block-start: 5px;
  }
}
.top-feature__button__text {
  font-size: 12px;
  font-weight: 600;
  text-align: center;
}

/*----------------------------
top-column
----------------------------*/
.top-column {
  padding-block: 50px 0;
}
.top-column__contents {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-block: 40px;
}

.card {
  display: block;
  transition: all 0.3s ease;
  &:hover {
    opacity: 0.7;
  }
}
.card__thumbnail {
  img {
    object-fit: cover;
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: 10px;
  }
}
.card__title {
  padding-bottom: 15px;
  margin-block: 15px;
  border-bottom: 1px solid var(--border-color);
}
.card__text {
  font-size: 14px;
}

/*----------------------------
top-news
----------------------------*/
.top-news {
  padding-block: 50px;
}
.top-news__contents {
  margin-block-start: 20px;
}
.news__list {
  display: flex;
  flex-direction: column;
}
.news__item {
  border-bottom: 1px solid var(--border-color);
}
.news__link {
  display: block;
  padding-block: 15px;
  time {
    font-size: 12px;
    color: var(--font-sub);
  }
}

/*----------------------------
footer-contact
----------------------------*/
.footer-contact {
  background: var(--main-color);
  padding-block: 40px;
  text-align: center;
  color: #fff;
}
.footer-contact__tel {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.1;
  span {
    font-size: 36px;
  }
}
.footer-contact__time {
  font-size: 12px;
}
.footer-contact__btn {
  margin-block-start: 30px;
  a {
    inline-size: 100%;
    border: 1px solid #fff;
    background-color: #fff;
    color: var(--font-sub);
    font-size: 18px;
    font-weight: 600;
    line-height: 1.1;
    border-radius: 50vw;
    display: block;
    text-align: center;
    padding: 10px;
    margin-block-end: 5px;
    transition: all 0.3s ease;
    position: relative;
    &:hover {
      background-color: var(--main-color);
      color: #fff;
    }
    span {
      font-size: 12px;
      display: inline-block;
    }
  }
}
.footer-contact__text {
  font-size: 12px;
  a {
    text-decoration: underline;
  }
}

.footer {
  color: var(--font-sub);
  padding-block: 40px 10px;
}
.footer__logo {
  font-size: 20px;
  font-weight: 600;
}
.footer__address {
  font-size: 14px;
  margin-block-start: 20px;
}
.footer__time {
  font-size: 14px;
  margin-block-start: 20px;
}
.footer__nav {
  display: flex;
  margin-block: 40px 60px;
  ul {
    inline-size: 50%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    li {
      a {
        font-size: 12px;
        &:hover {
          text-decoration: underline;
        }
      }
    }
  }
}
.footer__copyright {
  text-align: center;
  small {
    font-size: 12px;
  }
}

/*----------------------------
reason
----------------------------*/
.reason-lead {
  padding-block: 30px;
  p {
    font-size: 22px;
    color: var(--font-sub);
    font-weight: 600;
    line-height: 1.5;
  }
}
.reason-main {
  padding-block: 50px 80px;
}
.reason__contents {
  margin-block-start: 80px;
  display: flex;
  flex-direction: column;
  gap: 70px;
}
.reason__title {
  font-size: 22px;
  font-weight: 600;
  margin-block-end: 10px;
  color: var(--font-sub);
  line-height: 1.3;
  position: relative;
  z-index: 1;
  &::before {
    line-height: 1;
    font-size: 100px;
    position: absolute;
    bottom: 0;
    left: 0;
    color: rgba(0, 0, 0, 0);
    -webkit-text-stroke: 2px #ffd7e4;
    z-index: -1;
  }
  &.--01 {
    &::before {
      content: '01.';
    }
  }
  &.--02 {
    &::before {
      content: '02.';
    }
  }
  &.--03 {
    &::before {
      content: '03.';
    }
  }
  &.--04 {
    &::before {
      content: '04.';
    }
  }
}
.reason__text {
  margin-block-start: 10px;
}

/*----------------------------
faq
----------------------------*/
.faq-contents {
  padding-block-end: 50px;
}
.faq-lead {
  padding-block: 30px;
  p {
    font-size: 14px;
  }
}
.faq-contents__item {
  padding-block: 30px;
  border-bottom: 1px dotted var(--border-color);
}
.faq-contents__body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  dt,
  dd {
    display: flex;
    align-items: baseline;
  }
}
.faq-contents__question,
.faq-contents__answer {
  inline-size: 2em;
  flex-shrink: 0;
  font-size: 18px;
  font-weight: 600;
  color: var(--font-sub);
}
.faq-contents__question-text {
  font-size: 18px;
  font-weight: 600;
}
.faq-contents__answer-text {
  font-size: 14px;
}

/*----------------------------
success
----------------------------*/
.success-lead {
  padding-block: 30px;
}
.success-lead__text {
  font-size: 22px;
  font-weight: 600;
  span {
    color: var(--font-sub);
  }
}

.success-contents__list {
  display: flex;
  flex-direction: column;
  gap: 50px;
  margin-block: 20px 50px;
}
.success-contents__thumbnail {
  img {
    object-fit: cover;
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: 10px;
  }
}
.success-contents__title {
  margin-block-start: 10px;
}
.success-contents__tagList {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.success-contents__titleTag {
  inline-size: fit-content;
  border: 1px solid var(--main-color);
  border-radius: 50vw;
  padding: 5px 10px;
  font-size: 12px;
  font-weight: 600;
  color: var(--font-sub);
}
.success-contents__titleText {
  font-size: 16px;
  margin-block-start: 5px;
}
.success-contents__before {
  margin-block-start: 20px;
  color: #505050;
}
.success-contents__beforeTag {
  font-size: 24px;
  font-weight: 600;
}
.success-contents__beforeText {
  font-size: 14px;
  margin-block-start: 5px;
}
.success-contents__after {
  margin-block: 20px 40px;
  color: var(--font-sub);
}
.success-contents__afterTag {
  font-size: 24px;
  font-weight: 600;
}
.success-contents__afterText {
  font-size: 14px;
  margin-block-start: 5px;
}

/*----------------------------
guide
----------------------------*/
.guide-lead {
  padding-block: 30px;
}
.guide-lead__text {
  font-size: 22px;
  font-weight: 600;
  span {
    color: var(--font-sub);
  }
}

.guide-contents__list {
  display: flex;
  flex-direction: column;
  gap: 60px;
  margin-block: 20px 50px;
}
.guide-contents__thumbnail {
  img {
    object-fit: cover;
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: 10px;
  }
}
.guide-contents__body {
  margin-block-start: 10px;
}
.guide-contents__tagList {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.guide-contents__bodyTag {
  inline-size: fit-content;
  border: 1px solid var(--main-color);
  border-radius: 50vw;
  padding: 5px 10px;
  font-size: 12px;
  font-weight: 600;
  color: var(--font-sub);
}
.guide-contents__bodyTitle {
  font-size: 18px;
  margin-block-start: 5px;
  border-bottom: 1px solid var(--border-color);
  padding-block-end: 10px;
  margin-block-end: 10px;
}
.guide-contents__bodyText {
  font-size: 14px;
}
.guidedetail-contents__body {
  margin-block-end: 60px;
}
.guidedetail-contents__title {
  font-size: 18px;
  font-weight: 900;
  margin-block-end: 10px;
}
.guidedetail-contents__bodyText {
  font-size: 14px;
  margin-block-start: 10px;
}

/*----------------------------
All Post
----------------------------*/
.post-wrp .post-list-item {
  border-bottom: solid rgba(53, 53, 53, 0.3) 1px;
}
.post-wrp .post-list-item a {
  color: var(--font-main);
  display: block;
  box-sizing: border-box;
}
.post-wrp .post-list-item .tag-time {
  display: grid;
}
.post-wrp .post-list-item .post-tag-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  line-height: 1.2;
}
.post-wrp .post-list-item .post-tag-list-item {
  border: solid rgba(53, 53, 53, 0.3) 1px;
}
.post-wrp .post-list-item .post-thumb-text {
  box-sizing: border-box;
}
.post-wrp .post-list-item time {
  display: block;
  color: var(--font-sub);
}
.post-wrp .post-list-item .post-title {
  font-weight: bold;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .post-wrp .post-list-item a {
    padding: 15px 0;
  }
  .post-wrp .post-list-item .tag-time {
    margin-bottom: 20px;
    grid-template-columns: 120px 1fr;
  }
  .post-wrp .post-list-item .com-img {
    width: 100%;
    aspect-ratio: 4 / 3;
    margin-block-end: 15px;
    border-radius: 10px;
  }
  .post-wrp .post-list-item .post-tag-list {
    gap: 10px;
    font-size: 12px;
  }
  .post-wrp .post-list-item .post-tag-list-item {
    padding: 8px 10px;
  }
  .post-wrp .post-list-item .post-thumb-text {
    padding-left: 20px;
    width: calc(100% - 150px);
  }
  .post-wrp .post-list-item .post-title {
    font-size: 18px;
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 767px) {
  .post-wrp .post-list-item a {
    padding: 15px 0;
  }
  .post-wrp .post-list-item .tag-time {
    margin-bottom: 15px;
    grid-template-columns: 100px 1fr;
  }
  .post-wrp .post-list-item .com-img {
    width: 100%;
    aspect-ratio: 4 / 3;
    background: #ccc;
    margin-block-end: 10px;
    border-radius: 10px;
  }
  .post-wrp .post-list-item .post-tag-list {
    gap: 10px;
    font-size: 11px;
  }
  .post-wrp .post-list-item .post-tag-list-item {
    padding: 5px 8px;
  }
  .post-wrp .post-list-item .post-thumb-text {
    padding-left: 10px;
    width: calc(100% - 80px);
  }
  .post-wrp .post-list-item .post-title {
    font-size: 14px;
    margin-bottom: 10px;
  }
  .post-wrp .post-list-item .post-txt {
    font-size: 13px;
    line-height: 1.4;
  }
}

.tag-select-box {
  position: relative;
  width: 40%;
  margin: 0 0 20px auto;
  max-width: 230px;
}
.tag-select-box:before {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  right: 0.8em;
  width: 0;
  height: 0;
  padding: 0;
  content: '';
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid var(--font-main);
  pointer-events: none;
}
.tag-select-box #tag-select {
  width: 100%;
  padding: 5% 20% 5% 5%;
  box-sizing: border-box;
  font-size: 15px;
  margin-left: auto;
  display: block;
  font-family: 'Noto Sans JP', sans-serif;
  border: none;
  border-bottom: 2px solid var(--font-main);
  cursor: pointer;
  border-radius: 0;
  background: none;
  color: var(--font-main);
  font-weight: 700;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.tag-select-box #tag-select option {
  padding: 10px;
  box-sizing: border-box;
  cursor: pointer;
  box-sizing: border-box;
}

/*----------------------------
Single Post
----------------------------*/
#contents-u {
  .inbox {
    padding-block: 50px;
  }
}
.s-post-thumbnail {
  margin-block-end: 15px;
  img {
    object-fit: cover;
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: 10px;
  }
}
@media screen and (min-width: 768px) {
  #contents-u.s-post .s-post-taglist {
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 767px) {
  #contents-u.s-post .s-post-taglist {
    margin-bottom: 3%;
  }
  #contents-u.s-post .s-post-taglist li {
    margin: 1% 1% 0 0;
  }
  #contents-u.s-post .s-post-taglist li span {
    font-size: 3vw;
  }
}
#contents-u.s-post .s-time-tag {
  text-align: right;
  padding-top: 10px;
  border-top: 1px solid var(--font-main);
}
@media screen and (min-width: 768px) {
  #contents-u.s-post .s-time-tag {
    margin-top: 100px;
  }
}
@media screen and (max-width: 767px) {
  #contents-u.s-post .s-time-tag {
    margin-top: 50px;
  }
}
#contents-u.s-post .s-time-tag time {
  color: var(--font-main);
  font-weight: bold;
}
#contents-u.s-post .tag-name {
  text-align: center;
  display: inline-block;
  vertical-align: middle;
  padding: 8px 10px;
  box-sizing: border-box;
  border: solid 1px var(--font-main);
  line-height: 1;
  font-size: 14px;
  color: var(--font-main);
}
#contents-u.s-post .tag-name span {
  color: var(--font-main);
}

/*----------------------------
Page Button
----------------------------*/
.page-btn {
  position: relative;
}
@media screen and (min-width: 768px) {
  .page-btn {
    margin-top: 30px;
  }
}
@media screen and (max-width: 767px) {
  .page-btn {
    margin-top: 10%;
  }
}
.page-btn a {
  position: relative;
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .page-btn a {
    font-size: 15px;
  }
}
@media screen and (min-width: 768px) {
  .page-btn a {
    font-size: 14px;
  }
}
.page-btn .right,
.page-btn .left {
  position: absolute;
}
@media screen and (min-width: 768px) {
  .page-btn .right,
  .page-btn .left {
    top: 0;
  }
}
@media screen and (min-width: 768px) {
  .page-btn .right,
  .page-btn .left {
    top: 0;
  }
}
.page-btn .left {
  left: 0;
}
.page-btn .right {
  right: 0;
}

/*----------------------------
Pagenation
----------------------------*/
ul.pagenation,
ul.pagenation li,
ul.pagenation li a {
  line-height: 1;
  align-items: center;
  display: flex;
  justify-content: center;
}

ul.pagenation {
  text-align: center;
}
@media screen and (min-width: 768px) {
  ul.pagenation {
    margin-top: 20px;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 767px) {
  ul.pagenation {
    margin: 10% 0;
  }
}
ul.pagenation li a {
  color: #cbc9c9;
}
@media screen and (min-width: 768px) {
  ul.pagenation li a {
    width: 45px;
    height: 45px;
    font-size: 17px;
  }
}
@media screen and (max-width: 767px) {
  ul.pagenation li a {
    width: 10vw;
    height: 10vw;
    font-size: 4.5vw;
  }
}
ul.pagenation li.current {
  line-height: 1;
  box-sizing: border-box;
  color: var(--font-sub);
}
@media screen and (min-width: 768px) {
  ul.pagenation li.current {
    width: 45px;
    height: 45px;
    font-size: 20px;
  }
}
@media screen and (max-width: 767px) {
  ul.pagenation li.current {
    width: 10vw;
    height: 10vw;
    font-size: 5vw;
  }
}

/*----------------------------
Privacy Policy
----------------------------*/
.privacy-page {
  .privacy-box {
    margin-bottom: 50px;
    .title02 {
      font-size: 20px;
      padding-bottom: 10px;
      margin-bottom: 15px;
      border-bottom: 1px solid var(--border-color);
    }
  }
}

/*----------------------------
Site Map
----------------------------*/
.site-map-list {
  li {
    border-bottom: 1px solid var(--font-main);
    a {
      padding: 25px 0;
      display: block;
    }
    a:hover {
      opacity: 0.8;
    }
  }
}

/*----------------------------
Contact
----------------------------*/
.error-text {
  color: #e74c3c;
}

.cont-dl {
  display: grid;
  row-gap: 20px;
}

.cont-dl .in-dl {
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(53, 53, 53, 0.3);
}

.cont-dl .in-dl dt a,
.cont-dl .in-dl dd a {
  color: #ff0011;
  border-bottom: 1px solid #ff0011;
}

.cont-dl .in-dl .required {
  line-height: 1;
  background: #e74c3c;
  color: #fff;
}

.cont-dl .in-dl .optional {
  line-height: 1;
  background: #3498db;
  color: #fff;
}

.cont-dl .in-dl dt {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  -moz-column-gap: 10px;
  column-gap: 10px;
}

.cont-dl .in-dl dd input {
  font-size: 16px;
}

.cont-dl .in-dl dd input[type='text'],
.cont-dl .in-dl dd input[type='num'],
.cont-dl .in-dl dd input[type='email'],
.cont-dl .in-dl dd input[type='url'],
.cont-dl .in-dl dd input[type='tel'] {
  width: 100%;
  padding: 10px;
  border: solid #ccc 1px;
  background: #fff;
  box-sizing: border-box;
}

.cont-dl .in-dl dd .select-wrp {
  position: relative;
  width: 300px;
}

.cont-dl .in-dl dd .select-wrp:after {
  content: '';
  position: absolute;
  right: 10px;
  top: 15px;
  width: 5px;
  height: 5px;
  border-top: 2px solid #ccc;
  border-left: 2px solid #ccc;
  transform: translateY(-50%) rotate(-135deg);
  font-size: 20px;
  pointer-events: none;
}

.cont-dl .in-dl dd select {
  position: relative;
  width: 100%;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: #fff;
  color: #353535;
}

.cont-dl .in-dl dd textarea {
  padding: 5px;
  border: solid #ccc 1px;
  width: 100%;
  height: 200px;
  background: #fff;
  box-sizing: border-box;
  line-height: 1.8;
}

.cont-dl .in-dl dd #pc01,
.cont-dl .in-dl dd #pc02 {
  margin-bottom: 10px;
}

.cont-dl .in-dl dd #pc01 {
  width: 60px !important;
}

.cont-dl .in-dl dd #pc02 {
  width: 80px !important;
}

.cont-dl .in-dl {
  display: flex;
  flex-direction: column;
}

.cont-dl .in-dl .required,
.cont-dl .in-dl .optional {
  padding: 5px 8px;
  font-size: 12px;
}

.cont-dl .in-dl dt {
  margin-bottom: 20px;
}

.cont-dl .in-dl .upload-notice {
  grid-column: 1 / span 2;
  font-size: 12px;
  line-height: 1.6;
}

.cont-dl .in-dl dd .thumb {
  width: 150px;
  height: 150px;
}

.contact-btn ul {
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-btn ul li:hover {
  cursor: pointer;
  opacity: 0.8;
  transition: 0.3s;
}

.contact-btn ul li #form-btn {
  color: #fff;
  letter-spacing: 3px;
  font-weight: bold;
  border: solid 1px #ff0011;
  background-color: #ff0011;
}

.contact-btn ul {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}

.contact-btn ul li #form-btn {
  width: 280px;
  font-size: 16px;
  padding: 20px 0;
}

/*リキャプチャ---------------*/
.contact .recap-inwrap {
  width: 300px;
  margin: 0 auto 50px;
}

.contact-recaptcha-wrap {
  margin-top: 30px;
}

.contact-recaptcha-wrap .recap-inwrap {
  margin: 0 auto 40px;
}

/*送信完了---------------*/
.send-comp {
  text-align: center;
}

.send-comp p {
  line-height: 1.5em;
}

.send-comp-ttl {
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 30px;
}
