@charset "UTF-8";

/*!
Theme Name: Cocoon Child
Description: Cocoon専用の子テーマ
Theme URI: https://wp-cocoon.com/
Author: わいひら
Author URI: https://nelog.jp/
Template:   cocoon-master
Version:    1.1.3
*/

/************************************
** 子テーマ用のスタイルを書く
************************************/
/*必要ならばここにコードを書く*/

/************************************
** レスポンシブデザイン用のメディアクエリ
************************************/
/*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=Noto+Serif+JP:wght@200..900&display=swap");
/*------------------------------------------------------------------
#共通
-------------------------------------------------------------------*/

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

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

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 {
  color: #333;
  font-family: "Noto Serif JP", serif;
  overflow-wrap: break-word;
  overflow-x: hidden;
  background-color: #fff;
  overflow-x: scroll;
}

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

a {
  color: inherit;
  cursor: pointer;
  text-decoration: none;
  transition: opacity 0.3s;
}

: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) {
  .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;
  }
}

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

.common__button {
  font-size: 16px;
  display: inline-block;
  width: 260px;
  max-width: 100%;
  padding: 20px 90px 16px 45px;
  text-align: center;
  border-radius: 5px;
  color: #fff;
  background-color: #da9820;
  transition:
    background-color 0.3s,
    color 0.3s;
  position: relative;
}

.common__button:hover {
  color: #fff;
  background-color: #f7b02d;
}

.common__button::after {
  position: absolute;
  content: "";
  background: url(../cocoon-master/images/arrow-right-white.png) no-repeat center center / cover;
  width: 35px;
  height: 8px;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  transition: right 0.3s;
}

.common__button:hover::after {
  right: 30px;
}

.primary__button-link {
  font-size: 16px;
  padding-left: 10px;
  padding-right: 50px;
  padding-bottom: 5px;
  border-bottom: 1px solid #333;
  transition:
    border 0.3s,
    color 0.3s;
  position: relative;
}

.primary__button-link::after {
  position: absolute;
  content: "";
  background: url(../cocoon-master/images/arrow-right-small.png) no-repeat center center / cover;
  width: 26px;
  height: 6px;
  top: 25%;
  right: 10px;
  transition:
    background 0.3s,
    right 0.3s;
}

.primary__button-link:hover {
  border-bottom: 1px solid #f7b02d;
  color: #f7b02d;
}

.primary__button-link:hover::after {
  background: url(../cocoon-master/images/arrow-right-small-yellow.png) no-repeat center center / cover;
  right: 0px;
}

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

/*767px以下*/
@media screen and (max-width: 767px) {
  .common__button {
    font-size: 14px;
    width: 230px;
    max-width: 100%;
    padding: 15px 50px 15px 25px;
  }

  .common__button::after {
    width: 31px;
    height: 7px;
    right: 35px;
  }

  .common__button:hover::after {
    right: 25px;
  }

  .primary__button-link {
    font-size: 14px;
    padding-left: 5px;
  }

  .primary__button-link::after {
    width: 31px;
    height: 7px;
  }
}

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

.breadcrumb .home {
  border-bottom: 1px solid #999;
  padding-bottom: 5px;
}

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

.breadcrumb__wrap {
  background-color: #f9f5ed;
}

.breadcrumb.single {
  margin-top: 130px;
  padding-top: 20px;
  padding-bottom: 20px;
}

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

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

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

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

.page-numbers {
  background-color: #fff;
  color: #231815;
  border: 1px solid #dddddd;
  font-size: 16px;
  width: 50px;
  height: 50px;
  line-height: 2;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  transition:
    background 0.3s,
    color 0.3s;
}

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

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

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

.prev.page-numbers,
.next.page-numbers {
  font-size: 16px;
  letter-spacing: 0.1em;
  font-weight: 500;
  width: 125px;
  height: 50px;
  color: #231815;
  border: 1px solid transparent;
}

.prev.page-numbers:hover,
.next.page-numbers:hover {
  background-color: transparent;
  opacity: 0.8;
}

.prev-content span,
.next-content span {
  padding-bottom: 5px;
  border-bottom: 1px solid #231815;
}

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

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

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

.single-pager__prev {
  position: absolute;
  top: 15px;
  left: 0;
}

.single-pager__archive {
  position: absolute;
  right: 50%;
  transform: translateX(50%);
}

.single-pager__next {
  position: absolute;
  top: 15px;
  right: 0;
}

.single-pager__prev a,
.single-pager__next a {
  display: inline-block;
  color: #231815;
  background-color: transparent;
  font-size: 16px;
  font-weight: 500;
  padding-bottom: 5px;
  border-bottom: 1px solid #231815;
}

.single-pager__archive a {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.1em;
  display: inline-block;
  width: 210px;
  max-width: 100%;
  padding: 20px 40px;
  text-align: center;
  border-radius: 5px;
  color: #fff;
  background-color: #da9820;
  transition:
    background-color 0.3s,
    color 0.3s;
  position: relative;
}

.single-pager__archive a:hover {
  color: #fff;
  background-color: #f7b02d;
}

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

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

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

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

.lower-top-wave {
  position: absolute;
  width: 100%;
  height: 64px;
  bottom: -25px;
}

