@charset "UTF-8";
/*
Theme Name: パティスリーポルカ_test
Description: パティスリーポルカ用テーマ
Author: コムデザインラボ
*/
html {
  font-size: 10px;
  width: 100%;
  height: 100%;
  line-height: 1;
}

body {
  position: relative;
  min-width: 1200px;
  width: 100%;
  background: #fff;
  font-family: "YuGothic", "Yu Gothic Medium", "Yu Gothic", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", sans-serif;
  font-weight: 500;
  font-size: 1.4rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
  line-height: 2;
  letter-spacing: 0.12em;
  color: #302020;
}
@media screen and (max-width: 767px) {
  body {
    min-width: 320px;
  }
}
body.is_fixed {
  overflow-y: hidden;
  height: 100%;
  left: 0;
}

a {
  display: block;
  text-decoration: none;
  color: #671117;
  opacity: 1;
  transition: opacity 0.3s;
}
a:hover {
  opacity: 0.7;
}
a[href^="tel:"] {
  pointer-events: none;
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  a[href^="tel:"] {
    pointer-events: unset;
  }
}

*:focus-visible {
  outline: 1px #671117 auto;
  outline-offset: 4px;
}

img {
  display: block;
  max-width: 100%;
  width: 100%;
  height: auto;
}

em {
  font-style: normal;
}

p {
  margin-bottom: 15px;
}

p:last-of-type {
  margin-bottom: 0;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
}

.clearfix::after {
  content: "";
  display: block;
  clear: both;
}

/*------------------------------------------------------------
 COMPONENTS / 共通パーツ
------------------------------------------------------------*/
.js_fade_up {
  opacity: 0;
  transform: translateY(100px);
  transition: 0.5s ease-out;
}
.js_fade_up.is_show {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeZoom {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}
.pc {
  display: block;
}
@media screen and (max-width: 767px) {
  .pc {
    display: none;
  }
}

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

.wrap {
  position: relative;
  padding: 0;
  overflow: hidden;
}

.inner {
  max-width: 980px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .inner {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.p_bold {
  font-weight: 700;
}

.list_dot li {
  position: relative;
  padding-left: 10px;
}
.list_dot li::before {
  content: "";
  background: #671117;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  position: absolute;
  top: 1.2rem;
  left: 0;
}

.list_circle li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 5px;
}
.list_circle li::before {
  content: "";
  background: #671117;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  position: absolute;
  top: 8px;
  left: 0;
}

.list_kome li {
  position: relative;
  padding-left: 1.5rem;
  line-height: 1.8;
  margin-bottom: 10px;
}
.list_kome li::before {
  content: "※";
  position: absolute;
  top: 0rem;
  left: 0;
}

.list_num01 {
  counter-reset: ol_num01 0;
}
.list_num01 > li {
  position: relative;
  line-height: 1.5;
  padding-left: 20px;
  margin-bottom: 10px;
}
.list_num01 > li::before {
  content: counter(ol_num01) ".";
  counter-increment: ol_num01 1;
  position: absolute;
  top: 0.1rem;
  left: 0;
}

.list_num02 {
  counter-reset: ol_num02 0;
  margin-top: 10px;
}
.list_num02 > li {
  position: relative;
  line-height: 1.5;
  padding-left: 30px;
  margin-bottom: 10px;
}
.list_num02 > li::before {
  content: "(" counter(ol_num02) ")";
  counter-increment: ol_num02 1;
  position: absolute;
  top: 0.1rem;
  left: 0;
}

.list_num03 {
  counter-reset: ol_num03 0;
  margin-top: 10px;
}
.list_num03 > li {
  position: relative;
  line-height: 1.5;
  padding-left: 30px;
  margin-bottom: 10px;
}
.list_num03 > li::before {
  content: counter(ol_num03, katakana) ".";
  counter-increment: ol_num03 1;
  position: absolute;
  top: 0.1rem;
  left: 0;
}

/*------------------------------------------------------------
PAGETOP / ページトップ
------------------------------------------------------------*/
.js_page_top {
  display: none;
}
@media screen and (max-width: 767px) {
  .js_page_top {
    display: block;
    position: fixed;
    bottom: 80px;
    right: 10px;
    background: #671117;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    z-index: 5;
    transform: translateX(100px);
    transition: transform 0.5s ease-in-out;
  }
  .js_page_top::before {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 6px 10px 6px;
    border-color: transparent transparent #fff transparent;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -60%);
  }
  .js_page_top.is_show {
    transform: translateX(0);
  }
}

/*------------------------------------------------------------
	COMMON / 共通
------------------------------------------------------------*/
.font_min {
  font-family: "Zen Old Mincho", serif;
  font-weight: 500;
}
.font_maru {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
}
.font_en {
  font-family: "Roboto", sans-serif;
}
.font_large {
  font-size: 120%;
}
.font_small {
  font-size: 80%;
}
.font_marker {
  display: inline;
  background: linear-gradient(transparent 60%, #FFF7EE 40%);
  mix-blend-mode: multiply;
  padding: 0px 0 0px 0px;
}

.deco {
  content: "";
  position: absolute;
  pointer-events: none;
}

.bg_main {
  background-color: #671117;
}
.bg_main .headline {
  color: #fff;
}
.bg_accent {
  background-color: #AA0414;
}
.bg_sub {
  background-color: #F7E7D7;
}
.bg_sub_pail {
  background-color: #FFF7EE;
}
.bg_musubi_red {
  background-color: #D30B17;
}
.bg_musubi_gray {
  background-color: #898989;
}

.color_main {
  color: #671117;
}
.color_accent {
  color: #AA0414;
}
.color_sub {
  color: #F7E7D7;
}
.color_sub_pail {
  color: #FFF7EE;
}
.color_musubi_red {
  color: #D30B17;
}
.color_musubi_gray {
  color: #898989;
}

.div_W {
  max-width: 100%;
  width: 100%;
}

.btn {
  margin-top: 20px;
}
.btn a {
  max-width: 320px;
  width: 100%;
  padding: 15px 20px;
  border-radius: 10px;
  text-align: center;
  font-weight: bold;
  background-color: #671117;
  color: #fff;
}
.btn a span {
  width: 100%;
  display: inline-block;
  background-image: url(../images/icon_arrow_white.svg);
  background-position: center right;
  background-repeat: no-repeat;
  background-size: 15px auto;
}
.btn_accent a {
  background-color: #AA0414;
}
.btn_white a {
  background-color: #fff;
  color: #671117;
  border: 2px solid #671117;
}
.btn_white a span {
  background-image: url(../images/icon_arrow.svg);
}
.btn_sub a {
  background-color: #F7E7D7;
  color: #671117;
}
.btn_sub a span {
  background-image: url(../images/icon_arrow.svg);
}
.btn_sub_pail a {
  background-color: #FFF7EE;
  color: #671117;
}
.btn_sub_pail a span {
  background-image: url(../images/icon_arrow.svg);
}
.btn_tel a {
  padding-top: 5px;
  padding-bottom: 5px;
}
.btn_tel a span {
  background-image: url(../images/icon_tel_accent.svg);
  background-size: 25px auto;
  background-repeat: no-repeat;
  background-position: center left;
  display: inline-block;
  width: auto;
  padding-left: 40px;
  font-size: 2.7rem;
}
.btn_mail a {
  padding-top: 5px;
  padding-bottom: 5px;
}
.btn_mail a span {
  background-image: url(../images/icon_mail.svg);
  background-size: 25px auto;
  background-repeat: no-repeat;
  background-position: center left;
  display: inline-block;
  width: auto;
  padding-left: 40px;
  font-size: 2.3rem;
}
.btn_line a {
  background-image: url(../images/icon_arrow.svg);
  background-position: center right 20px;
  background-repeat: no-repeat;
  background-size: 12px auto;
}
.btn_line a span {
  background-image: url(../images/icon_line_full.svg);
  background-repeat: no-repeat;
  background-position: center left;
  background-size: 25px;
  display: inline-block;
  width: auto;
  padding-left: 35px;
}
.btn_instagram a {
  background-image: url(../images/icon_arrow.svg);
  background-position: center right 20px;
  background-repeat: no-repeat;
  background-size: 12px auto;
}
.btn_instagram a span {
  background-image: url(../images/icon_instagram.svg);
  background-repeat: no-repeat;
  background-position: center left;
  background-size: 25px;
  display: inline-block;
  width: auto;
  padding-left: 35px;
}
.btn_online a {
  background-image: url(../images/icon_arrow.svg);
  background-position: center right 20px;
  background-repeat: no-repeat;
  background-size: 12px auto;
}
.btn_online a span {
  background-image: url(../images/icon_online.svg);
  background-repeat: no-repeat;
  background-position: center left;
  background-size: 25px;
  display: inline-block;
  width: auto;
  padding-left: 50px;
}
.btn_shop {
  background-image: url(../images/icon_arrow.svg);
  background-position: center right 20px;
  background-repeat: no-repeat;
  background-size: 12px auto;
}
.btn_shop a span {
  background-image: url(../images/icon_shop.svg);
  background-repeat: no-repeat;
  background-position: center left;
  background-size: 25px;
  display: inline-block;
  width: auto;
  padding-left: 50px;
}

.title_lead {
  margin-top: 40px;
}

.page_headline {
  background: url(../images/page_headline_common.jpg) no-repeat center;
  background-size: cover;
  border-radius: 0 0 0 50px;
  width: 100%;
  height: 350px;
  margin-left: 110px;
  position: relative;
  padding: 0 20px;
  display: flex;
  align-items: center;
  font-size: 3.2rem;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .page_headline {
    height: 200px;
    margin-left: 50px;
    font-size: 2rem;
    letter-spacing: 0.1rem;
  }
}
.page_headline::before {
  content: "";
  position: absolute;
  background: #671117;
  height: 100%;
  left: -110px;
  width: 80px;
  border-radius: 0 0 50px 0;
}
@media screen and (max-width: 767px) {
  .page_headline::before {
    width: 50px;
    left: -70px;
  }
}
.page_headline .page_headline_h {
  color: #671117;
}
.page_headline .font_en {
  font-size: 1.4rem;
  text-transform: uppercase;
  color: #671117;
  letter-spacing: 0.6rem;
}
@media screen and (max-width: 767px) {
  .page_headline .font_en {
    font-size: 1.2rem;
    letter-spacing: 0.3rem;
  }
}

.headline {
  font-family: "Zen Old Mincho", serif;
  font-weight: 500;
  font-size: 3.2rem;
  text-align: center;
  display: grid;
  margin: 0 auto 40px;
  width: 100%;
  letter-spacing: 0.3rem;
  color: #671117;
}
@media screen and (max-width: 767px) {
  .headline {
    font-size: 2.2rem;
  }
}
.headline_en {
  font-family: "Roboto", sans-serif;
  font-size: 1.8rem;
  color: #AA0414;
  letter-spacing: 0.4rem;
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  .headline_en {
    font-size: 1.3rem;
  }
}

.fuki {
  position: relative;
}
.fuki::before, .fuki::after {
  position: absolute;
  content: "";
  width: 1px;
  height: 25px;
  border-left: 1px solid #671117;
  bottom: 0;
}
.fuki::before {
  transform: translate(-20px, 0) rotate(-25deg);
}
.fuki::after {
  transform: translate(20px, 0) rotate(25deg);
}

.lineup_posts {
  display: grid;
  grid-template-columns: repeat(3, 290px);
  gap: 30px 0;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .lineup_posts {
    grid-template-columns: 1fr;
    gap: 40px 0px;
  }
}
.lineup_posts .lineup_post {
  margin: 0px auto 0;
  width: 100%;
  position: relative;
}
.lineup_posts .lineup_post_img img {
  aspect-ratio: 1/1;
  object-fit: cover;
  width: 100%;
}
.lineup_posts .lineup_post_title, .lineup_posts .lineup_post_price {
  text-align: center;
  color: #671117;
  line-height: 1.6;
}
.lineup_posts .lineup_post_title {
  font-size: 1.8rem;
  font-weight: bold;
  margin: 15px auto 0;
}
@media screen and (max-width: 767px) {
  .lineup_posts .lineup_post_title {
    /*font-size: 1.6rem;*/
  }
}
.lineup_posts .lineup_post_price {
  font-size: 1.3rem;
}
.lineup_posts .lineup_post_about {
  text-align: justify;
  margin: 15px auto 0;
  line-height: 1.8;
}
.lineup_posts .lineup_post .btn {
  margin-top: 10px;
}
.lineup_posts .lineup_post .btn a {
  max-width: 260px;
  margin: 0 auto;
  padding: 10px;
  font-size: 1.2rem;
}
@media screen and (max-width: 767px) {
  .lineup_posts .lineup_post .btn a {
    max-width: none;
    font-size: 1.4rem;
    padding: 10px 20px;
  }
}
.lineup_posts .lineup_post_limited {
  top: 0;
  left: 0;
  transform: translate(-40%, -40%);
  background: #AA0414;
  color: #fff;
  border-radius: 100%;
  height: 50px;
  width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1rem;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .lineup_posts .lineup_post_limited {
    font-size: 1.2rem;
    height: 60px;
    width: 60px;
  }
}

.slick-dots {
  bottom: 50px;
  left: 50px;
  width: auto;
}
@media screen and (max-width: 767px) {
  .slick-dots {
    bottom: 70px;
    left: 25px;
  }
}
.slick-dots li {
  margin: 0 1px;
}
.slick-dots li button::before {
  color: #F7E7D7;
  opacity: 1;
}
.slick-dots li.slick-active button::before {
  color: #671117;
}

/* スクロールアニメーション、基本のスタイル HTML側に「data-delighter」をつける*/
.delighter {
  transition: all 0.9s ease;
  transform: translateY(20%);
  opacity: 0;
}
.delighter.started {
  /* スタート時のスタイル */
  transform: none;
  opacity: 1;
}
.delighter.started.ended {
  /* エンド時のスタイル */
  /*border: solid red 10px;*/
}

/*------------------------------------------------------------
	HEADER / ヘッダー
------------------------------------------------------------*/
.header {
  width: 100%;
  transition: 0.2s;
}
.header.is_show {
  position: fixed;
  top: 0;
  z-index: 10;
  transition: 0.2s;
  background: rgba(255, 255, 255, 0);
}
.header.is_scroll {
  background: rgba(255, 255, 255, 0.95);
  transition: 0.2s;
}
.header.is_open {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #671117;
  z-index: 10;
}
.header_inner {
  max-width: 1240px;
  width: 100%;
  padding: 15px 20px;
  margin: 0 auto;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .header_inner {
    max-width: none;
    flex-direction: column;
    height: 100%;
    flex-wrap: wrap;
  }
}
.header_logo {
  max-width: 190px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .header_logo {
    max-width: 120px;
    margin: 50px auto 25px;
  }
}
.header_nav {
  max-width: calc(100% - 190px);
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .header_nav {
    max-width: none;
  }
}
.header_nav_list {
  display: flex;
  align-items: flex-end;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .header_nav_list li {
    flex-basis: 100%;
    align-items: center;
    padding: 0 15%;
  }
}
.header_nav_list a {
  font-size: 1.5rem;
  margin: 0 15px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .header_nav_list a {
    color: #fff;
    padding: 2px 10px 2px 20px;
  }
}
.header_nav_list a::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 0%;
  border-bottom: 1px dotted #AA0414;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .header_nav_list a::before {
    border-bottom: 1px solid #AA0414;
    top: 50%;
    bottom: inherit;
    width: 7px;
  }
}
.header_nav_list a:hover {
  color: #AA0414;
}
.header_nav_list a:hover::before {
  width: 100%;
  transition: 0.2s;
}
@media screen and (max-width: 767px) {
  .header_nav_list a:hover::before {
    width: 7px;
  }
}
@media screen and (max-width: 767px) {
  .header_sns {
    width: 100%;
  }
}

.fix_btn {
  position: fixed;
  right: 20px;
  top: 50%;
  z-index: 10;
  transform: translate(0, -50%);
}
@media screen and (max-width: 767px) {
  .fix_btn {
    position: inherit;
    transform: translate(0, 0%);
    display: flex;
    justify-content: center;
    margin-top: 20px;
  }
}
.fix_btn li {
  width: 35px;
  height: 35px;
  margin: 15px 0px;
}
@media screen and (max-width: 767px) {
  .fix_btn li {
    margin: 15px 7px;
    width: 50px;
    height: 50px;
  }
}
.fix_btn a {
  background: #671117;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  border-radius: 100%;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .fix_btn a {
    border: 1px solid #fff;
    padding: 12px;
  }
}
.fix_btn a img {
  max-width: 100%;
}
.fix_calendar {
  position: fixed;
  right: 0;
  bottom: 20%;
  z-index: 10;
  max-width: 140px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .fix_calendar {
    position: absolute;
    bottom: 0%;
    max-width: none;
  }
}
.fix_calendar a {
  background: #AA0414;
  color: #fff;
  border-radius: 10px 0 0 10px;
  padding: 20px 10px 20px 15px;
  line-height: 1.3;
}
@media screen and (max-width: 767px) {
  .fix_calendar a {
    border-radius: 0px;
    padding: 20px 20px;
  }
}
.fix_calendar a .div_W {
  display: grid;
  grid-template-columns: 25% auto;
  gap: 0 5px;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .fix_calendar a .div_W {
    grid-template-columns: 10% auto;
    justify-content: center;
  }
}
.fix_calendar a .div_W .div_L img {
  max-width: 22px;
  width: 100%;
}
.fix_sp_logo {
  position: fixed;
  top: 15px;
  left: 20px;
  max-width: 30%;
  z-index: 10;
}
.fix_sp_menu_btn {
  height: 100%;
  width: 100%;
  position: relative;
}
.fix_sp_menu_btn_wrap {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 100;
  width: 70px;
  height: 70px;
  padding: 20px 17px 27px;
  background: #671117;
  float: right;
  color: #fff;
  position: fixed;
  top: 15px;
  right: 15px;
  z-index: 101;
  border-radius: 50%;
}
@media screen and (max-width: 767px) {
  .fix_sp_menu_btn_wrap {
    transform: translate(0, -150%);
    transition: 0.8s;
  }
  .fix_sp_menu_btn_wrap.is_scroll {
    transition: 0.5s;
    transform: translate(0, 0%);
  }
}
.fix_sp_menu_btn-txt {
  font-size: 1rem;
  display: block;
  width: 100%;
  text-align: center;
  margin: 0 auto;
  letter-spacing: 0;
  white-space: nowrap;
}
.fix_sp_menu_btn-line {
  background: #fff;
  display: block;
  height: 1px;
  position: absolute;
  transition: transform 0.3s;
  width: 100%;
}
.fix_sp_menu_btn-line--center {
  top: 50%;
  transform: translate(0, -50%);
}
.fix_sp_menu_btn-line--center.active {
  transform: scaleX(0);
}
.fix_sp_menu_btn-line--bottom {
  bottom: 0;
}
.fix_sp_menu_btn-line--bottom.active {
  bottom: 50%;
  transform: rotate(135deg) translate(0, -50%);
}
.fix_sp_menu_btn-line--top.active {
  top: 50%;
  transform: rotate(45deg) translate(0, -50%);
}

