/*1023px以下*/
@media screen and (max-width: 1023px) {
}

/*767px以下*/
@media screen and (max-width: 767px) {
}

/*480px以下*/
@media screen and (max-width: 480px) {
}

/*------------------------------------------------------------------
#font 
-------------------------------------------------------------------*/
/* @import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100..700;1,100..700&family=Noto+Sans+JP:wght@100..900&display=swap'); */

/*------------------------------------------------------------------
#共通
-------------------------------------------------------------------*/

* {
  /* outline: 2px solid red; */
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}
:target {
  scroll-margin-top: 200px; /* ヘッダー高さ＋余白 */
}

html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
dialog,
figure,
footer,
header,
main,
menu,
nav,
section,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 400;
}

body {
  /* font-family: "Noto Serif JP", serif; */
  font-family: "Noto Sans JP", sans-serif;
  overflow-wrap: break-word;
  overflow-x: hidden;
  background-color: #fbfaf6;
  overflow-x: scroll;
  color: #353535;
  line-height: 2;
  letter-spacing: 0.1em;
}

img {
  border: none;
  height: auto;
  max-width: 100%;
  vertical-align: bottom;
  object-fit: cover;
}

a {
  color: inherit;
  cursor: pointer;
  text-decoration: none;
}

:root :where(a:where(:not(.wp-element-button))) {
  text-decoration: none;
}

a:hover {
  color: inherit;
}

ol,
ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption,
th,
td {
  font-weight: normal;
  text-align: left;
  vertical-align: middle;
}