.lower-top-wave::after {
  position: absolute;
  content: "";
  background: url(../cocoon-master/images/lower-bg-wave.png) repeat-x;
  background-position: center center;
  background-size: contain;
  height: 64px;
  width: 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: 44px;
  font-weight: 500;
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -40%);
  width: 70%;
  max-width: 1000px;
  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 {
  line-height: 1.38;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

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

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

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

@media screen and (max-width: 767px) {
  .lower-top {
    margin-top: 60px;
    height: 240px;
  }

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

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

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

/*------------------------------------------------------------------
#TOPへ
-------------------------------------------------------------------*/
.pagetop {
  position: fixed;
  bottom: 50px;
  right: 30px;
  width: 50px;
  height: 50px;
  background-color: #918b8a;
  border-radius: 5px;
  display: block;
  opacity: 0;
  transition:
    opacity 0.5s,
    visibility 0.5s;
  visibility: hidden;
  z-index: 10;
}

.pagetop::after {
  position: absolute;
  content: "";
  background: url(../cocoon-master/images/icon-up.png) no-repeat center center / cover;
  width: 15px;
  height: 20px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

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

.pagetop:hover {
  opacity: 0.75;
}

.go-to-top-button {
  display: none;
}

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

/*767px以下*/
@media screen and (max-width: 767px) {
  .pagetop {
    bottom: 100px;
    right: 20px;
  }
}

/*------------------------------------------------------------------
#公式オンラインショップ(固定ボタン)
-------------------------------------------------------------------*/
.shop-wrap {
  position: fixed;
  bottom: 50px;
  right: 100px;
  z-index: 30;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.shop-wrap.is-hidden {
  display: none;
}

.shop-wrap .icon-close {
  position: absolute;
  width: 25px;
  height: 25px;
  top: -10px;
  right: -10px;
  cursor: pointer;
  z-index: 40;
  transition:
    background-color 0.2s,
    transform 0.2s,
    color 0.2s;
}

.shop {
  display: flex;
  gap: 20px;
  width: 220px;
  max-width: 100%;
  padding: 15px 20px;
  border-radius: 5px;
  color: #fff;
  background-color: #28688f;
  transition:
    background-color 0.2s,
    transform 0.2s,
    color 0.2s;
}

.shop:hover {
  background-color: #4f8db3;
  transform: scale(1.1, 1.1);
}

.shop-btob {
  display: flex;
  gap: 20px;
  width: 220px;
  max-width: 100%;
  justify-content: center;
  padding: 15px 20px;
  border-radius: 5px;
  color: #fff;
  background-color: #da9820;
  transition:
    background-color 0.2s,
    transform 0.2s,
    color 0.2s;
}

.shop-btob:hover {
  background-color: #f7b02d;
  transform: scale(1.1, 1.1);
}

.shop__img {
  width: 27px;
}

.shop__img-btob {
  display: none;
}

.shop__text {
  color: #fff;
  font-size: 15px;
  line-height: 1.38;
  text-align: left;
}

.shop__text-btob {
  color: #fff;
  font-size: 15px;
  line-height: 1.38;
  text-align: center;
}

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

/*767px以下*/
@media screen and (max-width: 767px) {
  .shop-wrap {
    bottom: 20px;
    right: 30px;
  }
}

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

.section__title-logo {
  width: 90px;
  margin-top: 10px;
}

.section__title-en {
  display: block;
  font-family: "Noto Serif JP", serif;
  color: #28688f;
  line-height: 1;
  letter-spacing: 0.2em;
  font-size: 18px;
}

.section__title-ja {
  display: block;
  font-family: "Noto Serif JP", serif;
  font-size: 44px;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0.1em;
  margin-top: 15px;
}

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

/*767px以下*/
@media screen and (max-width: 767px) {
  .section__title-logo {
    width: 65px;
  }

  .section__title-en {
    font-size: 12px;
  }

  .section__title-ja {
    font-size: 32px;
  }
}

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

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

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

.header__logo {
  width: 115px;
  position: absolute;
  top: 25px;
}

.header__logo-link {
  display: block;
  width: inherit;
}

.header__logo img {
  width: 115px;
}

.header__top {
  display: flex;
  margin-top: 5px;
}

.header__top-text {
  margin-right: auto;
  font-size: 12px;
}

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

.header__tel {}

.header__tel-link {
  display: inline-block;
  width: 200px;
}

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

.header__mail {
  padding: 5px 0;
}

.header__mail-link {
  font-size: 16px;
  display: inline-block;
  width: 200px;
  max-width: 100%;
  padding: 10px 26px 10px 55px;
  text-align: center;
  border-radius: 5px;
  color: #fff;
  background-color: #da9820;
  transition:
    background-color 0.3s,
    color 0.3s;
  position: relative;
}

.header__mail-link:hover {
  color: #fff;
  background-color: #f7b02d;
}

.header__mail-link::before {
  position: absolute;
  content: "";
  background: url(../cocoon-master/images/icon-mail.png) no-repeat center center / cover;
  width: 20px;
  height: 15px;
  left: 30px;
  top: 50%;
  transform: translateY(-50%);
}

.header-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: 65px;
}

.header-nav__list {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.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: 16px;
  padding-inline: 20px;
  height: 20px;
  border-right: 1px solid #333;
  transition: color 0.2s;
  position: relative;
}

.header-nav__link.first {
  border-left: 1px solid #333;
}

.header-nav__link::before {
  position: absolute;
  content: "";
  background: url(../cocoon-master/images/dot-orange.png) no-repeat center center / cover;
  left: 50%;
  transform: translateX(-50%);
  width: 10px;
  height: 10px;
  top: -15px;
  transition: transform 0.3s;
  display: none;
}

.header-nav__link.current::before {
  display: block;
}

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

@media screen and (max-width: 1023px) {
  .header-nav__link {
    font-size: 14px;
    padding-inline: 12px;
  }
}

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

  .header__inner {
    display: block;
    height: inherit;
  }

  .header__top {
    display: none;
  }

  .header__logo {
    width: 90px;
    height: 90px;
    top: 0;
  }

  .header__logo-link {
    height: inherit;
    display: flex;
    align-items: center;
  }

  .header__right {
    display: none;
  }

  .header-nav {
    display: none;
  }
}

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

.drawer__icon {
  background: transparent;
  border: none;
  cursor: pointer;
  display: none;
  position: fixed;
  right: 10px;
  top: 5px;
  transition: transform 0.5s;
  width: 70px;
  height: 50px;
  z-index: 500;
  background-color: transparent;
  border-radius: 5px;
}

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

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

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

.drawer-icon__bar1,
.drawer-icon__bar2,
.drawer-icon__bar3 {
  position: absolute;
  background: #333;
  height: 2px;
  left: 20px;
  top: 15px;
  transition: transform 0.5s;
  width: 30px;
}

.drawer-icon__bar1 {
  top: 15px;
}

.drawer-icon__bar2 {
  top: 25px;
}

.drawer-icon__bar3 {
  top: 35px;
}

.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;
  width: 100%;
  height: 100vh;
  background-color: #fff;
  overflow: auto;
  pointer-events: none;
  right: 0;
  top: 0;
  transition: opacity 0.6s;
  opacity: 0;
  z-index: 400;
}

.drawer__content.is-active {
  opacity: 1;
  pointer-events: auto;
}

.drawer__content.is-active .drawer__logo-link img {
  display: none;
}

.drawer__logo {
  background-color: #fff;
  height: 60px;
  border-bottom: 1px solid #dcdcdc;
}

.drawer__logo-link {
  display: block;
  padding-left: 20px;
}

.drawer__logo-link img {
  width: 90px;
  height: 90px;
}

.drawer-nav__list {
  margin: 0 auto;
  max-width: 500px;
}

.drawer-nav__item {
  border-bottom: 1px solid #dcdcdc;
}

.drawer-nav__link {
  color: #333;
  background-color: #fff;
  display: block;
  font-size: 16px;
  letter-spacing: 0.1em;
  padding: 15px 40px;
  position: relative;
}

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

.drawer-sub__list {
  margin: 10px auto 0;
  max-width: 500px;
}

.drawer-sub__item {}

.drawer-sub__link {
  display: block;
  color: #333;
  font-size: 16px;
  letter-spacing: 0.1em;
  padding: 5px 20px;
}

.drawer__mail {
  text-align: center;
  margin-top: 30px;
}

.drawer__mail-link {
  font-size: 14px;
  display: inline-block;
  width: 250px;
  max-width: 100%;
  padding: 15px 40px 15px 55px;
  text-align: center;
  border-radius: 5px;
  color: #fff;
  background-color: #da9820;
  transition:
    background-color 0.3s,
    color 0.3s;
  position: relative;
}

.drawer__mail-link:hover {
  color: #fff;
  background-color: #f7b02d;
}

.drawer__mail-link::before {
  position: absolute;
  content: "";
  background: url(../cocoon-master/images/icon-mail.png) no-repeat center center / cover;
  width: 20px;
  height: 15px;
  left: 45px;
  top: 50%;
  transform: translateY(-50%);
}

.drawer__tel {
  text-align: center;
  margin-top: 30px;
}

.drawer__tel-link {
  display: inline-block;
  width: 250px;
}

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

.drawer-sns__list {
  margin: 40px auto 0;
  max-width: 500px;
  padding-top: 20px;
  padding-bottom: 100px;
  border-top: 1px solid #dcdcdc;
  display: flex;
  align-items: center;
}

.drawer-sns__item {
  padding-left: 30px;
}

.drawer-sns__link {
  display: flex;
  align-items: center;
}

.drawer_x img {
  width: 15px;
  height: 15px;
}

.drawer_youtube img {
  width: 23px;
  height: 16px;
}

.drawer__item-link {}

.drawer__item-link-blog {
  font-size: 14px;
  position: relative;
}

.drawer__item-link-blog::after {
  position: absolute;
  content: "";
  background: url(../cocoon-master/images/icon-blog.png) no-repeat center center / cover;
  width: 13px;
  height: 13px;
  top: 50%;
  transform: translateY(-50%);
  right: -20px;
}

/*1023px以下*/
@media screen and (max-width: 1023px) {
  .drawer__content.is-active {
    /* display: none; */
  }
}

/*767px以下*/
@media screen and (max-width: 767px) {
  .drawer__icon {
    display: block;
  }

  .drawer-icon__mail {
    opacity: 1;
  }
}

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

.footer {
  margin-top: 65px;
  padding-top: 70px;
  padding-bottom: 150px;
  background-color: #f9f5ed;
}

.footer__inner {
  padding-inline: 20px;
  max-width: calc(1080px + 20px * 2);
  margin-inline: auto;
  display: flex;
  justify-content: space-between;
}

.footer__left {
  display: flex;
  gap: 60px;
}

.footer__logo {
  width: 115px;
}

.footer__logo-link {
  display: block;
}

.footer__info-text {
  font-size: 16px;
  margin-top: 25px;
  line-height: 2;
}

.footer__right {
  display: flex;
}

.footer__list {
  margin-right: 50px;
}

.footer__list:nth-child(1) {
  margin-right: 25px;
}

.footer__list:nth-child(2) {
  margin-left: 100px;
}

.footer__item {}

.footer__item-link {
  transition: color 0.2s;
  line-height: 2;
}

.footer__item-link-blog {
  position: relative;
}

.footer__item-link-blog::after {
  position: absolute;
  content: "";
  background: url(../cocoon-master/images/icon-blog.png) no-repeat center center / cover;
  width: 13px;
  height: 13px;
  top: 50%;
  transform: translateY(-50%);
  right: -20px;
}

.footer__item-link:hover {
  color: #f7b02d;
}

.footer__sns {
  padding-inline: 20px;
  max-width: calc(970px + 20px * 2);
  margin-inline: auto;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  line-height: 1;
}

.footer_x {}

.footer_x:hover {
  opacity: 0.8;
}

.footer_x img {
  width: 28px;
  height: 28px;
}

.footer_instagram {
  margin-left: 20px;
}

.footer_instagram:hover {
  opacity: 0.8;
}

.footer_instagram img {
  width: 28px;
  height: 28px;
}

.footer_youtube {
  margin-left: 20px;
}

.footer_youtube:hover {
  opacity: 0.8;
}

.footer_youtube img {
  width: 35px;
  height: 25px;
}

.footer__button {
  padding-inline: 20px;
  max-width: calc(1000px + 20px * 2);
  margin-inline: auto;
  display: flex;
  gap: 60px;
  justify-content: center;
  margin-top: 50px;
}

.footer__mail-link {
  font-size: 16px;
  display: inline-block;
  width: 280px;
  max-width: 100%;
  padding: 16px 26px 16px 55px;
  text-align: center;
  border-radius: 5px;
  color: #fff;
  background-color: #da9820;
  transition:
    background-color 0.3s,
    color 0.3s;
  position: relative;
}

.footer__mail-link:hover {
  color: #fff;
  background-color: #f7b02d;
}

.footer__mail-link::before {
  position: absolute;
  content: "";
  background: url(../cocoon-master/images/icon-mail.png) no-repeat center center / cover;
  width: 20px;
  height: 15px;
  left: 60px;
  top: 50%;
  transform: translateY(-50%);
}

.footer__shop-link {
  font-size: 16px;
  display: inline-block;
  width: 280px;
  max-width: 100%;
  padding: 16px 26px 16px 55px;
  text-align: center;
  border-radius: 5px;
  color: #fff;
  background-color: #28688f;
  transition:
    background-color 0.3s,
    color 0.3s;
  position: relative;
}

.footer__shop-link:hover {
  color: #fff;
  background-color: #4f8db3;
}

.footer__shop-link::before {
  position: absolute;
  content: "";
  background: url(../cocoon-master/images/icon-cart.png) no-repeat center center / cover;
  width: 20px;
  height: 15px;
  left: 30px;
  top: 50%;
  transform: translateY(-50%);
}

.copyright {
  padding-inline: 20px;
  max-width: calc(1200px + 20px * 2);
  margin-inline: auto;
  display: flex;
  justify-content: space-between;
  margin-top: 60px;
}

.copyright__text {
  font-size: 14px;
  line-height: 1.2;
}

.footer-nav__list {
  display: flex;
  justify-content: center;
  text-align: center;
}

.footer-nav__item {
  width: fit-content;
  padding: 0 10px;
  border-right: 1px solid #353535;
  line-height: 1;
}

.footer-nav__item:first-child {
  border-left: 1px solid #353535;
}

.footer-nav__link {
  color: #353535;
  font-size: 16px;
  transition: color 0.2s;
}

.footer-nav__link:hover {
  color: #f7b02d;
}

.footer__cat {
  display: none;
}

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

/*1023px以下*/
@media screen and (max-width: 1023px) {
  .footer__left {
    gap: 2vw;
  }

  .footer__list:nth-child(2) {
    margin-left: 2vw;
  }
}

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

  .footer__logo {
    width: 95px;
  }

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

  .footer__left {
    justify-content: center;
    gap: 5vw;
  }

  .footer__right {
    justify-content: center;
    margin-top: 35px;
  }

  .footer__sns {
    margin-top: -25px;
    max-width: 410px;
  }

  .footer_x img,
  .footer_instagram img {
    width: 18px;
    height: 18px;
  }

  .footer_youtube img {
    width: 23px;
    height: 16px;
  }

  .footer__button {
    display: block;
    text-align: center;
  }

  .footer__mail-link {
    font-size: 14px;
    width: 250px;
  }

  .footer__shop-link {
    font-size: 14px;
    width: 250px;
    margin-top: 20px;
  }

  .copyright {
    flex-direction: column-reverse;
  }

  .copyright__text {
    font-size: 12px;
    text-align: center;
    margin-top: 20px;
  }

  .footer-nav__link {
    font-size: 14px;
  }
}

/*------------------------------------------------------------------
#mv
-------------------------------------------------------------------*/
.mv {
  margin-top: 120px;
  height: 620px;
}

.mv__inner {
  position: relative;
  height: inherit;
}

.mv__video {
  width: 100%;
  height: 100%;
}

.mv__video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mv__img {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.mv__img {
  width: 360px;
}

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

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

  .mv__img {
    width: 200px;
  }
}

/*------------------------------------------------------------------
#top-policy
-------------------------------------------------------------------*/
.top-policy {
  padding-top: 60px;
  padding-bottom: 135px;
  background: url(../cocoon-master/images/policy-bg.png) no-repeat center bottom / cover;
}

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

.top-policy__lead {
  font-size: 16px;
  line-height: 2.2;
  letter-spacing: 0.1em;
  margin-top: 55px;
  text-align: center;
}

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

/*767px以下*/
@media screen and (max-width: 767px) {
  .top-policy {
    padding-top: 70px;
    padding-bottom: 70px;
    background: url(../cocoon-master/images/policy-bg_sp.png) no-repeat center bottom / cover;
  }

  .top-policy__lead {
    font-size: 15px;
    letter-spacing: 0.05em;
  }
}

/*------------------------------------------------------------------
#top-news
-------------------------------------------------------------------*/
.top-news {
  padding-top: 15px;
  padding-bottom: 80px;
}