/*------------------------------------------------------------
	FOOTER / フッター
------------------------------------------------------------*/
.common_online {
  padding: 100px 20px;
  background: url(../images/img_online.jpg) no-repeat center;
  background-size: cover;
}
.common_online .inner {
  background: #fff;
  border-radius: 10px;
  box-shadow: 10px 10px 0 rgba(0, 0, 0, 0.1);
  text-align: center;
  padding: 40px 20px 60px;
  position: relative;
}
.common_online .inner::before {
  content: "";
  position: absolute;
  background: #fff;
  width: 200px;
  height: 200px;
  border-radius: 100%;
  top: 0;
  left: 50%;
  transform: translate(-50%, -25%);
}
.common_online .inner::after {
  content: "";
  position: absolute;
  background: url(../images/icon_online.svg) no-repeat center;
  background-size: 100% auto;
  width: 36px;
  height: 36px;
  top: 0;
  left: 50%;
  transform: translate(-50%, -30%);
}
.common_online .inner .headline {
  line-height: 1.6;
  position: relative;
  z-index: 1;
  margin-bottom: 0;
}
.common_online .inner .title_lead {
  margin-top: 20px;
  position: relative;
  z-index: 1;
}
.common_online .inner .btn {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 50%);
}
.common_online .inner .btn a {
  width: 320px;
}
@media screen and (max-width: 767px) {
  .common_online .inner .btn a {
    width: 280px;
  }
}
.common_info {
  padding: 100px 0;
}
@media screen and (max-width: 767px) {
  .common_info {
    padding: 80px 0;
  }
}
.common_info_shop {
  background: #fff;
  padding: 80px 20px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .common_info_shop {
    padding: 80px 20px 50px;
  }
}
.common_info_shop .div_W {
  max-width: 860px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 400px auto;
  gap: 40px 60px;
  align-items: end;
}
@media screen and (max-width: 767px) {
  .common_info_shop .div_W {
    grid-template-columns: 1fr;
  }
}
.common_info_shop_logo {
  max-width: 290px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .common_info_shop_logo {
    max-width: 250px;
  }
}
.common_info_shop_line a {
  max-width: none;
}
@media screen and (max-width: 767px) {
  .common_info_shop_line a {
    padding: 15px;
  }
}
.common_info_shop_line a > span {
  position: relative;
  display: grid;
  grid-template-columns: 100px auto;
  gap: 0 20px;
  text-align: left;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .common_info_shop_line a > span {
    grid-template-columns: 60px auto;
    font-size: 1.3rem;
    letter-spacing: 0rem;
    background-size: 10px auto;
  }
}
.common_info_shop_line a > span .img,
.common_info_shop_line a > span .text,
.common_info_shop_line a > span .font_small {
  background: none;
}
.common_info_shop_line a > span .img img,
.common_info_shop_line a > span .text img,
.common_info_shop_line a > span .font_small img {
  position: absolute;
  bottom: -15px;
  left: -30px;
  max-width: 130px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .common_info_shop_line a > span .img img,
.common_info_shop_line a > span .text img,
.common_info_shop_line a > span .font_small img {
    max-width: 100px;
    left: -30px;
  }
}
.common_info_shop .div_R {
  color: #671117;
  line-height: 1.8;
}
.common_info_shop .div_R .font_large {
  font-weight: bold;
}
.common_info_shop .div_R table {
  margin-top: 20px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .common_info_shop .div_R table th {
    white-space: nowrap;
    padding-right: 10px;
  }
}
@media screen and (max-width: 767px) {
  .common_info_shop .div_R table td .font_small {
    line-height: 1.6;
  }
}
.common_info_cafe {
  top: -40px;
  right: -40px;
}
@media screen and (max-width: 767px) {
  .common_info_cafe {
    top: -100px;
  }
}
.common_info_cafe a {
  background: #AA0414;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  font-size: 1.6rem;
  width: 190px;
  height: 190px;
  border-radius: 100%;
  position: relative;
  line-height: 1.6;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .common_info_cafe a {
    font-size: 1.4rem;
    width: 170px;
    height: 170px;
  }
}
.common_info_cafe_icon {
  max-width: 60px;
  width: 100%;
  top: 0;
  left: 50%;
  transform: translate(-50%, -30%);
}
@media screen and (max-width: 767px) {
  .common_info_cafe_icon {
    max-width: 50px;
  }
}
.common_info_cafe_more {
  border: 1px solid #fff;
  border-radius: 50px;
  padding: 5px 15px 5px 5px;
  text-align: center;
  margin: 10px auto 0;
  font-size: 1.2rem;
  max-width: 135px;
  width: 100%;
  background: url(../images/icon_arrow_white.svg) no-repeat center right 10px;
  background-size: 10px auto;
}
@media screen and (max-width: 767px) {
  .common_info_cafe_more {
    max-width: 120px;
    font-size: 1.1rem;
  }
}
.common_info_etc {
  padding: 80px 20px;
}
@media screen and (max-width: 767px) {
  .common_info_etc {
    padding: 50px 20px;
  }
}
.common_info_etc .div_W {
  max-width: 880px;
  width: 100%;
  margin: 0 auto;
  display: grid;
 /* grid-template-columns: 400px 400px;インスタ非表示のためレイアウト調整*/
  gap: 40px 0;
  /*justify-content: space-between;*/
	justify-content: center;
}
@media screen and (max-width: 767px) {
  .common_info_etc .div_W {
    grid-template-columns: 1fr;
  }
}
.common_info_etc_calendar_cafe {
  margin: 15px auto 0;
  border: 2px solid #AA0414;
  color: #AA0414;
  border-radius: 10px;
  padding: 5px 15px;
}
@media screen and (max-width: 767px) {
  .common_info_etc_calendar_cafe {
    padding: 10px 15px;
  }
}
.common_info_etc_calendar_cafe dl {
  display: grid;
  grid-template-columns: 28% auto;
  gap: 0 15px;
  font-size: 1.2rem;
  letter-spacing: 0.1rem;
}
@media screen and (max-width: 767px) {
  .common_info_etc_calendar_cafe dl {
    line-height: 1.4;
  }
}
.common_info_etc_calendar_cafe dl dt {
  border-right: 1px dotted #AA0414;
}
.common_info_etc .div_R {
  background: #fff;
  border-radius: 10px;
  box-shadow: 10px 10px 0 rgba(0, 0, 0, 0.1);
  padding: 25px 20px;
}
.common_info_etc .div_R .fuki {
  text-align: center;
}
.common_info_etc .div_R .fuki span {
  padding-left: 30px;
  position: relative;
  color: #671117;
}
.common_info_etc .div_R .fuki figure {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(0, -50%);
  max-width: 20px;
  width: 100%;
}
.common_photocake {
  margin: 80px auto 0;
}
.common_photocake a {
  margin: 0 auto;
  max-width: 600px;
  padding: 30px 20px;
}
@media screen and (max-width: 767px) {
  .common_photocake a {
    grid-template-columns: 1fr;
    padding: 0px 20px 20px;
  }
}
@media screen and (max-width: 767px) {
  .common_photocake a span {
    background-position: top 80% right;
  }
}
.common_photocake a .div_W {
  display: grid;
  grid-template-columns: 250px 200px;
  align-items: center;
  gap: 10px 30px;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .common_photocake a .div_W {
    grid-template-columns: 1fr;
  }
}
.common_photocake a .div_W .div_L {
  position: relative;
}
@media screen and (max-width: 767px) {
  .common_photocake a .div_W .div_L {
    text-align: center;
    margin-top: -50px;
    margin-bottom: 15px;
  }
}
.common_photocake a .div_W .div_L img {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0%, -50%);
  max-width: 250px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .common_photocake a .div_W .div_L img {
    transform: translate(0%, 0%);
    max-width: 150px;
    position: inherit;
    margin: 0 auto;
  }
}
@media screen and (max-width: 767px) {
  .common_photocake a .div_W .div_R {
    line-height: 1.5;
  }
}
.common_photocake a .div_W .div_R span {
  background: none;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .common_photocake a .div_W .div_R span {
    text-align: center;
  }
}
.common_photocake a .div_W .div_R span.font_min {
  font-size: 2rem;
}
.common_photocake a .div_W .div_R span.font_en {
  color: #AA0414;
}

.footer_logo {
  max-width: 140px;
  width: 100%;
  margin: 80px auto 0;
}
@media screen and (max-width: 767px) {
  .footer_logo {
    max-width: 120px;
    margin: 50px auto 30px;
  }
}
.footer_nav {
  max-width: 980px;
  width: 100%;
  margin: 30px auto;
}
.footer_nav ul {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .footer_nav ul li {
    flex-basis: 50%;
  }
}
.footer .copyright {
  background: #671117;
  color: #fff;
  padding: 10px 20px;
  text-align: center;
}

/*250314インスタ非表示に伴う変更*/
.instagram_display{
	text-align: center;
	margin-top: 20px;
	
}
.instagram_display .fuki span{
	padding-left: 30px;
    position: relative;
    color: #671117;
	
}
.img_instagram{
	position: absolute;
  left: 0;
  top: 50%;
  transform: translate(0, -50%);
  max-width: 20px;
  width: 100%;
}

.btn--instagram,a.btn--instagram{
    color: #fff;
    background: rgb(103, 17, 23);
    display: inline-block;
    vertical-align: top;
    zoom: 1;
    padding: 7px 14px;
    margin: 20px auto 0 auto;
    border: none;
    text-decoration: none;
    font-size: 13px;
    line-height: 1.5;
    box-sizing: border-box;
    border-radius: 5px;
}

.btn--instagram:hover,a.btn--instagram:hover{
	color: #fff;
	background: rgb(170, 4, 20);
}



/*------------------------------------------------------------
	INDEX / TOPページ
------------------------------------------------------------*/
body.home main {
  padding-top: 0;
}