/* 767px以下 */
@media screen and (max-width: 767px) {
  html {
    scroll-behavior: smooth;
  }
  :target {
    scroll-margin-top: 170px; /* ヘッダー高さ＋余白 */
  }

  .hidden-sp {
    display: none;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .hidden-tab {
    display: none;
  }
}

/* 1024px以上 */
@media screen and (min-width: 1024px) {
  .hidden-pc {
    display: none;
  }
  
  .drawer__content,
  .js-drawer__content {
    display: none !important; /* PC表示では完全に非表示 */
  }
  
  .drawer__icon,
  .js-drawer__icon {
    display: none !important; /* PC表示ではハンバーガーアイコンも非表示 */
  }
}

/*------------------------------------------------------------------
#breadcrumb
-------------------------------------------------------------------*/
.breadcrumb {
  font-size: 14px;
  font-weight: 400;
  margin: 0 auto;
  padding-top: 10px;
  padding-inline: 20px;
  max-width: calc(1100px + 20px * 2);
  text-align: left;
  color: #707070;
}

.breadcrumb span[property="name"] {
  color: #707070;
  display: inline-block;
  padding: 0;
  margin-top: -3px;
  vertical-align: middle;
  max-width: 300px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding-inline: 5px;
}

.breadcrumb a:hover {
  border-bottom: 1px solid #000;
}

.breadcrumb span .home span {
  position: relative;
  padding-left: 25px;
}

.breadcrumb span .home span::before {
  /* position: absolute;
  content: "";
  background: url(../cocoon-master/images/home-icon.png) no-repeat center center / cover;
  width: 24px;
  height: 24px;
  top: 50%;
  transform: translateY(-50%);
  left: 0px; */
}

/*1023px以下*/
@media screen and (max-width: 1023px) {
}

/*767px以下*/
@media screen and (max-width: 767px) {
  .breadcrumb {
    font-size: 16px;
  }
}

/*------------------------------------------------------------------
#pagination
-------------------------------------------------------------------*/
.l-pager {
  margin-top: 60px;
}

.pager {
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-numbers {
  background-color: #fff;
  color: #353535;
  border: 1px solid #353535;
  font-size: 18px;
  width: 50px;
  height: 50px;
  border-radius: 5px;
  margin: 0 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  transition:
    background 0.3s,
    color 0.3s;
}

.page-numbers:hover {
  background-color: #353535;
  color: #fff;
}

.page-numbers.current {
  background-color: #353535;
  border: 1px solid transparent;
  color: #fff;
}

.page-numbers.dots {
  border: 1px solid transparent;
  background-color: transparent;
  color: #24bfa7;
  opacity: 1;
}

.prev.page-numbers,
.next.page-numbers {
  font-size: 18px;
  color: #353535;
  border: 1px solid #353535;
  display: inline-block;
  width: 130px;
  height: 50px;
  transition:
    background 0.3s,
    color 0.3s;
}

.prev.page-numbers:hover,
.next.page-numbers:hover {
  background-color: #353535;
  color: #fff;
}

.prev-content,
.next-content {
  width: inherit;
  height: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
}

/*1023px以下*/
@media screen and (max-width: 1023px) {
}

/*767px以下*/
@media screen and (max-width: 767px) {
}

/*------------------------------------------------------------------
#前の記事・次の記事
-------------------------------------------------------------------*/
.single-pager {
  position: relative;
  margin-top: 50px;
  min-height: 100px;
}

.single-pager__prev {
  position: absolute;
  /* left: calc(50% - 300px); */
  left: 0;
}

.single-pager__next {
  position: absolute;
  /* right: calc(50% - 300px); */
  right: 0;
}

.single-pager__prev a,
.single-pager__next a {
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  display: inline-block;
  width: 150px;
  max-width: 100%;
  padding: 10px 10px;
  border-radius: 5px;
  color: #353535;
  background-color: #fff;
  border: 1px solid #353535;
  transition:
    color 0.3s,
    background-color 0.3s;
  position: relative;
  text-decoration: none;
}

.single-pager__prev a:hover,
.single-pager__next a:hover {
  color: #fff;
  background-color: #353535;
  border: 1px solid #353535;
}

/*1023px以下*/
@media screen and (max-width: 1023px) {
  .single-pager__prev {
    position: absolute;
    /* left: calc(50% - 220px); */
  }

  .single-pager__next {
    position: absolute;
    /* right: calc(50% - 220px); */
  }
}

/*767px以下*/
@media screen and (max-width: 767px) {
  .single-pager__prev {
    position: absolute;
    /* left: calc(50% - 200px); */
  }

  .single-pager__next {
    position: absolute;
    /* right: calc(50% - 200px); */
  }
}

/*------------------------------------------------------------------
#lower-top
-------------------------------------------------------------------*/
.lower-top {
  height: 200px;
  margin: 145px auto 0;
  max-width: 100%;
  position: relative;
}

.lower-top__inner {
  padding-inline: 20px;
  max-width: calc(1400px + 20px * 2);
  margin-inline: auto;
  height: inherit;
  position: relative;
}

.lower-top::before {
  /* position: absolute;
  content: "";
  background: url(../cocoon-master/images/lower-bg.png) no-repeat center center/cover;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: -1; */
}

.lower-top.single::before {
  background: url(./image/lower-top-single.jpg) no-repeat center center/cover;
}

.lower-top__heading {
  font-family: "Noto Serif JP", serif;
  color: #fff;
  font-size: 50px;
  font-weight: 500;
  line-height: 1.3;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50%;
  max-width: 650px;
  text-align: center;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.lower-top.single {
  margin-top: 155px;
}

.lower-top__heading.single {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

@media screen and (max-width: 1023px) {
  .lower-top {
    margin-top: 80px;
  }
  .lower-top.single {
    margin-top: 130px;
  }

  .lower-top__heading {
    font-size: 40px;
  }

  .lower-top__inner::before {
    width: 130px;
    height: 100px;
    bottom: -15px;
  }
}

@media screen and (max-width: 767px) {
  .page-id-57 .lower-top {
    height: 300px;
  }

  .lower-top.single {
    margin-top: 100px;
  }

  .lower-top__heading {
    font-size: 34px;
    width: 75%;
  }

  .lower-top__heading.single {
    font-size: 34px;
  }
}

/*------------------------------------------------------------------
#TOPへ
-------------------------------------------------------------------*/
.topBtn {
  position: fixed;
  bottom: 120px;
  right: 20px;
  width: 70px;
  height: 70px;
  display: block;
  box-sizing: border-box;
  z-index: 20;
  transition:
    opacity 0.5s,
    visibility 0.5s;
  visibility: hidden;
}

.topBtn.is-show {
  opacity: 1;
  visibility: visible;
}

.topBtn::after {
  position: absolute;
  content: "";
  background: url(../nicchiku-kishimoto/img/page-top.png) no-repeat center center / cover;
  width: 70px;
  height: 70px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* デフォルト */
.go-to-top-button {
  display: none;
}

/*1023px以下*/
@media screen and (max-width: 1023px) {
}

/*767px以下*/
@media screen and (max-width: 767px) {
  .topBtn {
    bottom: 80px;
    right: 10px;
  }
}

/*------------------------------------------------------------------
#共通ボタン
-------------------------------------------------------------------*/

.common__button {
  margin: 0 auto;
  text-align: center;
}

.common__button-link {
}

.common__button-link:hover {
  color: #fff;
  transform: translateY(3px);
  box-shadow: none;
}

.common__button-link:after {
  /* position: absolute;
  content: "";
  background: url(../cocoon-master/images/arrow-right.png) no-repeat center center / cover;
  width: 7px;
  height: 12px;
  top: 50%;
  transform: translateY(-50%);
  right: 20px; */
}

/* メール */
.mail__button {
  margin: 0 auto;
  text-align: right;
}

.mail__button-link {
  display: inline-block;
  font-size: 24px;
  color: #fff;
  letter-spacing: 0;
  background-color: #f38300;
  padding: 10px 35px 10px 65px;
  border-radius: 10px;
  transition: background 0.3s;
  position: relative;
}

.mail__button-link:hover {
  color: #fff;
}

.mail__button-link::before {
  position: absolute;
  content: "";
  background: url(../nicchiku-kishimoto/img/mail-icon.png) no-repeat center center / cover;
  width: 32px;
  height: 22px;
  top: 50%;
  transform: translateY(-50%);
  left: 30px;
}

.mail__button-link::after {
  position: absolute;
  content: "";
  background: url(../nicchiku-kishimoto/img/arrow-right-white.png) no-repeat center center / cover;
  width: 10px;
  height: 10px;
  top: 50%;
  transform: translateY(-50%);
  right: 15px;
}

@media screen and (max-width: 1023px) {
}

@media screen and (max-width: 767px) {
}

/*------------------------------------------------------------------
#section-title
-------------------------------------------------------------------*/
.section__title {
  text-align: center;
}

.section__title-en {
  display: inline-block;
  font-size: 20px;
  color: #b61b35;
  font-weight: bold;
  border-bottom: 2px solid #b61b35;
  width: fit-content;
  margin: 0 auto;
}

.section__title-ja {
  display: block;
  font-size: 50px;
  font-weight: 500;
  line-height: 1.5;
}

/*1023px以下*/
@media screen and (max-width: 1023px) {
  .section__title {
    font-size: 38px;
  }
}

/*767px以下*/
@media screen and (max-width: 767px) {
  .section__title-en {
    display: inline-block;
    font-size: 10px;
    color: #b61b35;
    font-weight: bold;
    border-bottom: 2px solid #b61b35;
    width: fit-content;
    margin: 0 auto;
  }

  .section__title-ja {
    display: block;
    font-size: 28px;
    font-weight: 500;
  }
}

/*------------------------------------------------------------------
#inner
-------------------------------------------------------------------*/
.inner {
  padding-inline: 20px;
  max-width: calc(1200px + 20px * 2);
  margin-inline: auto;
}

/*------------------------------------------------------------------
#header
-------------------------------------------------------------------*/
.l-wrapper {
  position: relative;
  overflow: hidden;
}

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

.header__inner {
  padding-inline: 20px;
  max-width: calc(1920px + 20px * 2);
  margin-inline: auto;
  height: inherit;
  display: flex;
  align-items: center;
}

.header__left {
  margin-right: auto;
}

.header__logo {
  width: 440px;
}

.header__logo-text {
  font-size: 14px;
  letter-spacing: 0;
}

.header__logo-link {
  display: block;
  transition: opacity 0.3s;
}

.header__logo-link:hover {
  opacity: 0.8;
}

.header__right {
  display: flex;
  align-items: center;
  margin-left: auto;
}

.header__tel-link {
  display: inline-block;
  width: 320px;
  height: inherit;
  transition: opacity 0.3s;
  margin-right: 30px;
}

.header__tel-link:hover {
  opacity: 0.8;
}

.header-nav {
  height: 35px;
  background-color: #fff;
}

.header-nav__list {
  display: flex;
  align-items: center;
  gap: 50px;
  justify-content: center;
  padding-block: 8px;
  margin-inline: auto;
  height: inherit;
}

.header-nav__item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: inherit;
}

.header-nav__link {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0;
  transition: color 0.3s;
  position: relative;
}

.header-nav__link:hover {
  color: #b61b35;
}

@media screen and (max-width: 1200px) {
  .header__logo {
    width: 400px;
  }
  .header__tel-link {
    width: 260px;
    margin-right: 20px;
  }
}

@media screen and (max-width: 1023px) {
  .header {
    height: 60px !important;
  }

  .header__logo {
    width: 290px;
  }

  .header__logo-text {
    font-size: 11px;
  }

  .header-nav {
    display: none;
  }

  .header__right {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .header {
    display: block !important;
    position: fixed !important;
    height: 60px !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    z-index: 100 !important;
    background-color: #fff !important;
  }
}

/*------------------------------------------------------------------
#drawer
-------------------------------------------------------------------*/

.drawer__icon {
  background: transparent;
  border: none;
  cursor: pointer;
  display: none;
  position: fixed;
  right: 0px;
  top: 0px;
  transition: transform 0.5s;
  width: 60px;
  height: 60px;
  z-index: 9999;
  background-color: #b61b35;
}

.drawer__icon.is-active .drawer-icon__bar1 {
  background-color: #fff;
  top: 25px;
  transform: rotate(-45deg);
}

.drawer__icon.is-active .drawer-icon__bar2 {
  display: none;
}

.drawer__icon.is-active .drawer-icon__bar3 {
  background-color: #fff;
  top: 25px;
  transform: rotate(45deg);
}

.drawer-icon__bar1,
.drawer-icon__bar2,
.drawer-icon__bar3 {
  position: absolute;
  background-color: #fff;
  height: 3px;
  left: 15px;
  transition: transform 0.5s;
  width: 30px;
}

.drawer-icon__bar1 {
  top: 10px;
}

.drawer-icon__bar2 {
  top: 20px;
}

.drawer-icon__bar3 {
  top: 30px;
}

.drawer-icon__text {
  position: absolute;
  top: 40px;
  left: 14px;
  font-size: 11px;
  color: #fff;
}

.js-drawer__icon-mail.is-active {
  opacity: 0;
}

.drawer-icon__mail {
  position: fixed;
  right: 90px;
  top: 12px;
  width: 40px;
  height: 40px;
  z-index: 500;
  opacity: 0;
}

.drawer-icon__mail-link {
}

.drawer-icon__mail-link img {
  width: 40px;
  height: 40px;
}

.drawer__content {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background-color: #55000f;
  background-color: rgba(85, 0, 15, 0.95);
  overflow: auto;
  pointer-events: none;
  transition: right 0.3s ease-in-out, opacity 0.3s ease-in-out, visibility 0.3s;
  opacity: 0;
  visibility: hidden;
  z-index: 400;
  display: none; /* PC表示では完全に非表示 */
}

.drawer__inner {
  padding-inline: 30px;
  max-width: calc(500px + 30px * 2);
  margin-inline: auto;
}

.drawer__content.is-active,
.js-drawer__content.is-active,
body .drawer__content.is-active,
body .js-drawer__content.is-active {
  right: 0 !important;
  opacity: 1 !important;
  pointer-events: auto !important;
  visibility: visible !important;
  transform: translateX(0) !important;
}

.drawer__header {
}

.drawer__logo-link {
  display: inline-block;
}

.drawer__logo-link img {
  width: 200px;
}

.drawer-nav__list {
  margin-top: 30px;
  max-width: 500px;
}

.drawer-nav__item {
  padding: 10px;
  border-bottom: 2px dotted #a7ded5;
}

.drawer-nav__link {
  font-size: 18px;
  font-weight: 400;
  text-align: center;
  color: #fff;
  display: block;
  position: relative;
}

.drawer-nav__link:hover {
  color: #fff;
}

.drawer-nav__link::before {
  /* position: absolute;
  content: "";
  background: url(../cocoon-master/images/arrow-right.png) no-repeat center center / cover;
  width: 9px;
  height: 9px;
  top: 50%;
  transform: translateY(-50%);
  left: 0; */
}

.drawer__mail-link {
  display: block;
  text-align: center;
  margin-top: 25px;
}

.drawer__mail-link img {
  width: 350px;
}

.drawer__tel-link {
  display: block;
  text-align: center;
  margin-top: 25px;
}

.drawer__tel-link img {
  width: 350px;
}

/*1023px以下*/
@media screen and (max-width: 1023px) {
  .drawer__icon {
    display: block !important;
    visibility: visible !important;
  }
  
  .drawer__content {
    display: block !important; /* タブレット・スマホ表示で有効化 */
    right: -100% !important;
    top: 0 !important;
  }
  
  .drawer__content.is-active,
  .js-drawer__content.is-active {
    right: 0 !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    visibility: visible !important;
    transform: translateX(0) !important;
  }
}

/*767px以下*/
@media screen and (max-width: 767px) {
  .drawer__icon {
    display: block !important;
    visibility: visible !important;
  }
  
  .drawer__content {
    display: block !important; /* スマホ表示で有効化 */
    right: -100% !important;
    top: 0 !important;
  }
  
  .drawer__content.is-active,
  .js-drawer__content.is-active {
    right: 0 !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    visibility: visible !important;
    transform: translateX(0) !important;
  }
}

/*------------------------------------------------------------------
#footer
-------------------------------------------------------------------*/

.footer {
  padding-top: 30px;
  /* padding-bottom: 30px; */
  background-color: #b61b35 !important;
  margin-top: 0;
}

.footer__inner {
  padding-inline: 20px;
  max-width: calc(1200px + 20px * 2);
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 20px;
}

.footer__left {
  margin-right: auto;
}

.footer__logo {
  text-align: left;
}

.footer__logo-link {
  display: block;
}

.footer__logo-link1 {
  display: block;
}

.footer__logo img {
  /* width: 270px; */
}

.footer__tel-link {
  display: block;
}

.footer__right {
  margin-left: auto;
}

.footer__right-top {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer__right-bottom {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
  margin-top: 20px;
}

.footer__banner1 {
  display: block;
  width: 320px;
}

.footer__banner2 {
  display: block;
  width: 320px;
}

.footer__right-menu {
  display: flex;
  justify-content: right;
  margin-top: 16px;
}

.footer__right-menu-list {
  display: flex;
  align-items: center;
}

.footer__right-menu-item {
  padding: 0 40px;
  border-left: 2px solid #fff;
}

.footer__right-menu-item:last-child {
  border-right: 2px solid #fff;
}

.footer__right-menu-link {
  color: #fff;
  font-weight: 500;
}

.copyright {
  text-align: center;
  background-color: #55000f;
  padding-block: 10px;
}

.copyright__text {
  font-size: 14px;
  letter-spacing: 0;
  color: #fff;
}

.fixed-footer-btn {
  display: none;
}

.footer__cat {
  display: none;
}

.mobile-footer-menu-buttons {
  display: none;
}

@media screen and (max-width: 1023px) {
  .footer__banner1 {
    display: block;
    width: 250px;
  }

  .footer__banner2 {
    display: block;
    width: 250px;
  }
}

@media screen and (max-width: 767px) {
  .footer__inner {
    display: block;
  }

  .footer__logo-link {
    width: 220px;
    text-align: center;
    margin: 0 auto;
  }

  .footer__right-top {
    display: block;
  }

  .footer__right-bottom {
    display: block;
    margin-top: 20px;
  }

  .footer__right-menu {
    justify-content: center;
  }

  .footer__right-menu-list {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 16px;
  }

  .footer__right-menu-item,
  .footer__right-menu-item:last-child {
    border-left: none;
    border-right: none;
  }

  .footer__logo-link1 {
    margin-top: 20px;
  }

  .footer__tel-link {
    display: none;
  }

  .footer__banner1 {
    display: block;
    width: 320px;
    margin: 0 auto;
  }

  .footer__banner2 {
    display: block;
    width: 320px;
    margin: 0 auto;
    margin-top: 10px;
  }

  .footer {
    padding-block: 20px !important;
  }

  .copyright {
    margin-bottom: 50px;
  }
}

@media screen and (max-width: 480px) {
  .fixed-footer-btn {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #d33133;
    color: #fff;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    z-index: 15;
  }

  .fixed-footer-btn-wrap {
    display: flex;
    gap: 0;
  }
}

/*------------------------------------------------------------------
#mv
-------------------------------------------------------------------*/
.mv {
  margin-top: 35px;
  margin-inline: auto;
  min-height: 750px;
  position: relative;
}

.mv::before {
  position: absolute;
  content: "";
  background: url(../nicchiku-kishimoto/img/mv-orange.png) no-repeat center center / cover;
  width: 928px;
  height: 418px;
  top: 80%;
  left: -300px;
  z-index: -1;
}

.mv__swiper {
  position: relative;
  padding-bottom: 30px;
  height: inherit;
}

.swiper-wrapper {
  margin: 0;
  position: relative;
  height: inherit;
}

.mv__slide {
  overflow: hidden;
  position: relative;
  height: inherit;
}

.mv__img {
  height: inherit;
  text-align: center;
  display: block;
}

.mv__img img {
  display: block;
  width: 100%;
  min-height: 750px;
  object-fit: cover;
}

.mv__pagination {
  display: flex;
  justify-content: center;
  gap: 10px;
  bottom: 0 !important;
}

.mv__pagination .swiper-pagination-bullet {
  width: 13px;
  height: 13px;
  background: #bcbcbc;
  opacity: 1;
}

.mv__pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #b61b35;
}

.mv__block {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%);
  padding: 40px 20px;
  background-color: rgba(255, 255, 255, 0.8); /* 半透明の白 */
  border-radius: 40px;
  z-index: 2;
  min-width: 767px;
}

.mv__title {
  font-family: "Noto Serif JP", serif;
  font-size: 50px;
  font-weight: 600;
  text-align: center;
  line-height: 1.5;
}

.mv__text {
  font-family: "Noto Serif JP", serif;
  font-size: 36px;
  font-weight: 600;
  text-align: center;
  line-height: 1.5;
  margin-top: 10px;
}

@media screen and (max-width: 1023px) {
  .mv {
    margin-top: 0px;
  }
}

@media screen and (max-width: 767px) {
  .mv {
    margin-top: 60px;
    min-height: 350px;
    position: relative;
  }

  .mv::before {
    width: 210px;
    height: 95px;
    top: 85%;
    left: -60px;
    z-index: -1;
  }

  .mv__img img {
    min-height: 350px;
  }

  .mv__block {
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translateX(-50%);
    padding: 10px;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    z-index: 2;
    min-width: 350px;
  }

  .mv__title {
    font-family: "Noto Serif JP", serif;
    font-size: 21.5px;
    font-weight: 600;
  }

  .mv__text {
    font-family: "Noto Serif JP", serif;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    line-height: 1.8;
    margin-top: 0;
  }
}

/*------------------------------------------------------------------
#mv__bottom
-------------------------------------------------------------------*/
.mv__bottom {
  padding-top: 80px;
  padding-bottom: 100px;
  padding-inline: 10px;
  text-align: center;
}

.mv__bottom-title {
  font-size: 50px;
  font-weight: 500;
  line-height: 1.6;
}

.mv__bottom-text {
  font-size: 16px;
  margin-top: 50px;
}

@media screen and (max-width: 1023px) {
}

@media screen and (max-width: 767px) {
  .mv__bottom {
    padding-top: 30px;
    padding-bottom: 30px;
    text-align: center;
  }

  .mv__bottom-title {
    font-size: 28px;
    font-weight: 500;
    line-height: 1.6;
  }

  .mv__bottom-text {
    font-size: 14px;
    margin-top: 15px;
  }
}

/*------------------------------------------------------------------
#service
-------------------------------------------------------------------*/
.service {
  padding-top: 50px;
  padding-bottom: 50px;
}

.service__inner {
  padding-inline: 20px;
  max-width: calc(1650px + 20px * 2);
  margin-inline: auto;
}

.service__inner.number4 {
  padding-inline: 20px;
  max-width: calc(1600px + 20px * 2);
  margin-inline: auto;
}

.service__contents {
  background-color: #fff;
  box-shadow: 0px 0px 22px 0 rgba(155, 144, 121, 0.16);
  border-radius: 0 100px 100px 0;
  margin-top: 150px;
  padding-bottom: 80px;
  padding-inline: 100px;
  margin-left: calc(50% - 50vw);
  padding-left: calc(50vw - 50%);
  position: relative;
}

.service__contents1::before {
  position: absolute;
  content: "";
  background: url(../nicchiku-kishimoto/img/service-red1.png) no-repeat center center / cover;
  width: 651px;
  height: 411px;
  top: -15%;
  right: -230px;
  z-index: -1;
}

.service__contents2 {
  background-color: #fff;
  box-shadow: 0px 0px 22px 0 rgba(155, 144, 121, 0.16);
  border-radius: 100px 0 0 100px;
  margin-top: 150px;
  padding-bottom: 80px;
  padding-inline: 100px;
  margin-right: calc(50% - 50vw);
  padding-right: calc(50vw - 50%);
  position: relative;
}

.service__contents2::before {
  position: absolute;
  content: "";
  background: url(../nicchiku-kishimoto/img/service-orange1.png) no-repeat center center / cover;
  width: 638px;
  height: 288px;
  bottom: -10%;
  left: -260px;
  z-index: -1;
}

.service__contents4 {
  background-color: #fff;
  box-shadow: 0px 0px 22px 0 rgba(155, 144, 121, 0.16);
  border-radius: 100px 0 0 100px;
  margin-top: 150px;
  padding-top: 80px;
  padding: 100px;
  margin-right: calc(50% - 50vw);
  padding-right: calc(50vw - 50%);
  position: relative;
}

.service__contents4::before {
  position: absolute;
  content: "";
  background: url(../nicchiku-kishimoto/img/service-red2.png) no-repeat center center / cover;
  width: 697px;
  height: 441px;
  bottom: -10%;
  right: -230px;
  z-index: -1;
}

.service__block {
  display: flex;
  align-items: center;
  align-items: flex-start;
  gap: 45px;
}

.service__block2 {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  gap: 45px;
}

.service__block4 {
  display: flex;
  flex-direction: row-reverse;
  align-items: flex-start;
  gap: 16px;
}

.service__left {
  width: 45%;
  margin-top: -60px;
}

.service__left4 {
  width: 40%;
  margin-bottom: 40px;
}

.service__right {
  width: 40%;
  min-width: 650px;
}

.service__right4 {
  width: 45%;
  min-width: 650px;
}

.service__title {
  font-size: 32px;
  font-weight: 500;
  line-height: 1.5;
  color: #b61b35;
  padding-top: 100px;
  padding-bottom: 10px;
  border-bottom: 1px solid #b61b35;
}

.service__title span {
  display: inline-block;
  font-size: 28px;
  line-height: 1.3;
}

.service__subtitle {
  font-size: 24px;
  margin-top: 20px;
  line-height: 1.6;
}

.service__text {
  margin-top: 20px;
  padding-inline: 16px;
}

.service__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-top: 50px;
  padding-inline: 20px;
  max-width: calc(1100px + 20px * 2);
  margin-inline: auto;
}

.service__list3 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 50px;
  padding-inline: 20px;
  max-width: calc(1100px + 20px * 2);
  margin-inline: auto;
}

.service__list4 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 50px;
  padding-inline: 20px;
  max-width: calc(1100px + 20px * 2);
  margin-inline: auto;
}

.service__list-title {
  padding-inline: 20px;
  max-width: calc(1200px + 20px * 2);
  margin: 0 auto;
  font-size: 30px;
  font-weight: 500;
  color: #b61b35;
  text-align: center;
  margin-top: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%; /* 横幅いっぱい */
  position: relative;
}

.service__list-title::before {
  content: "";
  flex: 1; /* 横に伸びる */
  height: 1px;
  background: #b61b35; /* ラインの色 */
  margin-right: 1em; /* タイトルとの間隔 */
}

.service__list-title::after {
  content: "";
  flex: 1; /* 横に伸びる */
  height: 1px;
  background: #b61b35; /* ラインの色 */
  margin-left: 1em; /* タイトルとの間隔 */
}

.service__item {
}

.service__item3 {
}

.service__item-block3 {
  display: flex;
  align-items: center;
  gap: 30px;
}

.service__item-title3 {
  width: 50%;
  font-size: 24px;
  line-height: 1.7;
  color: #b61b35;
  text-align: center;
}

.service__item-img3 {
  width: 50%;
  font-size: 24px;
  line-height: 1.7;
  text-align: center;
}

.service__item-text {
  font-size: 16px;
  margin-top: 10px;
  text-align: center;
}

.service__item-text3 {
  font-size: 16px;
  margin-top: 10px;
  padding-inline: 16px;
  text-align: left;
}

.service__item4 {
}

.service__item-block4 {
  text-align: center;
}

.service__item-content4 {
}

.service__item-title4 {
  font-size: 24px;
  line-height: 1.7;
  color: #b61b35;
  text-align: center;
  margin-top: 10px;
}

.service__item-img4 {
  text-align: center;
}

.service__item-text {
  font-size: 16px;
  margin-top: 10px;
  text-align: center;
}

.service__item-text3 {
  font-size: 16px;
  margin-top: 10px;
  text-align: left;
}

.service__item-text4 {
  font-size: 16px;
  margin-top: 10px;
  text-align: left;
}

.service__sub-block {
  display: flex;
  align-items: center;
  gap: 30px;
  padding-inline: 20px;
  max-width: calc(1200px + 20px * 2);
  margin-inline: auto;
  margin-top: 20px;
}

.service__sub-block-img {
  width: 45%;
}

.service__sub-block-text {
  width: 55%;
}

@media screen and (max-width: 1300px) {
  .service__block {
    align-items: center;
  }

  .service__right {
    width: 40%;
    min-width: auto;
  }

  .service__right4 {
    width: 50%;
    min-width: auto;
  }

  .service__left {
    width: 45%;
    margin-top: 0px;
  }

  .service__left4 {
    width: 50%;
  }

  .service__title {
    padding-top: 50px;
  }

  .service__title span {
    font-size: 22px;
  }
}

@media screen and (max-width: 1023px) {
  .service__contents {
    margin-top: 150px;
    padding-bottom: 30px;
    padding-inline: 30px;
  }

  .service__contents2 {
    margin-top: 150px;
    padding-bottom: 30px;
    padding-inline: 30px;
  }

  .service__contents4 {
    margin-top: 150px;
    padding-bottom: 30px;
    padding-inline: 30px;
  }
}

@media screen and (max-width: 767px) {
  .service__contents {
    margin-top: 70px;
    padding-bottom: 30px;
    padding-inline: 20px;
    margin-left: calc((100% - 100vw) / 2);
    width: 100vw;
    border-radius: 0;
  }

  .service__contents1::before {
    position: absolute;
    content: "";
    background: url(../nicchiku-kishimoto/img/service-red1.png) no-repeat center center / cover;
    width: 268px;
    height: 169px;
    top: -5%;
    right: -90px;
    z-index: -1;
  }

  .service__contents2 {
    margin-top: 70px;
    padding-bottom: 30px;
    padding-inline: 20px;
    margin-left: calc((100% - 100vw) / 2);
    width: 100vw;
    border-radius: 0;
  }

  .service__contents2::before {
    position: absolute;
    content: "";
    background: url(../nicchiku-kishimoto/img/service-orange1.png) no-repeat center center / cover;
    width: 333px;
    height: 150px;
    bottom: -7%;
    left: -110px;
    z-index: -1;
  }

  .service__contents4 {
    margin-top: 140px;
    padding-bottom: 30px;
    padding-inline: 20px;
    margin-left: calc((100% - 100vw) / 2);
    width: 100vw;
    border-radius: 0;
    padding: 0 20px 20px;
  }

  .service__contents4::before {
    position: absolute;
    content: "";
    background: url(../nicchiku-kishimoto/img/service-red2.png) no-repeat center center / cover;
    width: 297px;
    height: 187px;
    bottom: -4%;
    right: -100px;
    z-index: -1;
  }

  .service__block {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .service__block2 {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .service__block4 {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .service__left {
    width: 100%;
    margin-top: -20px;
  }

  .service__left4 {
    width: 100%;
    margin-top: -90px;
  }

  .service__right {
    width: 100%;
  }

  .service__right4 {
    width: 100%;
  }

  .service__title {
    font-size: 26px;
    text-align: center;
    padding-top: 20px;
  }

  .service__subtitle {
    font-size: 18px;
  }

  .service__text {
    font-size: 14px;
    margin-top: 20px;
  }

  .service__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 20px;
    padding-inline: 0;
    width: 100%;
    margin-inline: auto;
  }

  .service__list3 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
    margin-top: 50px;
    padding-inline: 0px;
    width: 100%;
    margin-inline: auto;
  }

  .service__list4 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
    margin-top: 50px;
    padding-inline: 0px;
    max-width: calc(1100px + 20px * 2);
    margin-inline: auto;
  }

  .service__item-text {
    font-size: 12px;
  }

  .service__item-block3 {
    display: block;
  }

  .service__item-title3 {
    width: 100%;
    font-size: 24px;
    line-height: 1.4;
    color: #b61b35;
    text-align: center;
  }

  .service__item-img3 {
    width: 85%;
    margin: 0 auto;
    font-size: 24px;
    line-height: 1.7;
    text-align: center;
    margin-top: 20px;
  }

  .service__item-text3 {
    font-size: 14px;
    margin-top: 10px;
    text-align: left;
  }

  .service__item-text4 {
    font-size: 14px;
    margin-top: 10px;
    text-align: left;
  }

  .service__sub-block {
    display: block;
    padding-inline: 0px;
    max-width: calc(1200px + 20px * 2);
    margin-inline: auto;
    margin-top: 20px;
  }

  .service__sub-block-img {
    width: 100%;
    margin: 0 auto;
  }

  .service__sub-block-text {
    width: 100%;
    font-size: 14px;
    margin-top: 10px;
  }

  .service__list-title {
    padding-inline: 10px;
    max-width: calc(1200px + 20px * 2);
    margin: 0 auto;
    font-size: 26px;
    font-weight: 500;
    line-height: 1.5;
    color: #b61b35;
    text-align: center;
    margin-top: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%; /* 横幅いっぱい */
    position: relative;
    margin-left: calc((100% - 100vw) / 2);
    width: 100vw;
  }

  .service__list-title::before {
    content: "　";
    flex: 1; /* 横に伸びる */
    height: 1px;
    background: #b61b35; /* ラインの色 */
    margin-right: 1em; /* タイトルとの間隔 */
  }

  .service__list-title::after {
    content: "　";
    flex: 1; /* 横に伸びる */
    height: 1px;
    background: #b61b35; /* ラインの色 */
    margin-left: 1em; /* タイトルとの間隔 */
  }

  .service__item-block4 {
    display: flex;
    align-items: center;
    gap: 20px;
  }

  .service__item-content4 {
    width: 60%;
  }

  .service__item-title4 {
    font-size: 20px;
    line-height: 1.7;
    color: #b61b35;
    text-align: left;
    margin-top: 0px;
  }

  .service__item-img4 {
    width: 40%;
  }

  .service__item-text {
    font-size: 14px;
    margin-top: 10px;
    text-align: center;
    letter-spacing: 0;
  }

  .service__item-text4 {
    font-size: 14px;
    margin-top: 0px;
    text-align: left;
    line-height: 1.7;
  }
}

/*------------------------------------------------------------------
#reason
-------------------------------------------------------------------*/
.reason {
  margin-top: 150px;
  padding-top: 100px;
  padding-bottom: 250px;
  background-color: #fff;
  box-shadow: 0px 0px 22px 0 rgba(155, 144, 121, 0.16);
  border-radius: 200px 200px 0 0;
}

.reason__inner {
  padding-inline: 20px;
  max-width: calc(1350px + 20px * 2);
  margin-inline: auto;
}

.reason__block {
  display: flex;
  align-items: flex-start;
  gap: 50px;
  margin-top: 80px;
  position: relative;
  right: -100px;
}

.reason__block.reverse {
  flex-direction: row-reverse;
  position: relative;
  left: -100px;
}

.reason__block-left {
  width: 50%;
}

.reason__block-title {
  font-size: 32px;
  font-weight: 500;
  line-height: 1.5;
  color: #b61b35;
  padding: 80px 16px 10px;
  border-bottom: 1px solid #b61b35;
}

.reason__block-title2 {
  padding: 30px 16px 0;
}

.reason__block-title span,
.reason__block-title2 span {
  font-size: 28px;
  line-height: 1.3;
  display: inline-block;
}

.reason__block-text {
  margin-top: 30px;
  padding-inline: 16px;
}

.reason__block-right {
  width: 45%;
}

.reason__list-middle {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  padding-inline: 20px;
  max-width: calc(1100px + 20px * 2);
  margin-inline: auto;
  margin-top: 50px;
}

.reason__item-middle {
}

.reason__list-middle-img {
}

.reason__list-middle-text {
  margin-top: 10px;
}

.reason__list-title {
  padding-inline: 20px;
  max-width: calc(1200px + 20px * 2);
  margin: 0 auto;
  font-size: 30px;
  font-weight: 500;
  color: #b61b35;
  text-align: center;
  margin-top: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%; /* 横幅いっぱい */
  position: relative;
}

.reason__list-title::before {
  content: "";
  flex: 1; /* 横に伸びる */
  height: 1px;
  background: #b61b35; /* ラインの色 */
  margin-right: 1em; /* タイトルとの間隔 */
}

.reason__list-title::after {
  content: "";
  flex: 1; /* 横に伸びる */
  height: 1px;
  background: #b61b35; /* ラインの色 */
  margin-left: 1em; /* タイトルとの間隔 */
}

.reason__list1 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
  margin-top: 50px;
  padding-inline: 150px;
}