.top-news__inner {
  padding-inline: 20px;
  max-width: calc(1200px + 20px * 2);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.top-news__left {
  width: 22%;
}

.top-news__right {
  width: 72%;
}

.top-news__list {
  margin-top: 45px;
}

.top-news__item {}

.top-news__link {
  display: flex;
  align-items: flex-start;
  border-bottom: 1px solid #dcdcdc;
  padding: 25px 10px;
  position: relative;
}

.top-news__link::after {
  position: absolute;
  content: "";
  background: url(../cocoon-master/images/arrow-right.png) no-repeat center center / cover;
  width: 45px;
  height: 10px;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
  transition:
    background 0.3s,
    right 0.3s;
}

.top-news__link:hover::after {
  background: url(../cocoon-master/images/arrow-right-yellow.png) no-repeat center center / cover;
  right: 10px;
}

.top-news__link-time {
  width: 150px;
  color: #666666;
  font-size: 16px;
}

.top-news__link-title {
  width: calc(100% - 250px);
  font-size: 16px;
}

.top-news__button {
  text-align: right;
  margin-top: 40px;
}

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

/*767px以下*/
@media screen and (max-width: 767px) {
  .top-news {
    padding-top: 20px;
  }

  .top-news__inner {
    display: block;
    max-width: 600px;
  }

  .top-news__left {
    width: 100%;
  }

  .top-news__right {
    width: 100%;
  }

  .top-news__list {
    margin-top: 10px;
  }

  .top-news__link {
    display: block;
    padding: 20px 10px;
  }

  .top-news__link-time {
    font-size: 14px;
  }

  .top-news__link-title {
    font-size: 14px;
    width: 85%;
  }

  .top-news__link::after {
    width: 31px;
    height: 7px;
  }

  .top-news__button {
    margin-top: 25px;
  }
}

/*------------------------------------------------------------------
#top-products
-------------------------------------------------------------------*/
.top-products {
  padding-top: 15px;
  padding-bottom: 100px;
  position: relative;
}

.top-products::before {
  position: absolute;
  content: "";
  background: url(../cocoon-master/images/products-bg1.png) no-repeat center center / cover;
  top: -30px;
  right: 0;
  width: 550px;
  height: 350px;
  z-index: -1;
}

.top-products::after {
  position: absolute;
  content: "";
  background: url(../cocoon-master/images/products-bg2.png) no-repeat center center / cover;
  bottom: -190px;
  left: 0;
  width: 450px;
  height: 550px;
  z-index: -1;
}

.top-products__inner {
  padding-inline: 0px;
  max-width: 1440px;
  margin-inline: auto;
}

.top-products__lead {
  font-size: 18px;
  line-height: 2;
  letter-spacing: 0.1em;
  margin-top: 40px;
  text-align: center;
}

.slider1 {
  margin-inline: auto;
  margin-top: 70px;
}

.top-products-card {
  margin: 0 20px;
}

.slick-dots {
  bottom: -40px;
}

.slick-dots li {
  margin: 0 2px;
}

.slick-dots li button:before {
  font-size: 10px;
}

.slick-dots li.slick-active button:before {
  opacity: 0.75;
  color: #fabe00;
  font-size: 20px;
}

.slick-dots li button:hover::before {
  color: #fabe00;
}

.slick-prev,
.slick-next {
  width: 72px;
  height: 15px;
  z-index: 2;
  top: auto;
  bottom: -50px;
}

.slick-prev.slick-arrow {
  background: url("../cocoon-master/images/swiper-arrow-left.png") no-repeat center center;
  background-size: cover;
  left: 120px;
}

.slick-next.slick-arrow {
  background: url("../cocoon-master/images/swiper-arrow-right.png") no-repeat center center;
  background-size: cover;
  right: 120px;
}

.slick-prev:before,
.slick-next:before {
  content: "";
}

button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  padding: 0;
}

.top-products__swiper {
  margin-top: 60px;
  padding-bottom: 65px;
}

.swiper-wrapper {}

.top-products__pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.top-products__pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #bcbcbc;
  opacity: 1;
}

.top-products__pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  width: 15px;
  height: 15px;
  background: #fabe00;
}

.top-products__prev,
.top-products__next {
  width: 72px;
  height: 15px;
  top: var(--swiper-navigation-top-offset, 100%);
}

.top-products__prev::after,
.top-products__next::after {
  display: none;
}

.top-products__prev {
  background: url(../cocoon-master/images/swiper-arrow-left.png) no-repeat center center / cover;
  left: 120px;
}

.top-products__next {
  background: url(../cocoon-master/images/swiper-arrow-right.png) no-repeat center center / cover;
  right: 120px;
}

.top-products-card {
  position: relative;
}

.top-products-card__img {
  cursor: pointer;
  overflow: hidden;
}

.top-products-card__img img {
  transition: transform 0.5s;
}

.top-products-card__img:hover img {
  transform: scale(1.3);
}

.products-card__tag {
  font-size: 24px;
  writing-mode: vertical-rl;
  background-color: #28688f;
  color: #fff;
  padding: 20px 12px;
  letter-spacing: 0.1em;
  position: absolute;
  top: 15px;
  right: 15px;
}

.top-products-card__img img {
  border-radius: 0px;
  object-fit: cover;
}

.products-card__body {
  background-color: #f9f5ed;
  padding: 35px 30px 55px;
}

.products-card__text {
  font-size: 16px;
  text-align: left;
}

.top-products__button {
  text-align: center;
  margin-top: 70px;
}

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

@media screen and (max-width: 834px) {
  .slick-dots {
    display: block !important;
  }
}

/*767px以下*/
@media screen and (max-width: 767px) {
  .top-products::before {
    top: 220px;
    right: -50px;
    width: 350px;
    height: 200px;
  }

  .top-products::after {
    bottom: 20px;
    left: 0;
    width: 200px;
    height: 250px;
  }

  .top-products__lead {
    padding-inline: 10px;
    font-size: 15px;
    letter-spacing: 0.05em;
  }

  .top-products__swiper {
    margin-top: 40px;
    padding-bottom: 45px;
  }

  .top-products__prev,
  .top-products__next {
    width: 50px;
    height: 10px;
  }

  .top-products__prev {
    left: 20px;
  }

  .top-products__next {
    right: 20px;
  }

  .top-products__pagination {
    gap: 0px;
  }

  .top-products__pagination .swiper-pagination-bullet {
    width: 6px;
    height: 6px;
  }

  .top-products__pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    width: 10px;
    height: 10px;
  }

  .products-card__tag {
    font-size: 18px;
    padding: 15px 10px;
  }

  .products-card__body {
    background-color: #f9f5ed;
    padding: 25px 25px 35px;
  }

  .slick-prev.slick-arrow {
    background: url("../cocoon-master/images/swiper-arrow-left.png") no-repeat center center;
    background-size: cover;
    left: 50px;
  }

  .slick-next.slick-arrow {
    background: url("../cocoon-master/images/swiper-arrow-right.png") no-repeat center center;
    background-size: cover;
    right: 50px;
  }
}

/*------------------------------------------------------------------
#top-passion
-------------------------------------------------------------------*/

.top-passion {
  padding-top: 5px;
  padding-bottom: 50px;
  z-index: 1;
}

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

.top-passion__contents {
  display: flex;
  gap: 50px;
  margin-top: 60px;
  position: relative;
}

.top-passion__contents::before {
  position: absolute;
  content: "";
  background: url(../cocoon-master/images/passion-bg.png) no-repeat center center / cover;
  width: 210px;
  height: 110px;
  top: 50%;
  left: -100px;
}

.top-passion__contents::after {
  position: absolute;
  content: "";
  background: url(../cocoon-master/images/passion-bg.png) no-repeat center center / cover;
  width: 210px;
  height: 110px;
  top: 25%;
  left: 50%;
}

.top-passion__img {
  width: 60%;
}

.top-passion__img img {
  aspect-ratio: 720 / 440;
  object-fit: cover;
}

.top-passion__right {
  width: 35%;
  z-index: 2;
}

.top-passion__subtitle {
  font-size: 28px;
  font-weight: 500;
  letter-spacing: 0.1em;
  margin-top: 10px;
}

.top-passion__text {
  font-size: 16px;
  letter-spacing: 0.05em;
  line-height: 2;
  margin-top: 25px;
}

.top-passion__button {
  margin-top: 25px;
  text-align: right;
  z-index: 3;
}

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

/*767px以下*/
@media screen and (max-width: 767px) {
  .top-passion__inner {
    max-width: 600px;
  }

  .top-passion__contents {
    display: block;
    margin-top: 40px;
  }

  .top-passion__img {
    width: 100%;
  }

  .top-passion__right {
    width: 100%;
  }

  .top-passion__contents::before {
    width: 136px;
    height: 68px;
    top: 160px;
  }

  .top-passion__contents::after {
    width: 136px;
    height: 68px;
    left: auto;
    right: -50px;
    top: 50px;
  }

  .top-passion__subtitle {
    font-size: 22px;
    text-align: center;
    margin-top: 20px;
  }

  .top-passion__text {
    font-size: 14px;
    letter-spacing: 0.05em;
  }

  .top-passion__button {
    margin-top: 35px;
    text-align: center;
  }
}

/*------------------------------------------------------------------
#top-history
-------------------------------------------------------------------*/

.top-history {
  padding-top: 55px;
  padding-bottom: 100px;
  background: url(../cocoon-master/images/history-bg0.png) no-repeat center bottom / cover;
  position: relative;
  z-index: 1;
}

.top-history::before {
  position: absolute;
  content: "";
  background: url(../cocoon-master/images/history-bg2.png) no-repeat center center / cover;
  top: -90px;
  right: 0;
  width: 550px;
  height: 350px;
  z-index: 2;
}

.top-history::after {
  position: absolute;
  content: "";
  background: url(../cocoon-master/images/history-bg3.png) no-repeat center center / cover;
  bottom: 50px;
  left: 0;
  width: 450px;
  height: 550px;
  z-index: 2;
}

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

.top-history__contents {
  display: flex;
  margin-top: 65px;
}

.top-history__img {
  width: 50%;
}

.top-history__img img {
  height: 440px;
  object-fit: cover;
}

.top-history__right {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  flex-direction: row-reverse;
  background: url(../cocoon-master/images/history-contents-bg.png) no-repeat center center / cover;
}

.top-history__subtitle {
  font-size: 28px;
  line-height: 2.1;
  letter-spacing: 0.1em;
  writing-mode: vertical-rl;
}

.top-history__text {
  font-size: 16px;
  line-height: 2.8;
  letter-spacing: 0.05em;
  writing-mode: vertical-rl;
  margin-top: 50px;
  overflow: hidden;
}

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

.top-history__item {
  z-index: 3;
}

.top-history__button {
  margin-top: 50px;
  text-align: center;
  position: relative;
  z-index: 3;
}

/*1023px以下*/
@media screen and (max-width: 1023px) {
  .top-history__right {
    gap: 20px;
  }

  .top-history__text {
    font-size: 14px;
  }
}

/*767px以下*/
@media screen and (max-width: 767px) {
  .top-history {
    background: url(../cocoon-master/images/history-bg0_sp.png) no-repeat center bottom / cover;
  }

  .top-history::before {
    top: auto;
    bottom: 50px;
    right: 0;
    width: 300px;
    height: 200px;
  }

  .top-history::after {
    bottom: 190px;
    left: 0;
    width: 200px;
    height: 300px;
  }

  .top-history__inner {
    max-width: 600px;
  }

  .top-history__contents {
    display: block;
  }

  .top-history__img {
    width: 100%;
  }

  .top-history__img img {
    height: auto;
    aspect-ratio: 440 / 330;
    object-fit: cover;
  }

  .top-history__right {
    width: 100%;
    padding-block: 30px;
  }

  .top-history__subtitle {
    font-size: 22px;
    font-weight: 500;
  }

  .top-history__text {
    font-size: 14px;
  }

  .top-history__list {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 30px;
  }

  .top-history__button {
    margin-top: 40px;
  }
}

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

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

.top-company__contents {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-top: 65px;
}

.top-company__left {
  width: 50%;
}

.top-company__img {}

.top-company__img img {
  aspect-ratio: 536 / 319;
  object-fit: cover;
}

.top-company__map-button {
  text-align: center;
  margin-top: 25px;
}

.top-company__right {
  width: 400px;
}

.top-company__info {
  display: flex;
  flex-wrap: wrap;
  width: 400px;
}

.top-company__term {
  width: 120px;
  font-weight: bold;
}

.top-company__description {
  width: 280px;
  text-align: left;
}

.top-company__button {
  text-align: right;
  margin-top: 30px;
}

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