.mainvis {
  height: 90vh;
  min-height: 60vh;
  max-height: 1000px;
  position: relative;
  display: flex;
}
@media screen and (max-width: 767px) {
  .mainvis {
    height: 80vh;
    min-height: 50vh;
    max-height: 700px;
  }
}
.mainvis::before, .mainvis::after {
  content: "";
  position: absolute;
  background-size: 100% auto;
}
.mainvis::before {
  background: url(../images/deco_cornerLT.svg) no-repeat center;
  height: 200px;
  width: 285px;
  top: 0;
  left: 0;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .mainvis::before {
    height: 100px;
    width: 142.5px;
  }
}
.mainvis::after {
  background: url(../images/deco_cornerRB.svg) no-repeat center;
  height: 173px;
  width: 189px;
  bottom: 0;
  right: 0;
}
@media screen and (max-width: 767px) {
  .mainvis::after {
    height: 86.5px;
    width: 94.5px;
  }
}
.mainvis_img {
  height: 100%;
  max-width: calc(100% - 150px);
  width: 100%;
  margin-left: auto;
  border-radius: 0 0 0 50px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .mainvis_img {
    max-width: calc(100% - 50px);
    height: 80vh;
    min-height: 50vh;
    max-height: 700px;
  }
}
.mainvis_slider {
  height: 100%;
  max-width: 100%;
  width: 100%;
}
.mainvis_slider .slick-list,
.mainvis_slider .slick-track {
  height: 100%;
}
.mainvis_slider_item {
  height: 100%;
  max-width: 100%;
  width: 100%;
  background: url("../images/img_mainvis01.jpg") no-repeat center;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .mainvis_slider_item {
    background-image: url("../images/img_mainvis01_sp.jpg");
  }
}
.mainvis_slider_item.item02 {
  background-image: url("../images/img_mainvis02.jpg");
}
@media screen and (max-width: 767px) {
  .mainvis_slider_item.item02 {
    background-image: url("../images/img_mainvis02_sp.jpg");
  }
}
.mainvis_slider_item.item03 {
  background-image: url("../images/img_mainvis03.jpg");
}
@media screen and (max-width: 767px) {
  .mainvis_slider_item.item03 {
    background-image: url("../images/img_mainvis03_sp.jpg");
  }
}
.mainvis_slider_item.item04 {
  background-image: url("../images/img_mainvis04.jpg");
}
@media screen and (max-width: 767px) {
  .mainvis_slider_item.item04 {
    background-image: url("../images/img_mainvis04_sp.jpg");
  }
}
.mainvis_slider_item.slide-animation {
  animation: fadezoom 15s 0s forwards;
}
@keyframes fadezoom {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}
.mainvis_lead {
  position: absolute;
  top: 20px;
  right: 20px;
  color: #fff;
  font-size: 1rem;
  text-align: right;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .mainvis_lead {
    letter-spacing: 0;
    line-height: 1.6;
  }
}
.mainvis_h {
  max-width: 150px;
  width: 100%;
  writing-mode: vertical-rl;
  display: flex;
  align-items: center;
  font-size: 2.9rem;
  letter-spacing: 0.5rem;
  padding-top: 50px;
  position: absolute;
  color: #671117;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .mainvis_h {
    padding-top: 70px;
    max-width: 50px;
    font-size: 1.8rem;
    letter-spacing: 0.2rem;
  }
}
.mainvis_news {
  position: absolute;
  background: #FFF7EE;
  bottom: 30px;
  right: 0;
  z-index: 2;
  max-width: 52%;
  width: 100%;
  display: grid;
  align-items: center;
  grid-template-columns: 100px auto;
  border-radius: 10px 0 0 10px;
}
@media screen and (max-width: 767px) {
  .mainvis_news {
    grid-template-columns: 70px auto;
    max-width: 95%;
    bottom: 15px;
  }
}
.mainvis_news h2 {
  color: #fff;
  background: #671117;
  padding: 15px;
  text-align: center;
  border-radius: 10px 0 0 10px;
  font-size: 1.8rem;
}
@media screen and (max-width: 767px) {
  .mainvis_news h2 {
    padding: 10px;
    font-size: 1.2rem;
  }
}
.mainvis_news_cont {
  width: 100%;
  display: grid;
}
.mainvis_news_cont a {
  display: grid;
  align-items: center;
  grid-template-columns: 100px auto;
  padding: 0 70px 0 20px;
  background: url(../images/icon_arrow.svg) no-repeat center right 40px;
  background-size: 20px auto;
}
@media screen and (max-width: 767px) {
  .mainvis_news_cont a {
    grid-template-columns: 70px auto;
    letter-spacing: 0;
    font-size: 1.2rem;
    padding: 0 40px 0 15px;
    background-size: 10px auto;
    background-position: center right 20px;
  }
}
.mainvis_news_cont_title {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.index_about {
  padding: 100px 0 50px;
  background: url(../images/bg_shop.jpg) no-repeat bottom center;
  background-size: 100% auto;
}
@media screen and (max-width: 767px) {
  .index_about {
    padding: 50px 0 50px;
  }
}
.index_about h2 {
  text-align: center;
  font-size: 3.2rem;
  letter-spacing: 0.4rem;
}
@media screen and (max-width: 767px) {
  .index_about h2 {
    font-size: 2.4rem;
    letter-spacing: 0.2rem;
  }
}
.index_about .title_lead {
  text-align: center;
  position: relative;
}
@media screen and (max-width: 767px) {
  .index_about .title_lead {
    text-align: justify;
  }
}
.index_about .title_lead::after {
  content: "";
  position: absolute;
  background: url(../images/deco_iida.svg) no-repeat center;
  background-size: 100% auto;
  height: 450px;
  width: 300px;
  right: 0;
  top: 50%;
  transform: translate(30%, -60%);
}
@media screen and (max-width: 767px) {
  .index_about .title_lead::after {
    height: 225px;
    width: 150px;
    right: 25px;
    top: 90%;
  }
}
.index_about .title_lead p {
  position: relative;
  z-index: 2;
}
.index_about .title_lead p .color_main {
  font-weight: bold;
}
.index_about_slider {
  margin: 50px auto 0;
}
@media screen and (max-width: 767px) {
  .index_about_slider {
    margin: 70px auto 0;
  }
}
.index_about_slider_title {
  max-width: 210px;
  width: 100%;
  margin: 0 auto;
  color: #fff;
  text-align: center;
  border-radius: 10px;
  padding: 5px;
  background: #671117;
  position: relative;
}
.index_about_slider_title span {
  position: relative;
  z-index: 1;
}
.index_about_slider_title::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  background: #671117;
  border-radius: 5px;
  transform: translate(-50%, 40%) scale(0.8, 1) rotate(45deg);
  bottom: 0;
  left: 50%;
  z-index: 0;
}
.index_about_slider .slick_slide {
  margin: 40px auto 0;
}
.index_about_slider .slick_slide li {
  max-width: 200px;
  width: 100%;
  margin: 0 20px;
  transform: scale(0.8);
  transition: 0.3s;
}
.index_about_slider .slick_slide .slick-center {
  transform: scale(1);
}
.index_message {
  padding: 40px 0 50px;
  position: relative;
}
.index_message::before {
  content: "";
  position: absolute;
  border: solid 100px transparent;
  border-top: solid 40px #F7E7D7;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 100%);
}
.index_message .div_W {
  display: grid;
  grid-template-columns: 370px auto;
  gap: 20px 100px;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .index_message .div_W {
    grid-template-columns: 1fr;
  }
}
.index_message_img {
  position: relative;
}
.index_message_name {
  position: absolute;
  bottom: 50px;
  color: #671117;
}
.index_message_name span {
  display: block;
  letter-spacing: 0.4rem;
  line-height: 1.4;
}
.index_message_name span.font_min {
  font-size: 2.9rem;
}
@media screen and (max-width: 767px) {
  .index_message_name span.font_min {
    font-size: 2.2rem;
  }
}
.index_message_name span.font_small {
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  .index_message_name span.font_small {
    font-size: 1.4rem;
  }
}
.index_message_name span.color_accent {
  font-size: 1.2rem;
  letter-spacing: 0.1rem;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .index_message_name span.color_accent {
    font-size: 1.1rem;
  }
}
.index_message_name.yusuke {
  left: -40px;
}
@media screen and (max-width: 767px) {
  .index_message_name.yusuke {
    left: 0px;
  }
}
.index_message_name.shingo {
  right: -40px;
}
@media screen and (max-width: 767px) {
  .index_message_name.shingo {
    right: 0px;
  }
}
.index_message .div_R h2 {
  font-size: 2.8rem;
  letter-spacing: 0.3rem;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .index_message .div_R h2 {
    font-size: 2rem;
    letter-spacing: 0.1rem;
    line-height: 1.8;
  }
}
.index_message .div_R .title_lead {
  margin-top: 20px;
}
.index_musubi {
  color: #671117;
}
.index_musubi_bg {
  background: url(../images/deco_mountain_range_white.svg) no-repeat bottom -1px center, url(../images/bg_musubi.jpg) no-repeat center;
  background-size: 101% auto, cover;
}
@media screen and (max-width: 767px) {
  .index_musubi_bg {
    background-position: center bottom -1px, center right 20%;
    background-size: 140% auto, cover;
  }
}
.index_musubi_bg_cover {
  background: linear-gradient(to bottom, #fff 0px, rgba(255, 255, 255, 0.5) 60%, rgba(255, 255, 255, 0) 100%);
}
.index_musubi_bg .inner {
  position: relative;
  padding: 130px 0 400px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .index_musubi_bg .inner {
    padding: 110px 20px 200px;
  }
}
.index_musubi_title {
  text-align: center;
  position: relative;
  display: inline-block;
}
.index_musubi_title_fuki {
  position: absolute;
  max-width: 207px;
  width: 100%;
  top: 0;
  left: 0;
  transform: translate(-70%, -70%);
}
@media screen and (max-width: 767px) {
  .index_musubi_title_fuki {
    max-width: 150px;
    transform: translate(-50px, -90%);
  }
}
.index_musubi_title h2 {
  font-size: 2.8rem;
  letter-spacing: 0.5rem;
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .index_musubi_title h2 {
    font-size: 2rem;
    letter-spacing: 0.3rem;
  }
}
.index_musubi_title h2 .h_deco {
  position: relative;
  font-size: 3.7rem;
}
@media screen and (max-width: 767px) {
  .index_musubi_title h2 .h_deco {
    font-size: 3.2rem;
  }
}
.index_musubi_title h2 .h_deco::before {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 100%;
  background: #AA0414;
  top: -2px;
  left: 50%;
  transform: translate(-100%, 0);
}
@media screen and (max-width: 767px) {
  .index_musubi_title h2 .h_deco::before {
    width: 5px;
    height: 5px;
    transform: translate(-50%, 0);
  }
}
.index_musubi_logo {
  max-width: 450px;
  width: 100%;
  margin: 25px auto 0;
}
@media screen and (max-width: 767px) {
  .index_musubi_logo {
    margin: 10px auto 0;
  }
}
.index_musubi .title_lead {
  margin: 40px auto 0;
}
@media screen and (max-width: 767px) {
  .index_musubi .title_lead {
    margin: 20px auto 0;
  }
}
.index_musubi .title_lead p {
  text-align: center;
  font-weight: bold;
}
.index_musubi_deco01 {
  right: -150px;
  top: 10%;
  max-width: 165px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .index_musubi_deco01 {
    max-width: 80px;
    right: -20px;
    top: 5%;
  }
}
.index_musubi_deco02 {
  left: -250px;
  top: 15%;
  max-width: 270px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .index_musubi_deco02 {
    display: none;
  }
}
.index_musubi_deco03 {
  right: -300px;
  bottom: -30px;
  max-width: 275px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .index_musubi_deco03 {
    right: -20px;
    bottom: 100px;
    max-width: 80px;
  }
}
.index_musubi_deco04 {
  left: -150px;
  bottom: -25px;
  max-width: 310px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .index_musubi_deco04 {
    left: -70px;
    bottom: -25px;
    max-width: 150px;
  }
}
.index_musubi_deco05 {
  left: -160px;
  bottom: 120px;
  max-width: 385px;
  width: 100%;
  transform: rotate(11deg);
}
@media screen and (max-width: 767px) {
  .index_musubi_deco05 {
    display: none;
  }
}
.index_musubi_list {
  margin: 80px auto 0;
}
@media screen and (max-width: 767px) {
  .index_musubi_list {
    margin: 40px auto 0;
  }
}
.index_musubi_list_title {
  writing-mode: vertical-rl;
  background-color: #F7E7D7;
  position: absolute;
  right: 30px;
  top: -10px;
  padding: 15px 2px;
  font-size: 1.8rem;
  letter-spacing: 0.3rem;
}
@media screen and (max-width: 767px) {
  .index_musubi_list_title {
    right: 20px;
    font-size: 1.4rem;
    letter-spacing: 0.2rem;
  }
}
.index_musubi_list ul {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .index_musubi_list ul {
    display: block;
  }
}
.index_musubi_list ul li {
  flex-basis: 20%;
  position: relative;
}
@media screen and (max-width: 767px) {
  .index_musubi_list ul li {
    flex-basis: 47%;
    width: 47%;
    margin: 10px 20px 0;
  }
}
.index_musubi_list ul li:nth-child(2n) {
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .index_musubi_list ul li:nth-child(2n) {
    margin: 10px 20px 0;
  }
}
.index_musubi_list ul li img {
  border-radius: 10px;
}
.index_musubi .btn {
  text-align: center;
  margin: 70px auto 0;
}
@media screen and (max-width: 767px) {
  .index_musubi .btn {
    margin: 50px auto 0;
  }
}
.index_musubi .btn a {
  margin: 0 auto;
  max-width: 500px;
  padding: 25px 20px;
  font-size: 1.8rem;
}
@media screen and (max-width: 767px) {
  .index_musubi .btn a {
    font-size: 1.4rem;
  }
}
.index_iida {
  padding: 180px 0 100px;
}
@media screen and (max-width: 767px) {
  .index_iida {
    padding: 100px 0 100px;
  }
}
.index_iida .div_W {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.index_iida .div_W .div_L {
  flex-basis: 530px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .index_iida .div_W .div_L {
    flex-basis: 100%;
    order: 2;
    margin-top: 30px;
  }
}
.index_iida .div_W .div_L h2 {
  color: #671117;
}
.index_iida .div_W .div_L h2 span {
  background: #FFF7EE;
  font-size: 2.6rem;
  display: inline-block;
  padding: 2px 20px;
  margin-bottom: 15px;
  letter-spacing: 0.3rem;
  border-radius: 10px;
}
@media screen and (max-width: 767px) {
  .index_iida .div_W .div_L h2 span {
    font-size: 1.8rem;
    letter-spacing: 0.2rem;
    padding: 2px 15px;
    margin-bottom: 10px;
  }
}
.index_iida .div_W .div_L .title_lead {
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .index_iida .div_W .div_L .title_lead {
    margin-top: 20px;
  }
}
.index_iida .div_W .div_R {
  width: 44%;
  margin-left: 50px;
  background: url(../images/img_iida.jpg) no-repeat center;
  background-size: cover;
  border-radius: 10px 0 0 10px;
  height: 700px;
  position: absolute;
  right: 0;
}
@media screen and (max-width: 767px) {
  .index_iida .div_W .div_R {
    margin-left: 0px;
    height: 300px;
    width: 100%;
    position: inherit;
    border-radius: 10px;
  }
}
.index_iida_deco {
  width: 2500px;
  bottom: -310px;
  left: -150%;
  transform: translate(0%, 0%);
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .index_iida_deco {
    width: 1500px;
    bottom: -205px;
    left: -127%;
  }
}
.index_story {
  padding: 120px 0;
}
@media screen and (max-width: 767px) {
  .index_story {
    padding: 80px 0;
  }
}
.index_story .inner {
  position: relative;
}
.index_story .inner::before, .index_story .inner::after {
  position: absolute;
  content: "";
  z-index: 0;
}
.index_story .inner::before {
  background: url(../images/deco_story01.svg) no-repeat center;
  background-size: 100% auto;
  width: 445px;
  height: 445px;
  top: -50px;
  left: -250px;
}
@media screen and (max-width: 767px) {
  .index_story .inner::before {
    width: 222.5px;
    height: 222.5px;
    top: -50px;
    left: -50px;
  }
}
.index_story .inner::after {
  background: url(../images/deco_story02.svg) no-repeat center;
  background-size: 100% auto;
  width: 445px;
  height: 445px;
  bottom: -100px;
  right: -300px;
}
.index_story .inner .headline_deco {
  text-align: center;
  font-size: 1.8rem;
  color: #671117;
}
@media screen and (max-width: 767px) {
  .index_story .inner .headline_deco {
    font-size: 1.4rem;
  }
}
.index_story h2 {
  text-align: center;
  position: relative;
  z-index: 1;
}
.index_story_slider {
  background: #fff;
  border: 15px solid #671117;
  box-shadow: 10px 10px 0 rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  position: relative;
  z-index: 1;
}
.index_story_slider_out {
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 767px) {
  .index_story_slider {
    border: 10px solid #671117;
    order: 2;
    border-radius: 0 0 10px 10px;
  }
}
.index_story_slider_wrap {
  display: grid;
  grid-template-columns: 370px auto;
  gap: 20px 40px;
  align-items: center;
  padding: 30px;
}
@media screen and (max-width: 767px) {
  .index_story_slider_wrap {
    grid-template-columns: 1fr;
    padding: 20px;
  }
}
.index_story_slider_title {
  font-size: 3rem;
  display: inline;
  letter-spacing: 0.3rem;
  border-bottom: 1px dotted #671117;
  padding-bottom: 5px;
  color: #671117;
}
@media screen and (max-width: 767px) {
  .index_story_slider_title {
    font-size: 1.8rem;
    letter-spacing: 0.1rem;
  }
}
@media screen and (max-width: 767px) {
  .index_story_slider_img {
    max-height: 200px;
  }
}
@media screen and (max-width: 767px) {
  .index_story_slider_img img {
    max-height: 200px;
    width: auto;
    margin: 0 auto;
  }
}
.index_story_slider_p {
  margin-top: 30px;
}
.index_story_slider_p p {
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .index_story_slider_p p {
    font-size: 1.3rem;
  }
}
.index_story_slider .slide-arrow {
  position: absolute;
  background: url(../images/icon_arrow_white.svg), #671117;
  background-size: 40% auto, cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 90px;
  height: 90px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 50%;
  cursor: pointer;
  transition: 0.2s;
}
@media screen and (max-width: 767px) {
  .index_story_slider .slide-arrow {
    width: 40px;
    height: 40px;
  }
}
.index_story_slider .slide-arrow:hover {
  opacity: 0.6;
}
.index_story_slider .prev-arrow {
  left: 0;
  transform: translate(-60%, -50%) scale(-1, -1);
}
.index_story_slider .next-arrow {
  right: 0;
  transform: translate(60%, -50%);
}
.index_story_toc {
  margin: 50px auto 0;
  position: relative;
  z-index: 1;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .index_story_toc {
    margin: 0px auto 0;
  }
}
.index_story_toc .slick_slide .slick-track {
  display: flex;
  justify-content: space-between;
  transform: unset !important;
  width: 100%;
}
.index_story_toc .slick_slide .slick-track li {
  max-width: 230px;
  width: 100%;
  background: #fff;
  padding: 15px 0px;
  border-radius: 10px;
  position: relative;
  text-align: center;
  letter-spacing: 0;
  line-height: 1.6;
  transition: 0.2s;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .index_story_toc .slick_slide .slick-track li {
    background: none;
    padding: 0;
    max-width: calc(25% - 10px);
  }
}
.index_story_toc .slick_slide .slick-track li:hover {
  opacity: 0.6;
  transition: 0.2s;
}
.index_story_toc .slick_slide .slick-track li.slick-current {
  background: #F7E7D7;
}
.index_story_toc .slick_slide .slick-track li.slick-current::before {
  content: "";
  position: absolute;
  border: 15px solid transparent;
  border-bottom: 15px solid #F7E7D7;
  top: 0;
  left: 50%;
  transform: translate(-50%, -100%);
}
.index_story_toc .slick_slide .slick-track li .index_story_toc_num {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  transform: translate(-50%, -70%);
  color: #fff;
  background: #671117;
  border-radius: 100%;
  height: 50px;
  width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
}
@media screen and (max-width: 767px) {
  .index_story_toc .slick_slide .slick-track li .index_story_toc_num {
    position: inherit;
    transform: translate(0%, 0%);
    width: 100%;
    border-radius: 10px 10px 0 0;
  }
}
.index_story_toc .slick_slide .slick-track li.slick-current .index_story_toc_num {
  background: #AA0414;
}
.index_story_toc .slick-list {
  overflow: inherit;
}
.index_lineup {
  padding: 100px 0;
}
@media screen and (max-width: 767px) {
  .index_lineup {
    padding: 70px 0;
  }
}
.index_lineup .btn a {
  margin: 30px auto 0;
}
.index_lineup .lineup_posts {
  grid-template-columns: repeat(4, 230px);
  gap: 25px auto;
}
@media screen and (max-width: 767px) {
  .index_lineup .lineup_posts {
    gap: 25px 25px;
    grid-template-columns: repeat(2, 1fr);
  }
}
.index_lineup .lineup_posts .lineup_post {
  max-width: 230px;
}
.index_blog {
  padding: 100px 0;
}
@media screen and (max-width: 767px) {
  .index_blog {
    padding: 80px 0;
  }
}
.index_blog .btn {
  margin-top: 40px;
}
.index_blog .btn a {
  margin: 0 auto;
}
.index_media {
  padding: 80px 0;
}
.index_media .headline {
  position: relative;
  margin-bottom: 0px;
}
.index_media .headline::before {
  content: "";
  position: absolute;
  background: url(../images/deco_media.svg) no-repeat center;
  top: 0;
  left: 0;
  width: 467px;
  height: 100px;
  background-size: 100% auto;
  transform: translate(-10%, -50%);
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .index_media .headline::before {
    width: 95%;
  }
}
.index_media .title_lead {
  color: #fff;
  margin-top: 20px;
}
.index_media .div_W {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px 0;
}
@media screen and (max-width: 767px) {
  .index_media .div_W {
    grid-template-columns: 1fr;
  }
}
.index_media .div_W .div_L {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .index_media .div_W .div_L {
    text-align: justify;
  }
}
.index_media .div_W .div_L .btn a {
  margin: 0 auto;
}
.index_media .div_W .div_R {
  background: #fff;
  border-radius: 10px;
  padding: 40px 20px;
}
.index_media_fuki {
  max-width: 210px;
  width: 100%;
  margin: -55px auto 30px;
  color: #fff;
  text-align: center;
  font-size: 1.8rem;
  border-radius: 10px;
  padding: 12px 5px;
  background: #AA0414;
  position: relative;
}
@media screen and (max-width: 767px) {
  .index_media_fuki {
    padding: 8px 5px;
    margin: -55px auto 20px;
    font-size: 1.6rem;
  }
}
.index_media_fuki::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  background: #AA0414;
  border-radius: 5px;
  transform: translate(-50%, 40%) scale(0.8, 1) rotate(45deg);
  bottom: 0;
  left: 50%;
  z-index: 0;
}
.index_media_fuki span {
  position: relative;
  z-index: 1;
}
.index_media_content {
  max-width: 390px;
  width: 100%;
  margin: 0 auto;
}
.index_media_content .post_list {
  display: grid;
  grid-template-columns: 75px auto;
  grid-gap: 5px 10px;
  align-items: center;
}
.index_media_content .post_title {
  margin-top: 0;
}
.index_media_content .btn a {
  margin: 0 auto;
}

/*------------------------------------------------------------
	MUSUBI / 結びサンドページ
------------------------------------------------------------*/
.mizuhiki_line {
  width: 100vw;
  border: 1.5px solid #fff;
  position: relative;
}
.mizuhiki_line_wrap {
  width: 100vw;
}
.mizuhiki_line::before {
  width: 101vw;
  content: "";
  position: absolute;
  border: 1.5px solid #fff;
  top: 5px;
  left: 0;
  right: 0;
}
.mizuhiki_line::after {
  width: 101vw;
  content: "";
  position: absolute;
  border: 1.5px solid #fff;
  bottom: 5px;
  left: 0;
  right: 0;
}

.musubi {
  /*.musubi_detail_list_sec::before {
    bottom: 0;
    right: 0;
    transform: translate(-50%,-50%) rotate(-45deg);
      }
      .musubi_detail_list_sec:nth-child(2)::before {
        bottom: 0;
        left: 0;

      }
      .musubi_detail_list_sec:nth-child(3)::before {
        top: 0;
        right: 0;

      }
      .musubi_detail_list_sec:nth-child(4)::before {
        top: 0;
        left: 0;

      }*/
}
.musubi .headline {
  position: relative;
}
.musubi .headline::before {
  content: "";
  position: absolute;
  max-width: 50px;
  width: 100%;
  height: 20px;
  left: 50%;
  top: 0;
  transform: translate(-50%, -120%);
  background: url(../images/deco_musubi_title02.svg) no-repeat center;
}
.musubi .headline_en {
  color: #D30B17;
}
.musubi_header {
  width: 100%;
  position: fixed;
  z-index: 10;
}
.musubi_header_logo a {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 150px;
  width: 100%;
  height: 150px;
  background: #D30B17;
  border-radius: 0 0 50px 0;
}
@media screen and (max-width: 767px) {
  .musubi_header_logo a {
    max-width: 80px;
    height: 80px;
    padding: 20px;
    border-radius: 0 0 30px 0;
  }
}
.musubi_header_logo a img {
  max-width: 100px;
  width: 100%;
}
.musubi_header_btn {
  height: 100%;
  width: 100%;
  position: relative;
}
.musubi_header_btn_wrap {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 100;
  max-width: 80px;
  width: 100%;
  height: 80px;
  padding: 28px 25px 28px;
  background: #D30B17;
  float: right;
  color: #fff;
  position: fixed;
  top: 15px;
  right: 15px;
  z-index: 101;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.2s;
}
@media screen and (max-width: 767px) {
  .musubi_header_btn_wrap {
    top: 0;
    right: 0;
    border-radius: 0 0 0 30px;
    transform: translate(0, -101%);
    transition: 0.5s;
  }
  .musubi_header_btn_wrap.is_scroll {
    transition: 0.5s;
    transform: translate(0, 0%);
  }
}
.musubi_header_btn_wrap:hover {
  opacity: 0.6;
  transition: 0.2s;
}
.musubi_header_btn-txt {
  font-size: 1rem;
  display: block;
  width: 100%;
  text-align: center;
  margin: 0 auto;
  letter-spacing: 0;
  white-space: nowrap;
}
.musubi_header_btn-line {
  background: #fff;
  display: block;
  height: 1px;
  position: absolute;
  transition: transform 0.3s;
  width: 100%;
}
.musubi_header_btn-line--center {
  top: 50%;
  transform: translate(0, -50%);
}
.musubi_header_btn-line--center.active {
  transform: scaleX(0);
}
.musubi_header_btn-line--bottom {
  bottom: 0;
}
.musubi_header_btn-line--bottom.active {
  bottom: 50%;
  transform: rotate(135deg) translate(0, -50%);
  height: 2px;
}
.musubi_header_btn-line--top.active {
  top: 50%;
  transform: rotate(45deg) translate(0, -50%);
  height: 2px;
}
.musubi_header_nav_wrap {
  display: none;
  transition: 0.5s;
}
.musubi_header_nav_wrap.is_open {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #D30B17;
  color: #fff;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  transition: 0.5s;
}
.musubi_header_nav_wrap .btn {
  width: 100%;
  margin-top: 40px;
}
.musubi_header_nav_wrap .btn a {
  margin: 0 auto;
}
.musubi_header_nav_logo {
  max-width: 200px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .musubi_header_nav_logo {
    max-width: 150px;
  }
}
.musubi_header_nav ul {
  margin: 40px auto 0;
}
.musubi_header_nav ul li a {
  color: #fff;
  font-size: 1.6rem;
  padding: 5px 10px 5px 25px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .musubi_header_nav ul li a {
    font-size: 1.4rem;
    padding: 3px 10px 3px 25px;
  }
}
.musubi_header_nav ul li a::before {
  content: "";
  position: absolute;
  background: url(../images/icon_arrow_musubi_white.svg) no-repeat center;
  background-size: 100% auto;
  width: 10px;
  height: 1.6rem;
  left: 0;
  top: 50%;
  transform: translate(0, -50%);
}
.musubi_mainvis {
  height: 90vh;
  min-height: 60vh;
  max-height: 1000px;
  position: relative;
  background: linear-gradient(to top, #fff 0%, #fff 30%, #D30B17 30%, #D30B17 100%);
  padding: 0 50px;
}
@media screen and (max-width: 767px) {
  .musubi_mainvis {
    height: 80vh;
    min-height: 60vh;
    max-height: 700px;
    padding: 20px 20px 0;
  }
}
.musubi_mainvis::before {
  content: "";
  position: absolute;
  background: url(../images/deco_mountain_range_white.svg) no-repeat center;
  width: 100%;
  background-size: auto 100%;
  height: 100px;
  bottom: 30%;
  left: 50%;
  transform: translate(-50%, 0);
}
.musubi_mainvis_news {
  width: 100%;
  color: #fff;
  text-align: center;
  margin: 0 auto;
  font-size: 1.2rem;
  padding: 5px 20px;
}
@media screen and (max-width: 767px) {
  .musubi_mainvis_news {
    font-size: 1.1rem;
    color: #D30B17;
    text-align: left;
  }
}
.musubi_mainvis_news dl {
  display: flex;
  justify-content: center;
  align-items: center;
}
.musubi_mainvis_news dl dt {
  flex-basis: 40px;
  padding: 0 15px;
}
@media screen and (max-width: 767px) {
  .musubi_mainvis_news dl dt {
    padding: 0 15px 0px 0;
  }
}
.musubi_mainvis_news dl dd {
  border-left: 1px solid #fff;
  padding: 0 15px;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .musubi_mainvis_news dl dd {
    border-color: #D30B17;
    line-height: 1.6;
    padding: 0 0 0 15px;
  }
}
.musubi_mainvis_news_date {
  padding-right: 10px;
}
.musubi_mainvis_logo {
  max-width: 375px;
  width: 100%;
  margin: 0 auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .musubi_mainvis_logo {
    max-width: 60%;
  }
}
.musubi_mainvis_lead {
  position: absolute;
  writing-mode: vertical-rl;
  top: 20px;
  right: 120px;
  font-size: 2.2rem;
  letter-spacing: 0.4rem;
  z-index: 1;
  color: #671117;
}
@media screen and (max-width: 767px) {
  .musubi_mainvis_lead {
    font-size: 1.5rem;
    letter-spacing: 0.1rem;
    right: 40px;
    top: 10px;
  }
}
.musubi_mainvis_lead_bg {
  background: #fff;
  padding: 20px 1px;
  display: inline-block;
  margin: 0 10px;
}
@media screen and (max-width: 767px) {
  .musubi_mainvis_lead_bg {
    margin: 0 5px;
    padding: 10px 1px;
  }
}
.musubi_mainvis_img {
  height: 100%;
  width: 100%;
  overflow: hidden;
  position: relative;
}
.musubi_mainvis_img_deco {
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 0);
  max-width: 1400px;
  width: 100%;
  height: 60px;
  background: url(../images/deco_mountain_range_white.svg) no-repeat center top;
  background-size: auto 100%;
}
.musubi_mainvis_slider {
  height: 100%;
  max-width: 100%;
  width: 100%;
}
.musubi_mainvis_slider .slick-list,
.musubi_mainvis_slider .slick-track {
  height: 100%;
}
.musubi_mainvis_slider_item {
  height: 100%;
  max-width: 100%;
  width: 100%;
  background: url("../images/img_musubi_mainvis.jpg") no-repeat center;
  background-size: cover;
}
.musubi_mainvis_slider_item.slide-animation {
  animation: fadezoom 15s 0s forwards;
}
@keyframes fadezoom {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}
.musubi_brand {
  padding: 100px 0;
}
@media screen and (max-width: 767px) {
  .musubi_brand {
    padding: 80px 0;
  }
}
.musubi_brand .div_W {
  display: grid;
  grid-template-columns: 53% 1fr;
  gap: 50px 50px;
  align-items: center;
  justify-content: center;
  color: #671117;
}
@media screen and (max-width: 767px) {
  .musubi_brand .div_W {
    grid-template-columns: 1fr;
  }
}
.musubi_brand .div_W .div_L {
  position: relative;
  min-height: 370px;
  display: flex;
  align-items: center;
  padding-left: 160px;
  border: 3px solid #D30B17;
  border-left: none;
  border-radius: 0 300px 300px 0;
}
@media screen and (max-width: 767px) {
  .musubi_brand .div_W .div_L {
    border-radius: 0 150px 150px 0;
    padding: 0 30px 0 130px;
  }
}
.musubi_brand .div_W .div_L::before, .musubi_brand .div_W .div_L::after {
  content: "";
  position: absolute;
  height: 3px;
  width: 1000px;
  background: #D30B17;
  top: -1.5px;
  left: 0;
  transform: translate(-100%, -50%);
}
.musubi_brand .div_W .div_L::after {
  bottom: 1.5px;
  top: inherit;
  transform: translate(-100%, 150%);
}
.musubi_brand_lead {
  top: -20px;
  left: 0px;
  font-size: 2rem;
  writing-mode: vertical-rl;
  letter-spacing: 0.3rem;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .musubi_brand_lead {
    font-size: 1.8rem;
    letter-spacing: 0.2rem;
  }
}
.musubi_brand_lead span {
  background: #D30B17;
  display: inline-block;
  margin: 0 7px;
  padding: 10px 2px;
}
@media screen and (max-width: 767px) {
  .musubi_brand_lead span {
    margin: 0 5px;
    padding: 10px 1px;
  }
}
.musubi_brand_logo {
  max-width: 275px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .musubi_brand_logo {
    margin: 0 auto s;
  }
}
.musubi_about .inner {
  position: relative;
  padding: 100px 0 150px;
}
@media screen and (max-width: 767px) {
  .musubi_about .inner {
    padding: 80px 20px 100px;
  }
}
.musubi_about_logo {
  max-width: 455px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .musubi_about_logo {
    max-width: 80%;
  }
}
.musubi_about .title_lead {
  text-align: center;
  font-weight: bold;
  color: #D30B17;
  font-size: 1.6rem;
  margin: 50px auto 0;
}
@media screen and (max-width: 767px) {
  .musubi_about .title_lead {
    font-size: 1.5rem;
    text-align: justify;
  }
}
.musubi_about_img {
  width: 3100px;
  bottom: -70px;
  left: 50%;
  transform: translate(-48%, 0);
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .musubi_about_img {
    bottom: -50px;
    width: 2000px;
  }
}
.musubi_about_deco01 {
  max-width: 165px;
  width: 100%;
  top: 80px;
  left: -100px;
}
@media screen and (max-width: 767px) {
  .musubi_about_deco01 {
    max-width: 100px;
    top: -10px;
    left: -20px;
  }
}
.musubi_about_deco02 {
  max-width: 210px;
  width: 100%;
  top: 0;
  right: -100px;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .musubi_about_deco02 {
    max-width: 120px;
    top: -10px;
    right: -20px;
  }
}
.musubi_about_deco03 {
  max-width: 240px;
  width: 100%;
  top: 50%;
  left: -250px;
}
@media screen and (max-width: 767px) {
  .musubi_about_deco03 {
    max-width: 90px;
    top: 50%;
    left: -50px;
    z-index: -1;
  }
}
.musubi_about_deco04 {
  max-width: 125px;
  width: 100%;
  top: 30%;
  right: -230px;
}
@media screen and (max-width: 767px) {
  .musubi_about_deco04 {
    max-width: 90px;
    bottom: 10%;
    right: -100px;
  }
}
.musubi_about_deco05 {
  max-width: 155px;
  width: 100%;
  bottom: -180px;
  left: -150px;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .musubi_about_deco05 {
    max-width: 90px;
    bottom: -180px;
    left: -20px;
  }
}
.musubi_about_deco06 {
  max-width: 160px;
  width: 100%;
  bottom: -180px;
  right: -150px;
  transform: rotate(15deg);
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .musubi_about_deco06 {
    max-width: 90px;
    bottom: -210px;
    right: -20px;
  }
}
.musubi_detail {
  position: relative;
  padding: 300px 0 100px;
}
.musubi_detail::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0%);
  border: 2000px solid transparent;
  border-top: 200px solid #fff;
}
.musubi_detail .inner {
  position: relative;
}
.musubi_detail_deco {
  margin: 0 auto;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
}
@media screen and (max-width: 767px) {
  .musubi_detail_deco {
    position: relative;
    z-index: 1;
  }
}
.musubi_detail_deco_logo {
  max-width: 390px;
  width: 100%;
  margin: 0 auto;
}
.musubi_detail_deco_img {
  max-width: 520px;
  width: 100%;
  margin: 80px auto 0;
}
@media screen and (max-width: 767px) {
  .musubi_detail_deco_img {
    max-width: 70%;
    margin: 30px auto -30px;
  }
}
.musubi_detail_list {
  display: grid;
  grid-template-columns: repeat(2, 300px);
  gap: 150px 0;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .musubi_detail_list {
    gap: 30px 0;
    justify-content: center;
    grid-template-columns: repeat(1, 300px);
  }
}
.musubi_detail_list_sec {
  background: #fff;
  max-width: 300px;
  width: 100%;
  height: 300px;
  border-radius: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
}
.musubi_detail_list_sec h3 {
  font-size: 2rem;
  color: #D30B17;
  line-height: 1.8;
  margin-bottom: 15px;
}
.musubi_detail_list_sec::before {
  content: none;
  position: absolute;
  border: 15px solid transparent;
  border-top: 20px solid #000;
}
.musubi_detail_list_sec_deco {
  max-width: 350px;
  width: 100%;
  bottom: -30%;
  left: 35%;
}
@media screen and (min-width: 768px) {
  .musubi .musubi_detail_list_sec:nth-child(2),
.musubi .musubi_detail_list_sec:nth-child(3) {
    background: #D30B17;
    color: #fff;
  }
  .musubi .musubi_detail_list_sec:nth-child(2) h3,
.musubi .musubi_detail_list_sec:nth-child(3) h3 {
    color: #fff;
  }
  .musubi .musubi_detail_list_sec:nth-child(2)::before,
.musubi .musubi_detail_list_sec:nth-child(3)::before {
    border-top: 20px solid #D30B17;
  }
}
@media screen and (max-width: 768px) {
  .musubi .musubi_detail_list_sec:nth-child(2),
.musubi .musubi_detail_list_sec:nth-child(4) {
    background: #D30B17;
    color: #fff;
  }
  .musubi .musubi_detail_list_sec:nth-child(2) h3,
.musubi .musubi_detail_list_sec:nth-child(4) h3 {
    color: #fff;
  }
  .musubi .musubi_detail_list_sec:nth-child(2)::before,
.musubi .musubi_detail_list_sec:nth-child(4)::before {
    border-top: 20px solid #D30B17;
  }
}
.musubi_meaning {
  position: relative;
  padding: 150px 0 100px;
  background: linear-gradient(to top, #520b0f 0%, #520b0f 40%, #671117 40%, #671117 100%);
}
.musubi_meaning::before {
  content: "";
  position: absolute;
  background: url(../images/deco_mountain_range.svg) no-repeat center;
  width: 100%;
  background-size: auto 100%;
  height: 100px;
  bottom: 40%;
  left: 50%;
  transform: translate(-50%, 1px);
}
.musubi_meaning .headline::before {
  background-image: url(../images/deco_musubi_title01.svg);
}
.musubi_meaning .headline_en {
  color: #898989;
}
.musubi_meaning_list {
  position: relative;
  z-index: 1;
  color: #fff;
}
.musubi_meaning_list ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px 60px;
}
@media screen and (max-width: 767px) {
  .musubi_meaning_list ul {
    grid-template-columns: repeat(1, 1fr);
  }
}
.musubi_meaning_list ul li:not(:last-child) .musubi_meaning_lead::before {
  position: absolute;
  content: "+";
  color: #fff;
  font-size: 6rem;
  right: 0;
  top: 50%;
  transform: translate(120%, -50%);
  line-height: 1;
  font-weight: normal;
}
@media screen and (max-width: 767px) {
  .musubi_meaning_list ul li:not(:last-child) .musubi_meaning_lead::before {
    content: none;
  }
}
.musubi_meaning_lead {
  background: url(../images/deco_musubi03.png) no-repeat center;
  background-size: auto 100%;
  width: 100%;
  text-align: center;
  height: 240px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  font-weight: bold;
  margin-bottom: 25px;
  position: relative;
}
.musubi_meaning_lead_num {
  font-size: 4rem;
}
.musubi_meaning_lead_title {
  font-size: 1.6rem;
}
.musubi_meaning_lead_title .font_min {
  font-size: 3rem;
  color: #D30B17;
  background: #fff;
  padding: 2px 15px;
}
.musubi_bg {
  height: 485px;
  width: 100%;
  background: url(../images/img_musubi_styling.jpg) no-repeat center;
  background-size: cover;
  position: relative;
}
@media screen and (max-width: 767px) {
  .musubi_bg {
    height: 300px;
  }
}
.musubi_bg .mizuhiki_line_wrap {
  top: 0;
  transform: translate(0, -10px);
}
.musubi_iida {
  padding: 150px 0 0px;
}
@media screen and (max-width: 767px) {
  .musubi_iida {
    padding: 80px 0 0;
  }
}
.musubi_iida .div_W {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 80px auto 0;
}
@media screen and (max-width: 767px) {
  .musubi_iida .div_W {
    display: inherit;
    margin: 0px auto 0;
  }
}
.musubi_iida .div_W .div_L {
  height: 450px;
  width: 47%;
  position: absolute;
  background: url(../images/img_musubi_iida.jpg) no-repeat center;
  background-size: cover;
  left: 0;
}
@media screen and (max-width: 767px) {
  .musubi_iida .div_W .div_L {
    height: 300px;
    width: 100%;
    position: inherit;
  }
}
.musubi_iida .div_W .div_R {
  flex-basis: 50%;
  margin-left: auto;
  position: relative;
}
@media screen and (max-width: 767px) {
  .musubi_iida .div_W .div_R {
    flex-basis: 100%;
  }
}
.musubi_iida .div_W .div_R h3 {
  font-size: 2.4rem;
  color: #fff;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .musubi_iida .div_W .div_R h3 {
    font-size: 1.9rem;
    list-style: 0.1rem;
    margin-top: 30px;
  }
}
.musubi_iida .div_W .div_R h3 span {
  padding: 1px 15px;
  display: inline-block;
  background: #D30B17;
  margin: 5px 0;
}
@media screen and (max-width: 767px) {
  .musubi_iida .div_W .div_R h3 span {
    padding: 1px 10px;
  }
}
.musubi_iida .div_W .div_R p {
  max-width: 380px;
  width: 100%;
}
.musubi_iida .div_W .div_R .deco {
  max-width: 190px;
  width: 100%;
  bottom: 0;
  right: 0;
  transform: translate(50%, 0);
}
@media screen and (max-width: 767px) {
  .musubi_iida .div_W .div_R .deco {
    max-width: 120px;
    transform: translate(40%, 30%);
    z-index: -1;
  }
}
.musubi_history {
  padding: 150px 0 130px;
}
.musubi_history_list {
  position: relative;
}
.musubi_history_list .mizuhiki_line {
  border: 1px solid #D30B17;
}
@media screen and (max-width: 767px) {
  .musubi_history_list .mizuhiki_line {
    display: none;
  }
}
.musubi_history_list .mizuhiki_line::before, .musubi_history_list .mizuhiki_line::after {
  border: 1px solid #D30B17;
}
.musubi_history_list .mizuhiki_line_wrap {
  top: 145px;
  left: 50%;
  transform: translate(-50%, -50%);
}
.musubi_history_list ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px 30px;
}
@media screen and (max-width: 767px) {
  .musubi_history_list ul {
    grid-template-columns: repeat(1, 1fr);
    margin: 0 auto;
  }
}
.musubi_history_list ul li {
  position: relative;
}
.musubi_history_list_img {
  background: #fff;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .musubi_history_list_img {
    margin: 0 auto;
  }
}
.musubi_history_list_img, .musubi_history_list_img::before, .musubi_history_list_img::after {
  width: 100%;
  max-width: 290px;
  height: 290px;
  border-radius: 100%;
  border: 2px solid #D30B17;
}
.musubi_history_list_img::before, .musubi_history_list_img::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.musubi_history_list_img::before {
  max-width: 280px;
  height: 280px;
}
.musubi_history_list_img::after {
  max-width: 270px;
  height: 270px;
}
.musubi_history_list_img img {
  max-width: 250px;
  height: 250px;
}
.musubi_history_list_lead {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.musubi_history_list_lead .num {
  width: 90px;
  height: 90px;
  border-radius: 100%;
  background-color: #D30B17;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 45px;
  font-weight: bold;
}
.musubi_history_list_lead .label {
  background: url(../images/deco_ribon_red.svg) no-repeat center bottom;
  writing-mode: vertical-rl;
  display: inline-block;
  background-size: auto 100%;
  color: #fff;
  font-size: 1.6rem;
  height: 150px;
  width: 50px;
  display: flex;
  align-items: center;
  padding: 20px 0 0;
  margin-top: -15px;
  text-orientation: upright;
}
.musubi_history_list li:nth-child(2n) .num {
  background-color: #898989;
}
.musubi_history_list li:nth-child(2n) .label {
  background-image: url(../images/deco_ribon_gray.svg);
}
.musubi_history_list li:nth-child(2n) .musubi_history_list_img, .musubi_history_list li:nth-child(2n) .musubi_history_list_img::before, .musubi_history_list li:nth-child(2n) .musubi_history_list_img::after {
  border-color: #898989;
}
.musubi_history_list p {
  margin: 30px auto 0;
}
.musubi_lineup {
  position: relative;
  padding: 50px 0 100px;
}
.musubi_lineup::before {
  content: "";
  position: absolute;
  width: 980px;
  height: 910px;
  top: 0;
  left: 50%;
  transform: translate(-50%, -80px);
  background: #D30B17;
  border-radius: 100%;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .musubi_lineup::before {
    width: 326.6666666667px;
    height: 303.3333333333px;
    transform: translate(-50%, -40px);
  }
}
.musubi_lineup .headline {
  color: #fff;
}
.musubi_lineup .headline::before {
  background-image: url(../images/deco_musubi_title03.svg);
}
.musubi_lineup .headline_en {
  color: #b8b8b8;
}
.musubi_lineup_list ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 30px;
}
@media screen and (max-width: 767px) {
  .musubi_lineup_list ul {
    grid-template-columns: repeat(1, 1fr);
  }
}
.musubi_lineup_list ul li {
  text-align: center;
  color: #fff;
  line-height: 1.6;
}
.musubi_lineup_list ul li h3 {
  font-size: 2rem;
}
.musubi_lineup_list_img {
  margin: 0 auto 20px;
}
.musubi_lineup_list_price {
  font-size: 2rem;
}
.musubi_shop {
  padding: 150px 0 100px;
  position: relative;
}
.musubi_shop .mizuhiki_line_wrap {
  bottom: 10px;
}
.musubi_shop .headline_en {
  color: #b8b8b8;
}
.musubi_shop_makuake {
  max-width: 1100px;
  background: #fff;
  border: 2px solid #671117;
  box-shadow: 7px 7px 0 0 #F7E7D7;
  padding: 80px 20px;
  width: 100%;
  margin: 0 auto 100px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .musubi_shop_makuake {
    padding: 80px 0px;
    margin-left: 20px;
    margin-right: 20px;
    width: calc(100% - 20px - 20px);
  }
}
.musubi_shop_makuake::before {
  content: "";
  position: absolute;
  background: url(../images/deco_musubi_ribon.svg) no-repeat center;
  background-size: 100% auto;
  top: 0;
  left: 50%;
  transform: translate(-50%, -45%);
  max-width: 290px;
  width: 100%;
  height: 220px;
}
@media screen and (max-width: 767px) {
  .musubi_shop_makuake::before {
    max-width: 240px;
    height: 200px;
  }
}
.musubi_shop_makuake .fuki {
  text-align: center;
  font-size: 3rem;
}
@media screen and (max-width: 767px) {
  .musubi_shop_makuake .fuki {
    font-size: 2.2rem;
  }
}
.musubi_shop_makuake .fuki::before {
  background: url(../images/deco_musubi_fuki_L.svg) no-repeat center;
  background-size: 100% auto;
  width: 30px;
  height: 40px;
  transform: translate(-150%, 0);
  border: none;
}
@media screen and (max-width: 767px) {
  .musubi_shop_makuake .fuki::before {
    transform: translate(-70%, 0);
  }
}
.musubi_shop_makuake .fuki::after {
  background: url(../images/deco_musubi_fuki_R.svg) no-repeat center;
  background-size: 100% auto;
  width: 30px;
  height: 40px;
  transform: translate(100%, 0);
  border: none;
}
@media screen and (max-width: 767px) {
  .musubi_shop_makuake .fuki::after {
    transform: translate(70%, 0);
  }
}
.musubi_shop_makuake .fuki span {
  line-height: 1;
}
.musubi_shop_makuake .fuki figure {
  display: inline-block;
  max-width: 230px;
  vertical-align: middle;
  padding: 0 15px 10px;
}
.musubi_shop_makuake .title_lead {
  text-align: center;
}
.musubi_shop_makuake_about {
  margin: 30px auto 0;
}
.musubi_shop_makuake_about .div_W {
  display: grid;
  grid-template-columns: 50% 1fr;
  gap: 30px 50px;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .musubi_shop_makuake_about .div_W {
    grid-template-columns: 1fr;
  }
}
.musubi_shop_makuake_about .div_W .div_R h3 {
  color: #D30B17;
  font-size: 2.4rem;
}
@media screen and (max-width: 767px) {
  .musubi_shop_makuake_about .div_W .div_R h3 {
    font-size: 2rem;
  }
}
.musubi_shop_makuake_about .div_W .div_R p {
  margin: 30px 0 0;
  max-width: 380px;
}
@media screen and (max-width: 767px) {
  .musubi_shop_makuake_about .div_W .div_R p {
    margin: 15px 0 0;
    max-width: none;
  }
}
.musubi_shop_makuake_link {
  margin: 40px auto 0;
}
.musubi_shop_makuake_link a {
  border: 5px solid #D30B17;
  box-shadow: 5px 5px 0 0 rgba(0, 0, 0, 0.1);
  color: #302020;
}
.musubi_shop_makuake_link a .div_W {
  display: grid;
  grid-template-columns: 43% 1fr;
  gap: 0px 0px;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .musubi_shop_makuake_link a .div_W {
    grid-template-columns: 1fr;
  }
}
.musubi_shop_makuake_link a .div_W .div_L {
  padding: 60px 0 60px 25px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .musubi_shop_makuake_link a .div_W .div_L {
    padding: 40px 20px 40px 20px;
  }
}
.musubi_shop_makuake_link a .div_W .div_L h4 {
  font-size: 3rem;
}
@media screen and (max-width: 767px) {
  .musubi_shop_makuake_link a .div_W .div_L h4 {
    font-size: 2rem;
  }
}
.musubi_shop_makuake_link a .div_W .div_L figure {
  max-width: 230px;
  width: 100%;
  display: inline-block;
  vertical-align: middle;
  padding: 0 15px 8px;
}
.musubi_shop_makuake_link a .div_W .div_R {
  background: linear-gradient(to right, #fff 0%, #fff 5%, rgba(255, 255, 255, 0) 30%, rgba(255, 255, 255, 0) 40%), url(../images/img_musubi_makuake.jpg);
  background-size: auto 100%;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .musubi_shop_makuake_link a .div_W .div_R {
    height: 150px;
    background-image: url(../images/img_musubi_makuake.jpg);
    background-position: center;
  }
}
.musubi_shop_makuake_link_label {
  background: #D30B17;
  color: #fff;
  font-weight: bold;
  font-size: 2.2rem;
  letter-spacing: 0.3rem;
  text-align: center;
  padding: 10px 20px 7px;
  letter-spacing: 0.3rem;
}
@media screen and (max-width: 767px) {
  .musubi_shop_makuake_link_label {
    font-size: 1.5rem;
    letter-spacing: 0.2rem;
    padding: 10px 10px 7px;
  }
}
.musubi_shop_makuake_link_label span {
  padding-right: 40px;
  background: url(../images/icon_arrow_musubi_white.svg) no-repeat center right;
  background-size: 15px auto;
}
.musubi_shop_info {
  background: #fff;
}
.musubi_shop_info > .div_W {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.musubi_shop_info > .div_W > .div_L {
  padding: 40px 80px;
  flex-basis: 50%;
  color: #671117;
}
@media screen and (max-width: 767px) {
  .musubi_shop_info > .div_W > .div_L {
    padding: 40px 20px;
    flex-basis: 100%;
  }
}
.musubi_shop_info > .div_W > .div_L .font_large {
  font-weight: bold;
}
.musubi_shop_info > .div_W > .div_L table {
  margin: 10px auto 0;
  width: 100%;
  line-height: 1.8;
}
.musubi_shop_info > .div_W > .div_L table th {
  padding-right: 0px;
}
.musubi_shop_info > .div_W > .div_R {
  padding: 50px 40px;
  flex-basis: 50%;
}
@media screen and (max-width: 767px) {
  .musubi_shop_info > .div_W > .div_R {
    padding: 40px 20px;
    flex-basis: 100%;
  }
}
.musubi_shop_info > .div_W > .div_R .btn_sub_pail a {
  max-width: none;
  border: 2px solid #671117;
  padding: 15px 50px;
  background-image: url(../images/icon_arrow_musubi.svg);
  background-size: 10px auto;
  background-position: center right 40px;
  background-repeat: no-repeat;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .musubi_shop_info > .div_W > .div_R .btn_sub_pail a {
    padding: 15px 20px;
    background-position: center right 20px;
  }
}
@media screen and (max-width: 767px) {
  .musubi_shop_info > .div_W > .div_R .btn_sub_pail a span {
    padding-left: 35px;
  }
}
.musubi_shop_info > .div_W > .div_R .div_W {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0px 15px;
}
@media screen and (max-width: 767px) {
  .musubi_shop_info > .div_W > .div_R .div_W {
    grid-template-columns: 1fr;
  }
}
.musubi_shop_info > .div_W > .div_R .div_W .btn.btn_line a span {
  background-image: url(../images/icon_line_main.svg);
}
.musubi_shop_info > .div_W > .div_R .div_W .btn a {
  max-width: none;
  background-image: none;
}
.musubi_shop_info_logo {
  max-width: 270px;
  margin: 0 auto 20px;
}
.musubi_gallery {
  padding: 130px 0 100px;
}
.musubi_gallery .div_W {
  display: flex;
  align-items: center;
}
.musubi_gallery01 {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  z-index: 1;
}
.musubi_gallery02 {
  max-width: 580px;
  width: 100%;
  transform: translate(-40%, 0%);
}
@media screen and (max-width: 767px) {
  .musubi_gallery02 {
    transform: translate(-30%, 45px);
  }
}
.musubi_gallery03 {
  max-width: 510px;
  width: 100%;
  transform: translate(150px, -50px);
}
@media screen and (max-width: 767px) {
  .musubi_gallery03 {
    transform: translate(40px, -30px);
  }
}
.musubi_gallery04 {
  max-width: 410px;
  width: 100%;
  position: relative;
  transform: translate(100px, 0px);
}
.musubi_gallery_deco01 {
  max-width: 242px;
  top: -50px;
  left: -50px;
}
@media screen and (max-width: 767px) {
  .musubi_gallery_deco01 {
    max-width: 110px;
    top: -108px;
    left: -50px;
  }
}
.musubi_gallery_deco02 {
  max-width: 165px;
  top: 35%;
  left: -200px;
}
@media screen and (max-width: 767px) {
  .musubi_gallery_deco02 {
    max-width: 81px;
    top: 114%;
    left: 0;
  }
}
.musubi_gallery_deco03 {
  max-width: 315px;
  bottom: 0;
  right: 0;
  transform: translate(-60%, 30%);
}
@media screen and (max-width: 767px) {
  .musubi_gallery_deco03 {
    max-width: 168px;
    bottom: 0;
    right: 0;
    transform: translate(-64%, 55%);
  }
}
.musubi_gallery_deco04 {
  max-width: 267px;
  top: 0;
  left: 0;
  transform: translate(-50%, -65%);
}
@media screen and (max-width: 767px) {
  .musubi_gallery_deco04 {
    max-width: 150px;
    top: 0;
    left: 0;
    transform: translate(-135%, 162%);
  }
}
.musubi_gallery_deco05 {
  max-width: 90px;
  top: 50%;
  right: 0;
  transform: translate(190%, -50%);
}
.musubi_footer {
  background: #898989;
  margin: 0px auto 0;
  padding-top: 20px;
}
@media screen and (max-width: 767px) {
  .musubi_footer {
    padding-top: 15px;
  }
}
.musubi_footer_list {
  position: relative;
  background: linear-gradient(to bottom, #fff 0, #fff 50%, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 100%);
}
@media screen and (max-width: 767px) {
  .musubi_footer_list {
    display: none;
  }
}
.musubi_footer_list .deco {
  right: 0;
  top: 0;
  max-width: 130px;
  transform: translate(30%, -100%);
}
@media screen and (max-width: 767px) {
  .musubi_footer_list .deco {
    right: 0;
    top: 0;
    max-width: 90px;
    transform: translate(6%, -100%);
  }
}
.musubi_footer_list ul {
  display: flex;
  justify-content: space-around;
}
.musubi_footer_list ul li {
  flex-basis: 20%;
}
.musubi_footer_list ul li:nth-child(2n) {
  margin-top: 30px;
}
.musubi_footer_logo {
  max-width: 130px;
  text-align: center;
  margin: 50px auto;
}
.musubi_footer_copylight {
  background: #671117;
  color: #fff;
  text-align: center;
  padding: 20px;
}

/*------------------------------------------------------------
	ABOUT / ポルカのご紹介ページ
------------------------------------------------------------*/
.about_message {
  padding: 200px 0 150px;
  background: url(../images/bg_shop.jpg) no-repeat center bottom;
  background-size: 100% auto;
}
@media screen and (max-width: 767px) {
  .about_message {
    padding: 120px 0 100px;
  }
}
.about_message .inner {
  position: relative;
}
.about_message h2 {
  text-align: center;
  font-size: 3.2rem;
  letter-spacing: 0.3rem;
}
@media screen and (max-width: 767px) {
  .about_message h2 {
    font-size: 2.2rem;
    letter-spacing: 0.2rem;
  }
}
.about_message .title_lead {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .about_message .title_lead {
    text-align: justify;
  }
}
.about_message .deco {
  top: 0;
  left: 0;
  transform: translate(20%, -80%);
}
@media screen and (max-width: 767px) {
  .about_message .deco {
    max-width: 50%;
    transform: translate(-10%, -80%);
  }
}
.about_thought {
  padding: 100px 0;
}
.about_thought .div_W {
  display: grid;
  grid-template-columns: repeat(2, 460px);
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .about_thought .div_W {
    grid-template-columns: 1fr;
  }
}
.about_thought_sec {
  background: #AA0414;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex-direction: column;
  height: 480px;
  border-radius: 100%;
  color: #fff;
  border: 1px solid #fff;
  box-shadow: 0 0 0 10px #AA0414;
  position: relative;
}
@media screen and (max-width: 767px) {
  .about_thought_sec {
    border-radius: 10px;
    padding: 50px 20px;
    height: auto;
  }
}
.about_thought_sec h3 {
  font-size: 2rem;
  letter-spacing: 0.3rem;
}
@media screen and (max-width: 767px) {
  .about_thought_sec h3 {
    font-size: 1.4rem;
  }
}
.about_thought_sec h3 .font_en {
  font-size: 2rem;
  letter-spacing: 0.3rem;
}
@media screen and (max-width: 767px) {
  .about_thought_sec h3 .font_en {
    font-size: 1.4rem;
  }
}
.about_thought_sec h3 .font_min {
  font-size: 3.2rem;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .about_thought_sec h3 .font_min {
    font-size: 2.2rem;
    margin-top: 10px;
    display: inline-block;
  }
}
.about_thought_sec p {
  margin: 30px auto 0;
}
.about_thought_mission {
  margin-right: -10px;
  background-blend-mode: multiply;
  mix-blend-mode: multiply;
}
@media screen and (max-width: 767px) {
  .about_thought_mission {
    margin-right: 0px;
    background-blend-mode: inherit;
    mix-blend-mode: inherit;
  }
}
.about_thought_mission .deco01 {
  max-width: 290px;
  width: 100%;
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
  mix-blend-mode: multiply;
}
@media screen and (max-width: 767px) {
  .about_thought_mission .deco01 {
    max-width: 290px;
    position: inherit;
    transform: translate(0%, 0%);
    margin-top: 15px;
    mix-blend-mode: inherit;
  }
}
.about_thought_mission .deco02 {
  max-width: 130px;
  width: 100%;
  top: 50%;
  left: 0;
  transform: translate(-140%, -100%);
  mix-blend-mode: multiply;
}
@media screen and (max-width: 767px) {
  .about_thought_mission .deco02 {
    display: none;
    mix-blend-mode: inherit;
  }
}
.about_thought_bi {
  margin-left: -10px;
  background: #671117;
  background-blend-mode: multiply;
  mix-blend-mode: multiply;
  box-shadow: 0 0 0 10px #671117;
}
@media screen and (max-width: 767px) {
  .about_thought_bi {
    margin-left: 0px;
    margin-top: 30px;
    mix-blend-mode: inherit;
    background-blend-mode: inherit;
  }
}
.about_thought_bi .deco01 {
  max-width: 160px;
  width: 100%;
  bottom: 0;
  right: 0;
  transform: translate(70%, 20%) rotate(10deg);
  mix-blend-mode: multiply;
}
@media screen and (max-width: 767px) {
  .about_thought_bi .deco01 {
    transform: translate(0%, 0%) rotate(0deg);
    mix-blend-mode: inherit;
    position: inherit;
    margin-top: 15px;
  }
}
.about_thought_bi .deco02 {
  max-width: 110px;
  width: 100%;
  bottom: 50%;
  right: 0;
  transform: translate(150%, 30%);
  mix-blend-mode: multiply;
}
@media screen and (max-width: 767px) {
  .about_thought_bi .deco02 {
    display: none;
  }
}
.about_features {
  padding: 100px 0;
  position: relative;
}
@media screen and (max-width: 767px) {
  .about_features {
    padding: 80px 0;
  }
}
.about_features::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  border: 100px solid transparent;
  border-top: 40px solid #FFF7EE;
  transform: translate(-50%, 100%);
}
.about_features_list {
  display: grid;
  grid-template-columns: repeat(3, 310px);
  justify-content: space-between;
  margin: 40px auto 0;
  gap: 80px 0;
}
@media screen and (max-width: 767px) {
  .about_features_list {
    grid-template-columns: 1fr;
    margin: 70px auto 0;
  }
}
.about_features_list li {
  position: relative;
  border-radius: 10px;
  background: #fff;
  z-index: 1;
}
.about_features_list li .font_en {
  top: 0;
  left: 50%;
  transform: translate(-50%, -70%);
  font-size: 100px;
  color: #AA0414;
  opacity: 0.3;
  letter-spacing: 0.5rem;
  line-height: 1;
  z-index: -1;
}
.about_features_list li:nth-child(2) {
  transform: translate(0, 30px);
}
@media screen and (max-width: 767px) {
  .about_features_list li:nth-child(2) {
    transform: translate(0, 0px);
  }
}
.about_features_list_text {
  padding: 25px 20px;
}
.about_features_list_text h3 {
  color: #671117;
  text-align: center;
  font-size: 2.2rem;
}
.about_features_list_text p {
  margin: 5px auto 0;
}
.about_staff {
  padding: 100px 0;
}
.about_staff_post {
  color: #671117;
  font-size: 1.2rem;
}
.about_staff_name {
  font-size: 2.9rem;
  display: flex;
  align-items: center;
  color: #671117;
  letter-spacing: 0.3rem;
  line-height: 1.2;
}
@media screen and (max-width: 767px) {
  .about_staff_name {
    font-size: 2rem;
    letter-spacing: 0.2rem;
  }
}
.about_staff .font_en {
  font-size: 1.1rem;
  margin-left: 10px;
  color: #AA0414;
}
.about_staff_text {
  margin: 30px auto 0;
}
@media screen and (max-width: 767px) {
  .about_staff_text {
    margin: 15px auto 0;
  }
}
.about_staff_brother {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 385px);
  gap: 50px 0;
  justify-content: space-between;
  background: linear-gradient(to top, #fff 0, rgba(255, 255, 255, 0.7) 10%, rgba(255, 255, 255, 0) 100%);
}
@media screen and (max-width: 767px) {
  .about_staff_brother {
    grid-template-columns: 1fr;
  }
}
.about_staff_brother_fuki {
  top: 50px;
  left: 50%;
  transform: translate(-50%, 0);
  text-align: center;
  color: #671117;
  font-size: 2.3rem;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .about_staff_brother_fuki {
    font-size: 1.8rem;
    white-space: nowrap;
    position: inherit;
    top: 0px;
    left: 0%;
    transform: translate(0%, 0);
    margin-bottom: -40px;
  }
}
.about_staff_brother_img {
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 0);
  max-width: 470px;
  width: 100%;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .about_staff_brother_img {
    position: inherit;
    left: 0%;
    transform: translate(0%, 0);
  }
}
.about_staff_brother_sec {
  margin: 250px 0 0;
}
@media screen and (max-width: 767px) {
  .about_staff_brother_sec {
    margin: 0px 0 0;
  }
}
.about_staff_brother_shingo .about_staff_info {
  display: inline-block;
  padding-left: 90px;
}
@media screen and (max-width: 767px) {
  .about_staff_brother_shingo .about_staff_info {
    padding-left: 0px;
  }
}
.about_staff_member {
  border: 3px solid #671117;
  border-right: none;
  border-left: none;
  margin: 40px auto 0;
  padding: 40px 0px;
}
.about_staff_member_sec {
  max-width: 920px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 130px 1fr;
  justify-content: space-between;
  gap: 20px 30px;
  margin: 0 auto 30px;
}
@media screen and (max-width: 767px) {
  .about_staff_member_sec {
    grid-template-columns: 1fr;
    margin: 0 auto 50px;
  }
}
.about_staff_member_sec_img {
  border-radius: 100%;
  overflow: hidden;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .about_staff_member_sec_img {
    max-width: 150px;
  }
}
.about_staff_member_sec .about_staff_name {
  font-size: 2rem;
}
.about_staff_member_sec .about_staff_text {
  margin-top: 10px;
  line-height: 1.8;
  font-size: 1.3rem;
  letter-spacing: 0rem;
}
.about_staff_recruit {
  padding: 60px 60px;
  position: relative;
  margin: 40px auto 0;
}
@media screen and (max-width: 767px) {
  .about_staff_recruit {
    padding: 60px 25px;
  }
}
.about_staff_recruit .deco {
  top: 0;
  left: 0;
  max-width: 210px;
  width: 100%;
  transform: translate(-10%, -10%);
}
@media screen and (max-width: 767px) {
  .about_staff_recruit .deco {
    max-width: 150px;
  }
}
.about_staff_recruit .div_W {
  display: grid;
  grid-template-columns: 330px 1fr;
  gap: 30px;
  color: #fff;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .about_staff_recruit .div_W {
    grid-template-columns: 1fr;
  }
}
.about_staff_recruit .div_W .div_L h3 {
  margin-bottom: 0;
}
.about_staff_recruit .div_W .div_L h3 .headline_en {
  color: #fff;
}
.about_staff_recruit .div_W .div_R .btn a {
  max-width: none;
  font-size: 1.8rem;
}
@media screen and (max-width: 767px) {
  .about_staff_recruit .div_W .div_R .btn a {
    font-size: 1.6rem;
  }
}
.about_staff_recruit .div_W .div_R .btn a span {
  background-image: url(../images/icon_arrow_B.svg);
  background-position: center right 25px;
}
@media screen and (max-width: 767px) {
  .about_staff_recruit .div_W .div_R .btn a span {
    background-position: center right 5px;
  }
}
.about_staff_predecessor {
  background: #FFF7EE;
  border-radius: 10px;
  padding: 70px 40px 40px;
  margin: 80px auto 0;
  position: relative;
}
@media screen and (max-width: 767px) {
  .about_staff_predecessor {
    padding: 50px 25px 40px;
  }
}
.about_staff_predecessor .deco {
  top: 0;
  left: 50%;
  transform: translate(-50%, -70%);
}
.about_staff_predecessor .deco h3 {
  display: inline-block;
  background: #AA0414;
  padding: 5px 10px;
  width: 310px;
  border-radius: 5px;
  text-align: center;
  font-size: 2.2rem;
  color: #fff;
  position: relative;
}
@media screen and (max-width: 767px) {
  .about_staff_predecessor .deco h3 {
    width: 210px;
    font-size: 1.8rem;
  }
}
.about_staff_predecessor .deco h3::before, .about_staff_predecessor .deco h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 64px;
  height: 50px;
  background-size: 100% auto;
}
@media screen and (max-width: 767px) {
  .about_staff_predecessor .deco h3::before, .about_staff_predecessor .deco h3::after {
    width: 45.7142857143px;
    height: 35.7142857143px;
  }
}
.about_staff_predecessor .deco h3::before {
  background: url(../images/deco_ribon_L.svg) no-repeat center;
  left: 0;
  transform: translate(-80%, 28%);
}
.about_staff_predecessor .deco h3::after {
  background: url(../images/deco_ribon_R.svg) no-repeat center;
  right: 0;
  transform: translate(80%, 28%);
}
.about_staff_predecessor::before {
  content: "";
  position: absolute;
  border: 1px solid #671117;
  border-radius: 10px;
  width: 100%;
  height: 100%;
  top: 5px;
  left: 5px;
}
.about_staff_predecessor .div_W {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 20px;
}
@media screen and (max-width: 767px) {
  .about_staff_predecessor .div_W {
    grid-template-columns: 1fr;
  }
}
.about_staff_predecessor_sec {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 20px 20px;
}
@media screen and (max-width: 767px) {
  .about_staff_predecessor_sec {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 767px) {
  .about_staff_predecessor_sec figure {
    max-width: 70%;
    width: 100%;
    margin: 0 auto;
  }
}
.about_staff_predecessor_sec .about_staff_name {
  font-size: 2rem;
}
.about_staff_predecessor_sec .about_staff_name .font_en {
  font-size: 1rem;
}
.about_staff_predecessor_sec .about_staff_text {
  margin-top: 15px;
  font-size: 1.3rem;
}
.about_history {
  padding: 100px 0 0px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .about_history {
    padding: 80px 0;
  }
}
.about_history::before {
  position: absolute;
  content: "";
  background: #fff;
  height: 190px;
  bottom: 0;
  width: 100%;
}
.about_history_list_sec {
  position: relative;
  z-index: 1;
}
.about_history_list_sec_year {
  font-size: 4rem;
  top: 15px;
  left: 0;
  color: #AA0414;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .about_history_list_sec_year {
    font-size: 4.4rem;
  }
}
.about_history_list_sec_img {
  width: 100%;
  margin: 0 auto;
  padding: 40px 20px 0;
}
@media screen and (max-width: 767px) {
  .about_history_list_sec_img {
    padding-bottom: 20px;
  }
}
.about_history_list ul {
  display: grid;
  grid-template-columns: repeat(3, 260px);
  justify-content: space-between;
  gap: 120px 0;
  position: relative;
}
@media screen and (max-width: 767px) {
  .about_history_list ul {
    grid-template-columns: 1fr;
    gap: 50px 0;
  }
}
.about_history_list ul::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 120px;
  transform: translate(-50%, 0);
  background: url(../images/deco_history.svg) no-repeat center;
  background-size: auto 100%;
  width: 3620px;
  height: 440px;
}
@media screen and (max-width: 767px) {
  .about_history_list ul::before {
    content: none;
  }
}
.about_history_list ul li {
  position: relative;
}
.about_history_list ul li::before {
  content: "";
  position: absolute;
  background: #fff;
  border-radius: 100%;
  height: 260px;
  width: 260px;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
}
.about_history_list ul li:last-child .about_history_list_sec_new {
  top: 0;
  right: 0;
  max-width: 180px;
  width: 100%;
  transform: translate(100%, -60%);
}
@media screen and (max-width: 767px) {
  .about_history_list ul li:last-child .about_history_list_sec_new {
    font-size: 1.6rem;
  }
}
.about_history_list ul li:last-child .about_history_list_sec_year {
  background: #671117;
  color: #fff;
  font-size: 6.3rem;
  border-radius: 10px;
  width: 290px;
  line-height: 1;
  padding: 0px 0 10px 30px;
  letter-spacing: 0.5rem;
  top: 0;
  left: 0;
  transform: translate(-100px, -20px);
}
@media screen and (max-width: 767px) {
  .about_history_list ul li:last-child .about_history_list_sec_year {
    transform: translate(-50%, -20px);
    left: 50%;
    text-align: center;
    padding: 0px 0 10px 0px;
    font-size: 5.8rem;
  }
}
.about_history_list ul li:last-child .about_history_list_sec_img {
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .about_history_list ul li:last-child .about_history_list_sec_img {
    padding: 50px 60px 0;
  }
}
.about_history_list ul li:last-child p {
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
  color: #671117;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .about_history_list ul li:last-child p {
    font-size: 1.6rem;
  }
}
.about_history_list ul li:last-child .btn {
  left: 50%;
  transform: translate(-50%, 0);
}
.about_history_list ul li:last-child .btn a {
  width: 320px;
}
.about_history_list ul li:last-child::before {
  width: 380px;
  height: 380px;
  border: 10px solid #AA0414;
  top: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 10px 10px 0px 0 rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 767px) {
  .about_history_list ul li:last-child::before {
    font-size: 1.6rem;
  }
}
.about_history_list p {
  margin: 10px auto 0;
  font-size: 1.3rem;
  line-height: 1.8;
  letter-spacing: 0.1rem;
}
.about_history_bg {
  height: 380px;
  width: calc(100vw - 100px);
  margin: 150px auto 0;
  background: url(../images/bg_about.jpg);
  border-radius: 10px;
  background-size: cover;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .about_history_bg {
    height: 200px;
    width: calc(100vw - 40px);
    margin: 140px auto 0;
  }
}
.about_cafe {
  padding: 100px 0;
}
@media screen and (max-width: 767px) {
  .about_cafe {
    padding: 0px 0 80px;
  }
}
.about_cafe .div_W {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px 70px;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .about_cafe .div_W {
    grid-template-columns: 1fr;
  }
}
.about_cafe .div_W .div_L {
  background: url(../images/img_cafe_about.jpg) no-repeat center;
  background-size: cover;
  height: 100%;
  border-radius: 10px;
}
@media screen and (max-width: 767px) {
  .about_cafe .div_W .div_L {
    height: 200px;
  }
}
.about_cafe .div_W .div_R h3 {
  margin-top: 30px;
  color: #671117;
  font-size: 2.8rem;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .about_cafe .div_W .div_R h3 {
    margin-top: 0px;
    font-size: 2.2rem;
  }
}
.about_cafe .div_W .div_R p {
  margin: 30px auto 0;
}
.about_cafe_close {
  margin: 30px auto 0;
  font-weight: bold;
}
.about_cafe_info {
  margin: 15px auto 0;
  border: 2px solid #671117;
  border-right: none;
  border-left: none;
  padding: 20px 40px;
  color: #671117;
}
@media screen and (max-width: 767px) {
  .about_cafe_info {
    padding: 20px 20px;
  }
}
.about_cafe_info th {
  padding-right: 25px;
  letter-spacing: 0.1rem;
}
.about_cafe_list {
  margin: 60px auto 0;
}
.about_cafe_list ul {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px 60px;
}
@media screen and (max-width: 767px) {
  .about_cafe_list ul {
    grid-template-columns: 1fr 1fr;
    gap: 30px 20px;
  }
}
.about_cafe_list ul li {
  text-align: center;
  color: #671117;
}
@media screen and (max-width: 767px) {
  .about_cafe_list ul li {
    text-align: left;
    letter-spacing: 0;
  }
}
.about_cafe_list ul li img {
  border-radius: 400px;
  overflow: hidden;
}
.about_cafe_list ul li p {
  margin: 20px auto 0;
  font-weight: bold;
}
.about_cafe_list ul li p .font_small {
  font-size: 1.1rem;
  letter-spacing: 0;
}
.about_cafe_list .btn a {
  margin: 50px auto 0;
}
@media screen and (max-width: 767px) {
  .about_cafe_list .btn a {
    margin: 0px auto 0;
  }
}
.about_recruit01 {
  padding: 100px 0 60px;
}
@media screen and (max-width: 767px) {
  .about_recruit01 {
    padding: 80px 0 40px;
  }
}
.about_recruit02 {
  padding: 0 0 100px;
  position: relative;
}
.about_recruit02::before {
  position: absolute;
  content: "";
  background: #671117;
  height: 160px;
  top: 0;
  width: 100%;
}
.about_recruit .title_lead {
  text-align: center;
  color: #fff;
}
.about_recruit_message {
  width: 100%;
  margin: 0px auto 0;
  position: relative;
  z-index: 1;
  background: linear-gradient(90deg, #fff 0%, #fff 50%, transparent 50%, transparent 100%);
}
@media screen and (max-width: 767px) {
  .about_recruit_message {
    padding: 0px 20px;
  }
}
.about_recruit_message .inner {
  max-width: 1200px;
  background: #fff;
  border-radius: 0 10px 10px 0;
}
@media screen and (max-width: 767px) {
  .about_recruit_message .inner {
    padding: 50px 20px;
  }
}
.about_recruit_message .inner .div_W {
  max-width: 980px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 50% 1fr;
  gap: 30px;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .about_recruit_message .inner .div_W {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 767px) {
  .about_recruit_message .inner .div_W .div_L {
    order: 2;
  }
}
.about_recruit_message .inner .div_W h3 {
  font-size: 3.2rem;
  color: #671117;
  line-height: 1.6;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .about_recruit_message .inner .div_W h3 {
    font-size: 2.2rem;
  }
}
.about_recruit_message_signature {
  margin: 20px auto 0;
}
.about_recruit_message_signature .about_staff_name {
  font-size: 2.3rem;
}
.about_recruit_message_signature .about_staff_name .font_en {
  font-size: 1.2rem;
  margin-left: 15px;
  color: #AA0414;
}
.about_recruit_list {
  margin: 70px auto 0;
}
.about_recruit_list ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px 100px;
}
@media screen and (max-width: 767px) {
  .about_recruit_list ul {
    grid-template-columns: 1fr;
  }
}
.about_recruit_list_img {
  background: #F7E7D7;
  border-radius: 100%;
  width: 100%;
  max-width: 260px;
  margin: 0 auto;
}
.about_recruit_list h4 {
  color: #671117;
  font-weight: bold;
  font-size: 1.8rem;
  text-align: center;
  margin: 20px auto 10px;
}
.about_recruit_list p {
  line-height: 1.8;
}
.about_recruit_note {
  margin: 70px auto 0;
  padding: 80px 20px;
}
.about_recruit_note_sec {
  background: #fff;
  border-radius: 10px;
  max-width: 850px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  padding: 50px 20px;
}
.about_recruit_note_sec::before {
  content: "";
  position: absolute;
  border: 25px solid transparent;
  border-top: 20px solid #fff;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 100%);
}
.about_recruit_note_sec h4 {
  display: inline-block;
  color: #fff;
  background: #AA0414;
  border-radius: 200px;
  text-align: center;
  max-width: 300px;
  width: 100%;
  border: 15px solid #fff;
  margin: 0 auto;
  padding: 5px;
  font-size: 1.6rem;
  font-weight: bold;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  .about_recruit_note_sec h4 {
    max-width: 230px;
  }
}
.about_recruit_note_sec table {
  max-width: 700px;
  width: 100%;
  margin: 0 auto;
  border-bottom: 1px solid #AA0414;
}
.about_recruit_note_sec table tr {
  border-top: 1px solid #AA0414;
}
.about_recruit_note_sec table tr th {
  color: #671117;
  width: 180px;
  text-align: center;
  padding: 15px;
}
@media screen and (max-width: 767px) {
  .about_recruit_note_sec table tr th {
    width: 100%;
    float: left;
    padding-bottom: 0;
  }
}
.about_recruit_note_sec table tr td {
  vertical-align: middle;
  padding: 15px;
}
@media screen and (max-width: 767px) {
  .about_recruit_note_sec table tr td {
    width: 100%;
    float: left;
  }
}
.about_recruit_note_entry {
  margin: 50px auto 0;
  border-radius: 10px;
  padding: 30px 20px;
  max-width: 860px;
  width: 100%;
}
.about_recruit_note_entry h4 {
  text-align: center;
  font-size: 1.8rem;
  color: #671117;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .about_recruit_note_entry h4 {
    font-size: 1.6rem;
  }
}
.about_recruit_note_entry_tel {
  background: #F7E7D7;
  border-radius: 10px;
  box-shadow: 5px 5px 0 0 rgba(0, 0, 0, 0.1);
  text-align: center;
  padding: 20px;
  max-width: 700px;
  width: 100%;
  margin: 15px auto 0;
  color: #671117;
}
.about_recruit_note_entry_tel .fuki span {
  display: inline-block;
}
.about_recruit_note_entry_tel .btn_tel {
  margin: 15px auto 5px;
}
.about_recruit_note_entry_tel .btn_tel a {
  border: none;
  max-width: 450px;
  width: 100%;
  margin: 0 auto;
  color: #AA0414;
}
@media screen and (max-width: 767px) {
  .about_recruit_note_entry_tel .btn_tel a span {
    font-size: 2rem;
    padding-left: 20px;
    background-size: 15px auto;
  }
}
.about_recruit_note_entry .div_W {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0px 30px;
  margin: 10px auto 0;
  max-width: 700px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .about_recruit_note_entry .div_W {
    grid-template-columns: 1fr;
  }
}
.about_recruit_note_entry .div_W a {
  max-width: none;
}
@media screen and (max-width: 767px) {
  .about_recruit_note_entry .div_W a {
    font-size: 1.3rem;
    letter-spacing: 0;
    text-align: left;
  }
}