.reason__item1 {
  width: 80%;
  margin-inline: auto;
}

.reason__list2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  margin-top: 50px;
  padding-inline: 150px;
}

.reason__item2 {
}

.reason__list-img1 {
  background-color: #f4f4f4;
  border-radius: 50px;
}

.reason__list1-title {
  font-size: 24px;
  color: #b61b35;
  margin-top: 10px;
  text-align: center;
}

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

@media screen and (max-width: 1500px) {
  .reason__block {
    right: 0px;
  }

  .reason__block.reverse {
    left: 0px;
  }
}

@media screen and (max-width: 1023px) {
}

@media screen and (max-width: 767px) {
  .reason {
    margin-top: 50px;
    padding-top: 50px;
    padding-bottom: 200px;
    border-radius: 0;
  }

  .reason__inner {
    padding-inline: 10px;
    max-width: calc(1350px + 10px * 2);
    margin-inline: auto;
  }

  .reason__block {
    display: block;
    margin-top: 10px;
  }

  .reason__block.reverse {
    display: block;
  }

  .reason__block-left {
    width: 100%;
  }

  .reason__block-title {
    font-size: 26px;
    font-weight: 500;
    line-height: 1.5;
    color: #b61b35;
    padding-top: 30px;
    padding-bottom: 10px;
    border-bottom: 1px solid #b61b35;
    text-align: center;
  }

  .reason__block-title2 {
    padding-top: 30px;
  }

  .reason__block-title span,
  .reason__block-title2 span {
    font-size: 22px;
  }

  .reason__block-text {
    font-size: 14px;
    margin-top: 20px;
  }

  .reason__block-right {
    width: 100%;
    margin-top: 25px;
  }

  .reason__list-middle {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding-inline: 0px;
    max-width: calc(1100px + 20px * 2);
    margin-inline: auto;
    margin-top: 50px;
  }

  .reason__list-middle-text {
    font-size: 12px;
    margin-top: 10px;
  }

  .reason__list-title {
    padding-inline: 10px;
    max-width: calc(1200px + 20px * 2);
    margin: 0 auto;
    font-size: 26px;
    font-weight: 500;
    line-height: 1.5;
    color: #b61b35;
    text-align: center;
    margin-top: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%; /* 横幅いっぱい */
    position: relative;
    margin-left: calc((100% - 100vw) / 2);
    width: 100vw;
  }

  .reason__list-title::before {
    content: "　";
    flex: 1; /* 横に伸びる */
    height: 1px;
    background: #b61b35; /* ラインの色 */
    margin-right: 1em; /* タイトルとの間隔 */
  }

  .reason__list-title::after {
    content: "　";
    flex: 1; /* 横に伸びる */
    height: 1px;
    background: #b61b35; /* ラインの色 */
    margin-left: 1em; /* タイトルとの間隔 */
  }

  .reason__list1 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
    margin-top: 50px;
    padding-inline: 0px;
  }

  .reason__item1 {
  }

  .reason__list2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px 15px;
    margin-top: 30px;
    padding-inline: 0px;
  }

  .reason__list1-title {
    font-size: 20px;
    color: #b61b35;
    margin-top: 10px;
    text-align: center;
  }

  .reason__list1-title.small {
    font-size: 16px;
    letter-spacing: 0.01em;
  }

  .reason__list1-text {
    font-size: 14px;
    text-align: center;
    letter-spacing: 0.01em;
    line-height: 1.5;
  }
}