/*767px以下*/
@media screen and (max-width: 767px) {
  .top-company__inner {
    max-width: 600px;
  }

  .top-company__contents {
    display: block;
    margin-top: 45px;
  }

  .top-company__left {
    width: 100%;
  }

  .top-company__info {
    width: 100%;
    margin-top: 50px;
  }

  .top-company__right {
    width: 100%;
  }

  .top-company__info {
    display: flex;
    flex-wrap: wrap;
    width: 400px;
    margin: 50px auto 0;
  }

  .top-company__term {
    width: 120px;
    font-weight: bold;
  }

  .top-company__description {
    width: 280px;
    text-align: left;
  }

  .top-company__button {
    text-align: center;
  }
}

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

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

.top-recruit__contents {
  display: flex;
  margin-top: 60px;
}

.top-recruit__left {
  width: 50%;
}

.top-recruit__img {}

.top-recruit__img img {
  /* aspect-ratio: 600 / 280; */
  height: 280px;
  object-fit: cover;
}

.top-recruit__right {
  width: 50%;
  background: url(../cocoon-master/images/recruit-bg.png) no-repeat right center / cover;
}

.top-recruit__subtitle {
  font-size: 32px;
  color: #fff;
  line-height: 2;
  letter-spacing: 0.25em;
  text-align: center;
  margin-top: 25px;
}

.top-recruit__button {
  text-align: center;
  margin-top: 20px;
}

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

/*767px以下*/
@media screen and (max-width: 767px) {
  .top-recruit__inner {
    max-width: 600px;
  }

  .top-recruit__contents {
    display: block;
    margin-top: 45px;
  }

  .top-recruit__left {
    width: 100%;
  }

  .top-recruit__img {}

  .top-recruit__img img {
    height: auto;
    aspect-ratio: 600 / 280;
    object-fit: cover;
  }

  .top-recruit__right {
    width: 100%;
    padding-block: 20px;
  }

  .top-recruit__subtitle {
    font-size: 24px;
    margin-top: 0;
  }
}

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

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

.products__title-ja {
  font-size: 28px;
  letter-spacing: 0.1em;
  line-height: 1.7;
  font-weight: 500;
}

.products__lead {
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.05em;
  margin-top: 70px;
  margin-bottom: 100px;
  text-align: left;
  padding-inline: 0px;
  max-width: 850px;
  margin-inline: auto;
}

.products__subtitle {
  font-family: "Noto Serif JP", serif;
  font-size: 25px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.1em;
  margin-top: 40px;
  padding-left: 70px;
  position: relative;
}

.products__subtitle::before {
  position: absolute;
  content: "";
  background: url(../cocoon-master/images/h3-logo.png) no-repeat right center / cover;
  width: 57px;
  height: 28px;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}

.products__text {
  font-size: 18px;
  letter-spacing: 0.05em;
  margin-top: 50px;
}

.slider2 {
  margin-top: 60px;
  padding-inline: 50px;
  max-width: calc(860px + 50px * 2);
  margin-inline: auto;
  position: relative;
}

.slider2::before {
  position: absolute;
  content: "";
  background: url(../cocoon-master/images/passion-bg.png) no-repeat center center / cover;
  width: 250px;
  height: 120px;
  top: 60%;
  left: -120px;
  z-index: -1;
}

.slider2::after {
  position: absolute;
  content: "";
  background: url(../cocoon-master/images/passion-bg.png) no-repeat center center / cover;
  width: 250px;
  height: 120px;
  top: 15%;
  right: -120px;
  z-index: -1;
}

.slider2 .slick-dots {
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
}

.slider2 .slick-dots li {
  margin: 0 2px;
}

.slider2 .slick-dots li button:before {
  font-size: 10px;
}

.slider2 .slick-dots li.slick-active button:before {
  opacity: 0.75;
  color: #fabe00;
  font-size: 20px;
}

.slider2 .slick-dots li button:hover::before {
  color: #fabe00;
}

.slider2 .slick-prev,
.slider2 .slick-next {
  width: 72px;
  height: 15px;
  z-index: 2;
  top: 50%;
  bottom: auto;
}

.slider2 .slick-prev.slick-arrow {
  background: url("../cocoon-master/images/swiper-arrow-left.png") no-repeat center center;
  background-size: cover;
  left: 10px;
}

.slider2 .slick-next.slick-arrow {
  background: url("../cocoon-master/images/swiper-arrow-right.png") no-repeat center center;
  background-size: cover;
  right: 10px;
}

.slider2 .slick-prev:before,
.slider2 .slick-next:before {
  content: "";
}

.product__swiper {
  margin-top: 60px;
  padding-bottom: 40px;
  padding-inline: 100px;
  max-width: calc(850px + 100px * 2);
  margin-inline: auto;
  position: relative;
}

.product__swiper::before {
  position: absolute;
  content: "";
  background: url(../cocoon-master/images/passion-bg.png) no-repeat center center / cover;
  width: 250px;
  height: 120px;
  top: 60%;
  left: -20px;
  z-index: -1;
}

.product__swiper::after {
  position: absolute;
  content: "";
  background: url(../cocoon-master/images/passion-bg.png) no-repeat center center / cover;
  width: 250px;
  height: 120px;
  top: 15%;
  right: -20px;
  z-index: -1;
}

.swiper-wrapper {}

.product__pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

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

.product__pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  width: 15px;
  height: 15px;
  background: #fabe00;
}

.product__prev,
.product__next {
  width: 72px;
  height: 15px;
}

.product__prev::after,
.product__next::after {
  display: none;
}

.product__prev {
  background: url(../cocoon-master/images/swiper-arrow-left.png) no-repeat center center / cover;
  left: 50px;
}

.product__next {
  background: url(../cocoon-master/images/swiper-arrow-right.png) no-repeat center center / cover;
  right: 50px;
}

.products__list {
  padding-top: 50px;
  padding-bottom: 50px;
  padding-inline: 20px;
  max-width: calc(850px + 20px * 2);
  margin-inline: auto;
}

.products__item {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  gap: 50px;
  margin-bottom: 40px;
}

.products__left {
  width: 45%;
}

.products__left img {
  aspect-ratio: 340 / 230;
  object-fit: cover;
}

.products__right {
  width: 55%;
}

.products__right-text1 {
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.1em;
}

.products__right-text2 {
  font-size: 16px;
  letter-spacing: 0.05em;
  margin-top: 40px;
}

.products-card {
  position: relative;
}

.products-card__img {}

.products-card__img img {
  transition: transform 0.5s;
  aspect-ratio: 860 / 560;
  object-fit: cover;
}

.products-card__img:hover img {}

.products-card__img img {
  border-radius: 0px;
  object-fit: cover;
}

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

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

.lineup__left {
  width: 60%;
  padding-inline: 50px;
}

.lineup__right {
  width: 40%;
}

.lineup__text {
  font-size: 16px;
  letter-spacing: 0.05em;
  margin-top: 50px;
}

.slider3 {
  margin-top: 40px;
}

.slider3 .slick-dots {
  bottom: -30px;
}

.slider3 .slick-dots li {
  margin: 0 2px;
}

.slider3 .slick-dots li button:before {
  font-size: 10px;
}

.slider3 .slick-dots li.slick-active button:before {
  opacity: 0.75;
  color: #fabe00;
  font-size: 16px;
}

.slider3 .slick-dots li button:hover::before {
  color: #fabe00;
}

.slider3 .slick-prev,
.slider3 .slick-next {
  width: 72px;
  height: 15px;
  z-index: 2;
  top: 50%;
  bottom: auto;
}

.slider3 .slick-prev.slick-arrow {
  background: url("../cocoon-master/images/swiper-arrow-left.png") no-repeat center center;
  background-size: cover;
  left: -40px;
}

.slider3 .slick-next.slick-arrow {
  background: url("../cocoon-master/images/swiper-arrow-right.png") no-repeat center center;
  background-size: cover;
  right: -40px;
}

.slider3 .slick-prev:before,
.slider3 .slick-next:before {
  content: "";
}

.products__swiper {
  margin-top: 40px;
  padding-bottom: 40px;
  padding-inline: 50px;
  position: relative;
}

.swiper-wrapper {}

.products__pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

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

.products__pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  width: 10px;
  height: 10px;
  background: #fabe00;
}

.products__prev,
.products__next {
  width: 58px;
  height: 12px;
}

.products__prev::after,
.products__next::after {
  display: none;
}

.products__prev {
  background: url(../cocoon-master/images/swiper-arrow-left.png) no-repeat center center / cover;
  left: 20px;
}

.products__next {
  background: url(../cocoon-master/images/swiper-arrow-right.png) no-repeat center center / cover;
  right: 20px;
}

.products__info {
  margin-top: 50px;
  padding-inline: 20px;
  max-width: calc(1100px + 20px * 2);
  margin-inline: auto;
}

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

.table__text {
  width: 65%;
  font-size: 16px;
  letter-spacing: 0.05em;
}

.table__img img {
  width: 35%;
  aspect-ratio: 300 / 250;
  object-fit: cover;
}

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

.products__info tr {}

.products__info tr td {
  padding: 20px;
}

.products__info tr td:first-child {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-align: center;
  background-color: #f9f5ed;
  width: 160px;
}

.products__info tr td:not(:first-child) {
  background-color: #fff;
}

.products__info table td,
.products__info table th {
  border: 1px solid #c9c9c9;
}

.products__info table:not(.has-border-color) :where(th, td) {
  border: 1px solid #c9c9c9;
}

.products-qa__wrap {
  padding-top: 100px;
}

.products-qa {
  padding: 50px 0 20px;
}

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

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

/*767px以下*/
@media screen and (max-width: 767px) {
  .products__lead {
    margin-top: 40px;
    margin-bottom: 40px;
  }

  .product__swiper {
    padding-inline: 45px;
  }

  .product__prev,
  .product__next {
    width: 50px;
    height: 10px;
  }

  .product__prev {
    left: 20px;
  }

  .product__next {
    right: 20px;
  }

  .products__swiper {
    margin-top: 40px;
    padding-bottom: 45px;
    padding-inline: 30px;
  }

  .products__prev,
  .products__next {
    width: 50px;
    height: 10px;
  }

  .products__prev {
    left: 0px;
  }

  .products__next {
    right: 0px;
  }

  .products__pagination {
    gap: 0px;
  }

  .product__pagination .swiper-pagination-bullet {
    width: 6px;
    height: 6px;
  }

  .product__pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    width: 10px;
    height: 10px;
  }

  .products__pagination .swiper-pagination-bullet {
    width: 6px;
    height: 6px;
  }

  .products__pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    width: 10px;
    height: 10px;
  }

  .products-card__tag {
    font-size: 18px;
    padding: 15px 10px;
  }

  .products-card__body {
    background-color: #f9f5ed;
    padding: 25px 25px 35px;
  }

  .products__item {
    display: block;
    max-width: 500px;
    margin: 0 auto;
  }

  .products__left {
    width: 100%;
    margin-top: 20px;
    margin-bottom: 50px;
  }

  .products__right {
    width: 100%;
  }

  .products__right-text2 {
    margin-top: 20px;
  }

  .lineup__list {
    max-width: 600px;
  }

  .lineup__item {
    display: block;
    margin-bottom: 100px;
  }

  .lineup__left {
    width: 100%;
    padding-inline: 30px;
  }

  .lineup__right {
    width: 100%;
  }

  .lineup__text {
    margin-top: 30px;
  }

  .products__text {
    margin-top: 30px;
  }

  .products__info tr td {
    padding: 15px;
  }

  .products__info tr td:first-child {
    font-size: 16px;
  }

  .table__img {
    display: block;
  }

  .table__text {
    font-size: 14px;
    width: 100%;
  }

  .table__img img {
    width: 50%;
    margin-top: 30px;
  }

  .slider3 .slick-prev,
  .slider3 .slick-next {
    width: 50px;
    height: 10px;
  }

  .slider3 .slick-prev.slick-arrow {
    left: -30px;
  }

  .slider3 .slick-next.slick-arrow {
    right: -30px;
  }
}