/*------------------------------------------------------------
	LINEUP / お菓子一覧ページ
------------------------------------------------------------*/
.lineup {
  padding: 100px 0;
}
@media screen and (max-width: 767px) {
  .lineup {
    padding: 80px 0;
  }
}
.lineup .title_lead {
  text-align: center;
}
.lineup_musubi {
  margin: 40px auto 0;
}
.lineup_musubi a {
  max-width: 800px;
  margin: 0 auto;
  padding: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, 0) 35%, #FFF7EE 50%, #FFF7EE 100%), url(../images/img_lineup_musubi_bg.jpg) no-repeat center left;
  background-size: auto 100%;
}
@media screen and (max-width: 767px) {
  .lineup_musubi a {
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, 0) 35%, #FFF7EE 50%, #FFF7EE 100%), url(../images/img_lineup_musubi_bg.jpg) no-repeat center left;
  }
}
.lineup_musubi a .div_W {
  display: grid;
  grid-template-columns: 48% 1fr;
  align-items: center;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .lineup_musubi a .div_W {
    grid-template-columns: 1fr;
  }
}
.lineup_musubi a .div_W .div_L {
  position: relative;
  height: 100%;
}
.lineup_musubi a .div_W .div_L img {
  position: absolute;
  bottom: 0px;
  left: 0%;
  transform: translate(3%, 7%);
  max-width: 340px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .lineup_musubi a .div_W .div_L img {
    position: inherit;
    max-width: 60%;
    margin: 0 auto;
    transform: translate(3%, -7%);
  }
}
.lineup_musubi a .div_W .div_R {
  height: 100%;
  padding: 40px 20px;
}
@media screen and (max-width: 767px) {
  .lineup_musubi a .div_W .div_R {
    padding: 0px 20px 20px;
    text-align: center;
  }
}
.lineup_musubi a .div_W .div_R span {
  background: none;
  line-height: 1.6;
  font-size: 2.7rem;
}
@media screen and (max-width: 767px) {
  .lineup_musubi a .div_W .div_R span {
    font-size: 2rem;
  }
}
.lineup_musubi a .div_W .div_R .font_small {
  font-size: 1.2rem;
  display: inline;
  vertical-align: middle;
}
.lineup_musubi.btn a span {
  display: block;
  background-size: 15px auto;
  background-position: center right 30px;
}
.lineup_nav {
  margin: 50px auto 0;
}
.lineup_nav ul {
  display: grid;
  grid-template-columns: repeat(7, 120px);
  gap: 25px 25px;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .lineup_nav ul {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px 15px;
  }
}
.lineup_nav ul li {
  background: #F7E7D7;
  border-radius: 10px;
  height: 120px;
  position: relative;
  transition: 0.2s;
}
@media screen and (max-width: 767px) {
  .lineup_nav ul li {
    height: 110px;
  }
}
.lineup_nav ul li::before {
  content: "";
  position: absolute;
  border: 10px solid transparent;
  border-top: 10px solid #F7E7D7;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 100%);
}
.lineup_nav ul li:hover {
  opacity: 0.6;
  transition: 0.2s;
  transform: translate(0, 5px);
}
.lineup_nav ul li a {
  display: flex;
  height: 100%;
  width: 100%;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  font-weight: bold;
  padding: 15px;
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  .lineup_nav ul li a {
    padding: 10px 5px;
    letter-spacing: 0;
  }
}
.lineup_nav ul li a span {
  display: block;
}
.lineup_nav_img {
  width: 100%;
}
.lineup_sec_wrap {
  display: grid;
  grid-template-columns: 455px 455px;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .lineup_sec_wrap {
    grid-template-columns: 1fr 1fr;
  }
}
.lineup_sec_about .div_W {
  display: grid;
  grid-template-columns: 50% 435px;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .lineup_sec_about .div_W {
    grid-template-columns: 1fr;
  }
}
.lineup_sec_about .div_W h4 {
  font-size: 2.8rem;
  line-height: 1.5;
  color: #671117;
}
@media screen and (max-width: 767px) {
  .lineup_sec_about .div_W h4 {
    font-size: 2.2rem;
    margin: 30px auto 0;
  }
}
.lineup_sec_about .div_W h4 .color_accent {
  font-size: 1.5rem;
}
@media screen and (max-width: 767px) {
  .lineup_sec_about .div_W h4 .color_accent {
    display: inline-block;
  }
}
.lineup_sec_about .div_W h4 .font_small {
  font-size: 1.3rem;
}
.lineup_sec_about .div_W .title_lead {
  text-align: justify;
  margin-top: 15px;
}
.lineup_sec_about .div_W .font_small {
  font-size: 1.2rem;
}
.lineup_sec_about_note {
  opacity: 0.6;
  font-size: 1.3rem;
  letter-spacing: 0.1rem;
  margin: 25px auto 0;
}
.lineup_sec_about_price {
  margin: 30px auto 0;
  border: 2px solid #671117;
  color: #671117;
  border-left: none;
  border-right: none;
  padding: 20px 0;
  display: grid;
  grid-template-columns: 160px auto;
  gap: 0 25px;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .lineup_sec_about_price {
    grid-template-columns: 1fr;
  }
}
.lineup_sec_about_price_title {
  border-right: 1px dotted #671117;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  line-height: 1.5;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .lineup_sec_about_price_title {
    border-right: none;
    border-bottom: 1px dotted #671117;
    padding: 0 20px 0px;
    margin-bottom: 25px;
  }
}
@media screen and (max-width: 767px) {
  .lineup_sec_about_price_list {
    display: flex;
    justify-content: center;
  }
}
.lineup_sec_about_price_note {
  text-align: right;
  font-size: 1.2rem;
  margin: 15px auto 0;
}
@media screen and (max-width: 767px) {
  .lineup_sec_about_price_note {
    text-align: left;
  }
}
.lineup_sec#cake, .lineup_sec#unbaked, .lineup_sec#baked, .lineup_sec#wholecake, .lineup_sec#photocake {
  grid-column-start: 1;
  grid-column-end: 3;
}
.lineup_sec#cafe .lineup_posts, .lineup_sec#gelato .lineup_posts {
  display: inherit;
}
.lineup_sec#cafe .lineup_post, .lineup_sec#gelato .lineup_post {
  max-width: none;
}
.lineup_sec#cafe .lineup_post_img img, .lineup_sec#gelato .lineup_post_img img {
  aspect-ratio: 2/1;
}
@media screen and (max-width: 767px) {
  .lineup_sec#cafe .lineup_post_img img, .lineup_sec#gelato .lineup_post_img img {
    aspect-ratio: inherit;
  }
}
.lineup_sec#cafe {
  grid-column-start: 1;
  grid-column-end: 2;
}
@media screen and (max-width: 767px) {
  .lineup_sec#cafe {
    grid-column-start: 1;
    grid-column-end: 3;
  }
}
.lineup_sec#gelato {
  grid-column-start: 2;
  grid-column-end: 3;
}
@media screen and (max-width: 767px) {
  .lineup_sec#gelato {
    grid-column-start: 1;
    grid-column-end: 3;
  }
}
.lineup_sec h3 {
  background: #671117;
  color: #fff;
  text-align: center;
  width: 100%;
  padding: 5px 20px;
  border-radius: 10px;
  font-size: 2.4rem;
  margin: 60px auto 30px;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .lineup_sec h3 {
    font-size: 2.2rem;
  }
}
.lineup_sec_reserve {
  background: #AA0414;
  color: #fff;
  position: relative;
  height: 110px;
  padding: 20px;
  margin: 50px auto;
}
@media screen and (max-width: 767px) {
  .lineup_sec_reserve {
    height: auto;
    border-radius: 10px;
  }
}
.lineup_sec_reserve::before, .lineup_sec_reserve::after {
  content: "";
  position: absolute;
  border: 55px solid transparent;
  top: 50%;
}
@media screen and (max-width: 767px) {
  .lineup_sec_reserve::before, .lineup_sec_reserve::after {
    content: none;
  }
}
.lineup_sec_reserve::before {
  border-left: 35px solid #fff;
  left: 0;
  transform: translate(0, -50%);
}
.lineup_sec_reserve::after {
  border-right: 35px solid #fff;
  right: 0;
  transform: translate(0, -50%);
}
.lineup_sec_reserve .div_W {
  display: grid;
  grid-template-columns: 340px 400px;
  max-width: 800px;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .lineup_sec_reserve .div_W {
    grid-template-columns: 1fr;
  }
}
.lineup_sec_reserve .div_W .div_L {
  font-size: 2.1rem;
  letter-spacing: 0.3rem;
}
@media screen and (max-width: 767px) {
  .lineup_sec_reserve .div_W .div_L {
    font-size: 1.7rem;
    letter-spacing: 0.2rem;
    text-align: center;
  }
}
.lineup_sec_reserve .div_W .div_R .btn {
  margin-top: 0;
  position: relative;
}
@media screen and (max-width: 767px) {
  .lineup_sec_reserve .div_W .div_R .btn {
    margin-top: 10px;
  }
}
.lineup_sec_reserve .div_W .div_R .btn::before, .lineup_sec_reserve .div_W .div_R .btn::after {
  content: "";
  position: absolute;
  border: 1px solid #fff;
  height: 1px;
  width: 40px;
  left: 0;
}
@media screen and (max-width: 767px) {
  .lineup_sec_reserve .div_W .div_R .btn::before, .lineup_sec_reserve .div_W .div_R .btn::after {
    content: none;
  }
}
.lineup_sec_reserve .div_W .div_R .btn::before {
  top: 10px;
  transform: translate(-120%, 0) rotate(20deg);
}
.lineup_sec_reserve .div_W .div_R .btn::after {
  bottom: 10px;
  transform: translate(-120%, 0) rotate(-20deg);
}
.lineup_sec_reserve .div_W .div_R .btn a {
  max-width: 400px;
  font-size: 3.1rem;
}
.lineup_sec_reserve .div_W .div_R .btn a span {
  background-image: url(../images/icon_tel.svg);
}
.lineup_sec_flow {
  margin: 40px auto 0;
  border: 2px solid #671117;
  border-left: none;
  border-right: none;
  padding: 15px;
}
@media screen and (max-width: 767px) {
  .lineup_sec_flow {
    padding: 15px 0;
  }
}
.lineup_sec_flow h4 {
  border-bottom: 1px dotted #671117;
  padding-bottom: 2px;
  color: #671117;
  width: 100%;
  font-size: 1.8rem;
  font-weight: bold;
}
.lineup_sec_flow_cont {
  margin: 25px auto 0;
  background: #FFF7EE;
  border-radius: 10px;
  padding: 20px 40px;
  position: relative;
  color: #671117;
  letter-spacing: 0.1rem;
}
.lineup_sec_flow_cont_wrap {
  display: grid;
  grid-template-columns: 450px 450px;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .lineup_sec_flow_cont_wrap {
    grid-template-columns: 1fr;
    display: inherit;
  }
}
@media screen and (max-width: 767px) {
  .lineup_sec_flow_cont {
    padding: 20px 20px 20px 40px;
  }
}
.lineup_sec_flow_cont::before {
  content: "";
  position: absolute;
  border: 10px solid transparent;
  border-left: 15px solid #671117;
  right: 0;
  top: 50%;
  transform: translate(45px, -50%);
}
.lineup_sec_flow_cont:last-of-type::before {
  content: none;
}
.lineup_sec_flow_cont_num {
  position: absolute;
  top: 10px;
  left: -20px;
  background: #671117;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  width: 50px;
  height: 50px;
  font-weight: bold;
  font-size: 2.4rem;
}
.lineup_sec_flow_cont_sub {
  margin: 15px auto 0;
  text-align: center;
}
.lineup_sec_flow_cont_sub::before, .lineup_sec_flow_cont_sub::after {
  height: 20px;
  border-color: #671117;
  bottom: 3px;
}
.lineup_sec_flow_cont .btn {
  margin-top: 10px;
}
.lineup_sec_flow_cont .btn a {
  max-width: none;
  height: 60px;
}
@media screen and (max-width: 767px) {
  .lineup_sec_flow_cont .btn a {
    height: auto;
  }
}
@media screen and (max-width: 767px) {
  .lineup_sec_flow_cont .btn a span {
    font-size: 2rem;
  }
}
.lineup_sec_flow_cont .btn.btn_tel span {
  background-image: url(../images/icon_tel.svg);
}
.lineup_sec_flow_note {
  text-align: right;
  font-size: 1.2rem;
  margin: 10px auto 0;
}
.lineup_sec_note {
  margin: 40px auto 0;
  border: 3px solid #AA0414;
  border-radius: 10px;
  padding: 20px;
  color: #AA0414;
  font-weight: bold;
  position: relative;
}
@media screen and (max-width: 767px) {
  .lineup_sec_note {
    padding: 30px 20px 20px;
  }
}
.lineup_sec_note .deco {
  background: #AA0414;
  height: 50px;
  width: 50px;
  color: #fff;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2.4rem;
  border-radius: 100%;
  top: 50%;
  left: 0%;
  transform: translate(-30%, -50%);
}
@media screen and (max-width: 767px) {
  .lineup_sec_note .deco {
    top: 0%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}
.lineup_sec_note .div_W {
  display: grid;
  grid-template-columns: 210px auto;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .lineup_sec_note .div_W {
    grid-template-columns: 1fr;
  }
}
.lineup_sec_note .div_W .div_L {
  font-size: 1.8rem;
  text-align: center;
}
.lineup_sec_note .div_W .div_R {
  line-height: 1.8;
  border-left: 1px solid #AA0414;
  padding-left: 50px;
}
@media screen and (max-width: 767px) {
  .lineup_sec_note .div_W .div_R {
    padding-left: 0px;
    border-left: none;
    border-top: 1px solid #AA0414;
    padding-top: 15px;
  }
}

/*------------------------------------------------------------
	MEDIA / メディアの方へ
------------------------------------------------------------*/
.media {
  padding: 100px 0;
}
@media screen and (max-width: 767px) {
  .media {
    padding: 80px 0;
  }
}
.media .title_lead {
  text-align: center;
}
.media_list ul {
  display: grid;
  justify-content: center;
  grid-template-columns: repeat(3, 200px);
  gap: 40px 100px;
  margin: 50px auto 0;
}
@media screen and (max-width: 767px) {
  .media_list ul {
    grid-template-columns: repeat(1, 1fr);
    gap: 25px 25px;
  }
}
@media screen and (max-width: 767px) {
  .media_list ul li {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 0 25px;
    justify-content: center;
  }
}
.media_list ul li figure {
  background: #AA0414;
  height: 200px;
  width: 200px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 33%;
}
@media screen and (max-width: 767px) {
  .media_list ul li figure {
    height: 80px;
    width: 100%;
  }
}
.media_list ul li p {
  text-align: center;
  color: #671117;
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.6;
  margin: 15px auto 0;
}
@media screen and (max-width: 767px) {
  .media_list ul li p {
    text-align: left;
    display: block;
    width: 100%;
    font-size: 1.6rem;
  }
}

.form {
  padding: 100px 0;
}
.form .title_lead {
  text-align: center;
}
.form_wrap {
  max-width: 800px;
  width: 100%;
  margin: 40px auto 0;
}
.form_privacy {
  max-width: 800px;
  width: 100%;
  margin: 60px auto 0;
  height: 240px;
  background: #fff;
  padding: 30px 30px;
  border-radius: 10px;
  overflow-y: scroll;
  font-size: 1.3rem;
}
.form_privacy_inner h3 {
  margin: 0 auto 20px;
  text-align: center;
  font-size: 2.2rem;
  line-height: 1.4;
}
.form_privacy_inner h3 .font_small {
  font-size: 1.2rem;
}
.form_privacy_inner h4 {
  font-size: 1.6rem;
  font-weight: bold;
}
.form_privacy_inner h5 {
  font-size: 1.4rem;
  font-weight: bold;
  margin-top: 15px;
}
.form a[href^="tel:"] {
  display: inline-block;
}

.form_list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.form_colunm01 {
  position: relative;
  width: 100%;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .form_colunm01 {
    margin-bottom: 10px;
  }
}
.form_colunm02 {
  flex-basis: 300px;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .form_colunm02 {
    margin-bottom: 10px;
  }
}
.form_colunm_full {
  display: flex;
  width: 100%;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .form_colunm_full {
    flex-direction: column;
    margin-bottom: 30px;
  }
}
.form_colunm_full .form_h {
  flex-basis: 250px;
}
@media screen and (max-width: 767px) {
  .form_colunm_full .form_h {
    flex-basis: 100%;
  }
}
.form_colunm_full .form_cont {
  flex: 1;
  word-break: break-all;
}
.form_h {
  font-weight: 700;
  margin-bottom: 5px;
}
@media screen and (max-width: 767px) {
  .form_h {
    margin-bottom: 0;
  }
}
.form_cont_in {
  display: flex;
  align-items: center;
}
.form_cont_in:not(:first-of-type) {
  margin-top: 10px;
}
.form label {
  font-weight: 700;
  font-size: 1.6rem;
}
.form .required {
  display: inline-block;
  color: #AA0414;
  margin-left: 5px;
}
.form .example {
  display: inline-block;
  width: 100%;
  color: #76292e;
  font-size: 1.4rem;
}
@media screen and (max-width: 767px) {
  .form .example {
    font-size: 1.2rem;
  }
}
.form .example a {
  display: inline-block;
  text-decoration: underline;
}
.form input[type=text],
.form input[type=email],
.form textarea,
.form select {
  background: #fff;
  width: 100%;
  padding: 8px 15px;
  font-size: 1.5rem;
  color: #671117 !important;
  border-radius: 10px;
}
@media screen and (max-width: 767px) {
  .form input[type=text],
.form input[type=email],
.form textarea,
.form select {
    font-size: 1.6rem;
  }
}
.form input[type=number] {
  background: #fff;
  padding: 8px 15px;
  margin-right: 10px;
  font-size: 1.5rem;
  color: #671117 !important;
  border-radius: 10px;
}
.form input[type=radio]:focus-visible + span::before,
.form input[type=checkbox]:focus-visible + span::before {
  outline: 1px #671117 auto;
  outline-offset: 4px;
}
.form select {
  cursor: pointer;
}
.form_select {
  position: relative;
  flex-grow: 2;
}
.form_select::before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 5px 0 5px;
  border-color: #671117 transparent transparent transparent;
  position: absolute;
  top: 20px;
  right: 20px;
}