/*------------------------------------------------------------------
#flow
-------------------------------------------------------------------*/
.flow {
  padding-top: 150px;
  padding-bottom: 150px;
  box-shadow: 0px 0px 22px 0 rgba(155, 144, 121, 0.16);
  background-color: #f4f2e9;
}

.flow__inner {
  padding-inline: 20px;
  max-width: calc(1500px + 20px * 2);
  margin-inline: auto;
  background-color: #fbfaf6;
  box-shadow: 0px 0px 22px 0 rgba(0, 0, 0, 0.16);
  padding-top: 100px;
  padding-bottom: 100px;
  border-radius: 90px;
  margin-top: -300px;
}

.flow__list {
  padding-inline: 20px;
  max-width: calc(1100px + 20px * 2);
  margin-inline: auto;
  display: flex;
  margin-top: 70px;
}

.flow__item {
}

.flow__item-top {
  display: flex;
  align-items: center;
  gap: 20px;
  background-color: #f2eede;
  padding: 30px 25px;
  clip-path: polygon(
    0 0,
    /* 左上 */ 85% 0,
    /* 右上ちょっと手前 */ 100% 50%,
    /* 右の尖り部分 */ 85% 100%,
    /* 右下ちょっと手前 */ 0 100% /* 左下 */
  );
}