/*------------------------------------------------------------------
#news()
-------------------------------------------------------------------*/
.news {
  background: #fff;
  padding-bottom: 50px;
  padding-top: 33px;
}

.news__inner {
  padding-inline: 20px;
  max-width: calc(1200px + 20px * 2);
  margin-inline: auto;
  display: flex;
  gap: 30px;
}

.news__left {
  width: 70%;
}

.news__list {
  border: 1px solid #dddddd;
}

.news__item {
  padding: 40px 0;
  margin: 0 30px;
}

.news__item:not(:last-child) {
  border-bottom: 1px solid #dddddd;
}

.news__title {
  font-size: 22px;
  font-weight: 500;
  color: #333;
  line-height: 1.8;
  letter-spacing: 0.1em;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  padding-left: 70px;
  position: relative;
}

.news__title::before {
  position: absolute;
  content: "";
  background: url(../cocoon-master/images/h3-logo.png) no-repeat right center / cover;
  width: 57px;
  height: 28px;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}

.news__contents {
  margin-top: 30px;
  display: flex;
  gap: 20px;
}

.news__img {
  width: 43%;
}

.news__img img {
  aspect-ratio: 250/150;
}

.news__lead {
  width: 57%;
  display: flex;
  flex-direction: column;
}

.news__text {
  font-size: 18px;
  line-height: 2;
  letter-spacing: 0.1em;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

.news__bottomWrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  text-align: right;
}

.news__time {
  display: block;
  font-size: 16px;
  padding-left: 20px;
  position: relative;
}

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

.news__button {
  width: 170px;
  padding: 10px 10px 10px 20px;
  text-align: left;
}

.news__button::after {
  width: 27px;
  height: 6px;
  right: 30px;
}

.news__button:hover::after {
  right: 20px;
}

@media screen and (max-width: 1023px) {
  .news__inner {
    flex-direction: column;
  }

  .news__left {
    width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .news__item {
    padding: 20px 0;
    margin: 0 20px;
  }

  .news__contents {
    margin-top: 20px;
  }

  .news__text {
    font-size: 14px;
    margin-bottom: 10px;
  }

  .news__time {
    font-size: 12px;
    padding-left: 15px;
  }

  .news__time::before {
    width: 12px;
    height: 12px;
  }

  .news__button {
    width: 130px;
    padding: 5px 5px 5px 10px;
    text-align: left;
  }

  .news__button::after {
    width: 27px;
    height: 6px;
    right: 15px;
  }

  .news__button:hover::after {
    right: 10px;
  }
}

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

.news__sidebar {
  width: 26%;
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.sidebar__block {
  margin-top: 10px;
}

.sidebar__title,
.archive__title {
  border-top: 5px solid #28688f;
  border-bottom: 1px solid #dddddd;
  font-size: 22px;
  padding: 20px;
  cursor: pointer;
  padding-left: 70px;
  position: relative;
}

.sidebar__title::before {
  position: absolute;
  content: "";
  background: url(../cocoon-master/images/h3-logo.png) no-repeat right center / cover;
  width: 45px;
  height: 23px;
  top: 50%;
  transform: translateY(-50%);
  left: 10px;
  transition: background 0.5s;
}

.archive__title::after {
  position: absolute;
  content: "";
  background: url(../cocoon-master/images/arrow-top.png) no-repeat center center / cover;
  width: 16px;
  height: 9px;
  top: 50%;
  transform: translateY(-50%);
  right: 10px;
  transform: rotate(180deg);
  transition: transform 0.3s;
}

.archive__title.is-open::after {
  transform: rotate(0deg);
}

.sidebar-news__list {}

.sidebar-news__item {
  padding: 20px;
  border-bottom: 1px solid #dddddd;
}

.sidebar-news__link {
  display: flex;
  gap: 20px;
}

.sidebar-news__link:hover .sidebar-news__img img {
  transform: scale(1.3);
}

.sidebar-news__img {
  max-width: 75px;
  max-height: 75px;
  overflow: hidden;
}

.sidebar-news__img img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform 0.5s;
}

.sidebar-news__contents {
  width: calc(100% - 75px);
  display: flex;
  flex-direction: column;
}

.sidebar-news__text {
  font-size: 16px;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

.sidebar-news__time {
  font-size: 14px;
  padding-left: 20px;
  display: block;
  margin-top: auto;
  position: relative;
}

.sidebar-news__time::before {
  position: absolute;
  content: "";
  background: url(../cocoon-master/images/icon-time.png) no-repeat center center / cover;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 15px;
  height: 15px;
}

.sidebar-news__button {
  margin-top: 30px;
  text-align: right;
}

.sidebar-archive__list {
  display: none;
}

.sidebar-archive__list li {
  padding: 15px;
  position: relative;
}

.sidebar-archive__list a {
  display: block;
  font-size: 18px;
  letter-spacing: 0.1em;
  padding: 10px 10px 10px 30px;
  transition: background 0.1s;
  position: relative;
}

.sidebar-archive__list a:hover {
  background-color: #f9f5ed;
}

.sidebar-archive__list a::before {
  position: absolute;
  content: "";
  background: url(../cocoon-master/images/icon-list.png) no-repeat right center / cover;
  width: 10px;
  height: 15px;
  top: 50%;
  transform: translateY(-50%);
  left: 10px;
}

@media screen and (max-width: 1023px) {
  .news__sidebar {
    width: 100%;
    margin-top: 50px;
  }
}

@media screen and (max-width: 767px) {
  .news__sidebar {
    width: 100%;
    margin-top: 50px;
  }
}

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

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

.contact__lead {
  margin: 35px 0;
  font-size: 16px;
  text-align: center;
}

.contact__shop {
  text-align: center;
  margin-top: 20px;
  margin-bottom: 80px;
}

.contact__shop-link {
  font-size: 16px;
  display: inline-block;
  width: 430px;
  max-width: 100%;
  padding: 16px 26px 16px 55px;
  text-align: center;
  border-radius: 5px;
  color: #fff;
  background-color: #28688f;
  transition:
    background-color 0.3s,
    color 0.3s;
  position: relative;
}

.contact__shop-link:hover {
  color: #fff;
  background-color: #4f8db3;
}

.contact__shop-link::before {
  position: absolute;
  content: "";
  background: url(../cocoon-master/images/icon-cart.png) no-repeat center center / cover;
  width: 20px;
  height: 15px;
  left: 30px;
  top: 50%;
  transform: translateY(-50%);
}

.form__fields {
  display: flex;
  flex-direction: column;
  gap: 35px;
  max-width: 920px;
  margin: 50px auto 0;
}

.form__field {
  display: flex;
  gap: 10px;
  padding-bottom: 35px;
  border-bottom: 1px solid #dcdcdc;
}

.form-field__head {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 220px;
  flex-shrink: 0;
  justify-content: flex-start;
}

.form-field__label {
  font-size: 16px;
  font-weight: 500;
}

.form-field__tag {
  display: inline-block;
  border-radius: 3px;
  background: #28688f;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  padding: 6px 8px;
}

.form-field__tag.is-option {
  background: #a0a0a0;
}

.form-field__data-wrap {}

.form-field__data.select {
  margin-top: 10px;
}

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

input,
textarea {
  font-size: 16px;
  font-weight: 500;
  font-family: "Noto Serif JP", serif;
}

input::placeholder,
textarea::placeholder {
  font-size: 16px;
  font-weight: 500;
  font-family: "Noto Serif JP", serif;
  color: #a0a0a0;
}

.form__address-text {
  font-size: 14px;
  color: #666666;
  margin-top: 10px;
}

.form__address-text:nth-child(2) {
  margin-bottom: 20px;
}

.form-field__data-code {
  width: 25%;
}

.form__time-text {
  font-size: 16px;
  font-weight: 500;
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0.15em;
  margin-right: 20px;
}

select.select {
  background: #fff !important;
}

select.select.selected {
  background: #f9f5ed !important;
}

.form-field__data [type="text"],
.form-field__data [type="email"] {
  border-radius: 3px;
  border: 3px solid #c9c9c9;
  background: #fff;
  padding: 15px;
  transition: border 0.3s;
}

.form-field__data .filled[type="text"],
.form-field__data .filled[type="email"] {
  background: #f9f5ed;
}

.form-field__data select.filled,
.form-field__data textarea.filled {
  background: #f9f5ed;
}

.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: 3px 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: 2px solid #28688f;
}

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

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

.form-field__data select {
  width: 270px;
  border-radius: 3px;
  border: 3px solid #c9c9c9;
  background: #f9f5ed;
  padding: 15px 45px 15px 15px;
  font-size: 16px;
  font-weight: 500;
  background: url(../cocoon-master/images/select-arrow.png) no-repeat center right 20px / 13px 8px;
  transition: border 0.3s;
  font-family: "Noto Serif JP", serif;
  color: #333;
  appearance: none;
}

.form-field__data select#hour1,
.form-field__data select#hour2,
.form-field__data select#minute1,
.form-field__data select#minute2 {
  width: 55px;
  padding: 10px 15px;
  margin-inline: 5px;
}

.form-field__data select#minute1,
.form-field__data select#minute2 {
  margin-left: 20px;
}

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

.form-field__data textarea {
  height: 150px;
  border-radius: 5px;
  border: 3px solid #c9c9c9;
  background: #fff;
  padding: 15px;
  resize: vertical;
  transition: border 0.3s;
}

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