.page_contact input[type=text],
.page_contact input[type=email],
.page_contact textarea,
.page_contact select,
.page_error input[type=text],
.page_error input[type=email],
.page_error textarea,
.page_error select {
  background: #fff;
  border: 1px #671117 solid;
}
.page_contact input[type=number],
.page_error input[type=number] {
  background: #fff;
  border: 1px #671117 solid;
}

.form .btn {
  display: inline-flex;
  justify-content: center;
  margin: 30px auto 0;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .form .btn {
    flex-direction: column;
    margin-bottom: 20px;
  }
}
.form .btn_wrap {
  position: relative;
  margin: 0 20px;
  transition: color 0.3s;
}
@media screen and (max-width: 767px) {
  .form .btn_wrap {
    width: 100%;
    margin: 0;
  }
}
.form .btn_wrap:hover::before, .form .btn_wrap:focus-visible::before {
  color: #671117;
}
.form .btn_wrap::before {
  font-size: 3rem;
  color: #fff;
  position: absolute;
  top: 50%;
  right: 30px;
  transform: translateY(-50%);
}
.form .btn_wrap input[type=submit] {
  background: #671117;
  color: #fff;
  border-radius: 10px;
  padding: 15px 90px;
  font-weight: 700;
  font-size: 1.8rem;
  text-align: center;
  transition: 0.2s;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .form .btn_wrap input[type=submit] {
    width: 100%;
    padding: 10px 30px;
    font-size: 1.5rem;
    margin-top: 10px;
  }
}
.form .btn_wrap input[type=submit]:hover, .form .btn_wrap input[type=submit]:focus-visible {
  opacity: 0.6;
  transition: 0.2s;
}
.form .btn_wrap a {
  max-width: 400px;
  width: 100%;
  background: #671117;
  padding: 10px;
  font-weight: 700;
  font-size: 1.4rem;
  color: #fff;
  text-align: center;
  margin: 30px auto 0;
}
.form .btn_wrap a:hover, .form .btn_wrap a:focus-visible {
  background: none;
  color: #671117;
}
.form .btn_wrap a span {
  position: relative;
  padding-left: 30px;
}
.form .btn .form_back input[type=submit] {
  background: #fff;
  color: #671117;
  transition: opacity 0.3s;
}
.form .btn .form_back input[type=submit]:hover, .form .btn .form_back input[type=submit]:focus-visible {
  opacity: 0.7;
}