.flow__title-number {
}

.flow__title-number1 {
  display: block;
  font-size: 18px;
  font-weight: 300;
  color: #b61b35;
  line-height: 1;
}

.flow__title-number2 {
  display: block;
  font-size: 39px;
  font-weight: 300;
  color: #b61b35;
  line-height: 1;
  text-align: center;
}

.flow__title {
  font-size: 24px;
  font-weight: 500;
  color: #b61b35;
  line-height: 1.3;
}

.flow__text {
  margin-top: 20px;
  padding-right: 50px;
}

.flow__block-middle {
  padding-inline: 20px;
  max-width: calc(1100px + 20px * 2);
  margin-inline: auto;
  margin-top: 100px;
  display: flex;
  align-items: center;
  gap: 50px;
}

.flow__block-middle-left {
  width: 65%;
}

.flow__block-middle-right {
  width: 35%;
}

.flow__block-middle-text {
}

.flow__block {
  padding-inline: 20px;
  max-width: calc(1200px + 20px * 2);
  margin-inline: auto;
  margin-top: 60px;
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  gap: 50px;
  position: relative;
  right: -50px;
}

.flow__block-left {
  width: 50%;
}

.flow__block-right {
  width: 50%;
}

.flow__block-title {
  font-size: 30px;
  font-weight: 500;
  color: #b61b35;
}