.form-field__data .wpcf7-radio,
.form-field__data .wpcf7-checkbox {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.wpcf7-radio .wpcf7-list-item-label {
  font-size: 16px;
  font-weight: 500;
  padding-left: 30px;
  position: relative;
}

.wpcf7-radio .wpcf7-list-item-label::before,
.wpcf7-radio .wpcf7-list-item-label::after {
  position: absolute;
  content: "";
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
}

.wpcf7-radio .wpcf7-list-item-label::before {
  width: 24px;
  height: 24px;
  border: 2px solid #c9c9c9;
  left: 0;
  transition: border 0.3s;
}

.wpcf7-radio .wpcf7-list-item-label::after {
  width: 10px;
  height: 10px;
  background: #28688f;
  left: 7px;
  transition: opacity 0.3s;
  opacity: 0;
}

.wpcf7-checkbox .wpcf7-list-item-label,
.wpcf7-acceptance .wpcf7-list-item-label {
  font-size: 16px;
  font-weight: 500;
  padding-left: 30px;
  position: relative;
}

.wpcf7-checkbox .wpcf7-list-item-label::before,
.wpcf7-checkbox .wpcf7-list-item-label::after,
.wpcf7-acceptance .wpcf7-list-item-label::before,
.wpcf7-acceptance .wpcf7-list-item-label::after {
  position: absolute;
  content: "";
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.wpcf7-checkbox .wpcf7-list-item-label::before,
.wpcf7-acceptance .wpcf7-list-item-label::before {
  width: 20px;
  height: 20px;
  border-radius: 1px;
  border: 2px solid #c9c9c9;
  transition: border 0.3s;
}

.wpcf7-checkbox .wpcf7-list-item-label::after,
.wpcf7-acceptance .wpcf7-list-item-label::after {
  margin-top: -2px;
  border-bottom: 3px solid #fff;
  border-left: 3px solid #fff;
  transform: translateY(-50%) rotate(-45deg);
  width: 14px;
  height: 9px;
  left: 3px;
  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;
}

.contact__privacy {}

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

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

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

.contact__privacy .wpcf7-list-item-label {}

.contact__btn-warp {
  margin-top: 40px;
  text-align: center;
}

.contact__btn-warp .contact__btn {
  display: inline-block;
  font-size: 16px;
  color: #fff;
  width: 350px;
  text-align: center;
  padding: 20px;
  border-radius: 5px;
  background-color: #da9820;
  cursor: pointer;
  transition: background-color 0.3s;
}

.contact__btn-warp .contact__btn:hover {
  background-color: #f7b02d;
}

.contact__lead-bottom {
  font-size: 16px;
  text-align: center;
  margin-top: 30px;
}

/* qa */
.qa {
  padding: 20px 0;
}

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

.qa__boxes {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 80px;
}

.qa__title {
  font-family: "Noto Serif JP", serif;
  font-size: 25px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.1em;
  margin-top: 100px;
  padding-left: 70px;
  position: relative;
}

.qa__title::before {
  position: absolute;
  content: "";
  background: url(../cocoon-master/images/h3-logo.png) no-repeat right center / cover;
  width: 57px;
  height: 28px;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}

.qa__contact-title {
  font-family: "Noto Serif JP", serif;
  font-size: 26px;
  line-height: 1.6;
  margin-top: 30px;
  border-left: 3px solid #f7942b;
  padding-left: 10px;
}

.qa-box {
  background: #fff;
  border-top: 1px solid #bebebe;
  border-bottom: 1px solid #bebebe;
}

.qa-box:not(:last-child) {
  border-bottom: none;
}

.qa-box__head {
  display: flex;
  padding: 30px 35px 30px 20px;
  width: 100%;
  position: relative;
  cursor: pointer;
}

.qa-box__head::before,
.qa-box__head::after {
  position: absolute;
  content: "";
  background: #f4a353;
  transition: all 0.3s ease 0s;
  right: 40px;
  top: 50%;
  width: 20px;
  height: 4px;
}

.qa-box__head::before {
  transform: rotate(90deg);
}

.qa-box__head.is-open::before {
  opacity: 0;
}

.qa-box__head.is-open::after {
  transform: rotate(0deg);
}

.qa-box__head-icon {
  font-size: 28px;
  color: #28688f;
  font-weight: 700;
  display: flex;
  align-items: center;
}

.qa-box__head-text {
  font-size: 18px;
  display: flex;
  align-items: center;
  font-weight: 500;
  letter-spacing: 0.1em;
  flex-grow: 1;
  padding-left: 20px;
  padding-right: 60px;
}

.qa-box__body {
  display: none;
  padding: 10px 80px 30px 30px;
}

.qa-box__a {
  display: flex;
  gap: 10px;
}

.qa-box__a-icon {
  font-size: 40px;
  color: #9bc63f;
}

.qa-box__a-text {
  font-size: 16px;
  letter-spacing: 0.1em;
  display: flex;
  align-items: center;
  flex-grow: 1;
  padding-left: 20px;
}

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

@media screen and (max-width: 767px) {
  .contact {
    padding: 60px 0;
  }

  .form__fields {
    margin-top: 30px;
  }

  .form__field {
    display: block;
  }

  .form-field__head {
    width: 100%;
    justify-content: flex-start;
  }

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

  .form-field__data-code {
    width: 35%;
  }

  .form-field__data .wpcf7-radio,
  .form-field__data .wpcf7-checkbox {
    flex-direction: column;
    gap: 15px;
  }

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

  .qa-box__head {
    padding: 10px;
  }

  .qa-box__head::before,
  .qa-box__head::after {
    right: 20px;
    top: 45%;
  }

  .qa-box__head-text {
    padding-right: 45px;
  }

  .qa-box__body {
    padding: 10px 20px 10px 30px;
  }
}

/*------------------------------------------------------------------
#contact(確認・完了)
-------------------------------------------------------------------*/
.contact__btns-Wrap {
  display: flex;
  justify-content: center;
  gap: 30px;
  padding-inline: 20px;
  margin: 60px auto 0;
}

.contact__btn-Wrap2 [type="submit"] {
  background-color: #28688f;
  color: #fff;
  border-radius: 4px;
  cursor: pointer;
  display: inline-block;
  font-size: 18px;
  font-family: "Noto Serif JP", serif;
  max-width: 100%;
  padding: 20px;
  text-align: center;
  transition: opacity 0.3s;
  width: 250px;
}

.contact__btn-Wrap2 [type="submit"]:hover {
  opacity: 0.8;
}

.back__btn {
  border: none;
  background-color: #da9820;
  color: #fff;
  border-radius: 4px;
  cursor: pointer;
  display: inline-block;
  font-size: 18px;
  font-family: "Noto Serif JP", serif;
  max-width: 100%;
  padding: 20px;
  text-align: center;
  transition: opacity 0.3s;
  width: 250px;
}

.back__btn:hover {
  opacity: 0.8;
}

.button-thanks__wrap {
  margin-top: 30px;
}

span.wpcf7-spinner {
  display: none;
}

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

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

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

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

/*------------------------------------------------------------------
#recruit
-------------------------------------------------------------------*/
.recruit {
  padding-top: 100px;
  padding-bottom: 100px;
}

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

.recruit__lead1 {
  font-size: 16px;
  text-align: center;
  letter-spacing: 0.05em;
}

.recruit__video {
  text-align: center;
  margin-top: 70px;
  margin-bottom: 100px;
}

.iframe-container {
  position: relative;
}

.recruit__video .iframe-container::before {
  position: absolute;
  content: "";
  background: url(../cocoon-master/images/passion-bg.png) no-repeat center center / cover;
  width: 250px;
  height: 120px;
  top: 60%;
  left: 30px;
  z-index: -1;
}

.recruit__video .iframe-container::after {
  position: absolute;
  content: "";
  background: url(../cocoon-master/images/passion-bg.png) no-repeat center center / cover;
  width: 250px;
  height: 120px;
  top: 15%;
  right: 15px;
  z-index: -1;
}

.recruit__title-ja {
  font-size: 28px;
  line-height: 1.8;
}

.recruit-job {
  display: flex;
  align-items: center;
  gap: 80px;
  margin-top: 70px;
  margin-bottom: 100px;
}

.recruit-job__img {
  width: 60%;
}

.recruit-job__contents {
  width: 35%;
}

.recruit-job__title {
  font-size: 25px;
  letter-spacing: 0.1em;
  font-weight: 500;
}

.recruit-job__text {
  font-size: 16px;
  letter-spacing: 0.05em;
  margin-top: 60px;
}

.message {
  max-width: 1100px;
  margin-inline: auto;
  margin-top: 70px;
  margin-bottom: 100px;
}

.message-top {
  display: flex;
  gap: 80px;
  padding-bottom: 50px;
  border-bottom: 1px solid #c9c9c9;
}

.message-top__imgwrap {
  width: 30%;
}

.message-top__img {}

.message-top__info1 {
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-align: center;
  margin-top: 10px;
}

.message-top__info2 {
  font-size: 14px;
  letter-spacing: 0.05em;
  text-align: center;
}

.message-top__info3 {
  font-size: 14px;
  letter-spacing: 0.05em;
  text-align: center;
}

.message-top__contents {
  width: 70%;
}

.message-top__title {
  font-size: 25px;
  font-weight: 500;
  letter-spacing: 0.1em;
}

.message-top__subtitle {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.1em;
  padding-left: 35px;
  margin-top: 50px;
  position: relative;
}

.message-top__subtitle::before {
  position: absolute;
  content: "";
  background: url(../cocoon-master/images/bar.png) no-repeat center center / cover;
  width: 25px;
  height: 2px;
  top: 50%;
  transform: translateY(-50%);
  left: 0px;
}

.message-top__text {
  font-size: 16px;
  letter-spacing: 0.05em;
  line-height: 2;
  margin-top: 35px;
}

.message-bottom {
  display: flex;
  gap: 10px;
  margin-top: 80px;
  max-width: 1100px;
  margin-inline: auto;
}

.message-bottom_contents {
  width: 75%;
}

.message-bottom__title {
  font-size: 25px;
  font-weight: 500;
  letter-spacing: 0.1em;
}

.message-bottom__text {
  font-size: 16px;
  letter-spacing: 0.05em;
  line-height: 2;
  margin-top: 60px;
}

.message-bottom__imgWrap {
  width: 25%;
}

.message-bottom__img {}

.message-bottom__info1 {
  font-size: 14px;
  letter-spacing: 0.05em;
  text-align: center;
  margin-top: 10px;
}

.message-bottom__info2 {
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-align: center;
}

.message-bottom__info3 {
  font-size: 14px;
  letter-spacing: 0.05em;
  text-align: center;
}

.recruit__info {
  margin-top: 50px;
}

.recruit__info tr {}

.recruit__info tr td {
  padding: 20px;
}

.recruit__info tr td:first-child {
  font-size: 18px;
  font-weight: 500;
  text-align: center;
}

.recruit__info tr td:first-child {
  background-color: #f9f5ed;
}

.recruit__info tr td:not(:first-child) {
  background-color: #fff;
}

.recruit__info table:not(.has-border-color) :where(th, td) {
  border: 1px solid #c9c9c9;
}

.recruit__lead2 {
  font-size: 16px;
  text-align: left;
  letter-spacing: 0.05em;
  margin-top: 70px;
  padding-inline: 20px;
  max-width: calc(1000px + 20px * 2);
  margin-inline: auto;
}

.contact-recruit {
  padding-top: 110px;
  padding-bottom: 110px;
  background-color: #f8f8f8;
  padding-inline: 20px;
  margin-top: 50px;
}

.contact-recruit__inner {
  padding-inline: 20px;
  max-width: calc(1100px + 20px * 2);
}

.contact__bgWrap {
  background-color: #fff;
  border: 2px solid #c9c9c9;
  border-radius: 10px;
  margin-top: 50px;
  padding-bottom: 50px;
  padding-inline: 20px;
}

.recruit__lead-bottom {
  font-size: 16px;
  letter-spacing: 0.05em;
  text-align: left;
  padding-inline: 20px;
  max-width: calc(1000px + 20px * 2);
  margin-inline: auto;
}

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

.wpcf7 form .wpcf7-response-output {
  margin: 2em 0.5em 1em;
  padding: 0.2em 1em;
  border: 2px solid #fff;
}

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

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

  .recruit-job__img {
    width: 100%;
  }

  .recruit-job__contents {
    width: 100%;
  }

  .recruit-job__title {
    margin-top: 20px;
  }

  .recruit-job__text {
    margin-top: 30px;
  }

  .message-top {
    display: block;
  }

  .message-top__imgwrap {
    width: 80%;
    margin: 0 auto;
  }

  .message-top__info1 {
    font-size: 22px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-align: center;
    margin-top: 10px;
  }

  .message-top__info2 {
    font-size: 14px;
    letter-spacing: 0.05em;
    text-align: center;
  }

  .message-top__info3 {
    font-size: 14px;
    letter-spacing: 0.05em;
    text-align: center;
  }

  .message-top__contents {
    width: 100%;
  }

  .message-top__title {
    margin-top: 30px;
  }

  .message-top__subtitle {
    margin-top: 40px;
  }

  .message-top__text {
    margin-top: 30px;
  }

  .message-bottom {
    display: block;
  }

  .message-bottom_contents {
    width: 100%;
  }

  .message-bottom__title {
    font-size: 24px;
  }

  .message-bottom__text {
    margin-top: 40px;
  }

  .message-bottom__imgWrap {
    width: 80%;
    margin: 30px auto 0;
  }

  .recruit__info tr td {
    padding: 10px;
    font-size: 16px;
  }

  .recruit__info tr td:first-child {
    width: 100px;
  }

  .contact-recruit {
    padding-inline: 0px;
  }
}

/*------------------------------------------------------------------
#recruit(確認・完了)
-------------------------------------------------------------------*/

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

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

/*------------------------------------------------------------------
#baseデザイン(個別投稿ページ)
-------------------------------------------------------------------*/

.news__title-single-wrap {
  padding-bottom: 30px;
  border-bottom: 1px solid #dddddd;
  margin-bottom: 40px;
}

.news__title-single-img {
  text-align: center;
}

.news__title-single-logo {
  width: 90px;
}

.news__title-single {
  font-size: 28px;
  font-weight: 500;
  color: #333;
  line-height: 1.8;
  letter-spacing: 0.15em;
  margin-top: 10px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.single .base__content h2 {
  font-family: "Noto Serif JP", serif;
  font-size: 25px;
  font-weight: 500;
  text-align: left;
  line-height: 1.6;
  letter-spacing: 0.1em;
  margin-top: 40px;
  width: 100%;
  padding-left: 70px;
  position: relative;
}

.single .base__content h2::before {
  position: absolute;
  content: "";
  background: url(../cocoon-master/images/h3-logo.png) no-repeat right center / cover;
  width: 57px;
  height: 28px;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}

.single .base__content h3 {
  font-family: "Noto Serif JP", serif;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.1em;
  margin-top: 40px;
}

.single .base__content h4 {
  font-family: "Noto Serif JP", serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.1em;
  margin-top: 40px;
}

.single .base__content h5 {
  font-family: "Noto Serif JP", serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.1em;
  margin-top: 40px;
}

/*------------------------------------------------------------------
#baseデザイン(固定ページ)
-------------------------------------------------------------------*/
.page-template {
  padding-top: 50px;
  padding-bottom: 0px;
}

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

.base__content .toc {
  display: none;
}

.base__content {
  padding: 30px 50px;
  border-radius: 3px;
}

.page .base__content h2 {
  font-family: "Noto Serif JP", serif;
  font-size: 28px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.1em;
  margin: 50px auto 0;
  width: 85%;
  text-align: center;
  position: relative;
}

.page .base__content h2::before {
  position: absolute;
  content: "";
  background: url(../cocoon-master/images/h2-logo.png) no-repeat right center / cover;
  width: 88px;
  height: 42px;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
}

.page .base__content h3 {
  font-family: "Noto Serif JP", serif;
  font-size: 25px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.1em;
  margin-top: 40px;
  padding-left: 70px;
  position: relative;
}

.page .base__content h3::before {
  position: absolute;
  content: "";
  background: url(../cocoon-master/images/h3-logo.png) no-repeat right center / cover;
  width: 57px;
  height: 28px;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}

.page .base__content h4 {
  font-family: "Noto Serif JP", serif;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.1em;
  margin-top: 40px;
}

.page .base__content h5 {
  font-family: "Noto Serif JP", serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.1em;
  margin-top: 40px;
}

.base__content p {
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.05em;
  margin-top: 20px;
  text-align: justify;
}

.base__content p.has-orange-color {
  color: #da9820 !important;
}

.base__content p .marker {
  background-color: #fbd796;
}

.base__content p.has-background,
.base__content p.has-border {
  padding: 30px;
}

.base__content .blank-box {
  border: 1px solid #bebebe;
  padding-bottom: 30px;
}

.base__content .has-text-align-left {
  text-align: left;
}

.base__content .has-text-align-right {
  text-align: right;
}

.base__content .has-text-align-center {
  text-align: center;
}

/* list */
.base__content ul {
  list-style-type: disc;
}

.base__content ol {
  list-style-type: decimal;
}

.base__content ol li::marker {
  font-size: 20px;
  font-weight: bold;
  color: #da9820;
}

.base__content .list1 li,
.base__content .list2 li {
  list-style-type: none;
  position: relative;
}

.base__content .list1 li::before {
  position: absolute;
  content: "";
  background: url(../cocoon-master/images/arrow-right-orange.png) no-repeat center center / cover;
  width: 10px;
  height: 15px;
  left: -20px;
  top: 50%;
  transform: translateY(-50%);
}

.base__content .list2 li::before {
  position: absolute;
  content: "";
  background: url(../cocoon-master/images/icon-check.png) no-repeat center center / cover;
  width: 20px;
  height: 15px;
  left: -25px;
  top: 50%;
  transform: translateY(-50%);
}

/* table */
.base__content .wp-block-table {
  margin-top: 30px;
}

.base__content .table1 tr:first-child {
  background-color: #f9f5ed;
}

.base__content .table1 tr:not(:first-child) {
  background-color: #fff;
}

.base__content .table1 td {
  text-align: center;
  padding: 30px;
}

.base__content .table2 tr td:first-child {
  background-color: #f9f5ed;
}

.base__content .table2 tr td:not(:first-child) {
  background-color: #fff;
}

.base__content .table2 td {
  padding: 30px;
}

.base__content table:not(.has-border-color) :where(th, td) {
  border: 1px solid #c9c9c9;
}

/* qa */
.base__content .qa {
  padding: 50px 0;
}

.base__content .qa__inner {
  padding-inline: 40px;
  max-width: calc(1100px + 40px * 2);
  margin-inline: auto;
}

.base__content .qa__boxes {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 80px;
}

.base__content .qa__contact-title {
  font-family: "Noto Serif JP", serif;
  font-size: 26px;
  line-height: 1.6;
  margin-top: 30px;
  border-left: 3px solid #f7942b;
  padding-left: 10px;
}

.base__content .qa-box {
  background: #fff;
  border-top: 1px solid #bebebe;
  border-bottom: 1px solid #bebebe;
}

.base__content .qa-box__head {
  display: flex;
  padding: 30px 35px 30px 20px;
  width: 100%;
  position: relative;
  cursor: pointer;
}

.base__content .qa-box__head::before,
.base__content .qa-box__head::after {
  position: absolute;
  content: "";
  background: #f4a353;
  transition: all 0.3s ease 0s;
  right: 40px;
  top: 50%;
  width: 20px;
  height: 4px;
}

.base__content .qa-box__head::before {
  transform: rotate(90deg);
}

.base__content .qa-box__head.is-open::before {
  opacity: 0;
}

.base__content .qa-box__head.is-open::after {
  transform: rotate(0deg);
}

.base__content .qa-box__head-icon {
  font-size: 28px;
  color: #28688f;
  font-weight: 700;
  display: flex;
  align-items: center;
}

.base__content .qa-box__head-text {
  font-size: 18px;
  display: flex;
  align-items: center;
  font-weight: 500;
  letter-spacing: 0.1em;
  flex-grow: 1;
  padding-left: 20px;
  padding-right: 60px;
}

.base__content .qa-box__body {
  display: none;
  padding: 10px 80px 30px 30px;
}

.base__content .qa-box__a {
  display: flex;
  gap: 10px;
}

.base__content .qa-box__a-icon {
  font-size: 40px;
  color: #9bc63f;
}

.base__content .qa-box__a-text {
  font-size: 16px;
  letter-spacing: 0.1em;
  display: flex;
  align-items: center;
  flex-grow: 1;
  padding-left: 20px;
}

/* button */
.base__content .button1 .wp-block-button__link {
  font-size: 16px;
  display: inline-block;
  max-width: 100%;
  padding: 10px 26px 10px 55px;
  text-align: center;
  border-radius: 5px;
  color: #fff;
  background-color: #da9820;
  transition:
    background-color 0.3s,
    color 0.3s;
  position: relative;
}

.base__content .button1 .wp-block-button__link::before {
  position: absolute;
  content: "";
  background: url(../cocoon-master/images/icon-mail.png) no-repeat center center / cover;
  width: 20px;
  height: 15px;
  left: 30px;
  top: 50%;
  transform: translateY(-50%);
}

.base__content .button1 .wp-block-button__link:hover {
  color: #fff;
  background-color: #f7b02d;
}

.base__content .button2 .wp-block-button__link {
  font-size: 16px;
  display: inline-block;
  max-width: 100%;
  padding: 20px 90px 16px 45px;
  text-align: center;
  border-radius: 5px;
  color: #fff;
  background-color: #da9820;
  transition:
    background-color 0.3s,
    color 0.3s;
  position: relative;
}

.base__content .button2 .wp-block-button__link::after {
  position: absolute;
  content: "";
  background: url(../cocoon-master/images/arrow-right-white.png) no-repeat center center / cover;
  width: 35px;
  height: 8px;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  transition: right 0.3s;
}

.base__content .button2 .wp-block-button__link:hover {
  color: #fff;
  background-color: #f7b02d;
}

.base__content .button2 .wp-block-button__link:hover::after {
  right: 30px;
}

.base__content .button3 .wp-block-button__link {
  font-size: 16px;
  display: inline-block;
  max-width: 100%;
  padding: 16px 26px 16px 55px;
  text-align: center;
  border-radius: 5px;
  color: #fff;
  background-color: #28688f;
  transition:
    background-color 0.3s,
    color 0.3s;
  position: relative;
}

.base__content .button3 .wp-block-button__link::before {
  position: absolute;
  content: "";
  background: url(../cocoon-master/images/icon-cart.png) no-repeat center center / cover;
  width: 20px;
  height: 15px;
  left: 30px;
  top: 50%;
  transform: translateY(-50%);
}

.base__content .button3 .wp-block-button__link:hover {
  color: #fff;
  background-color: #4f8db3;
}

.base__content .company-history {
  margin-top: 30px;
  width: fit-content;
}

.base__content .company-history__inner {}

.base__content .company-history__title {
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.1em;
  padding: 15px 20px;
  border-bottom: 3px solid #c9c9c9;
}

.base__content .company-history__list {
  list-style: none;
}

.base__content .company-history__item {
  font-size: 16px;
  padding: 15px 5px;
  border-bottom: 1px solid #c9c9c9;
}

.base__content .company-history__item.frex {
  display: flex;
  gap: 20px;
}

.base__content .company-history__left {
  font-weight: 700;
}

.base__content .company-history__left2 {
  font-weight: 700;
  width: 100px;
  max-width: 150px;
}

.base__content .company-history__right {
  /* width: calc(100% - 150px); */
}

/* step */
.step {}

.step__inner {}

.step__list {
  margin-top: 30px;
}

.step__item {
  display: flex;
  align-items: center;
  gap: 50px;
  margin-bottom: 80px;
  position: relative;
}

.step__item::after {
  position: absolute;
  content: "";
  background: url(../cocoon-master/images/step-arrow.png) no-repeat center center / cover;
  width: 50px;
  height: 25px;
  bottom: -50px;
  left: 50%;
  transform: translateX(-50%);
}

.step__item:last-child:after {
  display: none;
}

.step__img {
  width: 200px;
  position: relative;
}

.step__img::after {
  position: absolute;
  content: "";
  border-left: 1px dashed #c9c9c9;
  display: block;
  height: 265%;
  left: 95px;
  top: 0;
  width: 0;
  z-index: -1;
}

.step__img.last::after {
  display: none;
}

.step__img img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.step__contents {
  width: calc(100% - 200px);
}

.step__title-en {
  font-size: 22px;
  letter-spacing: 0.1em;
  font-weight: bold;
  color: #da9820;
}

.step__title-ja {
  font-size: 25px;
  letter-spacing: 0.1em;
  font-weight: 500;
}

.step__text {
  font-size: 16px;
  margin-top: 10px;
}

@media screen and (max-width: 1023px) {
  .base__content {
    padding: 30px;
  }

  .base__content h2 {
    width: 90%;
  }

  .base__content .table1 td {
    padding: 10px;
  }

  .base__content .table2 td {
    padding: 10px;
  }
}

@media screen and (max-width: 767px) {
  .page-template__inner {
    padding-inline: 0px;
  }

  .base__content {
    padding: 20px;
  }

  .base__content h2 {
    width: 95%;
  }

  .base__content ul {
    padding-left: 20px;
  }

  .base__content ol {
    padding-left: 20px;
  }

  .base__content .table1 td {
    padding: 2px;
  }

  .base__content .table2 td {
    padding: 2px;
  }

  .step__inner {
    max-width: 500px;
    margin: 0 auto;
  }

  .step__item {
    display: block;
    margin-bottom: 100px;
  }

  .step__img {
    width: 100%;
    text-align: center;
  }

  .step__img img {
    width: 200px;
    height: 200px;
  }

  .step__title-en {
    margin-top: 10px;
  }

  .step__contents {
    width: 100%;
    text-align: center;
  }

  .step__img::after {
    display: none;
  }

  .step__text {
    text-align: left;
  }

  .base__content .qa-box__head {
    padding: 10px;
  }

  .base__content .qa-box__head::before,
  .base__content .qa-box__head::after {
    right: 20px;
    top: 45%;
  }

  .base__content .qa-box__head-text {
    padding-right: 45px;
  }

  .base__content .qa-box__body {
    padding: 10px 20px 10px 30px;
  }

  .base__content .table1 td {
    font-size: 16px;
    padding: 5px;
  }

  .base__content .table2 td {
    font-size: 16px;
    padding: 5px;
  }
}

/*------------------------------------------------------------------
#page-id-228(製品ラインナップ)
-------------------------------------------------------------------*/

.page-id-228 .base__content h3 {
  font-family: "Noto Serif JP", serif;
  font-size: 25px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.1em;
  margin-top: 40px;
  padding-left: 0px;
  position: relative;
}

.page-id-228 .base__content h3::before {
  display: none;
}

.page-id-228 .base__content h3 span {
  font-family: "Noto Serif JP", serif;
  font-size: 25px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.1em;
  margin-top: 40px;
  padding-left: 70px;
  position: relative;
}

.page-id-228 .base__content h3 span::before {
  position: absolute;
  content: "";
  background: url(../cocoon-master/images/h3-logo.png) no-repeat right center / cover;
  width: 57px;
  height: 28px;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}

/*------------------------------------------------------------------
#page-id-270(求人情報)
-------------------------------------------------------------------*/
.page-id-270 .base__content .table2 td {
  text-align: left;
}

/*------------------------------------------------------------------
#page-id-270(こだわりの製法)
-------------------------------------------------------------------*/
.page-id-178 .page-template__inner {
  padding-inline: 0px;
  max-width: 100%;
  margin-inline: auto;
}

.page-id-178 .wp-block-cover .wp-block-cover__background {
  background-color: #fff !important;
}

.page-id-178 .base__content {
  padding-inline: 0px;
}

.page-id-178 .base__content h3 {
  max-width: 1100px;
  margin-inline: auto;
  margin-bottom: 20px;
  padding-left: 90px;
}

.page-id-178 .base__content h3::before {
  left: 20px;
}

.page-id-178 .base__content h4 {
  padding: 10px;
}

.page-id-178 .base__content p {
  margin-top: 0;
  margin-bottom: 10px;
  letter-spacing: 0.05em;
}

.page-id-178 .base__content .wp-block-media-text__content {
  padding-left: 0px;
}

.page-id-178 .base__content .wp-block-media-text {
  max-width: 1100px;
  margin-inline: auto;
  padding-inline: 20px;
}

.page-id-178 .base__content .wp-block-media-text__media {
  position: relative;
  z-index: 1;
}

.page-id-178 .base__content .wp-block-media-text__media::before {
  position: absolute;
  content: "";
  background: url(../cocoon-master/images/passion-bg.png) no-repeat center center / cover;
  width: 150px;
  height: 75px;
  top: 60%;
  left: -80px;
  z-index: -1;
}

.page-id-178 .base__content .wp-block-media-text__media::after {
  position: absolute;
  content: "";
  background: url(../cocoon-master/images/passion-bg.png) no-repeat center center / cover;
  width: 150px;
  height: 75px;
  top: 15%;
  right: -80px;
  z-index: -1;
}

.page-id-178 .base__content .wp-block-columns {
  max-width: 850px;
  margin-inline: auto;
  padding-inline: 20px;
}

.page-id-178 .base__content .caption-box-label {
  background-color: #f9f5ed;
}

.page-id-178 .base__content .has-text-align-center .fz-22px {
  font-weight: 500;
  letter-spacing: 0.1em;
}

.page-id-178 .base__content .has-text-align-center .fz-18px {
  letter-spacing: 0.05em;
}

.page-id-178 .base__content .handle {
  position: relative;
}

.page-id-178 .base__content .handle::after {
  position: absolute;
  content: "";
  background: url(../cocoon-master/images/arrow-orange.png) no-repeat center center / cover;
  width: 23px;
  height: 15px;
  left: 50%;
  transform: translateX(-50%);
  bottom: -25px;
}

@media screen and (max-width: 767px) {
  .page-id-178 .base__content .wp-block-media-text__content {
    padding-left: 0px;
    padding-right: 0;
  }

  .page-id-178 .base__content .wp-block-media-text__media {
    margin-bottom: 30px;
  }

  .page-id-178 .base__content .has-text-align-center {
    padding-inline: 20px;
  }
}

/*------------------------------------------------------------------
#page-id-209(海神の歴史)
-------------------------------------------------------------------*/
.page-id-209 .page-template__inner {
  padding-inline: 0px;
  max-width: 100%;
  margin-inline: auto;
}

.page-id-209 .wp-block-cover .wp-block-cover__background {
  background-color: #fff !important;
}

.page-id-209 .base__content {
  padding-inline: 0px;
}

.page-id-209 .base__content h3 {
  max-width: 1000px;
  margin-inline: auto;
  margin-bottom: 10px;
}

.page-id-209 .base__content h4 {
  padding: 10px;
}

.page-id-209 .base__content p {
  margin-top: 0;
  margin-bottom: 10px;
  letter-spacing: 0.05em;
  padding-inline: 20px;
}

.page-id-209 .base__content .wp-block-image .wp-image-499,
.page-id-209 .base__content .wp-block-image .wp-image-500 {
  padding-inline: 20px;
}

.page-id-209 .base__content .wp-block-media-text {
  max-width: 1440px;
  margin-inline: auto;
}

.page-id-209 .base__content .wp-block-columns {
  max-width: 860px;
  margin-inline: auto;
}

.page-id-209 .base__content .caption-box-label {
  background-color: #f9f5ed;
}

.page-id-209 .base__content .has-text-align-center {
  padding-inline: 0px;
}

.page-id-209 .base__content .has-text-align-center .fz-18px {
  letter-spacing: 0.05em;
}

.page-id-209 .base__content .wp-block-image.size-large,
.page-id-209 .base__content .wp-block-image.aligncenter.size-large {
  max-width: 860px;
}

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

@media screen and (max-width: 767px) {
  .page-id-209 .base__content h2 {
    font-size: 26px;
  }

  .page-id-209 .base__content .wp-block-media-text {
    display: flex;
    gap: 20px;
    flex-direction: column-reverse;
    padding-inline: 20px;
  }

  .page-id-209 .base__content .wp-block-media-text__content {
    padding-inline: 0px;
  }

  .page-id-209 .base__content .wp-block-media-text__content p {
    padding-inline: 0px;
  }

  .page-id-209 .base__content .wp-block-media-text.has-media-on-the-right {
    display: flex;
    gap: 20px;
    flex-direction: column;
  }
}

/*------------------------------------------------------------------
#page-id-1295(法人向けお取引のご案内)
-------------------------------------------------------------------*/
.base__content p.houjin__cta-heading {
  text-align: center;
  font-size: 30px;
}

@media screen and (max-width: 767px) {
  .base__content p.houjin__cta-heading {
    font-size: 26px;
  }
}

.page-id-1295 .wp-block-cover {
  overflow: unset;
}

.page-id-1295 .wp-block-cover.bg-box {
  position: relative;
  overflow: visible;
}

.page-id-1295 .wp-block-cover.bg-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 100%;
  background: url("/wp-content/uploads/2024/07/bg-1.png") no-repeat center / cover;
  z-index: 0;
}

.page-id-1295 .wp-block-cover.bg-box>*:not(::before) {
  position: relative;
  z-index: 1;
}

.page-id-1295 .wp-block-cover.bg-box>.wp-block-cover__background {
  background-color: transparent !important;
  opacity: 0 !important;
}

.houjin__cta-button {
  display: flex;
  justify-content: center;
}

.houjin__tel-link {
  font-size: 16px;
  display: inline-block;
  width: 360px;
  max-width: 100%;
  height: 100px;
  margin: 0 auto;
  padding: 24px 40px 16px;
  text-align: center;
  border-radius: 5px;
  color: #fff;
  background-color: #eaf4fc;
  transition: background-color 0.3s,
    color 0.3s;
  position: relative;
}

.houjin__tel-link::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background-color: rgba(255, 255, 255, 0.3);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}