.mw_wp_form_preview .example {
  display: none;
}
.mw_wp_form_preview .calendar {
  display: none;
}
.mw_wp_form_preview .age::before {
  top: 0;
}
.mw_wp_form_preview .btn_wrap.btn_back::before {
  right: auto;
  left: 30px;
  transform: translateY(-50%) scale(-1, 1);
  color: #671117;
}

.page_error .contact_form,
.page_confirm .contact_form,
.page_thanks .contact_form {
  margin: 50px auto 0;
}
/*ラジオボタン・チェックボタンのカスタマイズ*/
.mw_wp_form .horizontal-item + .horizontal-item {
  display: inline-block;
  margin-left: 10px !important;
}
@media screen and (max-width: 767px) {
  .mw_wp_form .horizontal-item + .horizontal-item {
    margin-left: 0px !important;
  }
}

@media screen and (max-width: 767px) {
  .mw_wp_form .horizontal-item {
    display: inline-block;
    padding: 5px 0 !important;
    margin-left: 0px !important;
    width: 50%;
    float: left;
  }
}

.mwform-radio-field input[type=radio],
.mwform-checkbox-field input[type=checkbox] {
  margin-right: -5px;
  margin-bottom: 10px;
}

.mwform-radio-field span.mwform-radio-field-text,
.mwform-checkbox-field span.mwform-checkbox-field-text {
  position: relative;
  padding-left: 30px;
  font-weight: 700;
  font-size: 90%;
  letter-spacing: 0.3rem;
}