.flow__block-text {
}

@media screen and (max-width: 1023px) {
}

@media screen and (max-width: 767px) {
  .flow {
    padding-inline: 10px;
    padding-bottom: 50px;
  }
  .flow__inner {
    padding-inline: 10px;
    max-width: calc(1500px + 10px * 2);
    margin-inline: auto;
    background-color: #fbfaf6;
    box-shadow: 0px 0px 22px 0 rgba(0, 0, 0, 0.16);
    padding-top: 0px;
    padding-bottom: 50px;
    border-radius: 20px;
    margin-top: -300px;
  }

  .flow__list {
    padding-inline: 10px;
    max-width: calc(1100px + 20px * 2);
    margin-inline: auto;
    display: block;
    margin-top: 0;
  }

  .flow__item {
    padding-top: 40px;
    position: relative;
  }

  .flow__item::before {
    border-left: 2px solid #f2eede;
    content: "";
    display: block;
    height: 100%;
    left: 40px;
    position: absolute;
    top: 50px;
    width: 0;
  }

  .flow__item:last-child:before {
    border-left: 0px solid #f2eede;
    content: "";
    display: block;
    height: 100%;
    left: 40px;
    position: absolute;
    top: 50px;
    width: 0;
  }

  .flow__item-top {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: #f2eede;
    padding: 20px;
    clip-path: none;
  }

  .flow__title-number {
    position: relative;
  }

  .flow__title-number1 {
    display: block;
    font-size: 18px;
    font-weight: 300;
    color: #b61b35;
    line-height: 1;
  }

  .flow__title-number2 {
    display: block;
    font-size: 39px;
    font-weight: 300;
    color: #b61b35;
    line-height: 1;
    text-align: center;
  }

  .flow__title {
    font-size: 24px;
    font-weight: 500;
    color: #b61b35;
    line-height: 1.3;
  }

  .flow__text {
    font-size: 14px;
    margin-top: 20px;
    padding-right: 0;
    padding-left: 50px;
  }

  .flow__block-middle {
    padding-inline: 0px;
    max-width: calc(1100px + 20px * 2);
    margin-inline: auto;
    margin-top: 40px;
    display: block;
  }

  .flow__block-middle-left {
    width: 100%;
  }

  .flow__block-middle-right {
    width: 100%;
  }

  .flow__block-middle-text {
    margin: 20px 0px 0px 5%;
    font-size: 14px;
  }

  .flow__block {
    padding-inline: 0px;
    max-width: calc(1200px + 20px * 2);
    margin-inline: auto;
    margin-top: 60px;
    display: block;
    position: relative;
    right: 0px;
  }

  .flow__block-left {
    width: 100%;
    margin-top: 20px;
  }

  .flow__block-right {
    width: 100%;
  }

  .flow__block-title {
    font-size: 30px;
    font-weight: 500;
    color: #b61b35;
    line-height: 1.4;
    text-align: center;
    letter-spacing: 0;
  }

  .flow__block-text {
    font-size: 14px;
    margin-top: 10px;
    padding-inline: 16px;
  }
}

/*------------------------------------------------------------------
#faq
-------------------------------------------------------------------*/
.faq {
  padding-top: 0px;
  padding-bottom: 100px;
  background-color: #f4f2e9;
}

.faq__inner {
  padding-inline: 20px;
  max-width: calc(1200px + 20px * 2);
  margin-inline: auto;
}

.faq__list {
  margin-top: 50px;
}

.faq__item {
  margin-top: 30px;
  background-color: #fff;
  padding: 10px 60px;
  border-radius: 30px;
  box-shadow: 0px 0px 22px 0 rgba(155, 144, 121, 0.16);
}

.faq__q {
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 30px;
  border-bottom: 1px dashed #707070;
}

.faq__q-icon {
  width: 70px;
}

.faq__q-text {
  width: calc(100% - 70px);
  font-size: 24px;
  font-weight: 500;
}

