@charset "UTF-8";
:root {
  --black: 51,51,51;
  --main: 26,46,113;
  --bg01: 244,242,238;
  --bg02: 3,23,34;
  --bg03: 239,237,232;
  --bg04: 230,224,211;
  --sub: 136,145,159;
  --border: 217, 217, 217;
  --white: 255, 255, 255;
  --gold: 135, 108, 14;
  --contents_width: 1200px;
  --body_padding_side: 60px;
  --contents_width_with_padding: 1260px;
  --sidebar_width: 250px;
  --lh_head: 1.65;
  --ls_head: 0.1em;
  --grad: linear-gradient(rgb(var(--main)) 0%, #0a153b 100%);
  --txt_vertical: vertical-rl;
}

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

html {
  font-size: 62.5%;
  word-break: break-all;
}

body {
  -webkit-text-size-adjust: 100%;
}

article, aside, details, figcaption, figure,
main, footer, header, menu, nav, section {
  display: block;
}

h1, h2, h3, h4, h5, h6 {
  word-break: break-word;
  line-break: strict;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

ul:not([class]),
ol:not([class]) {
  padding-left: 1.25em;
}

ul[class],
ol[class] {
  list-style: none;
}

span {
  font-weight: inherit;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

a {
  color: inherit;
}
@media all and (min-width: 768px) {
  a:hover {
    text-decoration: none;
  }
}

a[class] {
  text-decoration: none;
}

ins {
  background-color: #ff9;
  text-decoration: none;
}

mark {
  background-color: #ff9;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

address {
  font-style: normal;
}

sup {
  vertical-align: text-top;
  font-size: 0.75em;
}

sub {
  vertical-align: text-bottom;
  font-size: 0.75em;
}

table {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
  border-spacing: 0;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid rgb(var(--border));
  margin: 1em 0;
  padding: 0;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

iframe {
  max-width: 100%;
}

/* form
================================================== */
input[type=text], input[type=email], input[type=tel], textarea, button, select, option {
  display: block;
  width: 100%;
  max-width: 100%;
  font-family: inherit;
  outline: none;
  border: 1px solid;
  border-radius: 0;
  background: none;
}
@media all and (max-width: 767px) {
  input[type=text], input[type=email], input[type=tel], textarea, button, select, option {
    font-size: 1.6rem;
  }
}

input[type=text], input[type=email], input[type=tel], textarea, button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
}

input[type=radio], input[type=checkbox] {
  margin: 0;
  padding: 0;
  vertical-align: middle;
}

select {
  color: inherit;
}

textarea {
  resize: vertical;
}

button {
  color: inherit;
  font-weight: normal;
  cursor: pointer;
}

/* 02_base
================================================ */
body {
  min-width: 320px;
  padding-top: 60px;
  font-family: "Shippori Mincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "ＭＳ 明朝", serif;
  color: rgb(var(--black));
  font-size: 1.4rem;
  line-height: 2.5;
  letter-spacing: 0.1em;
  background-color: rgb(var(--bg01));
}
@media all and (min-width: 768px) {
  body {
    min-width: var(--contents_width_with_padding);
    padding-top: 0;
    font-size: 1.6rem;
  }
}

.l-wrapper {
  position: relative;
}

.l-container {
  position: relative;
  background-color: rgb(var(--bg01));
}
@media all and (min-width: 768px) {
  .l-container.is-col2 {
    display: grid;
    grid-template-columns: var(--sidebar_width) auto;
    gap: 0 20px;
    width: var(--contents_width);
    margin: 0 auto;
  }
  .l-container.is-col2 .l-contents {
    flex: 1;
  }
  .l-container.is-col2 .l-sidebar {
    order: -1;
    flex-basis: var(--sidebar_width);
  }
}

/* sp <--> tb <--> pc
-------------------------------------- */
.u-media-query {
  display: none;
  font-family: "sp";
}
@media all and (min-width: 768px) {
  .u-media-query {
    font-family: "tb";
  }
}
@media all and (min-width: 1260px) {
  .u-media-query {
    font-family: "pc";
  }
}

@media all and (max-width: 1259px) {
  .u-view-pc {
    display: none !important;
  }
}

@media all and (max-width: 767px) {
  .u-view-tb {
    display: none !important;
  }
}
@media all and (min-width: 1260px) {
  .u-view-tb {
    display: none !important;
  }
}

@media all and (min-width: 768px) {
  .u-view-sp {
    display: none !important;
  }
}

@media all and (min-width: 1260px) {
  .u-view-under-tb {
    display: none !important;
  }
}

@media all and (max-width: 767px) {
  .u-view-upper-tb {
    display: none !important;
  }
}

/* overflow
-------------------------------------- */
.u-overflow-wrap {
  overflow: auto;
}
.u-overflow-wrap .u-overflow-sec {
  overflow: hidden;
}
@media all and (min-width: 768px) {
  .u-overflow-wrap .u-overflow-sec {
    min-width: var(--contents_width_with_padding);
  }
}

/* text
-------------------------------------- */
.u-uppercase {
  text-transform: uppercase;
}

.u-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.u-vertical {
  writing-mode: vertical-rl;
}

/* link
-------------------------------------- */
a.u-alpha {
  display: block;
  text-decoration: none;
}
@media all and (min-width: 768px) {
  a.u-alpha {
    transition: all 0.3s ease;
  }
  a.u-alpha:hover {
    opacity: 0.7;
  }
}

a.u-zoom {
  display: block;
  text-decoration: none;
}
a.u-zoom .u-zoom__img {
  display: block;
}
a.u-zoom .u-zoom__img-wrap {
  display: block;
  overflow: hidden;
}
@media all and (min-width: 768px) {
  a.u-zoom .u-zoom__img {
    transition: all 0.3s ease;
  }
  a.u-zoom:hover .u-zoom__img {
    transform: scale(1.1);
  }
}

/* layout
-------------------------------------- */
.u-inner {
  box-sizing: border-box;
  padding-left: 20px;
  padding-right: 20px;
}
@media all and (min-width: 768px) {
  .u-inner {
    width: 100%;
    max-width: var(--contents_width);
    margin-right: auto;
    margin-left: auto;
    padding-left: 0;
    padding-right: 0;
  }
  .u-inner.is-pc-narrow {
    max-width: 1080px;
  }
}
@media all and (min-width: 1460px ) {
  .u-inner.is-pc-middle {
    max-width: 1400px;
  }
}

/*  .c-archive01
================================================== */
.c-archive01__item {
  border-bottom: 1px solid rgb(var(--border));
  padding-bottom: 23px;
}
.c-archive01__item + .c-archive01__item {
  margin-top: 25px;
}
.c-archive01__item-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}
.c-archive01__item-date {
  margin: 0 7px 0 0;
  font-size: 1.2rem;
  color: rgb(var(--sub));
}
.c-archive01__item-cat {
  font-size: 1.1rem;
  border: 1px solid rgb(var(--bg02));
  line-height: 1;
  min-width: 108px;
  text-align: center;
  box-sizing: border-box;
  padding: 6px 0;
}
.c-archive01__item-main {
  font-size: 1.3rem;
  margin-top: 9px;
  line-height: var(--lh_head);
}
@media all and (min-width: 768px) {
  .c-archive01__item {
    display: flex;
    flex-wrap: wrap;
    padding: 0 20px 25px;
  }
  .c-archive01__item + .c-archive01__item {
    margin-top: 28px;
  }
  .c-archive01__item-meta {
    width: 225px;
    justify-content: space-between;
  }
  .c-archive01__item-date {
    font-size: 1.4rem;
  }
  .c-archive01__item-cat {
    font-size: 1.3rem;
    min-width: 120px;
    padding: 6px 0 7px;
    margin-top: 2px;
  }
  .c-archive01__item-main {
    font-size: 1.5rem;
    width: calc(100% - 225px);
    box-sizing: border-box;
    margin-top: 4px;
    padding-left: 18px;
  }
}

/*  .c-archive02
================================================== */
.c-archive02__item-head {
  margin-top: 17px;
  font-size: 1.6rem;
  line-height: var(--lh_head);
}
.c-archive02__item-txt {
  margin-top: 20px;
  line-height: var(--lh_head);
}
.c-archive02__item-img {
  position: relative;
  width: 100%;
  padding-top: 66.5671641791%;
}
.c-archive02__item-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.c-archive02__item-price {
  margin-top: 15px;
  font-size: 1.6rem;
  text-align: right;
  line-height: var(--lh_head);
}
@media all and (max-width: 767px) {
  .c-archive02__item + .c-archive02__item {
    margin-top: 30px;
  }
}
@media all and (min-width: 768px) {
  .c-archive02 {
    display: flex;
    flex-wrap: wrap;
    margin: -41px -21px 0;
  }
  .c-archive02__item {
    margin: 41px 21px 0;
    flex-basis: calc((100% - 126px) / 3);
    max-width: calc((100% - 126px) / 3);
  }
  .c-archive02__item-head {
    font-size: 1.9rem;
  }
  .c-archive02__item-txt {
    margin-top: 15px;
    line-height: var(--lh_head);
  }
  .c-archive02__item-price {
    font-size: 1.9rem;
  }
}

/*  .c-archive03
================================================== */
.c-archive03 {
  position: relative;
}
.c-archive03__item {
  width: calc(100% - 16px) !important;
  background: #fff;
  margin: 0 8px;
  padding: 25px;
  box-sizing: border-box;
}
.c-archive03__item-head {
  margin-bottom: 18px;
  font-size: 1.6rem;
  line-height: var(--lh_head);
}
.c-archive03__item-img {
  position: relative;
  width: 100%;
  padding-top: 66.5671641791%;
}
.c-archive03__item-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.c-archive03__item-txt {
  margin-top: 15px;
  line-height: var(--lh_head);
}
.c-archive03__item-price {
  margin-top: 15px;
  font-size: 1.6rem;
  text-align: right;
  line-height: var(--lh_head);
}
.c-archive03__nav {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
}
.c-archive03__nav .slick-arrow {
  position: absolute;
  top: 0;
  border: none;
  background: rgba(var(--bg02), 0.6);
  width: 40px;
  height: 40px;
  margin: -20px 0 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.c-archive03__nav .slick-arrow.slick-prev {
  left: 12px;
}
.c-archive03__nav .slick-arrow.slick-prev .slick-arrow__ico {
  transform: scaleX(-1);
}
.c-archive03__nav .slick-arrow.slick-next {
  right: 12px;
}
.c-archive03__nav .slick-arrow__ico {
  display: block;
  color: #fff;
  width: 7px;
  height: 12.6px;
}
@media all and (min-width: 768px) {
  .c-archive03__slider[data-slides-scroll="2"] .slick-track {
    margin-left: -275px;
  }
  .c-archive03__slider[data-slides-scroll="2"] + .c-archive03__nav {
    max-width: 1180px;
  }
  .c-archive03__slider.is-col1 .slick-track, .c-archive03__slider.is-col2 .slick-track {
    margin: 0;
    width: auto !important;
    transform: none !important;
    display: flex;
    justify-content: center;
  }
  .c-archive03__item {
    width: 530px !important;
    margin: 0 10px;
    padding: 30px;
    overflow: hidden;
  }
  .c-archive03__item-head {
    font-size: 1.9rem;
  }
  .c-archive03__item-img {
    float: left;
    width: 200px;
    margin-right: 20px;
    padding-top: 133px;
  }
  .c-archive03__item-txt {
    margin-top: 0;
  }
  .c-archive03__item-price {
    font-size: 1.9rem;
  }
  .c-archive03__nav {
    margin: 0 auto;
    max-width: 640px;
  }
  .c-archive03__nav .slick-arrow {
    width: 60px;
    height: 60px;
    margin-top: -30px;
  }
  .c-archive03__nav .slick-arrow__ico {
    width: 10.5px;
    height: 19px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .c-archive03__nav .slick-arrow {
    transition: background 0.3s ease;
  }
  .c-archive03__nav .slick-arrow:hover {
    background: rgba(var(--bg02), 0.9);
  }
}

/* .c-bg01
================================================== */
.c-bg01 {
  background: rgb(var(--bg01)) url(../img/common/bg_paper02_sp.jpg) repeat left top/100% auto;
}
@media all and (min-width: 768px) {
  .c-bg01 {
    background-image: url(../img/common/bg_paper02_pc.jpg);
    background-size: auto auto;
  }
}

/* .c-bg-white
================================================== */
.c-bg-white {
  position: relative;
  background: #fff;
  z-index: 1;
}
.c-bg-white::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  content: "";
  background: url(../img/common/bg_paper01_sp.jpg) repeat left top/100% auto;
  opacity: 0.14;
  z-index: -1;
}
@media all and (min-width: 768px) {
  .c-bg-white::before {
    background-image: url(../img/common/bg_paper01_pc.jpg);
    background-size: auto auto;
  }
}

/* .c-btn01.is-cv
================================================== */
.c-btn01.is-cv .c-btn01__link {
  color: rgb(var(--white));
  border-color: rgb(var(--white));
  padding: 17px 0 16px;
}
.c-btn01.is-cv .c-btn01__ico {
  position: static;
  width: 20px;
  height: 15px;
  transform: translateY(-2px);
  margin-right: 10px;
}
@media all and (min-width: 768px) {
  .c-btn01.is-cv {
    max-width: 421px;
    font-size: 1.8rem;
    margin-top: 39px;
  }
  .c-btn01.is-cv .c-btn01__link {
    padding: 21px 0 22px;
  }
  .c-btn01.is-cv .c-btn01__ico {
    width: 28px;
    height: 21px;
    margin-right: 13px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .c-btn01.is-cv .c-btn01__link:hover {
    color: rgb(var(--bg02));
    background: #fff;
  }
}

/* .c-btn01.is-dl
================================================== */
.c-btn01.is-dl {
  margin-top: 30px;
  margin-bottom: 60px;
  line-height: 1.5;
}
.c-btn01.is-dl .c-btn01__ico {
  width: 12px;
  height: 12px;
}
@media all and (min-width: 768px) {
  .c-btn01.is-dl {
    max-width: 460px;
    margin-top: 39px;
    margin-bottom: 90px;
  }
  .c-btn01.is-dl .c-btn01__link {
    padding: 21px 0 23px;
  }
  .c-btn01.is-dl .c-btn01__ico {
    width: 16px;
    height: 16px;
    right: 21px;
  }
}

/* .c-btn01
================================================== */
.c-btn01 {
  max-width: 295px;
  margin: 53px auto 0;
}
.c-btn01__link {
  color: rgb(var(--bg02));
  border: 1px solid rgb(var(--bg02));
  display: block;
  text-align: center;
  position: relative;
  padding: 12px 0 11px;
}
.c-btn01__link[href^="#"] .c-btn01__ico svg {
  transform: rotate(90deg);
}
.c-btn01__ico {
  width: 6px;
  height: 11px;
  position: absolute;
  top: 50%;
  right: 19px;
  transform: translateY(-50%);
}
.c-btn01__ico svg {
  transition: none !important;
}
.c-btn01.is-center {
  margin-left: auto;
  margin-right: auto;
}
@media all and (max-width: 767px) {
  .c-btn01__wrap .c-btn01 {
    margin-top: 0;
  }
  .c-btn01__wrap .c-btn01 + .c-btn01 {
    margin-top: 15px;
  }
}
@media all and (min-width: 768px) {
  .c-btn01 {
    margin-top: 62px;
    margin-left: 0;
    max-width: 360px;
  }
  .c-btn01__wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: -16px -8px 0;
  }
  .c-btn01__wrap .c-btn01 {
    margin: 16px 8px 0;
    flex-basis: calc((100% - 48px) / 3);
    max-width: calc((100% - 48px) / 3);
  }
  .c-btn01__link {
    padding: 13px 0 15px;
  }
  .c-btn01__ico {
    width: 7px;
    height: 13px;
    right: 29px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .c-btn01__link {
    transition: all 0.3s ease;
  }
  .c-btn01__link:hover {
    background: rgb(var(--bg02));
    color: #fff;
  }
}

/* .c-color-black
================================================== */
.c-color-black {
  color: rgb(var(--black));
}

/* .c-color-main
================================================== */
.c-color-main {
  color: rgb(var(--main));
}

/* .c-color-sub
================================================== */
.c-color-sub {
  color: rgb(var(--sub));
}

/* .c-color-gold
================================================== */
.c-color-gold {
  color: rgb(var(--gold));
}

/* .c-color-white
================================================== */
.c-color-white {
  color: rgb(var(--white));
}

/* .c-cv01
================================================== */
.c-cv01 {
  background: url(../img/common/cv01/bg_cv01_sp.jpg) no-repeat center/cover;
  color: rgb(var(--white));
  position: relative;
}
.c-cv01::before {
  content: "";
  display: block;
  width: 100%;
  height: 6.5px;
  background: url(../img/common/img_border02_sp.png) no-repeat center/cover;
  position: absolute;
  top: -4px;
  left: 0;
}
.c-cv01__inner {
  padding-top: 68px;
  padding-bottom: 152px;
}
.c-cv01__area-txt {
  margin-bottom: 76px;
}
.c-cv01__head {
  text-align: center;
  font-size: 2.4rem;
  margin-bottom: 21px;
}
.c-cv01__txt {
  text-align: center;
  font-size: 1.3rem;
}
.c-cv01__detail {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  border-bottom: 1px solid rgba(var(--white), 0.1);
  padding-bottom: 18px;
}
.c-cv01__detail + .c-cv01__detail {
  margin-top: 17px;
}
.c-cv01__detail-name {
  font-size: 1.3rem;
  width: 95px;
  box-sizing: border-box;
  padding-left: 20px;
}
.c-cv01__detail-info {
  width: calc(100% - 95px);
  box-sizing: border-box;
}
.c-cv01__detail-info-txt {
  font-size: 1rem;
  color: rgb(var(--white), 0.4);
  padding-left: 8px;
  margin-top: 6px;
  line-height: 1.6;
}
.c-cv01__detail-info-txt-note {
  font-size: 85%;
}
.c-cv01__detail-tel {
  font-size: 2.6rem;
  line-height: 1;
  padding-left: 4px;
}
.c-cv01__detail-tel-ico {
  width: 15px;
  height: 15px;
  margin-right: 4px;
  margin-top: -5px;
}
.c-cv01__detail-tel-link {
  letter-spacing: var(--ls_head);
}
@media all and (min-width: 768px) {
  .c-cv01 {
    background-image: url(../img/common/cv01/bg_cv01_pc.jpg);
  }
  .c-cv01::before {
    background-image: url(../img/common/img_border02_pc.png);
  }
  .c-cv01__inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1400px;
    padding-right: 101px;
    padding-top: 135px;
    padding-bottom: 295px;
  }
  .c-cv01__area-txt {
    min-width: 421px;
    margin-bottom: 0;
  }
  .c-cv01__head {
    font-size: 4rem;
    text-align: left;
    letter-spacing: var(--ls_head);
    margin-bottom: 11px;
  }
  .c-cv01__txt {
    text-align: left;
    font-size: 1.6rem;
    line-height: 2;
  }
  .c-cv01__area-tel {
    padding-top: 32px;
    min-width: 409px;
  }
  .c-cv01__detail {
    align-items: flex-start;
  }
  .c-cv01__detail + .c-cv01__detail {
    margin-top: 16px;
  }
  .c-cv01__detail-name {
    font-size: 1.8rem;
    width: 100px;
  }
  .c-cv01__detail-info {
    width: calc(100% - 100px);
    padding-left: 20px;
  }
  .c-cv01__detail-info-txt {
    font-size: 1.2rem;
    padding-left: 14px;
  }
  .c-cv01__detail-tel {
    font-size: 3.4rem;
  }
  .c-cv01__detail-tel-ico {
    width: 20px;
    height: 20px;
  }
}
@media (min-width: 768px) and (max-width: 1490px) {
  .c-cv01__inner {
    padding-left: 101px;
  }
}

/* .c-form01
================================================== */
.c-form01__inner {
  padding-top: 60px;
  padding-bottom: 93px;
}
.c-form01__read {
  margin-bottom: 24px;
}
.c-form01-info {
  background-color: rgba(var(--bg04), 0.5);
  padding: 20px 25px 25px;
  margin-bottom: 50px;
}
.c-form01-info__sub {
  font-size: 1.6rem;
  margin-bottom: 10px;
}
.c-form01-info__txt {
  padding-left: 1.1em;
  text-indent: -1.1em;
  line-height: var(--lh_head);
}
.c-form01-info__txt + .c-form01-info__txt {
  margin-top: 20px;
}
.c-form01-info__note {
  margin-bottom: 20px;
  margin-top: 0 !important;
  font-size: 1.4rem !important;
}
.c-form01__main {
  padding: 57px 20px 60px;
}
.c-form01__row + .c-form01__row {
  margin-top: 25px;
  padding-top: 30px;
  border-top: 1px solid rgb(var(--border));
}
.c-form01__header {
  display: flex;
  align-items: flex-end;
  flex-wrap: wrap;
}
.c-form01__header-main {
  font-size: 1.8rem;
  line-height: var(--lh_head);
  margin-right: 10px;
}
.c-form01__header-label {
  display: block;
  margin-bottom: 5px;
  padding: 2px 4px;
  background: rgb(var(--border));
  font-size: 1.2rem;
  line-height: 1.2;
}
.c-form01__header-label.is-required {
  background: rgb(var(--main));
  color: #fff;
}
.c-form01__data {
  padding-top: 15px;
}
.c-form01__data > *:first-child {
  margin-top: 0;
}
.c-form01__subhead {
  position: relative;
  margin: 20px 0 12px;
  padding-left: 19px;
  line-height: var(--lh_head);
  font-size: 1.6rem;
}
.c-form01__subhead::before {
  position: absolute;
  top: 0.78em;
  left: 0;
  display: block;
  content: "";
  width: 10px;
  height: 1px;
  background: rgb(var(--bg02));
}
.c-form01__example {
  margin-bottom: 10px;
}
@media all and (max-width: 767px) {
  .c-form01__main {
    margin: 0 -20px;
  }
}
@media all and (min-width: 768px) {
  .c-form01__inner {
    padding-top: 120px;
    padding-bottom: 305px;
  }
  .c-form01__read {
    margin-bottom: 40px;
  }
  .c-form01-info {
    padding: 40px 50px 50px;
    margin-bottom: 100px;
  }
  .c-form01-info__sub {
    font-size: 1.9rem;
    margin-bottom: 18px;
  }
  .c-form01-info__note {
    font-size: 1.6rem !important;
  }
  .c-form01__main {
    padding: 100px 100px 90px;
  }
  .c-form01__row + .c-form01__row {
    margin-top: 35px;
    padding-top: 40px;
  }
  .c-form01__header-main {
    font-size: 1.9rem;
    margin-right: 14px;
  }
  .c-form01__header-label {
    margin-bottom: 4px;
    padding: 2px 5px 3px;
    font-size: 1.4rem;
  }
  .c-form01__data {
    padding-top: 22px;
  }
}

/* .c-form01__steps
============================== */
.c-form01__steps {
  display: flex;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  line-height: var(--lh_head);
  font-size: 1.2rem;
  margin-bottom: 30px;
}
.c-form01__steps-item {
  position: relative;
  flex-basis: 33.33%;
  max-width: 33.33%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  height: 30px;
  background: rgb(var(--border));
  box-sizing: border-box;
  padding-left: 10px;
}
.c-form01__steps-item::before, .c-form01__steps-item::after {
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  display: block;
  border-style: solid;
  border-width: 15px;
  border-right-width: 0;
  border-color: transparent;
  border-left-color: rgb(var(--bg01));
  z-index: 1;
}
.c-form01__steps-item::before {
  border-width: 18px;
}
.c-form01__steps-item::after {
  border-left-color: rgb(var(--border));
}
@media all and (max-width: 767px) {
  .c-form01__steps-item.is-confirm {
    padding-left: 20px;
  }
}
@media all and (min-width: 768px) {
  .c-form01__steps {
    font-size: 1.4rem;
    margin: 0 auto 47px;
    max-width: 880px;
  }
  .c-form01__steps-item::after {
    border-left-width: 20px;
  }
  .c-form01__steps-item::before {
    border-width: 17px;
    border-left-width: 22px;
  }
  .c-form01__steps-item::after {
    border-left-color: rgb(var(--border));
  }
}

.mw_wp_form_input .c-form01__steps-item.is-input {
  background: rgb(var(--main));
  color: #fff;
}
.mw_wp_form_input .c-form01__steps-item.is-input::after {
  border-left-color: rgb(var(--main));
}

.mw_wp_form_confirm .c-form01__steps-item.is-confirm {
  background: rgb(var(--main));
  color: #fff;
}
.mw_wp_form_confirm .c-form01__steps-item.is-confirm::after {
  border-left-color: rgb(var(--main));
}

.mw_wp_form_complete .c-form01__steps-item.is-complete {
  background: rgb(var(--main));
  color: #fff;
}
.mw_wp_form_complete .c-form01__steps-item.is-complete::after {
  border-left-color: rgb(var(--main));
}

/* .c-form01 input textarea
============================== */
.c-form01 input[type=text], .c-form01 input[type=email], .c-form01 input[type=tel], .c-form01 textarea {
  border: 1px solid rgb(var(--border));
  box-shadow: 0 3px 0 inset rgba(var(--border), 0.5);
  box-sizing: border-box;
  width: 100%;
  height: 50px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.c-form01 input[type=text]:focus, .c-form01 input[type=email]:focus, .c-form01 input[type=tel]:focus, .c-form01 textarea:focus {
  border-color: rgb(var(--main));
  box-shadow: 0 3px 0 inset rgba(var(--border), 0.5), 0px 0px 6px rgba(var(--main), 0.5);
}
.c-form01 textarea {
  height: 250px;
}
@media all and (min-width: 768px) {
  .c-form01 input[type=text], .c-form01 input[type=email], .c-form01 input[type=tel] {
    width: 400px;
  }
}

/* .c-form01 radio
============================== */
.c-form01 .mwform-radio-field {
  line-height: var(--lh_head);
  font-size: 1.6rem;
  display: block;
}
.c-form01 .mwform-radio-field label {
  display: block;
}
.c-form01 .mwform-radio-field input {
  border-width: 0;
  clip: rect(0 0 0 0);
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
}
.c-form01 .mwform-radio-field .mwform-radio-field-text {
  position: relative;
  display: inline-block;
  padding-left: 34px;
}
.c-form01 .mwform-radio-field .mwform-radio-field-text::before, .c-form01 .mwform-radio-field .mwform-radio-field-text::after {
  box-sizing: border-box;
  position: absolute;
  content: "";
  display: block;
  border-radius: 50%;
}
.c-form01 .mwform-radio-field .mwform-radio-field-text::before {
  top: 1px;
  left: 0;
  width: 24px;
  height: 24px;
  border: 1px solid rgb(var(--border));
  background: #fff;
}
.c-form01 .mwform-radio-field .mwform-radio-field-text::after {
  top: 8px;
  left: 7px;
  width: 10px;
  height: 10px;
  background: rgb(var(--main));
  transition: opacity 0.1s ease;
  opacity: 0;
}
.c-form01 .mwform-radio-field input:checked + .mwform-radio-field-text::after {
  opacity: 1;
}
@media all and (min-width: 768px) {
  .c-form01 .mwform-radio-field + .mwform-radio-field {
    margin-top: 0;
  }
  .c-form01 .mwform-radio-field .mwform-radio-field-text::before {
    top: 2px;
  }
  .c-form01 .mwform-radio-field input:checked + .mwform-radio-field-text::after {
    top: 9px;
  }
}

@media all and (max-width: 767px) {
  .c-form01 .c-form01__radio .mwform-radio-field + .mwform-radio-field {
    margin-top: 20px;
  }
}
@media all and (min-width: 768px) {
  .c-form01 .c-form01__radio .mwform-radio-field {
    width: auto;
    display: inline-block;
  }
  .c-form01 .c-form01__radio .mwform-radio-field + .mwform-radio-field {
    margin-left: 20px;
  }
}

/* .c-form01 checkbox
============================== */
.c-form01 .mwform-checkbox-field {
  line-height: var(--lh_head);
  font-size: 1.6rem;
  display: block;
}
.c-form01 .mwform-checkbox-field label {
  display: block;
}
.c-form01 .mwform-checkbox-field input {
  border-width: 0;
  clip: rect(0 0 0 0);
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
}
.c-form01 .mwform-checkbox-field .mwform-checkbox-field-text {
  position: relative;
  display: inline-block;
  padding-left: 34px;
}
.c-form01 .mwform-checkbox-field .mwform-checkbox-field-text::before, .c-form01 .mwform-checkbox-field .mwform-checkbox-field-text::after {
  box-sizing: border-box;
  position: absolute;
  content: "";
  display: block;
}
.c-form01 .mwform-checkbox-field .mwform-checkbox-field-text::before {
  top: 1px;
  left: 0;
  width: 24px;
  height: 24px;
  border: 1px solid rgb(var(--border));
  background: #fff;
}
.c-form01 .mwform-checkbox-field .mwform-checkbox-field-text::after {
  top: 8px;
  left: 5px;
  width: 14px;
  height: 6px;
  transform: rotate(-45deg);
  border-left: 2px solid rgb(var(--main));
  border-bottom: 2px solid rgb(var(--main));
  transition: opacity 0.1s ease;
  opacity: 0;
}
.c-form01 .mwform-checkbox-field input:checked + .mwform-checkbox-field-text::after {
  opacity: 1;
}
@media all and (min-width: 768px) {
  .c-form01 .mwform-checkbox-field + .mwform-checkbox-field {
    margin-top: 0;
  }
  .c-form01 .mwform-checkbox-field .mwform-checkbox-field-text::before {
    top: 2px;
  }
  .c-form01 .mwform-checkbox-field input:checked + .mwform-checkbox-field-text::after {
    top: 9px;
  }
}

@media all and (max-width: 767px) {
  .c-form01 .c-form01__checkbox .mwform-checkbox-field + .mwform-checkbox-field {
    margin-top: 20px;
  }
}
@media all and (min-width: 768px) {
  .c-form01 .c-form01__checkbox .mwform-checkbox-field {
    width: auto;
    display: inline-block;
  }
  .c-form01 .c-form01__checkbox .mwform-checkbox-field + .mwform-checkbox-field {
    margin-left: 20px;
  }
}

/* .c-form01-agree
============================== */
.c-form01-agree__box {
  height: 200px;
  padding: 20px;
  box-sizing: border-box;
  overflow: auto;
  background: #fff;
  border: 1px solid rgb(var(--border));
}
.c-form01-agree__box-txt {
  line-height: var(--lh_head);
}
.c-form01-agree__box-txt + .c-form01-agree__box-txt {
  margin-top: 1em;
}
.c-form01-agree__check {
  margin-top: 30px;
}
@media all and (min-width: 768px) {
  .c-form01-agree__box {
    height: 250px;
    padding: 25px 30px;
  }
  .c-form01-agree__check {
    margin: 45px auto 0;
    text-align: center;
  }
}

.c-form01__error {
  margin-top: 10px;
}
.c-form01__error.is-center {
  text-align: center;
}

/* .c-form01__area-btn
============================== */
.c-form01__btn {
  font-size: 1.4rem;
  position: relative;
  max-width: 295px;
  min-height: 60px;
  margin: 30px auto 0;
  padding: 12px 0 11px;
  color: #fff;
  background: rgb(var(--main));
  border: 1px solid rgb(var(--main));
  line-height: var(--lh_head);
  letter-spacing: inherit;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.c-form01__btn::after {
  position: absolute;
  top: 50%;
  right: 20px;
  width: 7px;
  height: 7px;
  content: "";
  border-top: 1px solid;
  border-right: 1px solid;
  transform: rotate(45deg) translateY(-50%);
}
@media all and (min-width: 768px) {
  .c-form01__btn {
    font-size: 1.6rem;
    max-width: 360px;
    min-height: 70px;
    margin-top: 39px;
  }
  .c-form01__btn::after {
    right: 30px;
    width: 9px;
    height: 9px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .c-form01__btn {
    transition: all 0.3s ease;
  }
  .c-form01__btn:hover, .c-form01__btn:focus-visible {
    color: rgb(var(--main));
    background: #fff;
  }
}

.c-form01__back {
  font-size: 1.4rem;
  position: relative;
  max-width: 130px;
  min-height: 30px;
  margin: 20px auto 0;
  padding: 0;
  color: rgb(var(--main));
  line-height: var(--lh_head);
  letter-spacing: inherit;
  border: none;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.c-form01__back::before {
  width: 7px;
  height: 7px;
  content: "";
  border-bottom: 1px solid;
  border-left: 1px solid;
  transform: rotate(45deg);
  margin: 1px 8px 0 0;
}
@media all and (min-width: 768px) {
  .c-form01__back {
    font-size: 1.6rem;
    max-width: 150px;
    min-height: 40px;
    margin-top: 30px;
  }
  .c-form01__back::before {
    width: 9px;
    height: 9px;
    margin-top: 2px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .c-form01__back {
    transition: all 0.3s ease;
  }
  .c-form01__back:hover, .c-form01__back:focus-visible {
    color: #fff;
    background: rgb(var(--main));
  }
}

/* .c-head01.is-white
================================================== */
.c-head01.is-white {
  color: rgb(var(--white));
}
@media all and (min-width: 768px) {
  .c-head01.is-white {
    padding-left: 0;
    font-size: 3.8rem;
    padding-top: 0;
    text-indent: inherit;
  }
  .c-head01.is-white-in {
    display: inline-block;
    line-height: 1.55;
  }
}

/* .c-head01
================================================== */
.c-head01 {
  text-align: center;
  margin: auto;
  font-size: 3rem;
  letter-spacing: 0.32em;
  padding-left: 10px;
  margin-bottom: 57px;
  padding-top: 3.3em;
  text-indent: -3.3em;
}
.c-head01-in {
  border-left: 1px solid;
  padding-left: 4px;
}
@media all and (min-width: 768px) {
  .c-head01 {
    padding-left: 0;
    font-size: 3.8rem;
    padding-top: 0;
    text-indent: inherit;
  }
  .c-head01-in {
    display: inline-block;
    line-height: 1.55;
  }
}

/* .c-head02
================================================== */
.c-head02 {
  text-align: center;
  margin-bottom: 30px;
}
.c-head02__txt {
  margin-bottom: 10px;
}
.c-head02__main {
  font-size: 3rem;
  line-height: var(--lh_head);
  letter-spacing: var(--ls_head);
}
@media all and (min-width: 768px) {
  .c-head02 {
    text-align: left;
    margin-bottom: 36px;
  }
  .c-head02__txt {
    font-size: 2.2rem;
    letter-spacing: var(--ls_head);
    margin-bottom: 2px;
  }
  .c-head02__main {
    font-size: 6rem;
  }
}

/* .c-head03
================================================== */
.c-head03 {
  position: relative;
  text-align: center;
  margin-bottom: 25px;
}
.c-head03.has-bg {
  padding-top: 39px;
}
.c-head03.has-bg::before, .c-head03.has-bg::after {
  position: absolute;
  top: 0;
  content: "";
  width: 66px;
  height: 58px;
  background: no-repeat left top/contain;
}
.c-head03.has-bg::before {
  left: 0;
}
.c-head03.has-bg::after {
  right: 0;
  transform: scaleX(-1);
}
.c-head03.has-bg.is-spring::before, .c-head03.has-bg.is-spring::after {
  background-image: url(../img/menu/bg_head_spring01.png);
}
.c-head03.has-bg.is-summer::before, .c-head03.has-bg.is-summer::after {
  background-image: url(../img/menu/bg_head_summer01.png);
}
.c-head03.has-bg.is-autumn::before, .c-head03.has-bg.is-autumn::after {
  background-image: url(../img/menu/bg_head_autumn01.png);
}
.c-head03.has-bg.is-winter::before, .c-head03.has-bg.is-winter::after {
  background-image: url(../img/menu/bg_head_winter01.png);
}
.c-head03__ico {
  display: block;
  width: 32px;
  margin: 0 auto 10px;
}
.c-head03__ico img {
  display: block;
}
.c-head03__ico.is-line {
  width: 21px;
  height: 21px;
}
.c-head03__ico.is-line::before {
  display: block;
  content: "";
  border-top: 1px solid;
  transform: skewY(-45deg);
  transform-origin: right top;
}
.c-head03__main {
  font-size: 2.5rem;
  line-height: var(--lh_head);
  letter-spacing: var(--ls_head);
}
@media all and (min-width: 768px) {
  .c-head03 {
    margin-bottom: 58px;
  }
  .c-head03.has-bg {
    max-width: 704px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 0;
  }
  .c-head03.has-bg::before, .c-head03.has-bg::after {
    width: 132px;
    height: 116px;
  }
  .c-head03__ico {
    width: 50px;
    margin-bottom: 12px;
  }
  .c-head03__ico.is-line {
    width: 33px;
    height: 33px;
  }
  .c-head03__main {
    font-size: 4rem;
  }
}

/* .c-head04
================================================== */
.c-head04 {
  font-size: 2.2rem;
  letter-spacing: var(--ls_head);
  position: relative;
  line-height: var(--lh_head);
  padding-bottom: 19px;
  margin-bottom: 30px;
}
.c-head04::before {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background: url(../img/common/img_border03_sp.png) no-repeat center center/cover;
  position: absolute;
  left: 0;
  bottom: 0;
}
@media all and (min-width: 768px) {
  .c-head04 {
    font-size: 3.3rem;
    padding-bottom: 23px;
    margin-bottom: 50px;
  }
  .c-head04::before {
    height: 2px;
    background-image: url(../img/common/img_border03_pc.png);
  }
}

/* .c-head05
================================================== */
.c-head05 {
  position: relative;
  letter-spacing: var(--ls_head);
  line-height: var(--lh_head);
  margin-bottom: 26px;
  font-size: 2rem;
}
.c-head05.is-small {
  margin-bottom: 18px;
  font-size: 1.6rem;
}
.c-head05.is-center {
  text-align: center;
}
@media all and (max-width: 767px) {
  .c-head05.is-center-sp {
    text-align: center;
  }
}
@media all and (min-width: 768px) {
  .c-head05 {
    font-size: 2.7rem;
    margin-bottom: 39px;
  }
  .c-head05.is-small {
    margin-bottom: 20px;
    font-size: 1.9rem;
  }
  .c-head05.is-center-pc {
    text-align: center;
  }
}

/* .c-ico
================================================== */
.c-ico {
  display: inline-block;
  vertical-align: middle;
}
.c-ico svg {
  transition: all 0.3s ease;
  display: block;
}

/* .c-map01.is-gray
================================================== */
.c-map01.is-gray .c-map01__link {
  background-color: rgb(var(--sub));
  color: rgb(var(--white));
}

/* .c-map01
================================================== */
.c-map01 {
  display: inline-block;
}
.c-map01__link {
  background-color: rgb(var(--sub));
  font-size: 1.1rem;
  padding: 2px 14px 6px 11px;
}
.c-map01__link-ico {
  width: 11px;
  height: 15px;
  margin-right: 8px;
}
@media all and (min-width: 768px) {
  .c-map01__link {
    padding: 6px 13px 8px 11px;
    transition: all 0.3s ease;
  }
  .c-map01__link:hover {
    opacity: 0.7;
  }
  .c-map01__link-ico {
    margin-top: -2px;
  }
}

/* .c-pager01
===================================*/
.c-pager01 {
  overflow: hidden;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  text-align: center;
  margin: 30px -5px -10px;
}
.c-pager01 li {
  margin: 0 5px 10px;
}
.c-pager01 li a, .c-pager01 li span {
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 30px;
  height: 30px;
  line-height: 1;
  border: 1px solid rgb(var(--black));
  text-decoration: none;
}
.c-pager01 li.pages span {
  width: auto;
  border: 0;
}
.c-pager01 li.current span {
  color: #fff;
  background: rgb(var(--black));
}
.c-pager01 li.first, .c-pager01 li.previous {
  margin-right: 15px;
}
.c-pager01 li.first a, .c-pager01 li.last a {
  width: auto;
  border-color: transparent;
  padding-right: 15px;
  padding-left: 15px;
}
.c-pager01 li.next, .c-pager01 li.last {
  margin-left: 15px;
}
.c-pager01 li.extend span {
  border: 0;
}
@media all and (min-width: 768px) {
  .c-pager01 li a:hover {
    text-decoration: none;
    border: 1px solid rgb(var(--black));
    background-color: rgb(var(--black));
    color: #fff;
  }
}

/*  .c-pager02
================================================== */
.c-pager02 {
  position: relative;
  overflow: hidden;
  margin-top: 30px;
  line-height: 1;
}
.c-pager02 a {
  box-sizing: border-box;
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  height: 50px;
  padding: 15px;
  border: 1px solid;
  text-decoration: none;
}
.c-pager02__previous, .c-pager02__next {
  width: calc(50% - 10px);
}
.c-pager02__previous {
  float: left;
}
.c-pager02__previous a {
  justify-content: flex-start;
  padding-left: 30px;
}
.c-pager02__next {
  float: right;
}
.c-pager02__next a {
  justify-content: flex-end;
  padding-right: 30px;
}
.c-pager02__all {
  width: 100%;
  clear: both;
  padding-top: 20px;
}
.c-pager02__all a {
  justify-content: center;
}
@media all and (min-width: 768px) {
  .c-pager02 a {
    transition: all 0.3s ease;
  }
  .c-pager02 a:hover {
    background: rgb(var(--black));
    color: #fff;
    border-color: rgb(var(--black));
  }
}

/* .c-relate01
================================================== */
.c-relate01__inner {
  padding-bottom: 80px;
}
@media all and (min-width: 768px) {
  .c-relate01__inner {
    padding-bottom: 160px;
  }
}

.c-relate01-list__item-in {
  position: relative;
  display: block;
  color: #fff;
}
.c-relate01-list__item-bg {
  position: relative;
  display: block;
  width: 100%;
  height: 0;
  padding-top: 42.9850746269%;
}
.c-relate01-list__item-bg::after {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  content: "";
  width: 100%;
  height: 72.2px;
  background: linear-gradient(rgba(var(--bg02), 0) 0%, rgb(var(--bg02)) 100%);
}
.c-relate01-list__item-bg img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.c-relate01-list__item-head {
  position: absolute;
  bottom: 15px;
  left: 20px;
  display: flex;
  align-items: center;
}
.c-relate01-list__item-head-ico {
  width: 6px;
  height: 11px;
  margin-right: 10px;
}
.c-relate01-list__item-head-main {
  max-width: calc(100% - 16px);
  white-space: nowrap;
  font-size: 1.6rem;
  line-height: var(--lh_head);
}
@media all and (max-width: 767px) {
  .c-relate01-list__item + .c-relate01-list__item {
    margin-top: 15px;
  }
}
@media all and (min-width: 768px) {
  .c-relate01-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 22px -9px 0;
  }
  .c-relate01-list__item {
    flex-basis: calc((100% - 54px) / 3);
    max-width: calc((100% - 54px) / 3);
    margin: 18px 9px 0;
  }
  .c-relate01-list__item-head {
    left: 22px;
  }
  .c-relate01-list__item-head-ico {
    width: 7px;
    height: 12.6px;
    margin-right: 9px;
  }
  .c-relate01-list__item-head-main {
    font-size: 1.9rem;
  }
}

/* .c-section01
================================================ */
.c-section01__inner {
  padding-top: 60px;
  padding-bottom: 80px;
}
@media all and (min-width: 768px) {
  .c-section01__inner {
    padding-top: 120px;
    padding-bottom: 120px;
  }
}

.c-section01-group {
  margin-top: 50px;
}
@media all and (min-width: 768px) {
  .c-section01-group {
    margin-top: 100px;
  }
}

/* .c-set01
================================================ */
.c-set01__img {
  margin-bottom: 26px;
}
.c-set01__head + .c-set01__txt {
  margin-top: -0.5em;
}
@media all and (min-width: 768px) {
  .c-set01 {
    display: flex;
    justify-content: center;
    margin: 0 -25px;
  }
  .c-set01__img {
    margin: 0 25px;
    flex-basis: calc(100% - 630px);
    max-width: calc(100% - 630px);
  }
  .c-set01__detail {
    margin: 0 25px;
    flex-basis: 530px;
    max-width: 530px;
  }
}

/* .c-single-content
================================================== */
.c-single-content *:first-child {
  margin-top: 0;
}
.c-single-content *:last-child {
  margin-bottom: 0;
}
.c-single-content p {
  margin: 1em 0;
}
.c-single-content a {
  text-decoration: underline;
}
@media all and (min-width: 1260px) {
  .c-single-content a:hover {
    text-decoration: none;
  }
  .c-single-content .alignleft {
    float: left;
  }
  .c-single-content .alignright {
    float: right;
  }
  .c-single-content .aligncenter {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }
}

/* .c-txt-lead01
================================================== */
.c-txt-lead01.is-center {
  text-align: center;
}
@media all and (min-width: 768px) {
  .c-txt-lead01.is-center-pc {
    text-align: center;
  }
}

/* .c-txt-note01
================================================== */
.c-txt-note01 {
  margin-top: 12px;
  line-height: var(--lh_head);
  font-size: 1.2rem;
}
.c-txt-note01.has-mark {
  padding-left: 1.1em;
  text-indent: -1.1em;
}
.c-txt-note01.is-center {
  text-align: center;
}
.c-txt-note01.is-right {
  text-align: right;
}
@media all and (min-width: 768px) {
  .c-txt-note01 {
    margin-top: 14px;
    font-size: 1.3rem;
  }
  .c-txt-note01.is-center-pc {
    text-align: center;
  }
  .c-txt-note01.is-right-pc {
    text-align: right;
  }
}

/* .l-breadcrumb
================================================ */
@media all and (min-width: 768px) {
  .l-breadcrumb {
    position: relative;
    z-index: 1;
  }
}

.l-breadcrumb-list {
  display: flex;
  flex-wrap: wrap;
  padding-top: 15px;
  font-size: 1.2rem;
}
.l-breadcrumb-list__item {
  display: inline-block;
  vertical-align: top;
}
.l-breadcrumb-list__item + .l-breadcrumb-list__item {
  margin-left: 5px;
}
.l-breadcrumb-list__item + .l-breadcrumb-list__item:before {
  content: ">";
  margin-right: 5px;
  color: rgb(var(--border));
}
.l-breadcrumb-list__item a {
  text-decoration: underline;
  color: rgb(var(--main));
}
.l-breadcrumb-list__item span {
  color: rgb(var(--sub));
}
@media all and (max-width: 767px) {
  .l-breadcrumb-list {
    white-space: nowrap;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
    overflow: auto;
  }
  .l-breadcrumb-list::-webkit-scrollbar {
    display: none;
  }
}
@media all and (min-width: 768px) {
  .l-breadcrumb-list {
    font-size: 1.4rem;
    padding-top: 20px;
  }
}

/* .l-footer
================================================ */
.l-footer {
  position: relative;
  background-color: rgb(var(--bg02));
}
.l-footer__info {
  background-color: rgb(var(--white));
  transform: translateY(-73px);
  margin: 0 20px -73px;
}
.l-footer__info-logo {
  width: 197px;
  margin: auto;
}
.l-footer__info-logo-link {
  padding: 44px 0 45px;
}
.l-footer__nav {
  display: none;
}
.l-footer-shop {
  color: rgb(var(--white));
}
.l-footer-shop-wrap {
  padding: 59px 20px 42px;
  position: relative;
  overflow: hidden;
}
.l-footer-shop-wrap::before {
  content: "";
  display: block;
  width: 335px;
  height: 131px;
  background: url(../img/common/bg_footer01.png) no-repeat center/cover;
  position: absolute;
  right: -48px;
  bottom: 88px;
}
.l-footer-shop__item + .l-footer-shop__item {
  margin-top: 57px;
}
.l-footer-shop__item-name {
  font-size: 2.6rem;
  letter-spacing: var(--ls_head);
  position: relative;
  line-height: 1.5;
  padding-bottom: 15px;
  margin-bottom: 14px;
}
.l-footer-shop__item-name::before {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background: url(../img/common/img_border01.png) no-repeat center/cover;
  position: absolute;
  left: 0;
  bottom: 0;
}
.l-footer-shop__item-name-en {
  font-size: 1rem;
  margin-left: 9px;
  margin-top: -11px;
  display: inline-block;
  letter-spacing: 0.1em;
  vertical-align: middle;
}
.l-footer-shop__item-addrs {
  font-size: 1.3rem;
  color: rgb(var(--sub));
  margin-bottom: -4px;
}
.l-footer-shop__item-time:first-of-type {
  margin-top: 9px;
  margin-bottom: -8px;
}
.l-footer-shop__item-time-head, .l-footer-shop__item-time-num {
  display: inline-block;
}
.l-footer-shop__item-time-head {
  border: 1px solid rgb(var(--white));
  line-height: 1.1;
  font-size: 1.1rem;
  padding: 3px 0 4px;
  margin-right: 5px;
  min-width: 70px;
  box-sizing: border-box;
  text-align: center;
}
.l-footer-shop__item-time-num {
  font-size: 1.3rem;
}
.l-footer-shop__item-note {
  line-height: 1.5;
  font-size: 80%;
  margin-bottom: 15px;
}
.l-footer-shop__item-tel {
  margin-top: 13px;
  line-height: 1.65;
}
.l-footer-shop__item-tel-num {
  text-decoration: underline !important;
}
.l-footer__cr {
  text-align: center;
  font-size: 1.2rem;
  color: rgba(var(--white), 0.3);
  margin-top: 120px;
}
@media all and (min-width: 768px) {
  .l-footer__info {
    max-width: 1780px;
    box-sizing: border-box;
    margin: 0 auto -145px;
    display: flex;
    flex-wrap: wrap;
    padding: 108px 80px 109px;
    align-items: center;
    transform: translateY(-145px);
  }
  .l-footer__info-logo {
    width: 325px;
    margin: 0;
  }
  .l-footer__info-logo-link {
    padding: 0;
  }
  .l-footer__nav {
    display: flex;
    justify-content: flex-end;
    width: calc(100% - 325px);
    box-sizing: border-box;
  }
  .l-footer__nav-item {
    font-size: 1.5rem;
    margin-left: 33px;
  }
  .l-footer__nav-item-link {
    position: relative;
  }
  .l-footer__nav-item-link::before {
    content: "";
    display: block;
    width: 0;
    height: 1px;
    background-color: rgb(var(--black));
    position: absolute;
    bottom: 0;
    left: 0;
    transition: all 0.3s ease;
  }
  .l-footer__nav-item-link:hover::before {
    width: 100%;
  }
  .l-footer__nav-item-ico {
    width: 9.1px;
    height: 9.1px;
    margin-top: -4px;
    margin-left: 12px;
  }
  .l-footer-shop {
    max-width: 1780px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .l-footer-shop-wrap {
    padding: 141px 30px 42px;
  }
  .l-footer-shop-wrap::before {
    width: 635px;
    height: 284px;
    right: -48px;
    bottom: -38px;
  }
  .l-footer-shop__item {
    width: calc(33.333% - 44px);
    box-sizing: border-box;
  }
  .l-footer-shop__item + .l-footer-shop__item {
    margin-top: 0;
  }
  .l-footer-shop__item-name {
    font-size: 3.6rem;
    margin-bottom: 17px;
  }
  .l-footer-shop__item-name-en {
    font-size: 1.1rem;
  }
  .l-footer-shop__item-addrs {
    display: inline-block;
    letter-spacing: var(--ls_head);
    margin-right: 9px;
    margin-bottom: 0;
  }
  .l-footer-shop__item-time:first-of-type {
    margin-top: 8px;
    margin-bottom: -15px;
  }
  .l-footer-shop__item-time-head {
    min-width: 80px;
    font-size: 1.3rem;
    padding: 3px 0 2px;
    margin-right: 3px;
  }
  .l-footer-shop__item-time-num {
    font-size: 1.7rem;
  }
  .l-footer-shop__item-tel {
    font-size: 1.3rem;
    margin-top: 10px;
  }
  .l-footer-shop__item-tel-num:hover {
    text-decoration: none !important;
  }
  .l-footer__cr {
    margin-top: 177px;
  }
}
@media (min-width: 768px) and (max-width: 1490px) {
  .l-footer__info {
    padding: 108px 40px 109px;
  }
  .l-footer__info-logo {
    width: 250px;
  }
  .l-footer__nav {
    width: calc(100% - 250px);
  }
  .l-footer__nav-item {
    margin-left: 20px;
  }
  .l-footer-shop-wrap {
    padding-left: 30px;
    padding-right: 30px;
  }
}

/* .l-footer-page-top
================================================ */
.l-footer-page-top__link {
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  padding: 10px;
  background: rgb(var(--black));
  color: #fff;
  text-align: center;
  text-decoration: none;
  overflow: hidden;
  text-indent: 200%;
  white-space: nowrap;
}
@media all and (min-width: 768px) {
  .l-footer-page-top {
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    position: -webkit-sticky;
    position: sticky;
    right: 30px;
    bottom: 60px;
    z-index: 10;
    width: 50px;
    height: 50px;
    border-radius: 100px;
    margin: 0 0 30px auto;
    transition: opacity 0.3s ease;
  }
  .l-footer-page-top.is-shown {
    opacity: 1;
    visibility: visible;
  }
  .l-footer-page-top__link {
    width: 100%;
    height: 100%;
  }
}

/* .l-header
================================================ */
.l-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  min-width: 320px;
  z-index: 2000;
  background-color: rgb(var(--bg01));
}
@media all and (min-width: 768px) {
  .l-header {
    min-width: var(--contents_width_with_padding);
    background-color: transparent;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    position: absolute;
    transition: all 0.3s ease;
  }
  .l-header.is-fixed {
    background-color: rgb(var(--white));
    position: fixed;
  }
  .l-header.is-fixed .l-header-info__contact {
    width: 153px;
    height: 99px;
  }
  .l-header.is-fixed .l-header-info__contact-txt {
    writing-mode: initial;
    text-align: center;
  }
  .l-header.is-fixed .l-nav {
    padding-right: 151px;
  }
  .l-header.is-fixed .l-nav-list {
    color: rgb(var(--black));
    margin-top: 0px;
  }
  .l-header.is-fixed .l-nav-list__item-link-span::before {
    background-color: rgb(var(--black));
  }
  .l-header.is-fixed .l-nav-list-sub {
    margin-top: 25px;
  }
  .l-header.is-fixed .l-nav-list-sub__item {
    color: rgb(var(--black));
  }
  .l-header.is-fixed .l-nav-list-sub__item-link-span::before {
    background-color: rgb(var(--black));
  }
}

/* .l-header-info
================================================== */
.l-header-info {
  position: relative;
  z-index: 3;
  height: 60px;
  padding: 12px 10px 9px 14px;
  box-sizing: border-box;
}
.l-header-info__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.l-header-info__logo {
  width: 142px;
}
.l-header-info__contact {
  position: absolute;
  top: 0;
  right: 60px;
  width: 60px;
  height: 60px;
  color: #fff;
  background: var(--grad);
}
.l-header-info__contact-link {
  background: var(--grad);
}
.l-header-info__contact-ico {
  width: 20px;
  height: 15px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media all and (min-width: 768px) {
  .l-header-info {
    height: auto;
    width: 330px;
    padding: 0;
    position: static;
  }
  .l-header-info__logo {
    width: 330px;
    background-color: rgb(var(--white));
  }
  .l-header-info__logo-link {
    padding: 15px 30px 19px;
  }
  .l-header-info__logo img {
    width: 258px;
  }
  .l-header-info__btn-contact {
    margin: 0;
  }
  .l-header-info__contact {
    right: 0;
    height: 200px;
    width: 110px;
  }
  .l-header-info__contact-link {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
  }
  .l-header-info__contact-link:hover {
    opacity: 0.7;
  }
  .l-header-info__contact-txt {
    padding-bottom: 10px;
    line-height: 1.65;
    letter-spacing: 0.33em;
    padding-bottom: 10px;
    font-size: 1.5rem;
    writing-mode: var(--txt_vertical);
  }
}

/* .l-nav-btn
================================================== */
.l-nav-btn {
  position: absolute;
  top: 0;
  right: 0;
  width: 60px;
  height: 60px;
  cursor: pointer;
  border: none;
}
.l-nav-btn__line {
  position: absolute;
  width: 26px;
  height: 1px;
  left: 17px;
  content: "";
  background: rgb(var(--black));
  transition: all 0.3s ease;
}
.l-nav-btn__line:nth-child(1) {
  top: 23px;
}
.l-nav-btn__line:nth-child(2) {
  top: 30px;
}
.l-nav-btn__line:nth-child(3) {
  top: 37px;
}
.l-nav-btn.is-open .l-nav-btn__line {
  top: 18px;
  height: 24px;
}
.l-nav-btn.is-open .l-nav-btn__line:nth-child(1) {
  left: 28px;
  transform: rotate(-45deg);
}
.l-nav-btn.is-open .l-nav-btn__line:nth-child(2) {
  opacity: 0;
}
.l-nav-btn.is-open .l-nav-btn__line:nth-child(3) {
  left: 28px;
  transform: rotate(45deg);
}

/* .l-nav
================================================ */
.l-nav {
  position: absolute;
  top: 60px;
  left: 0;
  z-index: 2;
  width: 100%;
  max-height: calc(100vh - 60px);
  min-width: 320px;
  background-color: rgb(var(--bg01));
  box-sizing: border-box;
  -webkit-overflow-scrolling: touch;
  border-top: 1px solid rgb(var(--border));
}
@media all and (max-width: 767px) {
  .l-nav {
    overflow: auto;
    transform: translateX(120%);
    transition: all 0.3s ease;
  }
  .l-nav::-webkit-scrollbar {
    display: none;
  }
  .l-nav.is-open {
    transform: translateX(0);
  }
}
.l-nav-info {
  padding: 0 40px 64px;
  margin-top: 43px;
}
.l-nav-info__btn {
  margin-bottom: 56px;
}
.l-nav-info__btn-link {
  display: block;
  background: var(--grad);
  color: rgb(var(--white));
  text-align: center;
  padding: 18px 0 17px;
}
.l-nav-info__btn-ico {
  width: 20px;
  height: 15px;
  margin-right: 10px;
  margin-top: -4px;
}
.l-nav-info__item {
  display: flex;
  flex-wrap: wrap;
  margin-right: -3px;
  border-bottom: 1px solid rgb(var(--border));
  padding-bottom: 17px;
}
.l-nav-info__item + .l-nav-info__item {
  margin-top: 18px;
}
.l-nav-info__item-head {
  font-size: 1.3rem;
  width: 70px;
  padding-top: 10px;
}
.l-nav-info__item-area-txt {
  width: calc(100% - 70px);
  box-sizing: border-box;
  padding-left: 8px;
}
.l-nav-info__item-tel {
  font-size: 2.6rem;
  line-height: 1;
  letter-spacing: var(--ls_head);
}
.l-nav-info__item-tel-ico {
  width: 17px;
  height: 17px;
  margin-right: 3px;
  margin-top: -4px;
}
.l-nav-info__item-txt {
  font-size: 1rem;
  color: rgba(var(--black), 0.4);
  letter-spacing: 0.13em;
  padding-left: 6px;
  margin-top: 6px;
  line-height: 1.6;
}
@media all and (min-width: 768px) {
  .l-nav {
    width: calc(100% - 330px);
    position: static;
    display: flex;
    flex-wrap: wrap;
    padding-right: 110px;
    box-sizing: border-box;
    background-color: transparent;
    border: none;
  }
}

/* .l-nav-list
================================================== */
.l-nav-list__item {
  border-bottom: 1px solid rgb(var(--border));
  font-size: 1.5rem;
}
.l-nav-list__item-link {
  display: block;
  padding: 15px 20px;
}
.l-nav-list-sub {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 45px;
}
.l-nav-list-sub__item {
  font-size: 1.3rem;
  line-height: 1;
}
.l-nav-list-sub__item:not(:first-of-type) {
  border-left: 1px solid rgb(var(--border));
}
.l-nav-list-sub__item-link {
  display: block;
  padding: 0 23px;
}
.l-nav-list-sub__item-ico {
  width: 10px;
  height: 10px;
  margin-left: 9px;
  margin-top: -5px;
}
@media all and (min-width: 768px) {
  .l-nav-list {
    position: relative;
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
    width: 100%;
    margin-top: 12px;
    order: 2;
    color: rgb(var(--white));
    align-items: flex-start;
    padding-right: 31px;
    box-sizing: border-box;
  }
  .l-nav-list__item {
    font-size: 1.7rem;
    border-bottom: none;
  }
  .l-nav-list__item-link {
    padding: 7px 10px;
  }
  .l-nav-list__item-link:hover .l-nav-list__item-link-span::before {
    width: 100%;
  }
  .l-nav-list__item-link-span {
    position: relative;
  }
  .l-nav-list__item-link-span::before {
    content: "";
    display: block;
    width: 0;
    height: 1px;
    background-color: #fff;
    position: absolute;
    bottom: 0;
    left: 0;
    transition: all 0.3s ease;
  }
  .l-nav-list-sub {
    justify-content: flex-end;
    order: 1;
    width: 100%;
    margin-top: 34px;
    padding-right: 20px;
    align-items: center;
    box-sizing: border-box;
  }
  .l-nav-list-sub__item {
    font-size: 1.4rem;
    color: rgb(var(--white));
  }
  .l-nav-list-sub__item:not(:first-of-type) {
    border-color: rgb(var(--white));
  }
  .l-nav-list-sub__item-link:hover .l-nav-list-sub__item-link-span::before {
    width: 100%;
  }
  .l-nav-list-sub__item-link-span {
    position: relative;
  }
  .l-nav-list-sub__item-link-span::before {
    content: "";
    display: block;
    width: 0;
    height: 1px;
    background-color: #fff;
    position: absolute;
    bottom: 0;
    left: 0;
    transition: all 0.3s ease;
  }
  .l-nav-list-sub__item-ico {
    margin-left: 12px;
  }
}

/* .l-nav-overlay
================================================ */
.l-nav-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.25);
  z-index: 1000;
}
@media all and (min-width: 768px) {
  .l-nav-overlay {
    display: none !important;
  }
}

/* .l-ie-attention
================================================ */
.l-ie-attention {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 9999;
  font-weight: 700;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  box-sizing: border-box;
}
.l-ie-attention__txt {
  font-size: 3rem;
  margin-bottom: 18px;
}
.l-ie-attention__note {
  color: #989898;
}
.l-ie-attention__note .l-ie-attention__note-link {
  display: inline-block;
}
.l-ie-attention__note-link {
  font-size: 1.8rem;
  border-bottom: 1px solid;
  position: relative;
  margin-right: 25px;
  display: inline-block;
}
.l-ie-attention__note-link::after {
  content: "";
  position: absolute;
  right: -18px;
  top: 13px;
  width: 11px;
  height: 11px;
  background: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2212%22%20height%3D%2212%22%20viewBox%3D%220%200%2012%2012%22%3E%20%3Cg%20id%3D%22link%22%20transform%3D%22translate(0.5%200.5)%22%3E%20%3Crect%20id%3D%22%E9%95%B7%E6%96%B9%E5%BD%A2_23829%22%20data-name%3D%22%E9%95%B7%E6%96%B9%E5%BD%A2%2023829%22%20width%3D%228%22%20height%3D%228%22%20transform%3D%22translate(3)%22%20fill%3D%22none%22%20stroke%3D%22%23989898%22%20stroke-width%3D%221%22%2F%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_4323%22%20data-name%3D%22%E3%83%91%E3%82%B9%204323%22%20d%3D%22M688%2C718.025h-6v-6%22%20transform%3D%22translate(-682%20-707.025)%22%20fill%3D%22none%22%20stroke%3D%22%23989898%22%20stroke-width%3D%221%22%2F%3E%20%3C%2Fg%3E%3C%2Fsvg%3E") no-repeat center/100%;
}

/* .l-main-img HOME
================================================ */
.l-main-img {
  height: calc(100vh - 60px);
  position: relative;
  overflow: hidden;
}
.l-main-img__parts {
  position: absolute;
  z-index: 10;
  transition: 2s 0.3s ease;
}
.l-main-img__parts.is-item01 {
  width: 122px;
  bottom: 175px;
  left: -100%;
}
.l-main-img__parts.is-item01.is-active {
  left: -35px;
}
.l-main-img__parts.is-item02 {
  width: 142px;
  bottom: 7px;
  right: -100%;
}
.l-main-img__parts.is-item02.is-active {
  right: -28px;
}
.l-main-img__img, .l-main-img__img-wrap, .l-main-img__img-in,
.l-main-img .slick-list,
.l-main-img .slick-track,
.l-main-img .slick-slide,
.l-main-img .slick-slide > div {
  height: 100%;
}
.l-main-img__img {
  position: relative;
}
.l-main-img__img::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(var(--black), 0.45);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  opacity: 0;
  visibility: hidden;
  transition: 0.8s 0.3s ease;
}
.l-main-img__img.is-visible::before {
  opacity: 1;
  visibility: visible;
}
.l-main-img__img.is-active .l-main-img__img-in::before, .l-main-img__img.is-active .l-main-img__img-in::after {
  width: 0;
}
.l-main-img__img-wrap {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
}
.l-main-img__img-in {
  position: relative;
}
.l-main-img__img-in::before, .l-main-img__img-in::after {
  position: absolute;
  top: 0;
  bottom: 0;
  display: block;
  content: "";
  z-index: 1;
  background-color: rgb(var(--bg01));
  pointer-events: none;
  width: 50%;
}
.l-main-img__img-in::before {
  left: 0;
}
.l-main-img__img-in::after {
  right: 0;
}
.l-main-img__img-in.is-active::before, .l-main-img__img-in.is-active::after {
  transition: width 2s cubic-bezier(0.39, 0.575, 0.565, 1) 0s;
  width: 19px;
}
.l-main-img__img-item {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100%;
}
.l-main-img__img-item.is-item01 {
  background-image: url(../img/home/bg_mv01_sp.jpg);
}
.l-main-img__img-item.is-item02 {
  background-image: url(../img/home/bg_mv02_sp.jpg);
}
.l-main-img__img-item.is-item03 {
  background-image: url(../img/home/bg_mv03_sp.jpg);
}
.l-main-img__img-item.is-item04 {
  background-image: url(../img/home/bg_mv04_sp.jpg);
}
.l-main-img__img-item.is-item05 {
  background-image: url(../img/home/bg_mv05_sp.jpg);
}
.l-main-img__img-item.is-item06 {
  background-image: url(../img/home/bg_mv06_sp.jpg);
}
.l-main-img__copy {
  width: 18px;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
  position: relative;
  margin: auto;
  opacity: 0;
  margin-top: 20px;
  transition: 0.8s 0.3s ease;
}
.l-main-img__copy.is-active {
  opacity: 1;
}
@media all and (min-width: 768px) {
  .l-main-img {
    height: 100vh;
  }
  .l-main-img__parts.is-item01 {
    width: auto;
    bottom: auto;
    top: 50%;
    transform: translateY(-50%);
  }
  .l-main-img__parts.is-item01.is-active {
    left: -133px;
  }
  .l-main-img__parts.is-item02 {
    width: auto;
    bottom: 48px;
  }
  .l-main-img__parts.is-item02.is-active {
    right: -122px;
  }
  .l-main-img__img-in.is-active::before, .l-main-img__img-in.is-active::after {
    width: 95px;
  }
  .l-main-img__img-item {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
  .l-main-img__img-item.is-item01 {
    background-image: url(../img/home/bg_mv01_pc.jpg);
  }
  .l-main-img__img-item.is-item02 {
    background-image: url(../img/home/bg_mv02_pc.jpg);
  }
  .l-main-img__img-item.is-item03 {
    background-image: url(../img/home/bg_mv03_pc.jpg);
  }
  .l-main-img__img-item.is-item04 {
    background-image: url(../img/home/bg_mv04_pc.jpg);
  }
  .l-main-img__img-item.is-item05 {
    background-image: url(../img/home/bg_mv05_pc.jpg);
  }
  .l-main-img__img-item.is-item06 {
    background-image: url(../img/home/bg_mv06_pc.jpg);
  }
  .l-main-img__copy {
    width: 30.5px;
    margin-top: 0;
  }
}
@media (min-width: 768px) and (max-width: 1360px) {
  .l-main-img {
    height: 748px;
  }
}

/* .l-sub-img
================================================ */
.l-sub-img {
  position: relative;
  text-align: center;
  color: #fff;
}
.l-sub-img::before, .l-sub-img::after {
  position: absolute;
  bottom: 29px;
  content: "";
  width: 89px;
  height: 69px;
  background: url(../img/common/bg_mv01.png) no-repeat left top/contain;
  z-index: 1;
}
.l-sub-img::before {
  left: 0;
}
.l-sub-img::after {
  right: 0;
  transform: scaleX(-1);
}
.l-sub-img__bg {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 20px;
  right: 20px;
  background: rgb(var(--main));
}
.l-sub-img__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.l-sub-img__inner {
  position: relative;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  height: 280px;
}
.l-sub-img__head {
  position: relative;
  font-size: 2.8rem;
  letter-spacing: var(--ls_head);
  line-height: var(--lh_head);
}
@media all and (min-width: 768px) {
  .l-sub-img::before, .l-sub-img::after {
    width: 280px;
    height: 239px;
    bottom: -103px;
  }
  .l-sub-img__bg {
    left: 30px;
    right: 30px;
  }
  .l-sub-img__inner {
    padding-top: 75px;
    height: 454px;
  }
  .l-sub-img__head {
    font-size: 4.8rem;
  }
}
@media all and (min-width: 1260px) {
  .l-sub-img__bg {
    left: 70px;
    right: 70px;
  }
}

/* .l-sidebar
================================================== */
.js-c-anime-elem[data-anime=fadein-up] {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}
.js-c-anime-elem[data-anime=fadein-up].is-animated {
  opacity: 1;
  transform: translateY(0);
}

.js-c-anime-elem[data-anime=fadein-left] {
  opacity: 0;
  transform: translateX(-30px);
  transition: all 0.6s ease;
}
.js-c-anime-elem[data-anime=fadein-left].is-animated {
  opacity: 1;
  transform: translateX(0);
}

.js-c-anime-elem[data-anime=fadein-right] {
  opacity: 0;
  transform: translateX(30px);
  transition: all 0.6s ease;
}
.js-c-anime-elem[data-anime=fadein-right].is-animated {
  opacity: 1;
  transform: translateX(0);
}

.js-c-anime-elem[data-anime-delay="0.1"] {
  transition-delay: 0.1s;
}
.js-c-anime-elem[data-anime-delay="0.2"] {
  transition-delay: 0.2s;
}
.js-c-anime-elem[data-anime-delay="0.3"] {
  transition-delay: 0.3s;
}
.js-c-anime-elem[data-anime-delay="0.4"] {
  transition-delay: 0.4s;
}
.js-c-anime-elem[data-anime-delay="0.5"] {
  transition-delay: 0.5s;
}
.js-c-anime-elem[data-anime-delay="0.6"] {
  transition-delay: 0.6s;
}
.js-c-anime-elem[data-anime-delay="0.7"] {
  transition-delay: 0.7s;
}
.js-c-anime-elem[data-anime-delay="0.8"] {
  transition-delay: 0.8s;
}
.js-c-anime-elem[data-anime-delay="0.9"] {
  transition-delay: 0.9s;
}
.js-c-anime-elem[data-anime-delay="1"] {
  transition-delay: 1s;
}
.js-c-anime-elem[data-anime-delay="1.1"] {
  transition-delay: 1.1s;
}
.js-c-anime-elem[data-anime-delay="1.2"] {
  transition-delay: 1.2s;
}
.js-c-anime-elem[data-anime-delay="1.3"] {
  transition-delay: 1.3s;
}
.js-c-anime-elem[data-anime-delay="1.4"] {
  transition-delay: 1.4s;
}
.js-c-anime-elem[data-anime-delay="1.5"] {
  transition-delay: 1.5s;
}
.js-c-anime-elem[data-anime-delay="1.6"] {
  transition-delay: 1.6s;
}
.js-c-anime-elem[data-anime-delay="1.7"] {
  transition-delay: 1.7s;
}
.js-c-anime-elem[data-anime-delay="1.8"] {
  transition-delay: 1.8s;
}
.js-c-anime-elem[data-anime-delay="1.9"] {
  transition-delay: 1.9s;
}
.js-c-anime-elem[data-anime-delay="2"] {
  transition-delay: 2s;
}

.js-c-switch-tab {
  cursor: pointer;
}

.js-c-switch-content {
  display: none;
}
.js-c-switch-content.is-active {
  display: block;
}

.js-c-toggle-trigger {
  cursor: pointer;
}

.js-c-toggle-content {
  display: none;
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
[dir=rtl] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/* .access-anchor
================================================ */
.access-anchor__inner {
  padding-top: 60px;
}
@media all and (min-width: 768px) {
  .access-anchor__inner {
    padding-top: 120px;
  }
}

.access-location-info__gallery {
  padding-bottom: 8px;
}
.access-location-info__detail-col + .access-location-info__detail-col {
  margin-top: 25px;
  border-top: 1px solid rgb(var(--border));
}
.access-location-info__slider .slick-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: -8px -4px 0;
}
.access-location-info__slider .slick-dots li {
  margin: 8px 4px 0;
}
.access-location-info__slider .slick-dots li button {
  border: none;
  margin: 0;
  padding: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  color: transparent;
  font-size: 0;
  line-height: 0;
  background: rgb(var(--sub));
  transition: background 0.3s ease;
}
.access-location-info__slider .slick-dots li.slick-active button {
  background: rgb(var(--main));
}
.access-location-info__slider-item-img {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 66.67%;
}
.access-location-info__slider-item-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.access-location-info__txt {
  margin-top: 15px;
  line-height: var(--lh_head);
}
.access-location-info__dl {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  line-height: var(--lh_head);
}
.access-location-info__dl-dt {
  display: flex;
  align-items: flex-start;
  flex-basis: calc(25px + 6em);
  max-width: calc(25px + 6em);
  margin-top: 14px;
}
.access-location-info__dl-dt-ico {
  flex-basis: 21px;
  max-width: 21px;
  margin-right: 4px;
}
.access-location-info__dl-dt-txt {
  flex-basis: calc(100% - 25px);
  max-width: calc(100% - 25px);
}
.access-location-info__dl-dd {
  flex-basis: calc(100% - 25px - 6em);
  max-width: calc(100% - 25px - 6em);
  margin-top: 14px;
}
.access-location-info__note {
  font-size: 80%;
}
@media all and (min-width: 768px) {
  .access-location-info {
    display: flex;
    justify-content: space-between;
  }
  .access-location-info__gallery {
    flex-basis: 50%;
    max-width: 50%;
    padding-bottom: 0;
  }
  .access-location-info__detail {
    margin-top: -15px;
    flex-basis: calc(50% - 50px);
    max-width: calc(50% - 50px);
  }
  .access-location-info__detail-col + .access-location-info__detail-col {
    margin-top: 20px;
  }
  .access-location-info__slider .slick-dots {
    margin: -10px -5px 0;
  }
  .access-location-info__slider .slick-dots li {
    margin: 10px 5px 0;
  }
  .access-location-info__slider .slick-dots li button {
    width: 10px;
    height: 10px;
  }
  .access-location-info__dl {
    margin-top: 5px;
  }
  .access-location-info__dl-dt {
    flex-basis: calc(25px + 5.5em);
    max-width: calc(25px + 5.5em);
    margin-top: 10px;
  }
  .access-location-info__dl-dd {
    flex-basis: calc(100% - 25px - 5.5em);
    max-width: calc(100% - 25px - 5.5em);
    margin-top: 10px;
  }
}

.access-location-map {
  margin-top: 50px;
}
.access-location-map__iframe {
  width: 100%;
  height: 335px;
}
.access-location-map__iframe iframe {
  width: 100%;
  height: 100%;
}
@media all and (min-width: 768px) {
  .access-location-map__iframe {
    height: 400px;
  }
}

/* .banquet-intro
================================================ */
.banquet-intro__inner {
  padding-top: 60px;
  padding-bottom: 60px;
}
@media all and (min-width: 768px) {
  .banquet-intro__inner {
    padding-top: 120px;
    padding-bottom: 120px;
  }
}

.banquet-intro-detail {
  margin-top: 50px;
}
.banquet-intro-detail__col {
  margin-top: 15px;
  padding: 25px;
  box-sizing: border-box;
}
.banquet-intro-detail__col-txt {
  line-height: var(--lh_head);
}
.banquet-intro-detail__col-label {
  margin-top: 18px;
  padding: 20px;
  line-height: var(--lh_head);
}
.banquet-intro-detail__col-label + .banquet-intro-detail__col-label {
  margin-top: 10px;
}
@media all and (max-width: 767px) {
  .banquet-intro-detail__col-txt {
    margin-top: 18px;
  }
}
@media all and (min-width: 768px) {
  .banquet-intro-detail {
    display: flex;
    flex-wrap: wrap;
    margin: 40px -10px 0;
  }
  .banquet-intro-detail__col {
    margin: 20px 10px 0;
    padding: 30px;
    flex-basis: calc(50% - 20px);
    max-width: calc(50% - 20px);
  }
  .banquet-intro-detail__col-body {
    position: relative;
    padding-left: 220px;
  }
  .banquet-intro-detail__col-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 200px;
    margin-right: 20px;
  }
  .banquet-intro-detail__col-label {
    margin-top: 13px;
    padding: 11px 20px;
  }
}

/* .contact-shop
================================================ */
.contact-shop {
  margin-bottom: 24px;
}
.contact-shop__head {
  font-size: 1.6rem;
  margin-bottom: 3px;
}
.contact-shop__set + .contact-shop__set {
  margin-top: 25px;
}
.contact-shop__item + .contact-shop__item {
  margin-top: 21px;
}
.contact-shop-info {
  line-height: 1.8;
}
.contact-shop-info__txt {
  padding-left: 1.5em;
}
@media all and (min-width: 768px) {
  .contact-shop {
    margin-bottom: 0;
  }
  .contact-shop__head {
    font-size: 1.8rem;
    margin-bottom: 5px;
  }
  .contact-shop__set + .contact-shop__set {
    margin-top: 40px;
  }
  .contact-shop__item + .contact-shop__item {
    margin-top: 28px;
  }
}

/* .error-page404
================================================ */
.error-page404__inner {
  padding-top: 50px;
  padding-bottom: 50px;
}
@media all and (min-width: 768px) {
  .error-page404__inner {
    padding-top: 100px;
    padding-bottom: 100px;
    text-align: center;
  }
  .error-page404__btn {
    margin-left: auto;
  }
}

/* #home .l-container
================================================ */
#home .l-container {
  background: rgb(var(--bg01)) url(../img/common/bg_paper02_sp.jpg) repeat left top/100% auto;
}
@media all and (min-width: 768px) {
  #home .l-container {
    background-image: url(../img/common/bg_paper02_pc.jpg);
    background-size: auto auto;
  }
}

/* .home-loading
================================================ */
.home-loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgb(var(--bg02));
  z-index: 10000;
}
.home-loading__logo {
  width: 180px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.home-loading.is-active {
  opacity: 0;
  transition: 1.8s 0.3s ease;
  visibility: hidden;
}
@media all and (min-width: 768px) {
  .home-loading__logo {
    width: 334px;
  }
}

/* .home-greeting
================================================ */
.home-greeting {
  color: rgb(var(--white));
  font-size: 1.3rem;
  margin-top: 20px;
  position: relative;
}
.home-greeting::before {
  content: "";
  display: block;
  width: 100%;
  height: 6.5px;
  background: url(../img/common/img_border02_sp.png) no-repeat center/cover;
  position: absolute;
  bottom: -4px;
  left: 0;
}
.home-greeting__img {
  position: absolute;
  width: 250px;
}
.home-greeting__img.is-item01 {
  right: 20px;
  bottom: 82px;
}
.home-greeting__img.is-item02 {
  left: 40px;
  bottom: 123px;
}
.home-greeting__inner {
  display: flex;
  flex-direction: row-reverse;
  justify-content: center;
  padding-top: 149px;
  padding-bottom: 235px;
}
.home-greeting__txt {
  line-height: 2.2;
  letter-spacing: 0.4em;
}
.home-greeting__txt + .home-greeting__txt {
  margin-right: 20px;
}
@media all and (max-width: 767px) {
  .home-greeting__inner {
    padding-top: 130px;
    padding-bottom: 210px;
  }
}
@media all and (min-width: 768px) {
  .home-greeting {
    margin-top: 0;
    font-size: 1.8rem;
  }
  .home-greeting::before {
    background-image: url(../img/common/img_border02_pc.png);
  }
  .home-greeting__inner {
    padding-top: 346px;
    padding-bottom: 415px;
  }
  .home-greeting__img {
    width: 563px;
  }
  .home-greeting__img.is-item01 {
    right: auto;
    left: 70px;
    bottom: 203px;
  }
  .home-greeting__img.is-item02 {
    left: auto;
    right: 70px;
    bottom: 217px;
  }
  .home-greeting__txt {
    line-height: 2.7;
    letter-spacing: 0.44em;
  }
  .home-greeting__txt + .home-greeting__txt {
    margin-right: 56px;
  }
}

/* .home-news
================================================ */
.home-news {
  overflow: hidden;
  background-color: rgb(var(--bg01));
}
.home-news__inner {
  padding-top: 53px;
  padding-bottom: 70px;
}
.home-news-wrap {
  position: relative;
  padding-top: 78px;
  padding-bottom: 100px;
}
.home-news-wrap::before {
  content: "";
  width: calc(100% + 40px);
  height: 100%;
  background-color: rgb(var(--white));
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}
.home-news__bnr {
  margin: auto;
  max-width: 335px;
}
.home-news__bnr.is-blank {
  transform: translateY(-57px);
  margin: 0 auto -57px;
}
@media all and (min-width: 768px) {
  .home-news__inner {
    padding-top: 151px;
    padding-bottom: 170px;
  }
  .home-news-wrap {
    display: flex;
    flex-wrap: wrap;
    padding-top: 158px;
    padding-bottom: 239px;
  }
  .home-news-wrap::before {
    width: 1780px;
  }
  .home-news__head {
    width: calc(100% - 970px);
    box-sizing: border-box;
    display: flex;
    align-items: flex-end;
  }
  .home-news__archive {
    width: 970px;
  }
  .home-news__bnr {
    max-width: 970px;
  }
  .home-news__bnr.is-blank {
    transform: translateY(-118px);
    margin-bottom: -118px;
  }
}
@media (min-width: 768px) and (max-width: 1490px) {
  .home-news-wrap {
    padding-left: 40px;
    padding-right: 40px;
  }
  .home-news-wrap::before {
    width: 1200px;
  }
}

/* .home-obsession
================================================ */
.home-obsession {
  background: url(../img/home/bg_obsession01_sp.jpg) no-repeat center top/cover;
  color: rgb(var(--white));
  position: relative;
}
.home-obsession::before {
  content: "";
  display: block;
  width: 100%;
  height: 6.5px;
  background: url(../img/common/img_border02_sp.png) no-repeat center/cover;
  position: absolute;
  top: -4px;
  left: 0;
}
.home-obsession__inner {
  padding-top: 30px;
  padding-bottom: 72px;
}
.home-obsession__img {
  padding-right: 10px;
  position: relative;
}
.home-obsession__img-sub {
  position: absolute;
  right: 0;
  top: 630px;
  width: 100px;
  z-index: 1;
}
.home-obsession__area-txt {
  padding-top: 92px;
}
@media all and (min-width: 768px) {
  .home-obsession {
    background-image: url(../img/home/bg_obsession01_pc.jpg);
    z-index: 1;
  }
  .home-obsession::before {
    background-image: url(../img/common/img_border02_pc.png);
  }
  .home-obsession__inner {
    padding-top: 210px;
    padding-bottom: 162px;
  }
  .home-obsession-wrap {
    display: flex;
    flex-wrap: wrap;
  }
  .home-obsession__head {
    width: 100px;
    box-sizing: border-box;
    display: flex;
    align-items: flex-end;
  }
  .home-obsession__img {
    width: 650px;
    width: calc(100% - 650px - 100px);
    box-sizing: border-box;
    order: 3;
    padding: 0;
  }
  .home-obsession__img-sub {
    width: 260px;
    top: auto;
    bottom: -39px;
  }
  .home-obsession__area-txt {
    width: 650px;
    box-sizing: border-box;
    order: 2;
    padding: 119px 90px 0;
  }
}
@media (min-width: 768px) and (max-width: 1490px) {
  .home-obsession__img-sub {
    width: 150px;
    bottom: 479px;
  }
}

/* .home-obsession-origin
================================================ */
.home-obsession-origin {
  background-color: rgba(var(--white), 0.03);
  margin-top: 74px;
  padding: 45px 20px 53px 29px;
  position: relative;
}
.home-obsession-origin::before {
  content: "";
  display: block;
  width: 1px;
  height: 60px;
  background-color: rgb(var(--white));
  position: absolute;
  left: 11px;
  top: -19px;
  transform: rotate(45deg);
}
.home-obsession-origin__head {
  font-size: 2rem;
  margin: 0 auto 31px;
  letter-spacing: 0.8rem;
}
.home-obsession-origin__img {
  margin-bottom: 34px;
}
.home-obsession-origin__txt {
  font-size: 1.3rem;
}
@media all and (min-width: 768px) {
  .home-obsession-origin {
    display: flex;
    flex-wrap: wrap;
    max-width: var(--contents_width);
    box-sizing: border-box;
    margin: 110px auto 0;
    padding: 72px 67px 70px 79px;
  }
  .home-obsession-origin::before {
    height: 170px;
    top: -59px;
    left: 38px;
  }
  .home-obsession-origin__head {
    font-size: 3rem;
    width: 60px;
    margin: 0;
  }
  .home-obsession-origin-detail {
    width: calc(100% - 60px);
    box-sizing: border-box;
    display: flex;
    flex-wrap: wrap;
    padding-left: 51px;
  }
  .home-obsession-origin__img {
    width: 350px;
    margin-bottom: 0;
    padding-top: 8px;
  }
  .home-obsession-origin__txt {
    width: calc(100% - 350px);
    font-size: 1.5rem;
    padding-left: 60px;
    box-sizing: border-box;
  }
}

/* .home-menu
================================================ */
.home-menu__head {
  background: url(../img/home/bg_menu01_sp.jpg) no-repeat center/cover;
  padding: 124px 0 68px;
  position: relative;
}
.home-menu__head::before {
  content: "";
  display: block;
  width: 100%;
  height: 6.5px;
  background: url(../img/common/img_border02_sp.png) no-repeat center/cover;
  position: absolute;
  bottom: -4px;
  left: 0;
}
.home-menu__inner {
  padding-top: 63px;
}
.home-menu-wrap {
  position: relative;
}
.home-menu-wrap::before {
  content: "";
  display: block;
  width: 553px;
  height: 53px;
  background: url(../img/home/img_menu04.png) no-repeat center/contain;
  position: absolute;
  top: 377px;
  right: -87%;
}
.home-menu-wrap::after {
  content: "";
  display: block;
  width: 354px;
  height: 157px;
  background: url(../img/home/img_menu05.png) no-repeat center/contain;
  position: absolute;
  bottom: -303px;
  left: -50px;
}
.home-menu__area-txt {
  margin-bottom: 90px;
}
.home-menu-deco {
  margin-top: 40px;
}
.home-menu-deco__img {
  max-width: 271px;
  margin-left: auto;
  margin-right: -20px;
  position: relative;
}
.home-menu-deco__img-sub {
  max-width: 130px;
  position: absolute;
  left: -29px;
  bottom: -48px;
}
.home-menu__bnr {
  margin: 66px -61px 0 -59px;
}
@media all and (min-width: 768px) {
  .home-menu__head {
    background-image: url(../img/home/bg_menu01_pc.jpg);
    padding: 332px 0 255px;
  }
  .home-menu__head::before {
    background-image: url(../img/common/img_border02_pc.png);
  }
  .home-menu__inner {
    padding-top: 120px;
    position: relative;
  }
  .home-menu-wrap {
    display: flex;
    flex-wrap: wrap;
  }
  .home-menu-wrap::before {
    width: 563px;
    height: 54px;
    top: 630px;
    right: -35%;
  }
  .home-menu-wrap::after {
    width: 482px;
    height: 213px;
    left: -385px;
    bottom: -319px;
  }
  .home-menu__area-txt {
    width: 50%;
    box-sizing: border-box;
    order: 2;
    margin: 0;
    padding-top: 107px;
    padding-left: 138px;
  }
  .home-menu__img {
    width: 50%;
    order: 1;
  }
  .home-menu__img-in {
    margin-left: -290px;
  }
  .home-menu-deco {
    position: absolute;
    right: -268px;
    bottom: 561px;
  }
  .home-menu-deco__img {
    max-width: 750px;
  }
  .home-menu-deco__img-sub {
    max-width: 360px;
    left: -80px;
    bottom: -134px;
  }
  .home-menu__bnr {
    margin: 466px 0 0;
  }
}

/* .home-info
================================================ */
.home-info {
  position: relative;
  overflow: clip;
}
.home-info::before {
  content: "";
  display: block;
  width: 126px;
  height: 56px;
  background: url(../img/home/img_info05.png) no-repeat center/contain;
  position: absolute;
  top: 120px;
  right: -9px;
}
.home-info::after {
  content: "";
  display: block;
  width: 105px;
  height: 46px;
  background: url(../img/home/img_info05.png) no-repeat center/contain;
  position: absolute;
  top: 38px;
  left: 0;
}
.home-info__inner {
  padding-top: 29px;
  padding-bottom: 95px;
}
.home-info-wrap {
  padding-top: 13px;
}
.home-info__map {
  margin-bottom: 54px;
}
.home-info-detail__item + .home-info-detail__item {
  margin-top: 57px;
}
.home-info-detail__item-head {
  font-size: 2.6rem;
  letter-spacing: var(--ls_head);
  position: relative;
  line-height: 1.5;
  padding-bottom: 15px;
  margin-bottom: 20px;
}
.home-info-detail__item-head::before {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background: url(../img/common/img_border03_sp.png) no-repeat center/cover;
  position: absolute;
  left: 0;
  bottom: 0;
}
.home-info-detail__item-head-en {
  font-size: 1rem;
  margin-left: 9px;
  margin-top: -11px;
  display: inline-block;
  letter-spacing: 0.1em;
  vertical-align: middle;
}
.home-info-detail__item-img {
  margin-bottom: 19px;
}
.home-info-detail__item-addrs {
  font-size: 1.3rem;
  margin-bottom: -4px;
}
.home-info-detail__item-route {
  font-size: 1.3rem;
  position: relative;
  margin-top: 19px;
  padding-left: 30px;
  line-height: var(--lh_head);
}
.home-info-detail__item-route-ico {
  width: 14px;
  height: 12px;
  position: absolute;
  left: 5px;
  top: 4px;
  color: rgb(var(--white));
}
.home-info-detail__item-route-ico::before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  background-color: rgb(var(--black));
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}
.home-info-detail__item-time:first-of-type {
  margin-top: 9px;
  margin-bottom: -8px;
}
.home-info-detail__item-time-head, .home-info-detail__item-time-txt {
  display: inline-block;
}
.home-info-detail__item-time-head {
  background-color: rgb(var(--bg03));
  line-height: 1.1;
  font-size: 1.1rem;
  padding: 3px 0 4px;
  margin-right: 5px;
  min-width: 70px;
  box-sizing: border-box;
  text-align: center;
}
.home-info-detail__item-time-txt {
  font-size: 1.3rem;
}
.home-info-detail__item-time-wrap {
  background-color: rgba(var(--white), 0.5);
  margin-top: 21px;
  padding: 4px 19px 14px;
}
.home-info-detail__item-time-note {
  line-height: 1.5;
  font-size: 80%;
}
.home-info-detail__item-tel {
  margin-top: 19px;
  line-height: 1.65;
}
.home-info-detail__item-tel-num {
  text-decoration: underline !important;
  color: rgb(var(--main));
}
@media all and (min-width: 768px) {
  .home-info::before {
    width: 482px;
    height: 213px;
    top: 167px;
    right: -93px;
  }
  .home-info::after {
    width: 399px;
    height: 176px;
    top: 178px;
    left: 60px;
  }
  .home-info__inner {
    padding-top: 152px;
    padding-bottom: 191px;
  }
  .home-info-wrap {
    display: flex;
    flex-wrap: wrap;
    padding-top: 46px;
  }
  .home-info__map {
    width: 50%;
    padding-top: 13px;
    margin-bottom: 0;
  }
  .home-info__map.is-active .home-info__map-in {
    padding-top: 123px;
  }
  .home-info__map-in {
    margin-left: -100px;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    transition: all 0.3s ease;
  }
  .home-info-detail {
    width: 50%;
    box-sizing: border-box;
    padding-left: 100px;
  }
  .home-info-detail__item + .home-info-detail__item {
    margin-top: 76px;
  }
  .home-info-detail__item-head {
    font-size: 4rem;
    padding-bottom: 13px;
    margin-bottom: 30px;
  }
  .home-info-detail__item-head::before {
    background-image: url(../img/common/img_border03_pc.png);
  }
  .home-info-detail__item-head-en {
    font-size: 1.2rem;
    margin-left: 14px;
    margin-top: -7px;
  }
  .home-info-detail__item-addrs {
    display: inline-block;
    letter-spacing: var(--ls_head);
    margin-right: 9px;
    margin-bottom: 0;
    font-size: 1.5rem;
    transform: translateY(2px);
  }
  .home-info-detail__item-route {
    font-size: 1.5rem;
    margin-top: 6px;
  }
  .home-info-detail__item-route-ico {
    top: 6px;
  }
  .home-info-detail__item-time:first-of-type {
    margin-top: 8px;
    margin-bottom: -15px;
  }
  .home-info-detail__item-time-wrap {
    margin-top: 25px;
    padding: 1px 19px 12px;
  }
  .home-info-detail__item-time-head {
    min-width: 80px;
    font-size: 1.3rem;
    padding: 3px 0 2px;
    margin-right: 3px;
  }
  .home-info-detail__item-time-txt {
    font-size: 1.7rem;
  }
  .home-info-detail__item-tel {
    font-size: 1.5rem;
  }
  .home-info-detail__item-tel-num:hover {
    text-decoration: none !important;
  }
}

/* .menu-intro
================================================ */
.menu-intro__inner {
  padding-top: 60px;
  padding-bottom: 60px;
}
@media all and (min-width: 768px) {
  .menu-intro__inner {
    padding-top: 120px;
    padding-bottom: 120px;
  }
}

/* .menu-special
================================================ */
.menu-special {
  position: relative;
  background: rgb(var(--bg02));
  color: #fff;
}
.menu-special__bg {
  position: absolute;
  top: 0;
  bottom: 0;
  pointer-events: none;
  overflow: hidden;
}
.menu-special__bg img {
  width: 100%;
}
.menu-special__inner {
  position: relative;
  padding-top: 60px;
  padding-bottom: 60px;
}
.menu-special__txt {
  margin-bottom: 35px;
}
@media all and (min-width: 768px) {
  .menu-special__inner {
    padding-top: 120px;
    padding-bottom: 120px;
  }
  .menu-special__txt {
    text-align: center;
    margin-bottom: 60px;
  }
}

/* .menu-season
================================================ */
.menu-season {
  position: relative;
  padding-bottom: 60px;
}
.menu-season__inner {
  position: relative;
  padding-top: 21px;
}
.menu-season__archive {
  position: relative;
  margin-top: 40px;
  padding: 40px 0;
  z-index: 1;
}
.menu-season__archive::before, .menu-season__archive::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  content: "";
  background: #f5f2ea;
  z-index: -1;
}
.menu-season__archive::after {
  background: url(../img/common/bg_paper01_sp.jpg) repeat left top/100% auto;
  opacity: 0.14;
}
@media all and (min-width: 768px) {
  .menu-season {
    padding-bottom: 120px;
  }
  .menu-season__inner {
    padding-top: 120px;
  }
  .menu-season__txt {
    text-align: center;
  }
  .menu-season__archive {
    margin-top: 60px;
    padding: 60px 0 45px;
  }
  .menu-season__archive::before, .menu-season__archive::after {
    margin: 0 auto;
    max-width: 1400px;
  }
  .menu-season__archive::after {
    background-image: url(../img/common/bg_paper01_pc.jpg);
    background-size: auto auto;
  }
}

/* .takeout-intro
================================================ */
.takeout-intro__inner {
  padding-top: 60px;
  padding-bottom: 60px;
}
@media all and (min-width: 768px) {
  .takeout-intro {
    background: url(../img/takeout/bg_intro01.jpg) no-repeat center top 20px/100% auto;
  }
  .takeout-intro__inner {
    padding-top: 120px;
    padding-bottom: 120px;
  }
}

.takeout-intro-detail {
  margin-top: 30px;
}
.takeout-intro-detail__col {
  margin-top: 15px;
  padding: 25px 25px 30px;
  box-sizing: border-box;
}
.takeout-intro-detail__col-body {
  border-top: 1px solid rgb(var(--border));
  padding: 15px 25px 0;
}
.takeout-intro-detail__col-case {
  line-height: var(--lh_head);
  box-sizing: border-box;
}
.takeout-intro-detail__col-case-item {
  position: relative;
  padding-left: 20px;
  margin-top: 0.5em;
}
.takeout-intro-detail__col-case-item::before {
  position: absolute;
  top: 1em;
  left: 0;
  content: "";
  margin-top: -8px;
  width: 11.5px;
  height: 11.5px;
  background: url(../img/common/ico_check01.png) no-repeat left top/contain;
}
.takeout-intro-detail__col-feature-item-ico {
  width: 90px;
  height: 87px;
  background: rgb(var(--bg01));
  border-radius: 50%;
}
.takeout-intro-detail__col-feature-item-head {
  line-height: var(--lh_head);
  font-size: 1.6rem;
  box-sizing: border-box;
}
.takeout-intro-detail__col-feature-item-txt {
  line-height: var(--lh_head);
  margin-top: 10px;
}
.takeout-intro-detail__col-feature-item-note {
  margin-top: 10px;
}
@media all and (max-width: 767px) {
  .takeout-intro-detail__col-body {
    margin-left: -25px;
    margin-right: -25px;
  }
  .takeout-intro-detail__col-case {
    margin-right: -20px;
  }
  .takeout-intro-detail__col-feature-item {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }
  .takeout-intro-detail__col-feature-item + .takeout-intro-detail__col-feature-item {
    margin-top: 17px;
  }
  .takeout-intro-detail__col-feature-item-head {
    flex-basis: calc(100% - 100px);
    max-width: calc(100% - 100px);
    padding-left: 10px;
  }
}
@media all and (min-width: 768px) {
  .takeout-intro-detail {
    margin-top: 60px;
  }
  .takeout-intro-detail__col {
    margin-top: 20px;
    padding: 30px 46px;
  }
  .takeout-intro-detail__col-body {
    border-top: 1px solid rgb(var(--border));
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 15px 24px 0;
  }
  .takeout-intro-detail__col-case {
    flex-basis: 50%;
    max-width: 50%;
    padding: 0 6px;
  }
  .takeout-intro-detail__col-feature {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0 -30px;
  }
  .takeout-intro-detail__col-feature-item {
    flex-basis: 270px;
    max-width: 270px;
    margin: 20px 30px 5px;
  }
  .takeout-intro-detail__col-feature-item-ico {
    width: 120px;
    height: 116px;
    margin: 0 auto 20px;
  }
  .takeout-intro-detail__col-feature-item-head {
    font-size: 1.9rem;
    text-align: center;
  }
  .takeout-intro-detail__col-feature-item-txt {
    margin-top: 8px;
  }
}