.mwform-radio-field input[type=radio] + span.mwform-radio-field-text:before {
  content: "";
  background: url(../images/icon_radio_off.svg) no-repeat;
  width: 22px;
  height: 22px;
  background-size: contain;
  position: absolute;
  top: -5px;
  left: 0;
}

.mwform-radio-field input[type=radio]:checked + span.mwform-radio-field-text:before {
  content: "";
  background: url(../images/icon_radio_on.svg) no-repeat;
  width: 22px;
  height: 22px;
  background-size: contain;
  position: absolute;
  top: -5px;
  left: 0;
}

.mwform-checkbox-field input[type=checkbox] + span.mwform-checkbox-field-text:before {
  content: "";
  background: url(../images/icon_check_off.svg) no-repeat;
  width: 22px;
  height: 22px;
  background-size: contain;
  position: absolute;
  top: -5px;
  left: 0;
}

.mwform-checkbox-field input[type=checkbox]:checked + span.mwform-checkbox-field-text:before {
  content: "";
  background: url(../images/icon_check_on.svg) no-repeat;
  width: 22px;
  height: 22px;
  background-size: contain;
  position: absolute;
  top: -5px;
  left: 0;
}

.mwform-checkbox-field label,
.mwform-radio-field label {
  cursor: pointer;
}

/*------------------------------------------------------------
NOT FOUND / 404ページ
------------------------------------------------------------*/
@media screen and (max-width: 767px) {
  .error404 .page_headline_h::before {
    font-size: 3rem;
  }
}
.error404_wrap {
  padding: 100px 0;
}
@media screen and (max-width: 767px) {
  .error404_wrap {
    padding: 50px 0;
  }
  .error404_wrap .title_lead {
    font-weight: 500;
    text-align: justify;
  }
}
.error404_wrap .btn a {
  max-width: 500px;
}

/*------------------------------------------------------------
 COMPONENTS / カレンダー
------------------------------------------------------------*/
#page_plan .plan_box .bottom_box .calendar_wrap .calendar_content {
  margin: 10px auto 0;
  width: 100%;
  max-width: 240px;
  height: auto;
}

#page_plan .plan_box .bottom_box .calendar_wrap .calendar_content li {
  border-width: 2px;
  font-size: 12px;
  padding: 5px 0;
  letter-spacing: 0.1em;
}

#page_plan .plan_box .bottom_box .calendar_wrap .calendar_content li span {
  margin: 0 0 0 2px;
  font-size: 10px;
}

.calendar_wrap {
  display: flex;
  flex-direction: column;
}
.calendar_month {
  max-width: 400px;
  width: 100%;
  margin: 0px auto 30px;
  color: #fff;
  text-align: center;
  font-size: 1.6rem;
  border-radius: 10px;
  padding: 10px 5px;
  background: #671117;
  position: relative;
}
.calendar_month::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  background: #671117;
  border-radius: 5px;
  transform: translate(-50%, 40%) scale(0.8, 1) rotate(45deg);
  bottom: 0;
  left: 50%;
  z-index: 0;
}
.calendar_content {
  margin: 0 auto 10px;
  max-width: 560px;
  width: 100%;
  height: auto;
  text-align: center;
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .calendar_content {
    width: 100%;
  }
}
.calendar_content li {
  background-color: #F7E7D7;
  border: 4px #FFF7EE solid;
  width: 14.2857142857%;
  padding: 10px 0;
  color: #671117;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 1.4rem;
  line-height: 1;
}
.calendar_content li.label {
  background-color: #fff;
}
.calendar_content .prev {
  background: #fff;
  text-indent: -200%;
  overflow: hidden;
  visibility: hidden;
}
.calendar_content .next {
  background: #fff;
  text-indent: -200%;
  overflow: hidden;
  visibility: hidden;
}
.calendar_notice {
  color: #671117;
  font-weight: 700;
  font-size: 2.4rem;
  text-align: right;
  line-height: 0.22em;
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .calendar_notice {
    font-size: 1.3rem;
    text-align: center;
  }
}
.calendar_notice_sample {
  display: inline-block;
  background-color: #671117;
  width: 50px;
  height: 30px;
  margin-right: 10px;
  color: #fff;
  text-align: center;
  line-height: 30px;
  vertical-align: middle;
}
@media screen and (max-width: 767px) {
  .calendar_notice_sample {
    width: 30px;
    height: 25px;
  }
}

.calendar_color {
  display: flex;
  justify-content: flex-end;
  margin-top: 20px;
}
.calendar_color li {
  margin-left: 20px;
  display: inline-flex;
  align-items: center;
}
.calendar_color li span {
  background: #671117;
  display: inline-block;
  width: 30px;
  height: 25px;
  margin-right: 10px;
}
.calendar_color li em {
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: 0.22em;
}
@media screen and (max-width: 767px) {
  .calendar_color li em {
    font-size: 1rem;
  }
}

.calendar_wrap .calendar_content .cal_close {
  background-color: #671117;
  color: #fff;
}

.calendar_wrap .calendar_content .cal_event {
  background-color: #671117;
}

.page_lp .calendar_wrap .calendar_content .cal_event {
  background-color: #e8dbdc;
  color: #671117;
}

.ft_contact_calendar_wrap .calendar_wrap {
  margin: 0;
}
.ft_contact_calendar_wrap .calendar_wrap .calendar_content {
  width: 370px;
}
@media screen and (max-width: 767px) {
  .ft_contact_calendar_wrap .calendar_wrap .calendar_content {
    width: 100%;
  }
}
.ft_contact_calendar_wrap .calendar_wrap .calendar_content li {
  font-family: "Roboto", sans-serif;
  font-weight: 600;
  padding: 10px 0;
  font-size: 1.6rem;
}
.ft_contact_calendar_wrap .calendar_wrap .calendar_content .label {
  padding: 12px 0;
  font-size: 1.4rem;
  font-family: "YuGothic", "Yu Gothic Medium", "Yu Gothic", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", sans-serif;
}
.ft_contact_calendar_wrap .calendar_color {
  margin: 0;
}

.school_schedule_calendar .calendar_content li {
  font-family: "Roboto", sans-serif;
  font-weight: 600;
}

.ft_contact {
  position: relative;
  background: #e1cfd1;
  padding: 60px 0 10px;
}
.ft_contact .ft_content_h {
  text-align: center;
}
.ft_contact_info {
  align-self: center;
}
.ft_contact_info_h {
  text-align: center;
  margin-bottom: 10px;
}
.ft_contact_info_h span {
  display: inline-block;
  font-weight: 700;
  font-size: 1.8rem;
  border-bottom: 3px #671117 solid;
  padding: 0 5px;
}
@media screen and (max-width: 767px) {
  .ft_contact_info_h span {
    font-size: 1.5rem;
    letter-spacing: 0.1em;
    padding: 0;
  }
}
.ft_contact_info .btn a {
  max-width: 400px;
}
.ft_contact_calendar_wrap {
  max-width: 440px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .ft_contact_calendar_wrap {
    padding-top: 50px;
  }
}

.cont_calendar_month {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  width: 100%;
}
.cont_calendar_month_item {
  flex-basis: 100px;
  margin: 0 10px;
}
@media screen and (max-width: 767px) {
  .cont_calendar_month_item {
    flex-basis: 72px;
    margin: 0 5px;
  }
}
.cont_calendar_content [aria-hidden=false] {
  display: block;
}
.cont_calendar_content [aria-hidden=true] {
  display: none;
}
.cont_calendar_tab_button {
  width: 100%;
  min-height: 40px;
  background-color: #671117;
  border-radius: 10px 10px 0 0;
  font-weight: bold;
  font-size: 1.3rem;
  letter-spacing: 0;
  text-align: center;
  color: #fff;
  transition: all 0.3s;
}
@media screen and (max-width: 767px) {
  .cont_calendar_tab_button {
    font-size: 1.3rem;
    letter-spacing: 0.24em;
    min-height: auto;
    border-radius: 10px 10px 0 0;
  }
}
.cont_calendar_tab_button em {
  font-family: "Roboto", sans-serif;
  font-weight: 600;
  font-size: 2.5rem;
  margin-right: 5px;
}
@media screen and (max-width: 767px) {
  .cont_calendar_tab_button em {
    font-size: 2.4rem;
  }
}
.cont_calendar_tab_button span {
  position: relative;
  display: inline-block;
  font-size: 1.3rem;
  letter-spacing: 0.04em;
  padding: 0 10px;
  margin-left: 10px;
}
@media screen and (max-width: 767px) {
  .cont_calendar_tab_button span {
    display: none;
  }
}
.cont_calendar_tab_button span::before, .cont_calendar_tab_button span::after {
  content: "";
  background: #671117;
  width: 6px;
  height: 2px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.cont_calendar_tab_button span::before {
  left: 0;
}
.cont_calendar_tab_button span::after {
  right: 0;
}
.cont_calendar_tab_button[aria-selected=true] {
  background-color: #fff;
  color: #671117;
}
.cont_calendar_tab_button:hover, .cont_calendar_tab_button:focus-visible {
  background-color: #fff;
  color: #671117;
}

#page_calendar_edit {
  background: #FFF7EE;
}
#page_calendar_edit .calendar_area {
  padding: 100px 0 100px;
}
#page_calendar_edit .calendar_editer_title {
  font-size: 2.4rem;
  font-weight: bold;
  text-align: center;
  letter-spacing: 0.12em;
  color: #671117;
}
#page_calendar_edit .calendar_wrap {
  display: block;
}
#page_calendar_edit .calendar_wrap .calendar_box {
  margin-top: 20px;
}
#page_calendar_edit .calendar_wrap .calendar_box .calendar_head {
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  letter-spacing: 0.1em;
  color: #671117;
}
#page_calendar_edit .calendar_wrap .calendar_box .calendar_content {
  margin-top: 10px;
}
#page_calendar_edit .calendar_wrap .calendar_box .calendar_content .this_month {
  cursor: pointer;
}

#calendar_form {
  width: 560px;
  margin: 0 auto;
}
#calendar_form .calendar_control {
  display: flex;
  justify-content: space-between;
}
#calendar_form .calendar_control a {
  position: relative;
  font-weight: 700;
  color: #671117;
}
#calendar_form .calendar_control a.prev {
  padding-left: 20px;
}
#calendar_form .calendar_control a.prev::before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 10px 8px 0;
  border-color: transparent #671117 transparent transparent;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
#calendar_form .calendar_control a.next {
  padding-right: 20px;
}
#calendar_form .calendar_control a.next::before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 0 8px 10px;
  border-color: transparent transparent transparent #671117;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
#calendar_form .btn {
  margin: 50px auto 0;
  text-align: center;
}
#calendar_form .btn input[type=submit] {
  background: #671117;
  border: 3px #671117 solid;
  color: #fff;
  border-radius: 50px;
  padding: 10px 90px;
  font-weight: 700;
  font-size: 2rem;
  text-align: center;
  transition: opacity 0.3s;
}
#calendar_form .btn input[type=submit]:hover {
  opacity: 0.7;
}

.bak_admin {
  text-align: center;
  margin-top: 30px;
}
.bak_admin a {
  text-decoration: underline;
}

/*------------------------------------------------------------
 COMPONENTS / ブログ関連
------------------------------------------------------------*/
.blog_wrap {
  padding: 40px 0;
}