.faq__a {
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 30px;
}

.faq__a-icon {
  width: 70px;
}

.faq__a-text {
  width: calc(100% - 70px);
  font-size: 16px;
  letter-spacing: 0;
}

@media screen and (max-width: 1023px) {
}

@media screen and (max-width: 767px) {
  .faq__item {
    margin-top: 30px;
    background-color: #fff;
    padding: 10px;
    border-radius: 30px;
    box-shadow: 0px 0px 22px 0 rgba(155, 144, 121, 0.16);
  }

  .faq__q {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px;
    border-bottom: 1px dashed #707070;
  }

  .faq__q-icon {
    width: 60px;
  }

  .faq__q-text {
    width: calc(100% - 60px);
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 1.5;
  }

  .faq__a {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px 10px 10px;
  }

  .faq__a-icon {
    width: 60px;
  }

  .faq__a-text {
    width: calc(100% - 60px);
    font-size: 14px;
    letter-spacing: 0;
  }
}

/*------------------------------------------------------------------
#section__img
-------------------------------------------------------------------*/
.section__img {
  background: url(../nicchiku-kishimoto/img/section-img.jpg) no-repeat center center / cover;
  height: 400px;
  position: relative;
  z-index: 2;
}

.section__img img {
  height: 400px;
  object-fit: cover;
}

@media screen and (max-width: 1023px) {
}

@media screen and (max-width: 767px) {
  .section__img {
    background: url(../nicchiku-kishimoto/img/section-img_sp.jpg) no-repeat center center / cover;
    height: 130px;
  }

  .section__img img {
    height: 130px;
    object-fit: cover;
  }
}

/*------------------------------------------------------------------
#top-company
-------------------------------------------------------------------*/
.company {
  padding-top: 50px;
  padding-bottom: 100px;
  background-color: #fff;
  position: relative;
  z-index: 1;
}

.company::before {
  position: absolute;
  content: "";
  background: url(../nicchiku-kishimoto/img/section-orange.png) no-repeat center center / cover;
  width: 928px;
  height: 418px;
  top: -20%;
  left: -300px;
  z-index: -1;
}

.company__inner {
  padding-inline: 20px;
  max-width: calc(1000px + 20px * 2);
  margin-inline: auto;
}

.company__block {
  display: flex;
  gap: 20px;
  margin-top: 70px;
}

.company__content {
  width: 45%;
}

.company__list {
  margin-top: 20px;
}

.company__item {
  display: flex;
  align-items: center;
  gap: 5px;
}

.company__item-left {
  font-size: 16px;
  width: 125px;
  padding: 15px 0px 15px 0px;
}

.company__item-right {
  font-size: 16px;
  letter-spacing: 0;
  width: calc(100% - 125px);
  padding: 15px 10px;
}

.company__access {
  margin-top: 50px;
}

.company__access-title {
  font-size: 24px;
  font-weight: 500;
}

.company__access-text {
  font-size: 16px;
}

.map__iframe {
  width: 55%;
  text-align: center;
}

.map__iframe iframe {
  max-width: 100%;
  height: auto;
  vertical-align: top;
  aspect-ratio: 550 / 570;
  border-top-left-radius: 100px;
  border-bottom-right-radius: 100px;
}

/*1023px以下*/
@media screen and (max-width: 1023px) {
}

/*767px以下*/
@media screen and (max-width: 767px) {
  .company {
    padding-top: 0px;
    padding-bottom: 50px;
    background-color: #fff;
  }

  .company::before {
    position: absolute;
    content: "";
    background: url(../nicchiku-kishimoto/img/section-orange.png) no-repeat center center / cover;
    width: 237px;
    height: 106px;
    top: -4%;
    left: -95px;
  }

  .company__block {
    display: block;
    margin-top: 30px;
  }

  .company__content {
    width: 100%;
  }

  .company__list {
    margin-top: 20px;
  }

  .company__item {
    display: flex;
    align-items: center;
    gap: 5px;
  }

  .company__item-left {
    font-size: 14px;
    width: 80px;
    padding: 15px 0px 15px 0px;
  }

  .company__item-right {
    font-size: 14px;
    letter-spacing: 0;
    width: calc(100% - 80px);
    padding: 15px 0px;
  }

  .company__access {
    margin-top: 30px;
  }

  .company__access-title {
    font-size: 20px;
    font-weight: 500;
  }

  .company__access-text {
    font-size: 14px;
  }

  .map__iframe {
    width: 100%;
    text-align: center;
    margin-top: 20px;
  }

  .map__iframe iframe {
    max-width: 100%;
    height: auto;
    vertical-align: top;
    aspect-ratio: 314 / 257;
    border-top-left-radius: 100px;
    border-bottom-right-radius: 100px;
  }
}

/*------------------------------------------------------------------
#contact
-------------------------------------------------------------------*/
.contact {
  padding-top: 130px;
  padding-bottom: 100px;
  background-color: #fbfaf6;
  position: relative;
}

.contact::before {
  position: absolute;
  content: "";
  background: url(../nicchiku-kishimoto/img/company-red.png) no-repeat center center / cover;
  width: 813px;
  height: 513px;
  top: -12%;
  right: -300px;
}

.contact__inner {
  padding-inline: 20px;
  max-width: calc(1200px + 20px * 2);
  margin-inline: auto;
}

.contact__lead {
  font-size: 16px;
  letter-spacing: 0;
  text-align: center;
  margin-top: 50px;
}

.form__fields {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 50px auto 0;
  padding: 50px 60px;
  background-color: #fff;
  border-radius: 30px;
}

.form__field {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  padding-top: 20px;
}

.form-field__head {
  display: flex;
  align-items: center;
  padding-top: 16px;
  width: 300px;
  flex-shrink: 0;
}

.form-field__label {
  font-size: 18px;
  letter-spacing: 0;
  color: #353553;
  text-align: left;
  padding-left: 25px;
  width: 180px;
}

.form-field__tag {
  display: inline-block;
  background: #b61b35;
  color: #fff;
  letter-spacing: 0;
  padding: 5px 28px;
  border-radius: 20px;
}

.form-field__tag.is-option {
  background: #b9b5b5;
  color: #fff;
}

.form-field__data {
  flex-grow: 1;
}

.form__field-bottom {
  padding-top: 40px;
  border-top: 1px dashed #c4c4c4;
}

input,
textarea {
  font-size: 18px;
  font-weight: 500;
  width: 100%;
}

input[name="code"] {
  width: 170px;
}

input::placeholder,
textarea::placeholder {
  font-family: "Noto Sans", sans-serif;
  font-size: 18px;
  color: #9d9d9d;
}

input[type="date"]::-webkit-datetime-edit {
  color: #ccc; /* 年/月/日のテキストカラーを変更 */
}

.form-field__data-code {
  margin-bottom: 20px;
}

.form-field__data-date {
  width: 200px;
}

.form__address-text {
  font-size: 14px;
  font-weight: 400;
  line-height: 27px;
  letter-spacing: 0.28px;
}

.form__field-radio-text {
  font-size: 16px;
  margin-right: 10px;
}

.form-field__data [type="text"],
.form-field__data [type="email"],
.form-field__data [type="date"] {
  padding: 20px;
  border: 1px solid #fff4f4;
  background: #fff4f4;
  border-radius: 12px;
  /* box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1); */
  transition: border 0.3s;
}

.form-field__data [type="text"]:hover,
.form-field__data [type="text"]:focus,
.form-field__data [type="email"]:hover,
.form-field__data [type="email"]:focus {
  border: 1px solid #28688f;
  outline: none;
}

.form-field__data [type="radio"],
.form-field__data [type="checkbox"] {
  opacity: 0;
  position: absolute;
}

.form-field__data [type="radio"]:hover + .wpcf7-list-item-label::before,
.form-field__data [type="checkbox"]:hover + .wpcf7-list-item-label::before {
  /* border: 1px solid #0f1b60; */
}

.form-field__data [type="checkbox"]:checked + .wpcf7-list-item-label::before {
  /* background-color: #fff; */
}