.houjin__tel-link:hover::after {
  opacity: 1;
}

.houjin__mail-link {
  font-size: 20px;
  display: inline-block;
  width: 360px;
  max-width: 100%;
  height: 100px;
  margin: 0 auto;
  padding: 32px 45px 28px 90px;
  text-align: center;
  border-radius: 5px;
  color: #fff;
  background-color: #da9820;
  transition: background-color 0.3s,
    color 0.3s;
  position: relative;
}

.houjin__mail-link::after {
  position: absolute;
  content: "";
  background: url(../cocoon-master/images/icon-mail.png) no-repeat center center / cover;
  width: 20px;
  height: 15px;
  left: 60px;
  top: 50%;
  transform: translateY(-50%);
}

.base__content p.houjin__strength {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  padding: 20px;
  width: 100%;
  max-width: 286px;
  aspect-ratio: 1 / 1;
  font-size: 21px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, #0191cf 0%, #0A4285 90%);
  border-radius: 50%;
  box-shadow: 0px 0px 24px rgba(0, 0, 0, 0.3);
}

.page-id-1295 .base__content h5 {
  display: block;
  margin-top: 0;
}

.page-id-1295 .base__content h5 span {
  display: block;
  font-size: 28px;
}

/*------------------------------------------------------------------
#page-id-402(会社案内)
-------------------------------------------------------------------*/
.page-id-402 .base__content .wp-block-column .wp-block-image {
  height: 100%;
}