.post_list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
@media screen and (max-width: 767px) {
  .post_list {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
.post_img {
  position: relative;
  width: 100%;
  margin: 0 auto 10px;
  border-radius: 10px 10px 0 10px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .post_img {
    margin: 0 auto 10px;
  }
}
.post_img img {
  aspect-ratio: 3/2;
  object-fit: cover;
  width: 100%;
}
.post_date {
  font-weight: 500;
  font-size: 1.2rem;
  color: #AA0414;
}
.post_title {
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.6;
  margin-top: 5px;
}
.post_meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .post_meta {
    flex-direction: column;
    align-items: flex-start;
  }
}
.post_cate {
  position: absolute;
  display: inline-block;
  background: #671117;
  padding: 1px 10px 2px;
  bottom: 0;
  right: 0;
  font-weight: 700;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .post_cate {
    font-size: 1.2rem;
  }
}
.post_cate.is_min {
  grid-template-columns: repeat(1, 1fr);
  gap: 20px 0;
}
.post_cate.is_min .post_item {
  border-bottom: 2px #671117 dotted;
  padding-bottom: 20px;
}
.post_cate.is_min .post_item a {
  display: grid;
  grid-template-columns: 80px auto;
  gap: 0 15px;
}
.post_cate.is_min .post_img {
  grid-row: 1/3;
  grid-column: 1/2;
  align-self: start;
  margin: 0;
}
.post_cate.is_min .post_meta {
  align-self: flex-start;
}
.post_cate.is_min .post_date {
  font-size: 1.1rem;
  line-height: 1;
}
.post_cate.is_min .post_title {
  font-size: 1.3rem;
  line-height: 1.6;
}

.post_empty p {
  text-align: center;
}
.post_empty .side_search {
  max-width: 500px;
  margin: 20px auto;
}

.post_date_last {
  color: var(--main);
  margin-left: 10px;
}

.post_date span {
  padding: 0 10px 0 0;
  background: #fff;
}

.wp-pagenavi {
  max-width: 980px;
  width: 100%;
  margin: 50px auto 80px;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .wp-pagenavi {
    position: relative;
    margin: 50px auto 0;
    padding: 0 20px;
  }
}
.wp-pagenavi a,
.wp-pagenavi span {
  text-decoration: none;
  border: none;
  background: #FFF7EE;
  width: 40px;
  height: 40px;
  border-radius: 100%;
  margin: 0 5px;
  font-weight: 600;
  font-size: 1.6rem;
  line-height: 35px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .wp-pagenavi a .current,
.wp-pagenavi a .extend,
.wp-pagenavi span .current,
.wp-pagenavi span .extend {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .wp-pagenavi a {
    display: none;
  }
}
.wp-pagenavi a:hover {
  border-color: #671117;
  background: #671117;
  color: #fff;
}
.wp-pagenavi a.nextpostslink, .wp-pagenavi a.previouspostslink {
  position: relative;
  background: #671117;
}
@media screen and (max-width: 767px) {
  .wp-pagenavi a.nextpostslink, .wp-pagenavi a.previouspostslink {
    display: block;
    width: calc((100% - 20px) / 2);
    height: auto;
    background: #fff;
    font-size: 1.8rem;
  }
}
.wp-pagenavi a.nextpostslink::before, .wp-pagenavi a.previouspostslink::before {
  content: "";
  background: url(../images/icon_arrow_white.svg) no-repeat;
  background-size: 15px auto;
  height: 15px;
  width: 15px;
  display: inline-block;
  color: #fff;
  position: absolute;
  top: 50%;
  right: 50%;
  transform: translate(50%, -50%);
}
@media screen and (max-width: 767px) {
  .wp-pagenavi a.nextpostslink::before, .wp-pagenavi a.previouspostslink::before {
    color: #671117;
  }
}
@media screen and (max-width: 767px) {
  .wp-pagenavi a.nextpostslink {
    padding: 5px 30px 5px 10px;
    margin: 0 0 0 auto;
  }
  .wp-pagenavi a.nextpostslink::after {
    content: "next";
  }
}
@media screen and (max-width: 767px) {
  .wp-pagenavi a.nextpostslink::before {
    right: 10px;
    transform: translate(0, -50%);
  }
}
@media screen and (max-width: 767px) {
  .wp-pagenavi a.previouspostslink {
    padding: 5px 10px 5px 30px;
    margin: 0 auto 0 0;
  }
  .wp-pagenavi a.previouspostslink::after {
    content: "prev";
  }
}
.wp-pagenavi a.previouspostslink::before {
  transform: translate(50%, -50%) scale(-1, 1);
}
@media screen and (max-width: 767px) {
  .wp-pagenavi a.previouspostslink::before {
    right: auto;
    left: 10px;
    transform: translate(0, -50%) scale(-1, 1);
  }
}
@media screen and (max-width: 767px) {
  .wp-pagenavi span {
    display: none;
  }
}
.wp-pagenavi span.current {
  border-color: #671117;
  background: #671117;
  font-weight: 600;
  color: #fff;
}

.post_single .btn_back a {
  max-width: none;
}

.post_single_nav {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}
.post_single_nav .nav_item {
  position: relative;
  flex: 0 0 50%;
  font-weight: bold;
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  line-height: 1.5;
  word-break: break-word;
}
@media screen and (max-width: 767px) {
  .post_single_nav .nav_item {
    flex: 0 0 50%;
    font-size: 1.3rem;
    padding: 10px 0;
  }
}
.post_single_nav .nav_item:last-of-type {
  border-left: 1px #671117 solid;
}
.post_single_nav .nav_item a {
  display: block;
  height: 100%;
  padding: 0 50px;
}
@media screen and (max-width: 767px) {
  .post_single_nav .nav_item a {
    padding: 0 20px 0 30px;
  }
}
.post_single_nav .nav_item a::before {
  content: "";
  background: #671117;
  border: 1px #671117 solid;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
}
.post_single_nav .nav_item a::after {
  content: "";
  background: url(../images/icon_arrow_white.svg) no-repeat center;
  background-size: 100% auto;
  width: 15px;
  height: 15px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(50%, -50%) scale(-1, 1);
}
@media screen and (max-width: 767px) {
  .post_single_nav .nav_item.next_box a {
    padding: 0 30px 0 20px;
  }
}
.post_single_nav .nav_item.next_box a::before {
  content: "";
  left: auto;
  right: 0;
  transform: translate(0, -50%);
}
.post_single_nav .nav_item.next_box a::after {
  left: auto;
  right: 0;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  .post_single_nav .nav_item.prev_box {
    text-align: right;
  }
}

.post_sidebar_item:not(:first-of-type) {
  margin-top: 70px;
}
.post_sidebar_headline {
  position: relative;
  border-bottom: 2px #671117 solid;
  padding-bottom: 10px;
  margin-bottom: 20px;
  color: #671117;
}
.post_sidebar_headline::before {
  font-size: 3.5rem;
  position: absolute;
  top: 50%;
  right: 0%;
  transform: translateX(-50%);
}
.post_sidebar_headline span {
  position: relative;
  display: inline-block;
  width: 100%;
  font-weight: 700;
  font-size: 2rem;
  letter-spacing: 0.1em;
}
.post_sidebar_headline span::before {
  content: attr(data-field) "";
  font-family: "Roboto", sans-serif;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 1.8rem;
  letter-spacing: 0.18em;
  white-space: nowrap;
  position: absolute;
  top: 50%;
  right: 0%;
  transform: translate(0, -50%);
  color: #AA0414;
  font-size: 1.5rem;
}

.side_category_list > li {
  border-bottom: 2px #671117 dotted;
}
.side_category_list > li > a {
  position: relative;
  display: flex;
  justify-content: space-between;
  padding: 7px 0;
}
.side_category_list > li > a .label {
  font-weight: 700;
  letter-spacing: 0.1em;
}
.side_category_list_child {
  padding: 0 0 10px;
}
.side_category_list_child li {
  position: relative;
  margin: 2px 0 0;
  padding-left: 15px;
}
.side_category_list_child li:first-child {
  margin-top: 0;
}
.side_category_list_child li::before {
  content: "";
  background: #671117;
  width: 8px;
  height: 1px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.side_archive_list {
  border-top: 2px #671117 dotted;
  color: #671117;
}
.side_archive_list > li {
  border-bottom: 2px #671117 dotted;
}
.side_archive_list > li ul {
  padding: 0 0 10px 25px;
  display: none;
}
.side_archive_list > li ul li {
  position: relative;
  margin: 2px 0 0;
  padding-left: 15px;
}
.side_archive_list > li ul li:first-child {
  margin-top: 0;
}
.side_archive_list > li ul li::before {
  content: "";
  background: #671117;
  width: 8px;
  height: 1px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.side_archive_list > li ul li a {
  line-height: 2;
}
.side_archive_list > li ul li a .count {
  margin: 0 0 0 2px;
}
.side_archive_list_year {
  position: relative;
  display: block;
  width: 100%;
  padding: 10px 5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  cursor: pointer;
}
.side_archive_list_year:hover {
  opacity: 0.7;
  transition: 0.3s;
}
.side_archive_list_year::after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 5px 0 5px;
  border-color: #671117 transparent transparent transparent;
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
}
.side_archive_list_year.is_open::after {
  transform: translateY(-50%) rotate(180deg);
}

.side_search {
  margin-top: 20px;
}
.side_search .search_box {
  min-height: 35px;
}
.side_search .searchfield {
  border: 1px #671117 solid;
  padding: 5px 10px;
  height: 35px;
  width: calc(100% - 35px);
  float: left;
  border-radius: 2px 0 0 2px;
}
.side_search .btn_search {
  position: relative;
  background: url(../images/icon_search.png) no-repeat center, #671117;
  background-size: 50% auto;
  width: 35px;
  height: 35px;
  float: left;
  border-radius: 0 2px 2px 0;
  cursor: pointer;
  padding: 10px;
}
.side_search .btn_search::before {
  line-height: 1;
  color: #fff;
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
}

/*------------------------------------------------------------
	BLOG / ブログ
------------------------------------------------------------*/
.post_latest {
  padding: 30px 0 0px;
}
@media screen and (max-width: 767px) {
  .post_latest .post_list {
    grid-template-columns: 1fr;
  }
}
.post_latest .post_list .post_item .post_link {
  display: grid;
  grid-template-columns: 600px 330px;
  gap: 0 40px;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .post_latest .post_list .post_item .post_link {
    grid-template-columns: 1fr;
  }
}
.post_latest .post_list .post_item .post_link .post_newpost {
  max-width: 360px;
  width: 100%;
  margin-left: -20px;
}
@media screen and (max-width: 767px) {
  .post_latest .post_list .post_item .post_link .post_newpost {
    max-width: 60%;
    width: 100%;
    margin-left: -20px;
    transform: translate(0, -40%) rotate(-10deg);
  }
}
.post_latest .post_list .post_item .post_link .post_meta {
  justify-content: inherit;
  margin-top: 20px;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .post_latest .post_list .post_item .post_link .post_meta {
    margin-top: 0px;
    margin-bottom: 0px;
    flex-direction: inherit;
  }
}
.post_latest .post_list .post_item .post_link .post_meta .post_cate {
  position: inherit;
  margin-left: 20px;
}

.blog_category_list {
  margin: 50px auto 0;
}
.blog_category_list ul {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .blog_category_list ul {
    justify-content: space-between;
  }
}
.blog_category_list ul li {
  flex-basis: 125px;
  margin: 0 5px 20px;
}
@media screen and (max-width: 767px) {
  .blog_category_list ul li {
    flex-basis: 48%;
    margin: 0 0px 15px;
  }
}
.blog_category_list ul li a {
  width: 100%;
  display: block;
  border: 2px solid #671117;
  text-align: center;
  font-weight: bold;
  font-size: 1.3rem;
  letter-spacing: 0.1rem;
  color: #671117;
  border-radius: 5px;
  padding: 1px 5px;
  position: relative;
}
.blog_category_list ul li a::before, .blog_category_list ul li a::after {
  content: "";
  position: absolute;
  border: 10px solid transparent;
  border-top: 10px solid #671117;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 100%);
}
.blog_category_list ul li a::after {
  border-top: 10px solid #fff;
  bottom: 3px;
}
.blog_category_list ul li a.is_current {
  background: #671117;
  color: #fff;
}
.blog_category_list ul li a.is_current::after {
  border-top: 10px solid #671117;
  bottom: 3px;
}

.blog_archive_headline {
  text-align: center;
  font-weight: 700;
  font-size: 1.8rem;
  letter-spacing: 0.2em;
  margin-bottom: 40px;
}

.post_single {
  position: relative;
}
.post_single > .inner {
  display: grid;
  align-items: flex-start;
  grid-template-rows: auto auto;
  grid-template-columns: 650px 290px;
  gap: 60px 40px;
  padding: 100px 0;
}
@media screen and (max-width: 767px) {
  .post_single > .inner {
    padding: 50px 20px;
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr;
    gap: 50px 0;
    padding: 50px 20px;
  }
}
.post_single_wrap {
  grid-row: 1/2;
  grid-column: 1/2;
}
.post_single_inner {
  margin-bottom: 100px;
}
@media screen and (max-width: 767px) {
  .post_single_inner {
    margin-bottom: 80px;
  }
}
.post_single_inner .post_meta {
  display: inherit;
}
.post_single_inner .post_cate {
  position: inherit;
}
.post_single_inner .post_cate a {
  color: #fff;
  font-size: 1.6rem;
}
.post_single_inner .post_date {
  display: block;
  margin-top: 15px;
  font-weight: 600;
  letter-spacing: 0.18em;
}
.post_single_inner .post_title {
  border-bottom: 3px #671117 solid;
  font-size: 2.2rem;
  line-height: 1.65;
  margin-top: 20px;
  color: #671117;
  padding-bottom: 15px;
}
.post_single_inner .post_img {
  position: relative;
  margin-top: 40px;
}
.post_single_inner .post_img.is_pass figcaption {
  font-size: 2.8rem;
}
@media screen and (max-width: 767px) {
  .post_single_inner .post_meta {
    flex-direction: row;
    align-items: center;
  }
}
.post_single_meta {
  display: flex;
  justify-content: space-between;
}
.post_single_category span {
  position: relative;
  display: inline-block;
  background: #671117;
  padding: 10px 10px 10px 30px;
  font-weight: 700;
  line-height: 1;
  color: #fff;
}
.post_single_content {
  margin-top: 40px;
}
.post_single_content > p, .post_single_content > ul, .post_single_content > ol {
  margin-bottom: 20px;
}
.post_single_content + .editor_headline02, .post_single_content + .editor_headline03 {
  margin: 0 0 30px;
}
.post_single_content p > a {
  display: inline-block;
  font-weight: 700;
  text-decoration: underline;
  color: #671117;
}
.post_single_content p > a:hover {
  text-decoration: none;
}
.post_single_content p > a[target^=_blank] {
  position: relative;
  padding-right: 30px;
}
.post_single_content p > a[target^=_blank]::before {
  content: "\e904";
  font-family: "chick" !important;
  font-size: 1.5rem;
  position: absolute;
  right: 5px;
  bottom: 0;
}
.post_single_content ul li {
  position: relative;
  list-style: none;
  line-height: 1.8;
  padding-left: 20px;
}
.post_single_content ul li::before {
  content: "";
  background: #671117;
  border-radius: 50%;
  width: 8px;
  height: 8px;
  position: absolute;
  top: 1.3rem;
  left: 0;
}
@media screen and (max-width: 767px) {
  .post_single_content ul li::before {
    top: 0.9rem;
  }
}
.post_single_content ol {
  counter-reset: post_ol 0;
}
.post_single_content ol li {
  position: relative;
  list-style: none;
  line-height: 1.8;
  padding-left: 30px;
}
.post_single_content ol li::before {
  content: counter(post_ol) ".";
  counter-increment: post_ol 1;
  font-family: "Roboto", sans-serif;
  font-size: 120%;
  line-height: 1;
  color: #671117;
  position: absolute;
  top: 0.7rem;
  left: 0;
}
.post_single .editor_gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  border: none;
  padding: 0;
}
@media screen and (max-width: 767px) {
  .post_single .editor_gallery {
    gap: 20px;
  }
}
.post_single .editor_gallery img {
  aspect-ratio: 1/1;
  object-fit: cover;
  width: 100%;
}
.post_single .editor_linkbtn .btn {
  border: none;
  background: none;
  box-shadow: none;
  padding: 0;
  width: fit-content;
  margin: 0 15px;
}
.post_single .editor_linkbtn .btn a {
  background: #fff;
  box-shadow: 5px 5px 0 #671117;
  border-radius: 50px;
  max-width: 300px;
  padding: 10px 60px 10px 30px;
  font-size: 1.5rem;
}
.post_single .editor_linkbtn .btn a::after {
  right: 20px;
}
.post_single .editor_linkbtn .btn a:hover {
  color: #671117;
  opacity: 0.7;
}

.post_related {
  position: relative;
  background: #FFF7EE;
  padding: 60px 0;
}
@media screen and (max-width: 767px) {
  .post_related {
    margin-top: 50px;
  }
}
.post_related::before {
  content: "";
  background: url(assets/images/bg_pattern_sub.svg) repeat top center;
  background-size: 150px auto;
  width: 100%;
  height: 72px;
  position: absolute;
  top: -72px;
}
.post_related h2 {
  font-family: kinuta-maruminyoshino-stdn, serif;
  font-weight: 400;
  font-size: 2rem;
  letter-spacing: 0.12em;
  text-align: center;
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .post_related h2 {
    font-size: 1.8rem;
    line-height: 1.5;
    margin-bottom: 30px;
  }
}
.post_related .post_list {
  grid-template-columns: repeat(4, 1fr);
  gap: 60px;
}
@media screen and (max-width: 767px) {
  .post_related .post_list {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 20px;
  }
}

.post_sidebar {
  position: relative;
  grid-row: 1/2;
  grid-column: 2/3;
  background: #fff;
  padding: 20px;
}
@media screen and (max-width: 767px) {
  .post_sidebar {
    grid-row: 3/4;
    grid-column: 1/3;
    margin-top: 50px;
  }
}
.post_sidebar::before {
  content: "";
  background: #fff;
  border-radius: 50%;
  width: 96px;
  height: 96px;
  position: absolute;
  top: -48px;
  left: 50%;
  transform: translateX(-50%);
}

.post_list.is_min {
  grid-template-columns: repeat(1, 1fr);
  gap: 20px 0;
  margin-top: 20px;
}
.post_list.is_min .post_item a {
  display: grid;
  grid-template-columns: 80px auto;
  gap: 0 15px;
}
.post_list.is_min .post_img {
  grid-row: 1/3;
  grid-column: 1/2;
  align-self: start;
  margin: 0;
}
.post_list.is_min .post_meta {
  position: relative;
  align-self: flex-start;
}
.post_list.is_min .post_date {
  font-size: 1.1rem;
  line-height: 1;
}
.post_list.is_min .post_title {
  font-size: 1.3rem;
  line-height: 1.6;
  margin: 0;
}

/*.side_ranking {
  .post_list {
    counter-reset: rank_num 0;
  }
  .post_item {
    &.rank01 {
      a {
        display: block;
        .post_meta {
          margin: 10px auto;
        }
      }
    }
  }
  .post_rank {
    text-align: center;
    margin-bottom: 10px;
    span {
      position: relative;
      display: inline-block;
      font-weight: 700;
      font-size: 1.4rem;
      letter-spacing: 0.1em;
      line-height: 1;
      padding: 0 20px;
      em {
        position: relative;
        padding-left: 1.8rem;
        &::before {
          content: counter(rank_num);
          counter-increment: rank_num 1;
          display: block;
          @include m.fontEn();
          font-weight: 600;
          font-size: 2.1rem;
          letter-spacing: 0.18em;
          line-height: 1;
          position: absolute;
          bottom: -1px;
          left: 0;
        }
      }
      &::before,
      &::after {
        content: "";
        background: v.$colorMain;
        width: 1px;
        height: 20px;
        position: absolute;
        bottom: 0;
      }
      &::before {
        left: 0;
        transform: rotate(-20deg);
      }
      &::after {
        right: 0;
        transform: rotate(20deg);
      }
    }
  }
}*/
.side_ranking .post_list {
  counter-reset: rank_num 0;
  margin-top: 30px;
}
.side_ranking .post_item {
  position: relative;
}
.side_ranking .post_item::before {
  content: none;
}
.side_ranking .post_item.rank01 {
  margin: 0 20px;
}
.side_ranking .post_item.rank01 a {
  display: block;
}
.side_ranking .post_item.rank01 a .post_meta {
  margin: 10px auto;
}
.side_ranking .post_item.rank01 .post_rank {
  top: -23px;
}
.side_ranking .post_item.rank01 span {
  width: 46px;
  height: 46px;
}
.side_ranking .post_item.rank01 span::before {
  font-size: 1.8rem;
}
.side_ranking .post_item:not(:first-of-type) {
  margin-top: 30px;
}
.side_ranking .post_rank {
  text-align: center;
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
}
.side_ranking .post_rank span {
  position: relative;
  display: inline-block;
  background-color: #fff;
  border-radius: 50%;
  width: 28px;
  height: 28px;
}
.side_ranking .post_rank span::before {
  content: counter(rank_num);
  counter-increment: rank_num 1;
  display: block;
  font-weight: 700;
  font-size: 1.1rem;
  line-height: 1;
  text-align: center;
  color: #c9b9a2;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-30%, -50%);
}
.side_ranking .post_rank span em {
  position: relative;
  display: inline-block;
}


/*追加分*****************************/
.mainvis_lead{
  text-shadow: 0 0 10px #671117;
}
.index_musubi .title_lead p{
  text-shadow: 0 0 15px #FFF;
}
.common_info_cafe{
  pointer-events: inherit;
}
.about_features_list li figure{
  border-radius: 10px 10px 0 0 ;
  overflow: hidden;
}
.about_staff_predecessor::before{
  pointer-events: none;
}
.about_history_list ul li:last-child .btn{
  pointer-events: inherit;
}
.btn_shop{
  background-image: none;
}
.musubi_shop_makuake{
  max-width: 980px;
  padding: 0;
  border: none;
  box-shadow: 10px 10px 0 0 #F7E7D7;
}
.musubi_shop_makuake_link{
  margin-top: 0;
  position: relative;
  z-index: 1;
}
.musubi_meaning_list ul li:nth-child(2){
  transition-delay: 0.2s;
}
.musubi_meaning_list ul li:nth-child(3){
  transition-delay: 0.4s;
}
.musubi_history_list ul li:nth-child(2){
  transition-delay: 0.2s;
}
.musubi_history_list ul li:nth-child(3){
  transition-delay: 0.4s;
}
.post_list {
  grid-template-columns: repeat(3, 300px);
}
@media screen and (max-width: 767px) {
  .post_list {
    grid-template-columns: repeat(2, 1fr);
  }
  .post_list .post_link{
  }
}
.post_latest .post_img{
border-radius: 10px;
}
@media screen and (max-width: 767px){
  .wp-pagenavi {
    margin: 30px auto 50px;
}
  .wp-pagenavi a.nextpostslink, .wp-pagenavi a.previouspostslink {
    display: block;
    width: calc((100% - 20px) / 2);
    height: auto;
    background: #671117;
    color: #FFF;
    font-size: 1.8rem;
    border-radius: 10px;
}
.wp-pagenavi a.nextpostslink {
    padding: 5px 30px 5px 10px;
    margin: 0 0 0 auto;
}
.wp-pagenavi a.previouspostslink {
  padding: 5px 10px 5px 30px;
  margin: 0 auto 0 0;
}
}
.post_single_content p > a[target^=_blank]::before{
  content: none;
}
.side_latest .post_img,.side_ranking .post_img{
border-radius: 10px;
}
.index_message_name.shingo{

  text-shadow: 0 0 10px #FFF;
}
.musubi_mainvis_logo{
  display: none;
}
.error404_wrap{
  text-align: center;
}
.error404_wrap .btn a {
  max-width: 320px;
  margin: 0 auto;
}
.slide-arrow.slick-disabled{
opacity: 0.3;
pointer-events: none;
}
@media screen and (max-width: 767px){
  .post_sidebar {
    padding-left: 0;
    padding-right: 0;
}
.post_single > .inner {
  display: inherit;
}
}

.index_message .btn a{
  margin: 0 auto;
}
@media screen and (max-width: 767px){
  .common_photocake a .div_W .div_L img{
    transform: translate(0%, -5%);
}
}
@media screen and (max-width: 767px){
  .about_history_list ul li:last-child .about_history_list_sec_new {
    max-width: 120px;
    transform: translate(50%, -60%);
    z-index: 2;
}
.musubi_shop_makuake .inner{
  padding: 0;
}
.musubi_shop_makuake_link a .div_W .div_L h4 {
  margin-bottom: 20px;
}
.musubi_shop_info > .div_W > .div_L table th {
  white-space: nowrap;
  padding-right: 15px;
}
}
.musubi_shop{
  padding: 100px 0 150px;
}
.musubi_shop_makuake{
  margin-bottom: 0;
}
.musubi_shop_makuake .inner{
  margin-top: 130px;
}
.about_features_list{
  margin: 70px auto 0;
}
.about_features_list li .font_en{
  transform: translate(-50%, -80%);
}
@media screen and (max-width: 767px){
  .about_features_list li .font_en{
  font-size: 80px;}
}
.lineup_sec#cafe .lineup_post_img img, .lineup_sec#gelato .lineup_post_img img{
  aspect-ratio: 3/2;  
}
@media screen and (max-width: 767px){
  .lineup_sec#cafe .lineup_post_img img, .lineup_sec#gelato .lineup_post_img img{
    aspect-ratio: 1/1;  
  }
}
.musubi_fix{
  position: fixed;
  bottom: 40px;
  right: 10px;
  z-index: 5;
  max-width: 195px;
  width: 100%;
}
@media screen and (max-width: 767px){
  .musubi_fix{
    bottom: 0px;
    right: 0px;
    max-width: none;
  }
  .musubi_fix a{
    max-width: none;
    border-radius: 0;
  }
  .musubi_fix a span{
    background-image: url(../images/icon_arrow_musubi_white.svg);
  }
}
@media screen and (max-width: 767px){
  .fix_calendar {
    position: fixed;
}
}
.musubi_gallery_deco03 {
  max-width: 160px;
  transform: translate(35%, 30%);
}
@media screen and (max-width: 767px){
  .musubi_gallery_deco03 {
    max-width: 70px;
    transform: translate(20%, 30%);
}
}
.musubi_gallery_deco04 {
  max-width: 150px;
  transform: translate(-60%, -90%);
}
@media screen and (max-width: 767px){
  .musubi_gallery_deco04 {
    max-width: 90px;
    transform: translate(-60%, 280%);
}
}
.musubi_meaning_lead_title .font_min{
border-radius: 5px;  
}
.musubi_meaning_lead{
  background-image: url(../images/deco_musubi08.png) ;
}
@media screen and (max-width: 767px){
  .about_thought_mission {
    margin-top: 100px;
}
  .about_thought_mission .deco01 {
    max-width: 170px;
    position: absolute;
    transform: translate(45%, -115%);
    margin-top: 15px;
}
  .about_thought_mission .deco02 {
    max-width: 70px;
    display: block;
    width: 100%;
    top: 0;
    left: inherit;
    right: 0;
    transform: translate(-0%, -140%);
    mix-blend-mode: multiply;
}
.about_thought_bi {
  margin-top: 170px;
}
.about_thought_bi .deco01 {
  max-width: 85px;
  transform: translate(50%, -113%) rotate(0deg);
  top: 0;
  position: absolute;
  bottom: inherit;
  right: 50%;
}
.about_thought_bi .deco02 {
  display: block;
  max-width: 60px;
  width: 100%;
  bottom: inherit;
  right: inherit;
  top: 0;
  left: 0;
  transform: translate(45%, -160%) rotate(-30deg);
  mix-blend-mode: multiply;
}
}
.musubi_gallery_deco01 {
  max-width: 160px;
  top: -100px;
  left: -90px;
}
@media screen and (max-width: 767px){
.musubi_gallery_deco01 {
  max-width: 95px;
  top: -80px;
  left: -40px;
}
}
.musubi_detail_note{
  font-size: 1.1rem;
  color: #898989;
  text-align: center;
  margin: 40px auto 0;
}
.musubi_shop_makuake_link a .div_W .div_L h4{
  font-size: 2.1rem;
  margin-bottom: 10px;
}