.form-field__data [type="radio"]:checked + .mwform-checkbox-field-text::after,
.form-field__data [type="checkbox"]:checked + .mwform-checkbox-field-text::after {
  opacity: 1;
}

.form-field__data textarea {
  height: 200px;
  border-radius: 0px;
  padding: 20px;
  padding: 20px;
  border: 1px solid #fff4f4;
  background: #fff4f4;
  border-radius: 12px;
  /* box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1); */
  resize: vertical;
  transition: border 0.3s;
}

.form-field__data textarea:hover,
.form-field__data textarea:focus {
  border: 1px solid #28688f;
  outline: none;
}

.form-field__data.checbox {
  display: flex;
  flex-wrap: wrap;
  padding-top: 16px;
  gap: 30px;
}

.page-id-1014 .form-field__data {
  padding-top: 20px;
}

.page-id-1014 .form-field__data.checbox {
  padding-top: 22px;
}

.page-id-1014 .accept__text,
.page-id-1014 .contact__privacy,
.page-id-1014 .form_content_field_input_caution {
  display: none;
}

.wpcf7-list-item {
  display: inline-block;
  margin: 0 0 0 0;
}

.mwform-checkbox-field-text {
  font-size: 18px;
  letter-spacing: 0;
  color: #353553;
  padding-left: 30px;
  position: relative;
}

.mwform-checkbox-field-text::before,
.mwform-checkbox-field-text::after {
  position: absolute;
  content: "";
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.mwform-checkbox-field-text::before {
  width: 24px;
  height: 24px;
  border-radius: 5px;
  background-color: #eaeaea;
  transition: border 0.3s;
  /* box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1); */
}

.mwform-checkbox-field-text::after {
  margin-top: -2px;
  border-bottom: 3px solid #333;
  border-left: 3px solid #333;
  transform: translateY(-50%) rotate(-45deg);
  width: 14px;
  height: 9px;
  left: 5px;
  transition: opacity 0.3s;
  opacity: 0;
}

.wpcf7-checkbox .wpcf7-list-item-label a,
.wpcf7-acceptance .wpcf7-list-item-label a {
  text-decoration-line: underline;
  font-weight: inherit;
}

.accept__text {
  font-size: 16px;
  text-align: center;
  letter-spacing: 0;
}

.accept__text a {
  color: #ff6060;
  text-decoration: underline;
  text-decoration-color: #ff6060;
}

.contact__privacy {
  text-align: center;
}

.contact__privacy a {
  text-decoration: underline;
}

.contact__privacy [type="checkbox"] {
  opacity: 0;
  position: absolute;
}

.contact__privacy [type="checkbox"]:hover + .wpcf7-list-item-label::before {
  /* border: 2px solid #0f1b60; */
}

.contact__privacy [type="checkbox"]:checked + .wpcf7-list-item-label::after {
  opacity: 1;
}

.confirm__btn-Wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  margin: 30px 0 0;
  text-align: center;
  /* width: 300px; */
  position: relative;
}

.confirm__btn-Wrap::before {
  position: absolute;
  content: "";
  background: url(../nicchiku-kishimoto/img/arrow-right-white.png) no-repeat center center / cover;
  width: 12px;
  height: 20px;
  top: 50%;
  transform: translateY(-50%);
  right: 24px;
  pointer-events: none;
  z-index: 2;
}

.page-id-1014 .confirm__btn-Wrap::before {
  display: none;
}

.confirm__btn-Wrap .confirm__btn {
  display: inline-block;
  font-size: 24px;
  color: #fff;
  letter-spacing: 0;
  background-color: #f38300;
  padding: 20px 75px 20px 65px;
  border-radius: 50px;
  transition: 0.3s;
  border: none;
  position: relative;
}

.confirm__btn-Wrap .confirm__btn:hover {
  color: #fff;
  box-shadow: none;
}

.contact-qa__boxes {
  margin-top: 10px;
  margin-bottom: 10px;
  gap: 10px;
}

@media screen and (max-width: 1023px) {
  .top-contact__title {
    text-align: center;
  }

  .form__fields {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin: 100px auto 0;
    padding: 20px;
    background-color: #fff;
  }

  .form__field {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding-top: 30px;
  }

  .form-field__head {
    display: flex;
    align-items: center;
    width: 280px;
    flex-shrink: 0;
  }

  .form-field__label {
    font-size: 18px;
    text-align: left;
    padding-left: 30px;
    width: 180px;
  }
  .confirm__btn-Wrap {
    flex-direction: column;
  }
}

@media screen and (max-width: 767px) {
  .contact {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .contact::before {
    position: absolute;
    content: "";
    background: url(../nicchiku-kishimoto/img/company-red.png) no-repeat center center / cover;
    width: 297px;
    height: 187px;
    top: -4%;
    right: -120px;
  }

  .contact__inner {
    padding-inline: 10px;
    max-width: calc(1200px + 10px * 2);
    margin-inline: auto;
  }

  .contact__lead {
    font-size: 14px;
    margin-top: 40px;
  }

  .form__fields {
    margin-top: 30px;
    gap: 10px;
    padding: 15px;
  }

  .form__field {
    display: block;
    padding-top: 15px;
  }

  .form-field__head {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
  }

  .form-field__label {
    font-size: 18px;
    padding-left: 20px;
    width: 100%;
  }

  .form-field__tag {
    text-align: center;
    width: 100px;
    padding: 0px 2px;
  }

  .form-field__data {
    margin-top: 14px;
  }

  .form-field__data-code {
    width: 100%;
    margin-bottom: 10px;
  }

  .form-field__data.checbox {
    flex-direction: column;
    gap: 15px;
    padding-left: 20px;
  }

  .contact__btn-warp {
    margin-top: 30px;
  }

  .contact-bottom__text {
    padding: 0px;
  }

  .mw_wp_form .horizontal-item + .horizontal-item {
    margin-left: 0px !important;
  }
}

/*------------------------------------------------------------------
#contact(確認・完了)
-------------------------------------------------------------------*/
.contact1 {
  margin-top: 35px;
  padding-top: 100px;
  padding-bottom: 100px;
  background-color: #fbfaf6;
  position: relative;
  z-index: 1;
}

.contact1__inner {
  padding-inline: 20px;
  max-width: calc(1200px + 20px * 2);
  margin-inline: auto;
}

.contact__btns-Wrap {
  display: flex;
  justify-content: center;
  gap: 80px;
  padding-inline: 20px;
  margin: 60px auto 0;
}

.confirm__btn-Wrap [type="submit"] {
  display: inline-block;
  font-size: 24px;
  color: #fff;
  background-color: #f38300;
  padding: 20px 35px 20px 35px;
  border-radius: 50px;
  transition: 0.3s;
  width: 250px;
  border: none;
  position: relative;
}

.submit__btn-Wrap [type="submit"]:hover {
  color: #fff;
}

.back__btn {
  display: inline-block;
  font-size: 24px;
  color: #fff;
  background-color: #f38300;
  padding: 20px 35px 20px 35px;
  border-radius: 50px;
  transition: 0.3s;
  width: 250px;
  border: none;
  position: relative;
}

.back__btn:hover {
  color: #fff;
}

span.wpcf7-spinner {
  display: none;
}

.wpcf7-form.invalid .wpcf7-response-output {
  /* display: none; */
}

.hidden-fields-container {
  display: none;
}

.screen-reader-response {
  display: none;
}

.thanks__button {
  margin: 50px auto 0;
  text-align: center;
}

.thanks__button-link {
  display: inline-block;
  font-size: 24px;
  color: #fff;
  letter-spacing: 0;
  background-color: #f38300;
  padding: 20px 45px 20px 35px;
  border-radius: 50px;
  transition: 0.3s;
  border: none;
  position: relative;
}

.thanks__button-link:hover {
  color: #fff;
  background-color: #f38300;
}

@media screen and (max-width: 767px) {
  .contact__btns-Wrap {
    gap: 20px;
    margin: 40px auto 0;
  }

  .submit__btn-Wrap [type="submit"] {
    padding: 20px;
    width: 160px;
  }

  .back__btn {
    padding: 20px;
    width: 160px;
  }
}

/*------------------------------------------------------------------
#
-------------------------------------------------------------------*/