.page-id-402 .base__content .wp-block-column .wp-block-image img {
  height: 100%;
}

.page-id-402 .base__content .company-history {
  margin: 30px auto 0;
  width: 750px;
  max-width: 100%;
  text-align: center;
}

.page-id-402 .base__content .company-history__inner {
  margin: 0 auto;
}

.page-id-402 .base__content .company-history__title {
  border-bottom: none;
}

.page-id-402 .base__content .company-history__list {}

.page-id-402 .base__content .company-history__item {
  font-size: 16px;
  padding: 15px 5px;
  border-bottom: 1px solid #c9c9c9;
}

.page-id-402 .base__content .company-history__item:first-child {
  border-top: 1px solid #c9c9c9;
}

.page-id-402 .base__content .company-history__item.frex {
  display: flex;
}

.page-id-402 .base__content .company-history__left {
  font-weight: 700;
  width: 150px;
}

.page-id-402 .base__content .company-history__right {
  text-align: left;
  width: calc(100% - 150px);
}

@media screen and (max-width: 767px) {
  .page-id-402 .base__content .company-history__left {
    width: 130px;
    text-align: center;
  }

  .page-id-402 .base__content table .has-text-align-center {
    width: 95px;
  }
}

@media screen and (max-width: 600px) {
  .page-id-402 .base__content .wp-block-media-text__content {
    padding-inline: 0px;
  }
}

/*------------------------------------------------------------------
#page-id-443(サイトマップ)
-------------------------------------------------------------------*/

.page-id-443 li {
  transition: color 0.2s;
  margin-top: 10px;
}

.page-id-443 li:hover {
  color: #f7b02d;
}

/*------------------------------------------------------------------
#404ページ
-------------------------------------------------------------------*/
.button404__wrap {
  margin-top: 20px;
}