@charset "UTF-8";
/*########## ミックスイン ##########*/
/* ----- Google Fonts ----- */
/*########## 共通レイアウト ##########*/
.animate-fadeup {
  /* blur + opacity + transition */
  opacity: 1;
  -webkit-filter: blur(0px) brightness(1);
          filter: blur(0px) brightness(1);
  -webkit-transform: translate3d(0, 0%, 0);
          transform: translate3d(0, 0%, 0);
  -webkit-transition: opacity 0.6s, -webkit-filter 0.6s cubic-bezier(0.5, 1, 0.89, 1), -webkit-transform 0.6s cubic-bezier(0.5, 1, 0.89, 1);
  transition: opacity 0.6s, -webkit-filter 0.6s cubic-bezier(0.5, 1, 0.89, 1), -webkit-transform 0.6s cubic-bezier(0.5, 1, 0.89, 1);
  transition: opacity 0.6s, filter 0.6s cubic-bezier(0.5, 1, 0.89, 1), transform 0.6s cubic-bezier(0.5, 1, 0.89, 1);
  transition: opacity 0.6s, filter 0.6s cubic-bezier(0.5, 1, 0.89, 1), transform 0.6s cubic-bezier(0.5, 1, 0.89, 1), -webkit-filter 0.6s cubic-bezier(0.5, 1, 0.89, 1), -webkit-transform 0.6s cubic-bezier(0.5, 1, 0.89, 1);
  will-change: opacity, filter, transform;
}
.animate-fadeup.effect, .animate-fadeup.delayed_effect {
  opacity: 0;
  -webkit-filter: blur(15px) brightness(1.25);
          filter: blur(15px) brightness(1.25);
  -webkit-transform: translate3d(0, 100px, 0);
          transform: translate3d(0, 100px, 0);
}

.animate-fadeup2 {
  /* opacity + transition */
  opacity: 1;
  -webkit-transform: translate3d(0, 0%, 0);
          transform: translate3d(0, 0%, 0);
  -webkit-transition: opacity 0.6s, -webkit-transform 0.6s cubic-bezier(0.5, 1, 0.89, 1);
  transition: opacity 0.6s, -webkit-transform 0.6s cubic-bezier(0.5, 1, 0.89, 1);
  transition: opacity 0.6s, transform 0.6s cubic-bezier(0.5, 1, 0.89, 1);
  transition: opacity 0.6s, transform 0.6s cubic-bezier(0.5, 1, 0.89, 1), -webkit-transform 0.6s cubic-bezier(0.5, 1, 0.89, 1);
  will-change: opacity, transform;
}
.animate-fadeup2.effect, .animate-fadeup2.delayed_effect {
  opacity: 0;
  -webkit-transform: translate3d(0, 100px, 0);
          transform: translate3d(0, 100px, 0);
}

.animate-fadeup3 {
  /* opacity */
  opacity: 1;
  -webkit-transition: opacity 0.8s cubic-bezier(0.5, 1, 0.89, 1);
  transition: opacity 0.8s cubic-bezier(0.5, 1, 0.89, 1);
  will-change: opacity;
}
.animate-fadeup3.effect, .animate-fadeup3.delayed_effect {
  opacity: 0;
}

.func-txt-anim, .func-txt-anim-wrap {
  overflow: hidden;
}
.func-txt-anim span, .func-txt-anim-wrap span {
  display: inline-block;
  -webkit-transform: translate(0, 100%);
          transform: translate(0, 100%);
  -webkit-filter: blur(3px);
          filter: blur(3px);
  -webkit-transition: -webkit-transform 0.5s, -webkit-filter 0.5s;
  transition: -webkit-transform 0.5s, -webkit-filter 0.5s;
  transition: transform 0.5s, filter 0.5s;
  transition: transform 0.5s, filter 0.5s, -webkit-transform 0.5s, -webkit-filter 0.5s;
  will-change: transform;
}
.func-txt-anim span.display, .func-txt-anim-wrap span.display {
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
  -webkit-filter: blur(0px);
          filter: blur(0px);
}

/*
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com
Twitter: @rich_clark
*/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

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

ul:after {
  display: block;
  content: "";
  clear: both;
}

nav ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  text-decoration: none;
  vertical-align: baseline;
  background: transparent;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

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

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

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  vertical-align: bottom;
  border: none;
}

select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: solid 1px #fff;
  font-size: 1.4rem;
  letter-spacing: 0.2px;
  color: inherit;
}
@media screen and (max-width: 780px) {
  select {
    font-size: 1.6rem;
  }
}
select:focus {
  outline: none;
  border: none;
}

::-webkit-input-placeholder {
  color: #aaa;
  font-size: 1.4rem;
  font-weight: normal;
}

::-moz-placeholder {
  color: #aaa;
  font-size: 1.4rem;
  font-weight: normal;
}

:-ms-input-placeholder {
  color: #aaa;
  font-size: 1.4rem;
  font-weight: normal;
}

::-ms-input-placeholder {
  color: #aaa;
  font-size: 1.4rem;
  font-weight: normal;
}

::placeholder {
  color: #aaa;
  font-size: 1.4rem;
  font-weight: normal;
}
@media screen and (max-width: 780px) {
  ::-webkit-input-placeholder {
    font-size: 1.6rem;
  }
  ::-moz-placeholder {
    font-size: 1.6rem;
  }
  :-ms-input-placeholder {
    font-size: 1.6rem;
  }
  ::-ms-input-placeholder {
    font-size: 1.6rem;
  }
  ::placeholder {
    font-size: 1.6rem;
  }
}

select option::-webkit-input-placeholder {
  color: #444;
}

select option::-moz-placeholder {
  color: #444;
}

select option:-ms-input-placeholder {
  color: #444;
}

select option::-ms-input-placeholder {
  color: #444;
}

select option::placeholder {
  color: #444;
}

::-webkit-placeholder {
  /*padding-top: 0.25em;*/
}

::-moz-placeholder {
  color: #aaa;
  opacity: 1;
}

::-moz-placeholder {
  color: #aaa;
  opacity: 1;
}

::-ms-input-placeholder {
  color: #aaa;
}

textarea {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 5px;
  border-radius: 0;
  -webkit-appearance: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  font-size: 1.4rem;
  line-height: 1.5;
}
@media screen and (max-width: 780px) {
  textarea {
    font-size: 16rem;
  }
}

input {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

input[type=text]:focus,
input[type=email]:focus,
input[type=tel]:focus,
input[type=number]:focus,
select:focus,
textarea:focus {
  outline: 0;
}

input[type=text],
input[type=email],
input[type=tel],
input[type=number] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 3px;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  border-radius: 0;
  border: 1px solid #979797;
  padding: 0 5px;
  font-size: 1.6rem;
}
@media screen and (max-width: 780px) {
  input[type=text],
  input[type=email],
  input[type=tel],
  input[type=number] {
    font-size: 1.6rem;
  }
}

input[type=submit],
input[type=button] {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
}
input[type=submit]:hover,
input[type=button]:hover {
  opacity: 0.7;
  -webkit-box-shadow: none;
          box-shadow: none;
}

html {
  font-size: 9px;
  overflow: auto !important;
  -webkit-overflow-scrolling: touch !important;
  scrollbar-width: none !important;
  scrollbar-width: thin;
  -webkit-overflow-scrolling: touch;
  height: -webkit-fill-available;
  /*scroll-behavior: smooth;*/
}
html::-webkit-scrollbar {
  width: 0 !important;
  height: 0 !important;
  display: none !important;
}
html::-webkit-scrollbar-thumb {
  background: transparent !important;
}
@media screen and (min-width: 351px) {
  html {
    font-size: 10px;
  }
}
@media screen and (min-width: 980px) {
  html {
    font-size: 9px;
  }
}
@media screen and (min-width: 1341px) {
  html {
    font-size: 10px;
  }
}
@media screen and (min-width: 1700px) {
  html {
    font-size: 11px;
  }
}

body {
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  font-size: 1.4rem;
  line-height: 1;
  letter-spacing: 0.02em;
  color: #44413C;
  width: 100%;
  font-weight: 500;
  font-family: "YuMincho", "游明朝", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "MS PMincho", serif;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  -webkit-overflow-scrolling: touch !important;
  scrollbar-width: none !important;
  background: #fff;
  -webkit-overflow-scrolling: touch;
  height: -webkit-fill-available;
  overflow-x: unset !important;
}
body h1, body h2, body h3, body h4, body h5 {
  font-weight: 400;
}
body.notoserif {
  font-family: "Noto Serif JP", "YuMincho", "游明朝", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "MS PMincho", serif;
  font-weight: 500;
}
body.notoserif h1, body.notoserif h2, body.notoserif h3, body.notoserif h4, body.notoserif h5 {
  font-weight: 400;
}
body.shippori {
  font-family: "Shippori Mincho", "YuMincho", "游明朝", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "MS PMincho", serif;
  font-weight: 500;
}
body.shippori h1, body.shippori h2, body.shippori h3, body.shippori h4, body.shippori h5 {
  font-weight: 400;
}
body.zenold {
  font-family: "Zen Old Mincho", "YuMincho", "游明朝", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "MS PMincho", serif;
  font-weight: 500;
}
body.zenold h1, body.zenold h2, body.zenold h3, body.zenold h4, body.zenold h5 {
  font-weight: 400;
}

body.bind {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  margin: auto;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

article {
  padding-top: 0px;
  -webkit-transition: opacity 2s;
  transition: opacity 2s;
  will-change: opacity;
}
article.loading {
  opacity: 0;
}

section .section_inner {
  width: 86vw;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 720px) {
  section .section_inner {
    width: 83%;
    max-width: 1590px;
  }
}
@media screen and (min-width: 720px) {
  section .section_inner {
    /*min-width: 1200px;*/
  }
}

button {
  font-family: inherit;
  font-weight: inherit;
  background: transparent;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  margin: 0;
  padding: 0;
  color: inherit;
  cursor: pointer;
}
button:focus {
  outline: none;
}

header {
  position: relative;
  z-index: 1000;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
}
header .header_inner {
  padding: 20px 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
header .header_inner .header_left .header_logo {
  position: relative;
  width: 160px;
  height: 36px;
  -webkit-transition: opacity 0.3s, -webkit-filter 0.3s;
  transition: opacity 0.3s, -webkit-filter 0.3s;
  transition: filter 0.3s, opacity 0.3s;
  transition: filter 0.3s, opacity 0.3s, -webkit-filter 0.3s;
  will-change: filter, opacity;
}
header .header_inner .header_left .header_logo img {
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  will-change: opacity;
}
header .header_inner .header_left .header_logo img.vertical {
  display: none;
}
header .header_inner .header_left .header_navigation {
  display: none;
}
header .header_inner .header_right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
header .header_inner .header_right .lang_shifter {
  display: none;
  margin-right: 5px;
  -webkit-transition: -webkit-filter 0.3s;
  transition: -webkit-filter 0.3s;
  transition: filter 0.3s;
  transition: filter 0.3s, -webkit-filter 0.3s;
  will-change: filter;
}
header .header_inner .header_right .lang_shifter .header_lang {
  font-size: 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 5px;
}
header .header_inner .header_right .lang_shifter .header_lang a {
  display: block;
  color: #acacac;
  pointer-events: none;
}
header .header_inner .header_right .lang_shifter .header_lang a.en {
  padding-right: 5px;
}
header .header_inner .header_right .lang_shifter .header_lang a.jp {
  font-family: inherit !important;
  padding-left: 5px;
}
header .header_inner .header_right .lang_shifter .header_lang a.active {
  color: #44413C;
  pointer-events: all;
}
header .header_inner .header_right .navigation_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-right: 45px;
}
header .header_inner .header_right .navigation_wrapper .nav_item {
  margin-right: 10px;
  -webkit-transition: -webkit-filter 0.3s;
  transition: -webkit-filter 0.3s;
  transition: filter 0.3s;
  transition: filter 0.3s, -webkit-filter 0.3s;
  will-change: filter;
}
header .header_inner .header_right .navigation_wrapper .nav_item a {
  display: block;
}
header .header_inner .header_right .navigation_wrapper .nav_item a img {
  width: auto;
  height: 24px;
}
header .header_inner .header_right .hummenu_wrap {
  position: fixed;
  top: 20px;
  right: 15px;
  z-index: 1000;
}
header .header_inner .header_right .hummenu_wrap button {
  position: relative;
  display: block;
  width: 40px;
  height: 40px;
  background: #0A0830;
  border-radius: 50%;
}
header .header_inner .header_right .hummenu_wrap button span {
  position: absolute;
  width: 20px;
  height: 1px;
  left: 0;
  right: 0;
  margin: auto;
  background: #fff;
  margin: auto;
  -webkit-transition: background 0.1s, -webkit-transform 0.1s;
  transition: background 0.1s, -webkit-transform 0.1s;
  transition: background 0.1s, transform 0.1s;
  transition: background 0.1s, transform 0.1s, -webkit-transform 0.1s;
  will-change: background, transform;
}
header .header_inner .header_right .hummenu_wrap button span:nth-of-type(1) {
  top: 22px;
}
header .header_inner .header_right .hummenu_wrap button span:nth-of-type(2) {
  bottom: 22px;
}
header.index .header_inner .header_left .header_logo, header.index2 .header_inner .header_left .header_logo {
  -webkit-filter: invert(1);
          filter: invert(1);
}
header.index .header_inner .header_right .lang_shifter, header.index2 .header_inner .header_right .lang_shifter {
  -webkit-filter: invert(1);
          filter: invert(1);
}
header.index .header_inner .header_right .navigation_wrapper .nav_item, header.index2 .header_inner .header_right .navigation_wrapper .nav_item {
  -webkit-filter: invert(1);
          filter: invert(1);
}
header.hum_open .header_inner .header_left .header_logo {
  -webkit-filter: invert(1);
          filter: invert(1);
}
header.hum_open .header_inner .header_right .lang_shifter {
  -webkit-filter: invert(1);
          filter: invert(1);
}
header.hum_open .header_inner .header_right .navigation_wrapper .nav_item {
  -webkit-filter: invert(1);
          filter: invert(1);
}
header.hum_open .header_inner .header_right .hummenu_wrap button span:nth-of-type(1) {
  -webkit-transform: translateY(-2px) rotate(45deg);
          transform: translateY(-2px) rotate(45deg);
}
header.hum_open .header_inner .header_right .hummenu_wrap button span:nth-of-type(2) {
  -webkit-transform: translateY(3px) rotate(-45deg);
          transform: translateY(3px) rotate(-45deg);
}

@media screen and (min-width: 980px) {
  header .header_inner {
    padding: 20px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  header .header_inner .header_left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    height: 70px;
  }
  header .header_inner .header_left .header_logo {
    position: fixed;
    width: 70px;
    height: 255px;
    margin-right: 30px;
    -webkit-transition: -webkit-filter 0.3s;
    transition: -webkit-filter 0.3s;
    transition: filter 0.3s;
    transition: filter 0.3s, -webkit-filter 0.3s;
    will-change: filter;
  }
  header .header_inner .header_left .header_logo a {
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
    will-change: opacity;
  }
  header .header_inner .header_left .header_logo a:hover {
    opacity: 0.75;
  }
  header .header_inner .header_left .header_logo img {
    position: absolute;
    top: 0;
    left: 0;
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
    will-change: opacity;
  }
  header .header_inner .header_left .header_logo img.horizonal {
    display: none;
  }
  header .header_inner .header_left .header_logo img.vertical {
    display: block;
  }
  header .header_inner .header_left .header_navigation {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    height: 70px;
    margin-left: 100px;
  }
  header .header_inner .header_left .header_navigation li {
    line-height: 70px;
    margin-right: 20px;
  }
  header .header_inner .header_left .header_navigation li:nth-last-of-type(1) {
    margin-right: 0;
  }
  header .header_inner .header_left .header_navigation li a {
    display: block;
    font-size: 1.6rem;
    color: inherit;
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
    will-change: opacity;
    -webkit-transition: color 0.3s, opacity 0.3s;
    transition: color 0.3s, opacity 0.3s;
    will-change: color, opacity;
  }
  header .header_inner .header_left .header_navigation li a:hover {
    opacity: 0.75;
  }
  header .header_inner .header_right {
    position: fixed;
    right: 0;
    top: 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    line-height: 70px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  header .header_inner .header_right .lang_shifter {
    display: none;
    margin-right: 15px;
  }
  header .header_inner .header_right .lang_shifter .header_lang {
    font-size: 1.6rem;
    margin-right: 10px;
  }
  header .header_inner .header_right .lang_shifter .header_lang a.en {
    padding-right: 10px;
  }
  header .header_inner .header_right .lang_shifter .header_lang a.jp {
    padding-left: 10px;
  }
  header .header_inner .header_right .navigation_wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-right: 5px;
  }
  header .header_inner .header_right .navigation_wrapper .nav_item {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin: 20px 20px 20px 0;
    padding-right: 22px;
  }
  header .header_inner .header_right .navigation_wrapper .nav_item::before {
    display: block;
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    width: 1px;
    height: 25px;
    background: #44413C;
  }
  header .header_inner .header_right .navigation_wrapper .nav_item a {
    display: block;
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
    will-change: opacity;
    line-height: 1;
  }
  header .header_inner .header_right .navigation_wrapper .nav_item a:hover {
    opacity: 0.75;
  }
  header .header_inner .header_right .navigation_wrapper .nav_item a img {
    width: auto;
    height: 28px;
    margin: 0 auto;
  }
  header .header_inner .header_right .navigation_wrapper .nav_item:nth-of-type(2) {
    margin: 20px 0px 20px 0;
  }
  header .header_inner .header_right .navigation_wrapper .nav_item:nth-of-type(2)::before {
    display: none;
  }
  header .header_inner .header_right .hummenu_wrap {
    display: none;
  }
  header.index .header_inner .header_left .header_logo, header.index2 .header_inner .header_left .header_logo {
    -webkit-filter: invert(1);
            filter: invert(1);
  }
  header.index .header_inner .header_left .header_navigation li a, header.index2 .header_inner .header_left .header_navigation li a {
    color: #fff;
  }
  header.index .header_inner .header_right .lang_shifter, header.index2 .header_inner .header_right .lang_shifter {
    -webkit-filter: invert(1);
            filter: invert(1);
  }
  header.index .header_inner .header_right .navigation_wrapper .nav_item, header.index2 .header_inner .header_right .navigation_wrapper .nav_item {
    -webkit-filter: invert(1);
            filter: invert(1);
  }
}
footer {
  padding: 50px 0 40px;
  background: #0A0830;
  color: #fff;
}
footer .footer_inner {
  width: 86vw;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 720px) {
  footer .footer_inner {
    width: 83%;
    max-width: 1590px;
  }
}
footer .footer_inner .footer_navigation {
  margin-bottom: 20px;
}
footer .footer_inner .footer_navigation .parent_ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
footer .footer_inner .footer_navigation .parent_ul .parent_li {
  width: 50%;
  margin-bottom: 35px;
}
footer .footer_inner .footer_navigation .parent_ul .parent_li .parent {
  display: block;
  font-size: 1.6rem;
  color: #fff;
  padding: 5px 0;
}
footer .footer_inner .footer_navigation .parent_ul .parent_li .children {
  margin-top: 10px;
}
footer .footer_inner .footer_navigation .parent_ul .parent_li .children li {
  margin-bottom: 10px;
}
footer .footer_inner .footer_navigation .parent_ul .parent_li .children li a {
  position: relative;
  display: block;
  padding: 3px 0;
  font-size: 1.3rem;
  color: #fff;
  padding-left: 15px;
}
footer .footer_inner .footer_navigation .parent_ul .parent_li .children li a::before {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 7px;
  height: 1px;
  background: #fff;
}
footer .footer_inner .footer_navigation .parent_ul .parent_li .outer_link_wrap {
  margin-top: 10px;
}
footer .footer_inner .footer_navigation .parent_ul .parent_li .outer_link_wrap .nav_item {
  margin-bottom: 5px;
}
footer .footer_inner .footer_navigation .parent_ul .parent_li .outer_link_wrap .nav_item:nth-last-of-type(1) {
  margin-top: 10px;
}
footer .footer_inner .footer_navigation .parent_ul .parent_li .outer_link_wrap .nav_item a {
  padding: 5px 0;
  color: #fff;
  font-size: 1.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
footer .footer_inner .footer_navigation .parent_ul .parent_li .outer_link_wrap .nav_item a .img_wrap {
  width: 20px;
  text-align: center;
  margin-right: 10px;
}
footer .footer_inner .footer_navigation .parent_ul .parent_li .outer_link_wrap .nav_item a .img_wrap img {
  width: auto;
  height: 20px;
  margin: 0 auto;
  -webkit-filter: invert(1);
          filter: invert(1);
}
footer .footer_inner .footer_navigation .parent_ul .parent_li .outer_link_wrap .nav_item a .caret {
  margin-left: 9px;
}
footer .footer_inner .footer_navigation .parent_ul .parent_li .outer_link_wrap .nav_item a .caret img {
  width: 9px;
  -webkit-transform: translate(0, -2px);
          transform: translate(0, -2px);
}
footer .footer_inner .footer_corp_info .footer_logo {
  margin-bottom: 30px;
}
footer .footer_inner .footer_corp_info .footer_logo a {
  display: block;
  width: 100px;
  margin: 0 auto;
}
footer .footer_inner .footer_corp_info .corp_name {
  font-size: 1.8rem;
  text-align: center;
  margin-bottom: 20px;
}
footer .footer_inner .footer_corp_info .corp_address {
  font-size: 1.3rem;
  line-height: 2;
  text-align: center;
  margin-bottom: 30px;
}
footer .footer_inner .footer_corp_info .corp_sns_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
footer .footer_inner .footer_corp_info .corp_sns_wrap .sns_item {
  margin-right: 15px;
}
footer .footer_inner .footer_corp_info .corp_sns_wrap .sns_item:nth-last-of-type(1) {
  margin-right: 0;
}
footer .footer_inner .footer_corp_info .corp_sns_wrap .sns_item a {
  display: block;
}
footer .footer_inner .footer_corp_info .corp_sns_wrap .sns_item a img {
  width: auto;
  height: 20px;
}
footer .footer_inner .footer_corp_info .corp_sns_wrap .sns_item a img.note {
  height: 15px;
}
footer .footer_inner .footer_lower {
  margin-top: 25px;
}
footer .footer_inner .footer_lower ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 30px;
}
footer .footer_inner .footer_lower ul li {
  position: relative;
  line-height: 2.2;
  padding-right: 10px;
  margin-right: 10px;
}
footer .footer_inner .footer_lower ul li::before {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  width: 1px;
  height: 12px;
  background: #fff;
}
footer .footer_inner .footer_lower ul li a {
  display: block;
  font-size: 1.3rem;
  color: #fff;
}
footer .footer_inner .footer_lower ul li:nth-of-type(2), footer .footer_inner .footer_lower ul li:nth-of-type(5) {
  padding-right: 0px;
  margin-right: 0px;
}
footer .footer_inner .footer_lower ul li:nth-of-type(2)::before, footer .footer_inner .footer_lower ul li:nth-of-type(5)::before {
  display: none;
}
footer .footer_inner .footer_lower ul li.reline {
  width: 100%;
}
footer .footer_inner .footer_lower ul li.reline::before {
  display: none;
}
footer .footer_inner .footer_lower .copyright {
  font-size: 1.2rem;
  text-align: center;
}

@media screen and (min-width: 980px) {
  footer {
    padding: 100px 0;
  }
  footer .footer_inner {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
  footer .footer_inner .footer_navigation {
    margin-top: 15px;
    margin-bottom: 0px;
  }
  footer .footer_inner .footer_navigation .parent_ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  footer .footer_inner .footer_navigation .parent_ul .parent_li {
    width: unset;
    margin-right: 50px;
    margin-bottom: 0;
  }
  footer .footer_inner .footer_navigation .parent_ul .parent_li:nth-last-of-type(1) {
    margin-right: 0;
  }
  footer .footer_inner .footer_navigation .parent_ul .parent_li .parent {
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
    will-change: opacity;
    display: block;
    font-size: 1.7rem;
    padding: 5px 0;
  }
  footer .footer_inner .footer_navigation .parent_ul .parent_li .parent:hover {
    opacity: 0.75;
  }
  footer .footer_inner .footer_navigation .parent_ul .parent_li .children {
    margin-top: 12px;
  }
  footer .footer_inner .footer_navigation .parent_ul .parent_li .children li {
    margin-bottom: 10px;
  }
  footer .footer_inner .footer_navigation .parent_ul .parent_li .children li a {
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
    will-change: opacity;
    padding: 5px 0;
    font-size: 1.4rem;
    padding-left: 15px;
  }
  footer .footer_inner .footer_navigation .parent_ul .parent_li .children li a:hover {
    opacity: 0.75;
  }
  footer .footer_inner .footer_navigation .parent_ul .parent_li .outer_link_wrap {
    margin-top: 10px;
  }
  footer .footer_inner .footer_navigation .parent_ul .parent_li .outer_link_wrap .nav_item {
    margin-bottom: 5px;
  }
  footer .footer_inner .footer_navigation .parent_ul .parent_li .outer_link_wrap .nav_item:nth-last-of-type(1) {
    margin-top: 20px;
  }
  footer .footer_inner .footer_navigation .parent_ul .parent_li .outer_link_wrap .nav_item a {
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
    will-change: opacity;
    padding: 5px 0;
    font-size: 1.5rem;
  }
  footer .footer_inner .footer_navigation .parent_ul .parent_li .outer_link_wrap .nav_item a:hover {
    opacity: 0.75;
  }
  footer .footer_inner .footer_corp_info .footer_logo {
    margin-bottom: 40px;
  }
  footer .footer_inner .footer_corp_info .footer_logo a {
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
    will-change: opacity;
    display: block;
    width: 120px;
    margin: 0;
  }
  footer .footer_inner .footer_corp_info .footer_logo a:hover {
    opacity: 0.75;
  }
  footer .footer_inner .footer_corp_info .corp_name {
    font-size: 2rem;
    text-align: left;
    margin-bottom: 20px;
  }
  footer .footer_inner .footer_corp_info .corp_address {
    font-size: 1.5rem;
    line-height: 2.2;
    text-align: left;
    margin-bottom: 30px;
  }
  footer .footer_inner .footer_corp_info .corp_sns_wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  footer .footer_inner .footer_corp_info .corp_sns_wrap .sns_item {
    margin-right: 15px;
  }
  footer .footer_inner .footer_corp_info .corp_sns_wrap .sns_item a {
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
    will-change: opacity;
  }
  footer .footer_inner .footer_corp_info .corp_sns_wrap .sns_item a:hover {
    opacity: 0.75;
  }
  footer .footer_inner .footer_corp_info .corp_sns_wrap .sns_item a img {
    height: 24px;
  }
  footer .footer_inner .footer_corp_info .corp_sns_wrap .sns_item a img.note {
    height: 16px;
  }
  footer .footer_inner .footer_lower {
    position: absolute;
    right: 0;
    bottom: 5px;
    margin-top: 0px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  footer .footer_inner .footer_lower ul {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    margin-bottom: 0px;
  }
  footer .footer_inner .footer_lower ul li {
    line-height: 1.5;
    padding-right: 15px;
    margin-right: 15px;
  }
  footer .footer_inner .footer_lower ul li::before {
    height: 14px;
  }
  footer .footer_inner .footer_lower ul li a {
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
    will-change: opacity;
    display: block;
    font-size: 1.4rem;
  }
  footer .footer_inner .footer_lower ul li a:hover {
    opacity: 0.75;
  }
  footer .footer_inner .footer_lower ul li:nth-of-type(2) {
    padding-right: 15px;
    margin-right: 15px;
  }
  footer .footer_inner .footer_lower ul li:nth-of-type(2)::before {
    display: block;
  }
  footer .footer_inner .footer_lower ul li:nth-of-type(5) {
    padding-right: 0px;
    margin-right: 0px;
  }
  footer .footer_inner .footer_lower ul li:nth-of-type(5)::before {
    display: none;
  }
  footer .footer_inner .footer_lower ul li.reline {
    display: none;
  }
  footer .footer_inner .footer_lower ul li.reline::before {
    display: none;
  }
  footer .footer_inner .footer_lower .copyright {
    font-size: 1.4rem;
    text-align: right;
  }
}
.comp-hummenu {
  position: fixed;
  top: 0;
  left: 0;
  margin: auto;
  width: 100%;
  z-index: 1;
  height: var(--wHeightPx);
  overflow: hidden;
  background: #0A0830;
  pointer-events: none;
  opacity: 0;
  line-height: 1;
  will-change: opacity;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.comp-hummenu.open {
  opacity: 1;
  z-index: 999;
  pointer-events: all;
}
.comp-hummenu.open .hum_close {
  opacity: 1;
  pointer-events: all;
}
.comp-hummenu .contents {
  position: relative;
  width: 86vw;
  margin-left: auto;
  margin-right: auto;
  height: var(--wHeightPx);
  margin: 0 auto;
  overflow: scroll;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
}
@media screen and (min-width: 720px) {
  .comp-hummenu .contents {
    width: 83%;
    max-width: 1590px;
  }
}
.comp-hummenu .contents::-webkit-scrollbar {
  display: none;
}
.comp-hummenu .contents .hummenu_inner {
  padding: 100px 0 30px;
}
.comp-hummenu .contents .hummenu_inner .hummenu_navigation {
  margin-bottom: 20px;
}
.comp-hummenu .contents .hummenu_inner .hummenu_navigation .parent_ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.comp-hummenu .contents .hummenu_inner .hummenu_navigation .parent_ul .parent_li {
  width: 50%;
  margin-bottom: 35px;
}
.comp-hummenu .contents .hummenu_inner .hummenu_navigation .parent_ul .parent_li .parent {
  display: block;
  font-size: 1.6rem;
  color: #fff;
  padding: 5px 0;
}
.comp-hummenu .contents .hummenu_inner .hummenu_navigation .parent_ul .parent_li .children {
  margin-top: 10px;
}
.comp-hummenu .contents .hummenu_inner .hummenu_navigation .parent_ul .parent_li .children li {
  margin-bottom: 10px;
}
.comp-hummenu .contents .hummenu_inner .hummenu_navigation .parent_ul .parent_li .children li a {
  position: relative;
  display: block;
  padding: 3px 0;
  font-size: 1.3rem;
  color: #fff;
  padding-left: 15px;
}
.comp-hummenu .contents .hummenu_inner .hummenu_navigation .parent_ul .parent_li .children li a::before {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 7px;
  height: 1px;
  background: #fff;
}
.comp-hummenu .contents .hummenu_inner .hummenu_navigation .parent_ul .parent_li .outer_link_wrap {
  margin-top: 10px;
}
.comp-hummenu .contents .hummenu_inner .hummenu_navigation .parent_ul .parent_li .outer_link_wrap .nav_item {
  margin-bottom: 5px;
}
.comp-hummenu .contents .hummenu_inner .hummenu_navigation .parent_ul .parent_li .outer_link_wrap .nav_item:nth-last-of-type(1) {
  margin-top: 10px;
}
.comp-hummenu .contents .hummenu_inner .hummenu_navigation .parent_ul .parent_li .outer_link_wrap .nav_item a {
  padding: 5px 0;
  color: #fff;
  font-size: 1.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.comp-hummenu .contents .hummenu_inner .hummenu_navigation .parent_ul .parent_li .outer_link_wrap .nav_item a .img_wrap {
  width: 20px;
  text-align: center;
  margin-right: 10px;
}
.comp-hummenu .contents .hummenu_inner .hummenu_navigation .parent_ul .parent_li .outer_link_wrap .nav_item a .img_wrap img {
  width: auto;
  height: 20px;
  margin: 0 auto;
  -webkit-filter: invert(1);
          filter: invert(1);
}
.comp-hummenu .contents .hummenu_inner .hummenu_navigation .parent_ul .parent_li .outer_link_wrap .nav_item a .caret {
  margin-left: 9px;
}
.comp-hummenu .contents .hummenu_inner .hummenu_navigation .parent_ul .parent_li .outer_link_wrap .nav_item a .caret img {
  width: 9px;
  -webkit-transform: translate(0, -2px);
          transform: translate(0, -2px);
}
.comp-hummenu .contents .hummenu_inner .hummenu_lower {
  position: absolute;
  width: 100%;
  left: 0;
  right: 0;
  bottom: 40px;
  margin: auto;
}
.comp-hummenu .contents .hummenu_inner .hummenu_lower .corp_sns_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 20px;
}
.comp-hummenu .contents .hummenu_inner .hummenu_lower .corp_sns_wrap .sns_item {
  margin-right: 15px;
}
.comp-hummenu .contents .hummenu_inner .hummenu_lower .corp_sns_wrap .sns_item:nth-last-of-type(1) {
  margin-right: 0;
}
.comp-hummenu .contents .hummenu_inner .hummenu_lower .corp_sns_wrap .sns_item a {
  display: block;
}
.comp-hummenu .contents .hummenu_inner .hummenu_lower .corp_sns_wrap .sns_item a img {
  width: auto;
  height: 20px;
}
.comp-hummenu .contents .hummenu_inner .hummenu_lower .corp_sns_wrap .sns_item a img.note {
  height: 15px;
}
.comp-hummenu .contents .hummenu_inner .hummenu_lower ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.comp-hummenu .contents .hummenu_inner .hummenu_lower ul li {
  position: relative;
  line-height: 2.2;
  padding-right: 10px;
  margin-right: 10px;
}
.comp-hummenu .contents .hummenu_inner .hummenu_lower ul li::before {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  width: 1px;
  height: 12px;
  background: #fff;
}
.comp-hummenu .contents .hummenu_inner .hummenu_lower ul li a {
  display: block;
  font-size: 1.3rem;
  color: #fff;
}
.comp-hummenu .contents .hummenu_inner .hummenu_lower ul li:nth-of-type(2), .comp-hummenu .contents .hummenu_inner .hummenu_lower ul li:nth-of-type(5) {
  padding-right: 0px;
  margin-right: 0px;
}
.comp-hummenu .contents .hummenu_inner .hummenu_lower ul li:nth-of-type(2)::before, .comp-hummenu .contents .hummenu_inner .hummenu_lower ul li:nth-of-type(5)::before {
  display: none;
}
.comp-hummenu .contents .hummenu_inner .hummenu_lower ul li.reline {
  width: 100%;
}
.comp-hummenu .contents .hummenu_inner .hummenu_lower ul li.reline::before {
  display: none;
}

/*########## ページ個別レイアウト ##########*/
.page-index .section-index-lead {
  padding-top: 16vw;
}
.page-index .section-index-lead .lead_txt_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.page-index .section-index-lead .lead_txt_wrapper .lead_ttl {
  font-size: 2.8rem;
  line-height: 1.5;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  margin-bottom: 20px;
}
.page-index .section-index-lead .lead_txt_wrapper .lead_ttl br {
  display: none;
}
.page-index .section-index-lead .lead_txt_wrapper .lead_desciption {
  width: 100%;
  text-align: center;
  font-size: 1.5rem;
  line-height: 2;
}
.page-index .section-index-lead .lead_txt_wrapper .lead_desciption p {
  margin-bottom: 1.25rem;
}
.page-index .section-index-lead .lead_txt_wrapper .lead_desciption p:nth-last-of-type(1) {
  margin-bottom: 0;
}
.page-index .section-index-lead .lead_img_wrapper {
  padding-top: 16vw;
}
.page-index .section-index-lead .lead_img_wrapper .pc_img {
  display: none;
}
.page-index .section-index-links {
  padding-top: 20vw;
}
.page-index .section-index-links .comp-ttl-group {
  text-align: center;
  margin-bottom: 50px;
}
.page-index .section-index-links .links_inner {
  width: 86vw;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 720px) {
  .page-index .section-index-links .links_inner {
    width: 83%;
    max-width: 1590px;
  }
}
.page-index .section-index-product {
  padding-top: 20vw;
}
.page-index .section-index-product .product_ttl_wrapper .comp-ttl-group {
  text-align: center;
}
.page-index .section-index-product .product_ttl_wrapper .product_main_img {
  margin-bottom: 10vw;
}
.page-index .section-index-product .product_ttl_wrapper .product_main_img .pc_img {
  display: none;
}
.page-index .section-craftmanship {
  margin-top: 16vw;
  padding-top: 10vw;
  padding-bottom: 16vw;
  background: #0A0830;
  color: #fff;
}
.page-index .section-craftmanship .craftman_wrapper .craftman_img {
  width: 93vw;
  margin-left: 7vw;
  margin-bottom: 25px;
}
.page-index .section-craftmanship .craftman_wrapper .craftman_txt {
  width: 86vw;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 720px) {
  .page-index .section-craftmanship .craftman_wrapper .craftman_txt {
    width: 83%;
    max-width: 1590px;
  }
}
.page-index .section-craftmanship .craftman_wrapper .craftman_txt .craftman_ttl {
  font-size: 2.2rem;
  line-height: 1.76;
  margin-bottom: 10px;
}
.page-index .section-craftmanship .craftman_wrapper .craftman_txt .craftman_description {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.87;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.page-index .section-craftmanship .craftman_wrapper .craftman_txt .craftman_description p {
  margin-bottom: 1em;
}
.page-index .section-craftmanship .craftman_wrapper .craftman_txt .craftman_description p:nth-last-of-type(1) {
  margin-bottom: 0;
}
@media screen and (min-width: 980px) {
  .page-index .section-craftmanship .craftman_wrapper .craftman_txt .craftman_description {
    font-size: 1.6rem;
    padding: 0;
  }
}
.page-index .section-craftmanship .craftman_wrapper .craftman_txt .comp-arrow-button {
  margin-top: 30px;
}
.page-index .section-journal-feed {
  padding-top: 16vw;
  padding-bottom: 16vw;
}
.page-index .section-journal-feed .journal_flex_wrap .journal_ttl_wrap {
  margin-bottom: 30px;
}
.page-index .section-journal-feed .journal_flex_wrap .journal_ttl_wrap .ttl_description {
  margin-top: -10px;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.87;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.page-index .section-journal-feed .journal_flex_wrap .journal_ttl_wrap .ttl_description p {
  margin-bottom: 1em;
}
.page-index .section-journal-feed .journal_flex_wrap .journal_ttl_wrap .ttl_description p:nth-last-of-type(1) {
  margin-bottom: 0;
}
@media screen and (min-width: 980px) {
  .page-index .section-journal-feed .journal_flex_wrap .journal_ttl_wrap .ttl_description {
    font-size: 1.6rem;
    padding: 0;
  }
}
.page-index .section-journal-feed .journal_flex_wrap .journal_ttl_wrap .comp-arrow-button {
  display: none;
}
.page-index .section-instagram {
  padding-top: 13vw;
  padding-bottom: 13vw;
  border-top: 1px solid #d8d8d8;
}
.page-index .section-instagram .insta_ttl_wrap {
  text-align: center;
  margin-bottom: 35px;
}
.page-index .section-instagram .insta_ttl_wrap .insta_ttl {
  font-size: 2.8rem;
  margin-bottom: 20px;
}
.page-index .section-instagram .insta_ttl_wrap .insta_lead_txt {
  font-size: 1.6rem;
}

@media screen and (min-width: 980px) {
  .page-index .section-index-lead {
    padding-top: 160px;
  }
  .page-index .section-index-lead .lead_txt_wrapper {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .page-index .section-index-lead .lead_txt_wrapper .lead_ttl {
    width: auto;
    font-size: 3.2rem;
    line-height: 1.5;
    margin-left: 30px;
    margin-bottom: 0px;
  }
  .page-index .section-index-lead .lead_txt_wrapper .lead_ttl br {
    display: block;
  }
  .page-index .section-index-lead .lead_txt_wrapper .lead_desciption {
    width: auto;
    min-width: unset;
    margin: unset;
    text-align: left;
    font-size: 1.8rem;
    line-height: 2;
    -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
            writing-mode: vertical-rl;
  }
  .page-index .section-index-lead .lead_txt_wrapper .lead_desciption p {
    margin-left: 10px;
    margin-bottom: 0;
  }
  .page-index .section-index-lead .lead_txt_wrapper .lead_desciption p span {
    display: block;
  }
  .page-index .section-index-lead .lead_txt_wrapper .lead_desciption p:nth-last-of-type(1) {
    margin-left: 0px;
  }
  .page-index .section-index-lead .lead_img_wrapper {
    padding-top: 120px;
    max-width: 1000px;
    margin: 0 auto;
  }
  .page-index .section-index-lead .lead_img_wrapper .sp_img {
    display: none;
  }
  .page-index .section-index-lead .lead_img_wrapper .pc_img {
    display: block;
  }
  .page-index .section-index-links {
    padding-top: 200px;
  }
  .page-index .section-index-links .comp-ttl-group {
    text-align: center;
    margin-bottom: 100px;
  }
  .page-index .section-index-product {
    padding-top: 160px;
  }
  .page-index .section-index-product .product_ttl_wrapper .comp-ttl-group {
    text-align: center;
    margin-bottom: 80px;
  }
  .page-index .section-index-product .product_ttl_wrapper .product_main_img {
    margin-bottom: 160px;
  }
  .page-index .section-index-product .product_ttl_wrapper .product_main_img .sp_img {
    display: none;
  }
  .page-index .section-index-product .product_ttl_wrapper .product_main_img .pc_img {
    display: block;
  }
  .page-index .section-craftmanship {
    margin-top: 120px;
    padding-top: 0;
    padding-bottom: 0;
  }
  .page-index .section-craftmanship .craftman_wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .page-index .section-craftmanship .craftman_wrapper .craftman_img {
    width: 55%;
    margin-left: 0;
    margin-bottom: 0;
  }
  .page-index .section-craftmanship .craftman_wrapper .craftman_txt {
    width: 45%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    margin: 0;
    padding: 0 120px;
  }
  .page-index .section-craftmanship .craftman_wrapper .craftman_txt .craftman_ttl {
    font-size: 3rem;
    margin-bottom: 15px;
  }
  .page-index .section-craftmanship .craftman_wrapper .craftman_txt .comp-arrow-button {
    margin-top: 30px;
  }
  .page-index .section-journal-feed {
    padding-top: 160px;
    padding-bottom: 80px;
  }
  .page-index .section-journal-feed .journal_flex_wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .page-index .section-journal-feed .journal_flex_wrap .journal_ttl_wrap {
    width: 35%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-right: 80px;
    margin-top: 15px;
    margin-bottom: 0px;
  }
  .page-index .section-journal-feed .journal_flex_wrap .journal_ttl_wrap .ttl_description {
    margin-top: -10px;
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 1.87;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .page-index .section-journal-feed .journal_flex_wrap .journal_ttl_wrap .ttl_description p {
    margin-bottom: 1em;
  }
  .page-index .section-journal-feed .journal_flex_wrap .journal_ttl_wrap .ttl_description p:nth-last-of-type(1) {
    margin-bottom: 0;
  }
}
@media screen and (min-width: 980px) and (min-width: 980px) {
  .page-index .section-journal-feed .journal_flex_wrap .journal_ttl_wrap .ttl_description {
    font-size: 1.6rem;
    padding: 0;
  }
}
@media screen and (min-width: 980px) {
  .page-index .section-journal-feed .journal_flex_wrap .journal_ttl_wrap .comp-arrow-button {
    position: static;
    display: block;
    margin-top: 30px;
  }
  .page-index .section-journal-feed .journal_flex_wrap .comp-journal-list {
    width: 65%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .page-index .section-instagram {
    padding-top: 120px;
    padding-bottom: 160px;
  }
  .page-index .section-instagram .insta_ttl_wrap {
    text-align: center;
    margin-bottom: 40px;
  }
  .page-index .section-instagram .insta_ttl_wrap .insta_ttl {
    font-size: 4rem;
    margin-bottom: 30px;
  }
  .page-index .section-instagram .insta_ttl_wrap .insta_lead_txt {
    font-size: 1.6rem;
  }
}
.page-about {
  padding-bottom: 20px;
}
.page-about .section-history-lead {
  margin-top: 16vw;
  padding-top: 20vw;
  background-image: url(/img/izuhonten/about/lead_bg.jpg);
  background-size: 100vw;
  background-position: center bottom;
  padding-bottom: 75vw;
}
.page-about .section-history-lead .txt_flex_wrap {
  color: #fff;
}
.page-about .section-history-lead .txt_flex_wrap .lead_ttl {
  font-size: 2rem;
  line-height: 1.67;
  text-align: center;
  color: #fff;
  margin-bottom: 20px;
}
.page-about .section-history-lead .txt_flex_wrap .lead_description {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.87;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.page-about .section-history-lead .txt_flex_wrap .lead_description p {
  margin-bottom: 1em;
}
.page-about .section-history-lead .txt_flex_wrap .lead_description p:nth-last-of-type(1) {
  margin-bottom: 0;
}
@media screen and (min-width: 980px) {
  .page-about .section-history-lead .txt_flex_wrap .lead_description {
    font-size: 1.6rem;
    padding: 0;
  }
}
.page-about .section-sakamai .sakamai_main_wrapper {
  padding-top: 15vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 13vw;
}
.page-about .section-sakamai .sakamai_main_wrapper .sakamai_ttl {
  font-size: 2rem;
  line-height: 1.65;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  margin-bottom: 13vw;
}
.page-about .section-sakamai .sakamai_main_wrapper .sakamai_ttl strong {
  font-weight: inherit;
}
.page-about .section-sakamai .sakamai_main_wrapper .sakamai_ttl span {
  display: block;
  text-indent: -0.5em;
}
.page-about .section-sakamai .sakamai_main_wrapper .sakamai_main_img .pc_img {
  display: none;
}
.page-about .section-sakamai .sakamai_detail_wrapper {
  width: 86vw;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 720px) {
  .page-about .section-sakamai .sakamai_detail_wrapper {
    width: 83%;
    max-width: 1590px;
  }
}
.page-about .section-sakamai .sakamai_detail_wrapper .sakamai_detail_flex {
  margin-bottom: 40px;
}
.page-about .section-sakamai .sakamai_detail_wrapper .sakamai_detail_flex:nth-last-of-type(1) {
  margin-bottom: 0;
}
.page-about .section-sakamai .sakamai_detail_wrapper .sakamai_detail_flex .sakamai_txt {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.87;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.page-about .section-sakamai .sakamai_detail_wrapper .sakamai_detail_flex .sakamai_txt p {
  margin-bottom: 1em;
}
.page-about .section-sakamai .sakamai_detail_wrapper .sakamai_detail_flex .sakamai_txt p:nth-last-of-type(1) {
  margin-bottom: 0;
}
@media screen and (min-width: 980px) {
  .page-about .section-sakamai .sakamai_detail_wrapper .sakamai_detail_flex .sakamai_txt {
    font-size: 1.6rem;
    padding: 0;
  }
}
.page-about .section-sakamai .sakamai_detail_wrapper .sakamai_detail_flex .sakamai_img {
  margin-bottom: 25px;
}
.page-about .section-method {
  padding-top: 15vw;
}
.page-about .section-method .method_main_ttl {
  font-size: 2rem;
  text-align: center;
  line-height: 1.67;
  margin-bottom: 30px;
}
.page-about .section-method .method_img {
  width: 100vw;
  margin-left: -7vw;
  margin-bottom: 35px;
}
.page-about .section-method .method_img .pc_img {
  display: none;
}
.page-about .section-method .method_description {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.87;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.page-about .section-method .method_description p {
  margin-bottom: 1em;
}
.page-about .section-method .method_description p:nth-last-of-type(1) {
  margin-bottom: 0;
}
@media screen and (min-width: 980px) {
  .page-about .section-method .method_description {
    font-size: 1.6rem;
    padding: 0;
  }
}
.page-about .section-renovation .renovation_upper {
  margin-top: 16vw;
  padding-top: 16vw;
  background-image: url(/img/izuhonten/about/renewal_bg.jpg);
  background-size: 100vw;
  background-position: center bottom;
  padding-bottom: 55vw;
}
.page-about .section-renovation .renovation_ttl {
  font-size: 2rem;
  line-height: 1.67;
  text-align: center;
  margin-bottom: 20px;
}
.page-about .section-renovation .renovation_description {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.87;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.page-about .section-renovation .renovation_description p {
  margin-bottom: 1em;
}
.page-about .section-renovation .renovation_description p:nth-last-of-type(1) {
  margin-bottom: 0;
}
@media screen and (min-width: 980px) {
  .page-about .section-renovation .renovation_description {
    font-size: 1.6rem;
    padding: 0;
  }
}
.page-about .section-history {
  padding-top: 16vw;
}
.page-about .section-history .history_main_ttl {
  font-size: 2rem;
  line-height: 1.67;
  text-align: center;
  margin-bottom: 20px;
}
.page-about .section-history .history_img_wrap {
  width: 92vw;
  margin-left: -3vw;
}
.page-about .section-history .history_img_wrap .history_img_item {
  margin-bottom: 5px;
}

@media screen and (min-width: 980px) {
  .page-about {
    padding-bottom: 160px;
  }
  .page-about .section-history-lead {
    margin-top: 120px;
    padding-top: 160px;
    background-image: url(/img/izuhonten/about/lead_bg_pc.jpg);
    background-size: cover;
    background-position: center bottom;
    padding-bottom: 40vw;
  }
  .page-about .section-history-lead .txt_flex_wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .page-about .section-history-lead .txt_flex_wrap .lead_ttl {
    font-size: 2.8rem;
    text-align: left;
    margin-bottom: 0px;
  }
  .page-about .section-history-lead .txt_flex_wrap .lead_description {
    width: 55%;
    min-width: 620px;
  }
  .page-about .section-sakamai .sakamai_main_wrapper {
    padding-top: 120px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    max-width: 1560px;
    margin: 0 auto 160px;
  }
  .page-about .section-sakamai .sakamai_main_wrapper .sakamai_ttl {
    width: 160px;
    font-size: 2.8rem;
    line-height: 1.65;
    -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
            writing-mode: vertical-rl;
    margin-bottom: 120px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .page-about .section-sakamai .sakamai_main_wrapper .sakamai_ttl span {
    display: block;
  }
  .page-about .section-sakamai .sakamai_main_wrapper .sakamai_main_img {
    width: calc(100% - 160px);
  }
  .page-about .section-sakamai .sakamai_main_wrapper .sakamai_main_img .sp_img {
    display: none;
  }
  .page-about .section-sakamai .sakamai_main_wrapper .sakamai_main_img .pc_img {
    display: block;
  }
  .page-about .section-sakamai .sakamai_detail_wrapper {
    width: 100%;
  }
  .page-about .section-sakamai .sakamai_detail_wrapper .sakamai_detail_flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    margin-bottom: 160px;
  }
  .page-about .section-sakamai .sakamai_detail_wrapper .sakamai_detail_flex:nth-last-of-type(1) {
    -webkit-box-orient: unset;
    -webkit-box-direction: unset;
        -ms-flex-direction: unset;
            flex-direction: unset;
    margin-bottom: 0;
  }
  .page-about .section-sakamai .sakamai_detail_wrapper .sakamai_detail_flex .sakamai_txt {
    width: 40%;
    padding: 0 80px 50px;
    font-size: 1.6rem;
    line-height: 2;
  }
  .page-about .section-sakamai .sakamai_detail_wrapper .sakamai_detail_flex .sakamai_img {
    width: 60%;
    margin-bottom: 0px;
  }
  .page-about .section-method {
    padding-top: 160px;
  }
  .page-about .section-method .method_main_ttl {
    font-size: 2.8rem;
    text-align: center;
    line-height: 1.67;
    margin-bottom: 60px;
  }
  .page-about .section-method .method_img {
    width: 80%;
    margin: 0 auto 60px;
  }
  .page-about .section-method .method_img .sp_img {
    display: none;
  }
  .page-about .section-method .method_img .pc_img {
    display: block;
  }
  .page-about .section-method .method_description {
    width: 80%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    margin: 0 auto;
  }
  .page-about .section-renovation .renovation_upper {
    margin-top: 160px;
    padding-top: 160px;
    background-image: url(/img/izuhonten/about/renewal_bg_pc.jpg);
    background-size: cover;
    padding-bottom: 50vw;
  }
  .page-about .section-renovation .renovation_ttl {
    font-size: 2.8rem;
    margin-bottom: 50px;
  }
  .page-about .section-renovation .renovation_description {
    max-width: 820px;
    margin: 0 auto;
  }
  .page-about .section-history {
    padding-top: 140px;
  }
  .page-about .section-history .history_main_ttl {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 60px;
  }
  .page-about .section-history .history_img_wrap {
    width: 100%;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .page-about .section-history .history_img_wrap .history_img_item {
    width: 33%;
    margin-bottom: 0;
  }
}
.page-product {
  padding-bottom: 50px;
}
.page-product .section-products {
  padding-top: 20vw;
}
.page-product .section-products .ttl_wrapper {
  margin-bottom: 40px;
}
.page-product .section-products2 {
  padding-top: 20vw;
  margin-bottom: 80px;
}
.page-product .section-products2 .ttl_wrapper {
  margin-bottom: 40px;
}
.page-product .section-gift .gift_inner .gift_main_wrap .gift_ttl {
  font-size: 2rem;
  line-height: 1.6;
  text-align: center;
  margin-bottom: 30px;
}
.page-product .section-gift .gift_inner .gift_main_wrap .gift_ttl br {
  display: none;
}
.page-product .section-gift .gift_inner .gift_main_wrap .gift_main_img {
  margin-bottom: 50px;
}
.page-product .section-gift .gift_inner .gift_main_wrap .gift_main_img .pc_img {
  display: none;
}
.page-product .section-gift .gift_inner .flex_wrapper {
  width: 86vw;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 720px) {
  .page-product .section-gift .gift_inner .flex_wrapper {
    width: 83%;
    max-width: 1590px;
  }
}
.page-product .section-gift .gift_inner .flex_wrapper .gift_flex_wrap {
  margin-bottom: 50px;
}
.page-product .section-gift .gift_inner .flex_wrapper .gift_flex_wrap:nth-last-of-type(1) {
  margin-bottom: 0;
}
.page-product .section-gift .gift_inner .flex_wrapper .gift_flex_wrap .gift_sub_ttl {
  font-size: 1.8rem;
  line-height: 1.6;
  text-align: center;
  margin-bottom: 20px;
}
.page-product .section-craftmanship {
  padding-top: 20vw;
}
.page-product .section-craftmanship .main_ttl_wrap .comp-ttl-group {
  text-align: center;
}
.page-product .section-craftmanship .craftman_flex_wrap {
  margin-bottom: 50px;
}
.page-product .section-craftmanship .craftman_flex_wrap .craft_ttl {
  font-size: 1.6rem;
  text-align: center;
  margin-bottom: 35px;
}
.page-product .section-craftmanship .craftman_flex_wrap .craft_img_wrap .pc_img {
  display: none;
}

@media screen and (min-width: 980px) {
  .page-product {
    padding-bottom: 160px;
  }
  .page-product .section-products {
    padding-top: 120px;
  }
  .page-product .section-products .ttl_wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-bottom: 60px;
  }
  .page-product .section-products .ttl_wrapper .comp-ttl-group {
    margin-bottom: 0;
  }
  .page-product .section-products .ttl_wrapper .comp-arrow-button {
    width: 200px;
  }
  .page-product .section-products .ttl_wrapper .comp-arrow-button a, .page-product .section-products .ttl_wrapper .comp-arrow-button button {
    width: 100%;
  }
  .page-product .section-products2 {
    padding-top: 160px;
    margin-bottom: 200px;
  }
  .page-product .section-products2 .ttl_wrapper {
    margin-bottom: 60px;
  }
  .page-product .section-gift .gift_inner {
    max-width: 1560px;
    margin: 0 auto;
  }
  .page-product .section-gift .gift_inner .gift_main_wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    margin-bottom: 100px;
  }
  .page-product .section-gift .gift_inner .gift_main_wrap .gift_ttl {
    width: 120px;
    -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
            writing-mode: vertical-rl;
    font-size: 2.8rem;
    text-align: left;
    padding-top: 25px;
    margin-bottom: 0px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .page-product .section-gift .gift_inner .gift_main_wrap .gift_ttl br {
    display: none;
  }
  .page-product .section-gift .gift_inner .gift_main_wrap .gift_main_img {
    width: calc(100% - 120px);
    margin-bottom: 0px;
  }
  .page-product .section-gift .gift_inner .gift_main_wrap .gift_main_img .sp_img {
    display: none;
  }
  .page-product .section-gift .gift_inner .gift_main_wrap .gift_main_img .pc_img {
    display: block;
  }
  .page-product .section-gift .gift_inner .flex_wrapper {
    max-width: 100%;
    width: 100%;
  }
  .page-product .section-gift .gift_inner .flex_wrapper .gift_flex_wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    margin-bottom: 100px;
  }
  .page-product .section-gift .gift_inner .flex_wrapper .gift_flex_wrap:nth-last-of-type(1) {
    -webkit-box-orient: unset;
    -webkit-box-direction: unset;
        -ms-flex-direction: unset;
            flex-direction: unset;
    margin-bottom: 0;
  }
  .page-product .section-gift .gift_inner .flex_wrapper .gift_flex_wrap .flex_img {
    width: 60%;
  }
  .page-product .section-gift .gift_inner .flex_wrapper .gift_flex_wrap .gift_sub_ttl {
    width: 40%;
    font-size: 2.6rem;
    line-height: 1.6;
    text-align: left;
    margin-bottom: 0px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .page-product .section-craftmanship {
    padding-top: 200px;
  }
  .page-product .section-craftmanship .main_ttl_wrap .comp-ttl-group {
    text-align: center;
    margin-bottom: 70px;
  }
  .page-product .section-craftmanship .craftman_flex_wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    max-width: 1560px;
    margin: 0 auto 100px;
  }
  .page-product .section-craftmanship .craftman_flex_wrap .craft_ttl {
    width: 120px;
    -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
            writing-mode: vertical-rl;
    font-size: 2.8rem;
    text-align: left;
    padding-top: 25px;
    margin-bottom: 0px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .page-product .section-craftmanship .craftman_flex_wrap .craft_img_wrap {
    width: calc(100% - 120px);
  }
  .page-product .section-craftmanship .craftman_flex_wrap .craft_img_wrap .sp_img {
    display: none;
  }
  .page-product .section-craftmanship .craftman_flex_wrap .craft_img_wrap .pc_img {
    display: block;
  }
}
.page-brewery {
  padding-bottom: 20px;
}
.page-brewery .section-main {
  margin-bottom: 8vw;
}
.page-brewery .section-facility-map .map_img_wrap .pc_img {
  display: none;
}
.page-brewery .section-facility-detail {
  padding-top: 16vw;
}
.page-brewery .section-facility-detail .facility_inner {
  width: 86vw;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 720px) {
  .page-brewery .section-facility-detail .facility_inner {
    width: 83%;
    max-width: 1590px;
  }
}
.page-brewery .section-access {
  padding-top: 20vw;
}
.page-brewery .section-access .aceess_flex_wrap .access_content .access_description {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.87;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-bottom: 40px;
}
.page-brewery .section-access .aceess_flex_wrap .access_content .access_description p {
  margin-bottom: 1em;
}
.page-brewery .section-access .aceess_flex_wrap .access_content .access_description p:nth-last-of-type(1) {
  margin-bottom: 0;
}
@media screen and (min-width: 980px) {
  .page-brewery .section-access .aceess_flex_wrap .access_content .access_description {
    font-size: 1.6rem;
    padding: 0;
  }
}
.page-brewery .section-access .aceess_flex_wrap .access_content .access_description p {
  margin-bottom: 0;
}
.page-brewery .section-access .aceess_flex_wrap .access_content .access_description p span {
  margin-top: 10px;
  display: block;
  font-size: 0.9em;
  color: #686868;
}
.page-brewery .section-access .aceess_flex_wrap .access_content .access_description p br {
  display: none;
}
.page-brewery .section-access .aceess_flex_wrap .access_content .access_map {
  position: relative;
  width: 100vw;
  height: 80vw;
  margin-left: -7vw;
}
.page-brewery .section-access .aceess_flex_wrap .access_content .access_map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
}
.page-brewery .section-calendar {
  padding-top: 20vw;
  margin-bottom: 13vw;
}
.page-brewery .section-calendar .calendar_wrapper {
  position: relative;
  width: 100%;
  height: 100vw;
}
.page-brewery .section-calendar .calendar_wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media screen and (min-width: 980px) {
  .page-brewery {
    padding-bottom: 0px;
  }
  .page-brewery .section-main {
    margin-bottom: 80px;
  }
  .page-brewery .section-facility-detail {
    padding-top: 160px;
  }
  .page-brewery .section-facility-detail .facility_inner {
    /*width: 100%;*/
  }
  .page-brewery .section-facility-detail .facility_inner .comp-ttl-group {
    text-align: center;
    margin-bottom: 80px;
  }
  .page-brewery .section-access {
    padding-top: 160px;
  }
  .page-brewery .section-access .aceess_flex_wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .page-brewery .section-access .aceess_flex_wrap .access_content {
    width: 70%;
  }
  .page-brewery .section-access .aceess_flex_wrap .access_content .access_description {
    margin-bottom: 50px;
  }
  .page-brewery .section-access .aceess_flex_wrap .access_content .access_description p {
    margin-bottom: 0;
  }
  .page-brewery .section-access .aceess_flex_wrap .access_content .access_description p br {
    display: block;
  }
  .page-brewery .section-access .aceess_flex_wrap .access_content .access_map {
    position: relative;
    width: 100%;
    height: 400px;
    margin-left: 0;
  }
  .page-brewery .section-calendar {
    padding-top: 160px;
    margin-bottom: 160px;
  }
  .page-brewery .section-calendar .calendar_flex_wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .page-brewery .section-calendar .calendar_flex_wrap .comp-business-calendar {
    width: 70%;
  }
  .page-brewery .section-calendar .calendar_flex_wrap .calendar_wrapper {
    width: 70%;
    height: 600px;
  }
}
.page-company {
  padding-top: 20px;
  padding-bottom: 16vw;
}
.page-company .section-company .comp-page-bread {
  margin-bottom: 10px;
}
.page-company .section-company .comp-underpage-ttl {
  margin-bottom: 25px;
}

@media screen and (min-width: 980px) {
  .page-company {
    padding-top: 60px;
    padding-bottom: 160px;
  }
  .page-company .section-company .section_inner {
    max-width: 980px;
    min-width: unset;
  }
  .page-company .section-company .comp-page-bread {
    margin-bottom: 10px;
  }
  .page-company .section-company .comp-underpage-ttl {
    margin-bottom: 50px;
  }
}
/*########## コンポーネント ##########*/
/*@import 'component/comp-page-background.scss';
@import 'component/comp-index-loading.scss';
@import 'component/comp-scroll-bar.scss';*/
/* 共通 */
.comp-page-bread {
  font-size: 1.2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.comp-page-bread .link_wrap a {
  color: inherit;
  position: relative;
  padding-right: 0px;
  margin-right: 20px;
  color: #979797;
  -webkit-transition: color 0.2s, border 0.2s;
  transition: color 0.2s, border 0.2s;
}
.comp-page-bread .link_wrap a::after {
  position: absolute;
  width: 5px;
  height: 5px;
  content: "";
  top: 0;
  bottom: 0;
  right: -12px;
  margin: auto;
  border-top: 1px solid #979797;
  border-right: 1px solid #979797;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.comp-page-bread .link_wrap a:hover {
  color: #F25462;
  border-bottom: 1px solid #F25462;
}
.comp-page-bread .link_wrap a.last {
  padding-right: 0px;
  margin-right: 0px;
}
.comp-page-bread .link_wrap a.last::after {
  display: none;
}
.comp-page-bread .current {
  color: #44413C;
}

@media screen and (min-width: 768px) {
  .comp-page-bread {
    font-size: 1.3rem;
  }
}
.comp-underpage-ttl .page_ttl {
  font-size: 2.6rem;
  line-height: 1.5;
  text-indent: -0.1em;
}
.comp-underpage-ttl .ttl_description {
  margin-top: 10px;
  padding-right: 6vw;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.87;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: justify;
}
.comp-underpage-ttl .ttl_description p {
  margin-bottom: 1em;
}
.comp-underpage-ttl .ttl_description p:nth-last-of-type(1) {
  margin-bottom: 0;
}
@media screen and (min-width: 980px) {
  .comp-underpage-ttl .ttl_description {
    font-size: 1.6rem;
    padding: 0;
  }
}
.comp-underpage-ttl .ttl_description br {
  display: none;
}

@media screen and (min-width: 980px) {
  .comp-underpage-ttl .page_ttl {
    font-size: 3.4rem;
  }
  .comp-underpage-ttl .ttl_description {
    max-width: 50%;
    margin-top: 15px;
    padding-right: 0;
  }
  .comp-underpage-ttl .ttl_description br {
    display: block;
  }
}
.comp-company-profile {
  border-top: 1px solid #44413C;
}
.comp-company-profile .profile_item {
  padding: 20px 0;
  border-bottom: 1px solid #44413C;
}
.comp-company-profile .profile_item:nth-last-of-type(1) {
  padding-bottom: 0;
  border-bottom: 0px;
}
.comp-company-profile .profile_item .ttl {
  font-size: 1.4rem;
  margin-bottom: 10px;
}
.comp-company-profile .profile_item .content {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.87;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.comp-company-profile .profile_item .content p {
  margin-bottom: 1em;
}
.comp-company-profile .profile_item .content p:nth-last-of-type(1) {
  margin-bottom: 0;
}
@media screen and (min-width: 980px) {
  .comp-company-profile .profile_item .content {
    font-size: 1.6rem;
    padding: 0;
  }
}

@media screen and (min-width: 980px) {
  .comp-company-profile {
    border-top: 1px solid #44413C;
  }
  .comp-company-profile .profile_item {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
    padding: 30px 0;
    border-bottom: 1px solid #44413C;
  }
  .comp-company-profile .profile_item::before {
    display: block;
    content: "";
    position: absolute;
    top: -1px;
    left: 160px;
    width: 15px;
    height: 2px;
    background: #fff;
  }
  .comp-company-profile .profile_item .ttl {
    width: 170px;
    padding-right: 10px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    font-size: 1.6rem;
    margin-bottom: 0px;
  }
  .comp-company-profile .profile_item .content {
    width: calc(100% - 170px);
    padding-left: 5px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}
.comp-ttl-group {
  margin-bottom: 30px;
}
.comp-ttl-group .ttl_jp {
  font-size: 2.2rem;
  text-indent: -0.1em;
  margin-bottom: 12px;
}
.comp-ttl-group .ttl_en {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.2rem;
}

@media screen and (min-width: 980px) {
  .comp-ttl-group {
    margin-bottom: 30px;
  }
  .comp-ttl-group .ttl_jp {
    font-size: 2.8rem;
    text-indent: -0.1em;
    margin-bottom: 15px;
  }
  .comp-ttl-group .ttl_en {
    font-size: 1.5rem;
  }
}
.comp-underpage-main {
  padding-top: 0px;
}
.comp-underpage-main .under_main_wrapper {
  width: calc(100% - 20px);
  margin-left: 20px;
}
.comp-underpage-main .under_main_wrapper .under_main_img {
  margin-bottom: 30px;
}
.comp-underpage-main .under_main_wrapper .under_main_img .pc_img {
  display: none;
}
.comp-underpage-main .under_main_wrapper .under_main_txt .comp-page-bread {
  margin-bottom: 10px;
}

@media screen and (min-width: 980px) {
  .comp-underpage-main {
    padding-top: 0px;
  }
  .comp-underpage-main .under_main_wrapper {
    width: calc(100% - 120px);
    margin-left: 120px;
  }
  .comp-underpage-main .under_main_wrapper .under_main_img {
    margin-bottom: 40px;
  }
  .comp-underpage-main .under_main_wrapper .under_main_img .sp_img {
    display: none;
  }
  .comp-underpage-main .under_main_wrapper .under_main_img .pc_img {
    display: block;
  }
  .comp-underpage-main .under_main_wrapper .under_main_txt .comp-page-bread {
    margin-bottom: 12px;
  }
}
.comp-arrow-button a, .comp-arrow-button button {
  width: 50%;
  position: relative;
  font-size: 1.6rem;
  color: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.comp-arrow-button a .caret, .comp-arrow-button button .caret {
  display: block;
}
.comp-arrow-button a .caret.down, .comp-arrow-button button .caret.down {
  width: 16px;
  height: 16px;
  background-size: 16px;
  background-image: url(/img/izuhonten/common/caret_down.svg);
  background-position: center top 0px;
}
.comp-arrow-button a .caret.right, .comp-arrow-button button .caret.right {
  width: 12px;
  height: 12px;
  background-size: 12px;
  background-image: url(/img/izuhonten/common/caret_right.svg);
  background-position: center left 0px;
  margin-right: 5px;
}
.comp-arrow-button a .line, .comp-arrow-button button .line {
  margin-top: 10px;
  display: block;
  width: 100%;
  height: 1px;
  position: relative;
  overflow: hidden;
}
.comp-arrow-button a .line::before, .comp-arrow-button a .line::after, .comp-arrow-button button .line::before, .comp-arrow-button button .line::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #111;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.comp-arrow-button a .line::before, .comp-arrow-button button .line::before {
  left: -600%;
  width: 0;
}
.comp-arrow-button a.white .caret, .comp-arrow-button button.white .caret {
  -webkit-filter: invert(1);
          filter: invert(1);
}
.comp-arrow-button a.white .line::before, .comp-arrow-button a.white .line::after, .comp-arrow-button button.white .line::before, .comp-arrow-button button.white .line::after {
  background: #fff;
}

@media screen and (min-width: 980px) {
  .comp-arrow-button a, .comp-arrow-button button {
    max-width: 220px;
    font-size: 1.6rem;
  }
  .comp-arrow-button a .caret, .comp-arrow-button button .caret {
    display: block;
    -webkit-transition: background 0.3s;
    transition: background 0.3s;
    will-change: background;
  }
  .comp-arrow-button a .caret.down, .comp-arrow-button button .caret.down {
    width: 16px;
    height: 16px;
    background-size: 16px;
    background-image: url(/img/izuhonten/common/caret_down.svg);
    background-position: center top 0px;
  }
  .comp-arrow-button a .caret.right, .comp-arrow-button button .caret.right {
    width: 12px;
    height: 12px;
    background-size: 12px;
    background-image: url(/img/izuhonten/common/caret_right.svg);
    background-position: center left 0px;
    margin-right: 5px;
  }
  .comp-arrow-button a .line, .comp-arrow-button button .line {
    margin-top: 15px;
  }
  .comp-arrow-button a:hover .caret, .comp-arrow-button button:hover .caret {
    display: block;
    /*&.down{
      background-position: center top 16px;
    }
    &.right{
      background-position: center left 12px;
    }*/
  }
  .comp-arrow-button a:hover .line::before, .comp-arrow-button button:hover .line::before {
    left: 0;
    width: 100%;
  }
  .comp-arrow-button a:hover .line::after, .comp-arrow-button button:hover .line::after {
    left: 100%;
  }
  .comp-arrow-button a.white .caret, .comp-arrow-button button.white .caret {
    -webkit-filter: invert(1);
            filter: invert(1);
  }
  .comp-arrow-button a.white .line::before, .comp-arrow-button a.white .line::after, .comp-arrow-button button.white .line::before, .comp-arrow-button button.white .line::after {
    background: #fff;
  }
}
.comp-photo-gallery {
  width: calc(100% - 10px);
  margin: 5px auto 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.comp-photo-gallery .gallery_item {
  width: calc(50% - 2.5px);
  margin-bottom: 5px;
  height: 52vw;
}
.comp-photo-gallery .gallery_item img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.comp-photo-gallery .gallery_item.full {
  width: 100%;
}

@media screen and (min-width: 980px) {
  .comp-photo-gallery {
    width: calc(100% - 40px);
    margin: 20px auto 0;
  }
  .comp-photo-gallery .gallery_item {
    width: calc(50% - 10px);
    margin-bottom: 20px;
    height: 52vw;
  }
  .comp-photo-gallery .gallery_item.full {
    width: 100%;
  }
}
/* トップページ */
.comp-index-loading {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #0A0830;
  z-index: 10000;
  -webkit-transition: opacity 4s;
  transition: opacity 4s;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  will-change: opacity;
}
.comp-index-loading.loaded {
  opacity: 0;
  pointer-events: none;
}
.comp-index-loading .load_inner {
  width: 100%;
  height: var(--wHeightPx);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.comp-index-loading .load_inner.loaded {
  opacity: 0;
}
.comp-index-loading .load_inner .loading_logo {
  display: block;
  width: 160px;
  margin: auto;
  opacity: 0;
  -webkit-filter: blur(4px);
          filter: blur(4px);
  -webkit-transition: opacity 2.4s cubic-bezier(0.77, 0, 0.175, 1), -webkit-filter 2.4s cubic-bezier(0.77, 0, 0.175, 1);
  transition: opacity 2.4s cubic-bezier(0.77, 0, 0.175, 1), -webkit-filter 2.4s cubic-bezier(0.77, 0, 0.175, 1);
  transition: opacity 2.4s cubic-bezier(0.77, 0, 0.175, 1), filter 2.4s cubic-bezier(0.77, 0, 0.175, 1);
  transition: opacity 2.4s cubic-bezier(0.77, 0, 0.175, 1), filter 2.4s cubic-bezier(0.77, 0, 0.175, 1), -webkit-filter 2.4s cubic-bezier(0.77, 0, 0.175, 1);
  will-change: opacity, filter;
}
@media screen and (max-width: 720px) {
  .comp-index-loading .load_inner .loading_logo {
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
  }
}
.comp-index-loading .load_inner .loading_logo.load {
  opacity: 1;
  -webkit-filter: blur(0px);
          filter: blur(0px);
}

.comp-index-kv {
  position: relative;
  width: 100%;
  height: var(--wHeightFixedPx);
  margin-top: -76px;
}
.comp-index-kv .kv_inner {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.comp-index-kv .kv_inner .img_box {
  position: relative;
  width: 100%;
  height: var(--wHeightFixedPx);
  background: #151818;
}
.comp-index-kv .kv_inner .img_box li {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}
.comp-index-kv .kv_inner .img_box li img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  opacity: 0;
  -webkit-filter: blur(4px) brightness(1.25);
          filter: blur(4px) brightness(1.25);
  -webkit-transition: opacity 2s, -webkit-filter 2s cubic-bezier(0.5, 1, 0.89, 1);
  transition: opacity 2s, -webkit-filter 2s cubic-bezier(0.5, 1, 0.89, 1);
  transition: opacity 2s, filter 2s cubic-bezier(0.5, 1, 0.89, 1);
  transition: opacity 2s, filter 2s cubic-bezier(0.5, 1, 0.89, 1), -webkit-filter 2s cubic-bezier(0.5, 1, 0.89, 1);
}
.comp-index-kv .kv_inner .img_box li img.pc_img {
  display: none;
}
.comp-index-kv .kv_inner .img_box li.display_slide img {
  opacity: 1;
  -webkit-filter: blur(0) brightness(1);
          filter: blur(0) brightness(1);
}

@media screen and (min-width: 980px) {
  .comp-index-kv {
    width: 100%;
    height: 100vh;
    margin-top: -110px;
  }
  .comp-index-kv .kv_inner .img_box {
    position: relative;
    width: 100%;
    height: 100vh;
  }
  .comp-index-kv .kv_inner .img_box li img.sp_img {
    display: none;
  }
  .comp-index-kv .kv_inner .img_box li img.pc_img {
    display: block;
  }
}
.comp-insta-feed {
  margin-top: 35px;
}
.comp-insta-feed .feed_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.comp-insta-feed .feed_inner .insta-post {
  width: 33.3333333333%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
}
.comp-insta-feed .feed_inner .insta-post:nth-of-type(n + 7) {
  display: none;
}
.comp-insta-feed .feed_inner .insta-post a {
  display: block;
  width: 100%;
  height: 36vw;
}
.comp-insta-feed .feed_inner .insta-post a img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.comp-insta-feed .link_button {
  margin-top: 20px;
}
.comp-insta-feed .link_button a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #0A0830;
  color: #fff;
  padding: 15px 0 15px;
  font-size: 1.6rem;
}
.comp-insta-feed .link_button a .icon {
  width: 14px;
  margin-top: 2px;
  margin-right: 7px;
}

@media screen and (min-width: 980px) {
  .comp-insta-feed {
    margin-top: 70px;
  }
  .comp-insta-feed .feed_inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .comp-insta-feed .feed_inner .insta-post {
    width: 16.6666666667%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    border-right: 1px solid #fff;
    border-bottom: 0px solid #fff;
  }
  .comp-insta-feed .feed_inner .insta-post:nth-of-type(n + 7) {
    display: none;
  }
  .comp-insta-feed .feed_inner .insta-post a {
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
    will-change: opacity;
    height: 17vw;
    max-height: 330px;
  }
  .comp-insta-feed .feed_inner .insta-post a:hover {
    opacity: 0.75;
  }
  .comp-insta-feed .link_button {
    max-width: 380px;
    margin: 70px auto 0;
  }
  .comp-insta-feed .link_button a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
    will-change: opacity;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 17px 0 20px;
    font-size: 1.8rem;
  }
  .comp-insta-feed .link_button a:hover {
    opacity: 0.75;
  }
  .comp-insta-feed .link_button a .icon {
    width: 18px;
    margin-top: 2px;
    margin-right: 9px;
  }
}
.comp-journal-list .journal_item {
  width: 100vw;
  margin-left: -7vw;
  margin-bottom: 50px;
}
.comp-journal-list .journal_item:nth-last-of-type(1) {
  margin-bottom: 0;
}
.comp-journal-list .journal_item a {
  display: block;
  color: inherit;
}
.comp-journal-list .journal_item a .img_wrap {
  display: block;
  margin-bottom: 25px;
}
.comp-journal-list .journal_item a .ttl_wrap {
  display: block;
  padding: 0 7vw;
}
.comp-journal-list .journal_item a .ttl_wrap .date {
  display: block;
  font-size: 1.4rem;
  margin-bottom: 7px;
}
.comp-journal-list .journal_item a .ttl_wrap .ttl {
  display: block;
  font-size: 1.8rem;
  line-height: 1.6;
}

@media screen and (min-width: 980px) {
  .comp-journal-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .comp-journal-list .journal_item {
    width: 47%;
    margin-left: 0%;
    margin-right: 6%;
    margin-bottom: 60px;
  }
  .comp-journal-list .journal_item:nth-of-type(2n) {
    margin-right: 0;
  }
  .comp-journal-list .journal_item a {
    -webkit-transition: color 0.3s;
    transition: color 0.3s;
    will-change: color;
  }
  .comp-journal-list .journal_item a .img_wrap {
    display: block;
    margin-bottom: 35px;
    overflow: hidden;
  }
  .comp-journal-list .journal_item a .img_wrap img {
    -webkit-transition: -webkit-transform 0.3s, -webkit-filter 0.3s;
    transition: -webkit-transform 0.3s, -webkit-filter 0.3s;
    transition: transform 0.3s, filter 0.3s;
    transition: transform 0.3s, filter 0.3s, -webkit-transform 0.3s, -webkit-filter 0.3s;
    will-change: transform, filter;
  }
  .comp-journal-list .journal_item a .ttl_wrap {
    display: block;
    padding: 0;
  }
  .comp-journal-list .journal_item a .ttl_wrap .date {
    display: block;
    font-size: 1.4rem;
    margin-bottom: 15px;
  }
  .comp-journal-list .journal_item a .ttl_wrap .ttl {
    display: block;
    font-size: 1.8rem;
    line-height: 1.6;
  }
  .comp-journal-list .journal_item a:hover {
    color: #686868;
  }
  .comp-journal-list .journal_item a:hover .img_wrap img {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
    -webkit-filter: brightness(110%);
            filter: brightness(110%);
  }
}
/* 商品 */
.comp-product-list .product_item {
  margin-bottom: 45px;
}
.comp-product-list .product_item:nth-last-of-type(1) {
  margin-bottom: 0;
}
.comp-product-list .product_item .product_img {
  margin-bottom: 30px;
}
.comp-product-list .product_item .product_img a {
  display: block;
}
.comp-product-list .product_item .product_txt .prod_name {
  margin-bottom: 10px;
  font-size: 2rem;
  line-height: 1.5;
}
.comp-product-list .product_item .product_txt .prod_name a {
  display: block;
  color: inherit;
}
.comp-product-list .product_item .product_txt .prod_description {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.87;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.comp-product-list .product_item .product_txt .prod_description p {
  margin-bottom: 1em;
}
.comp-product-list .product_item .product_txt .prod_description p:nth-last-of-type(1) {
  margin-bottom: 0;
}
@media screen and (min-width: 980px) {
  .comp-product-list .product_item .product_txt .prod_description {
    font-size: 1.6rem;
    padding: 0;
  }
}
.comp-product-list .product_item .product_txt .prod_spec {
  text-align: center;
  font-size: 1.4rem;
  margin: 30px auto 25px;
}
.comp-product-list .product_item .product_txt .prod_button_wrap {
  margin-top: 25px;
}
.comp-product-list .product_item .product_txt .prod_button_wrap a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 15px 0;
  color: #fff;
  text-align: center;
  font-size: 1.6rem;
  background: #44413C;
}
.comp-product-list .product_item .product_txt .prod_button_wrap a .caret {
  display: block;
  width: 14px;
  height: 14px;
  margin-left: 10px;
  background-size: 14px;
  background-image: url(/img/izuhonten/munakata/prod_button_caret.svg);
  background-position: center left 0px;
}
.comp-product-list .product_item .product_txt .prod_button_wrap .button_description {
  margin-top: 20px;
  text-align: center;
  font-size: 1.1rem;
  line-height: 1.8;
}

@media screen and (min-width: 980px) {
  .comp-product-list .product_item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 40px;
  }
  .comp-product-list .product_item .product_img {
    width: 40%;
    margin-bottom: 0px;
  }
  .comp-product-list .product_item .product_img a {
    display: block;
    overflow: hidden;
  }
  .comp-product-list .product_item .product_img a img {
    -webkit-transition: -webkit-transform 0.3s, -webkit-filter 0.3s;
    transition: -webkit-transform 0.3s, -webkit-filter 0.3s;
    transition: transform 0.3s, filter 0.3s;
    transition: transform 0.3s, filter 0.3s, -webkit-transform 0.3s, -webkit-filter 0.3s;
    will-change: transform, filter;
  }
  .comp-product-list .product_item .product_img a:hover img {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
    -webkit-filter: brightness(110%);
            filter: brightness(110%);
  }
  .comp-product-list .product_item .product_txt {
    width: 60%;
    padding-left: 80px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .comp-product-list .product_item .product_txt .prod_name {
    margin-bottom: 20px;
    font-size: 2.4rem;
  }
  .comp-product-list .product_item .product_txt .prod_name a {
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
    will-change: opacity;
  }
  .comp-product-list .product_item .product_txt .prod_name a:hover {
    opacity: 0.75;
  }
  .comp-product-list .product_item .product_txt .prod_spec {
    text-align: left;
    font-size: 1.5rem;
    text-indent: -0.5em;
    margin: 25px auto 30px;
  }
  .comp-product-list .product_item .product_txt .prod_button_wrap {
    margin-top: 25px;
  }
  .comp-product-list .product_item .product_txt .prod_button_wrap a {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    max-width: 180px;
    padding: 15px 15px;
    text-align: center;
    font-size: 1.6rem;
    -webkit-transition: background 0.3s;
    transition: background 0.3s;
    will-change: background;
  }
  .comp-product-list .product_item .product_txt .prod_button_wrap a:hover {
    background: #0A0830;
  }
  .comp-product-list .product_item .product_txt .prod_button_wrap .button_description {
    margin-top: 20px;
    text-align: left;
    font-size: 1.3rem;
  }
  .comp-product-list.flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .comp-product-list.flex .product_item {
    position: relative;
    padding-bottom: 120px;
    display: block;
    width: 30%;
    margin-right: 5%;
    margin-bottom: 40px;
  }
  .comp-product-list.flex .product_item:nth-of-type(3n) {
    margin-right: 0;
  }
  .comp-product-list.flex .product_item .product_img {
    width: 100%;
    margin-bottom: 30px;
  }
  .comp-product-list.flex .product_item .product_txt {
    width: 100%;
    padding-left: 0px;
  }
  .comp-product-list.flex .product_item .product_txt .prod_name {
    font-size: 2.4rem;
    margin-bottom: 15px;
  }
  .comp-product-list.flex .product_item .product_txt .prod_description {
    font-size: 1.4rem;
  }
  .comp-product-list.flex .product_item .product_txt .prod_spec {
    text-align: left;
    font-size: 1.4rem;
    text-indent: 0;
    margin: 25px auto 25px;
  }
  .comp-product-list.flex .product_item .product_txt .prod_button_wrap {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    margin-top: 0px;
  }
  .comp-product-list.flex .product_item .product_txt .prod_button_wrap a {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    max-width: 100%;
  }
  .comp-product-list.flex .product_item .product_txt .prod_button_wrap .button_description {
    margin-top: 20px;
    text-align: center;
    font-size: 1.1rem;
  }
}
.comp-craft-detail {
  width: 86vw;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 720px) {
  .comp-craft-detail {
    width: 83%;
    max-width: 1590px;
  }
}
.comp-craft-detail .craft_item {
  margin-bottom: 50px;
}
.comp-craft-detail .craft_item .craft_detail_img {
  margin-bottom: 25px;
}
.comp-craft-detail .craft_item .craft_detail_txt .craft_detail_ttl {
  font-size: 2rem;
  line-height: 1.76;
  margin-bottom: 15px;
}
.comp-craft-detail .craft_item .craft_detail_txt .craft_detail_desc {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.87;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: justify;
}
.comp-craft-detail .craft_item .craft_detail_txt .craft_detail_desc p {
  margin-bottom: 1em;
}
.comp-craft-detail .craft_item .craft_detail_txt .craft_detail_desc p:nth-last-of-type(1) {
  margin-bottom: 0;
}
@media screen and (min-width: 980px) {
  .comp-craft-detail .craft_item .craft_detail_txt .craft_detail_desc {
    font-size: 1.6rem;
    padding: 0;
  }
}

@media screen and (min-width: 980px) {
  .comp-craft-detail {
    width: 100%;
  }
  .comp-craft-detail .craft_item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 100px;
  }
  .comp-craft-detail .craft_item:nth-last-of-type(1) {
    margin-bottom: 0;
  }
  .comp-craft-detail .craft_item .craft_detail_img {
    width: 48%;
    margin-bottom: 0px;
  }
  .comp-craft-detail .craft_item .craft_detail_txt {
    width: 52%;
    padding: 0 120px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .comp-craft-detail .craft_item .craft_detail_txt .craft_detail_ttl {
    font-size: 2.4rem;
    margin-bottom: 25px;
  }
  .comp-craft-detail .craft_item .craft_detail_txt .craft_detail_desc {
    text-align: left;
    font-size: 1.5rem;
  }
  .comp-craft-detail .craft_item:nth-of-type(2n) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}
/* 歩み */
.comp-history-list {
  position: relative;
}
.comp-history-list::before {
  display: block;
  content: "";
  position: absolute;
  top: 2px;
  left: 0px;
  width: 1px;
  height: calc(100% + 60px);
  border-left: 1px dotted #0A0830;
}
.comp-history-list .history_item {
  position: relative;
  padding-bottom: 20px;
  margin-bottom: 15px;
}
.comp-history-list .history_item .year {
  position: relative;
  padding-left: 26px;
}
.comp-history-list .history_item .year::before {
  display: block;
  content: "";
  position: absolute;
  top: 6px;
  left: 0;
  margin: auto;
  width: 20px;
  height: 1px;
  background: #0A0830;
}
.comp-history-list .history_item .year::after {
  display: block;
  content: "";
  position: absolute;
  z-index: 15;
  top: 2px;
  left: -5px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #0A0830;
}
.comp-history-list .history_item .content {
  margin-top: 10px;
  font-size: 1.6rem;
  line-height: 1.8;
  padding-left: 26px;
}

@media screen and (min-width: 980px) {
  .comp-history-list {
    max-width: 80%;
    margin: 0 auto;
    position: relative;
  }
  .comp-history-list::before {
    top: 5px;
    left: 160px;
  }
  .comp-history-list .history_item {
    position: relative;
    padding-bottom: 20px;
    margin-bottom: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
  }
  .comp-history-list .history_item:nth-last-of-type(1) {
    padding-bottom: 100px;
  }
  .comp-history-list .history_item .year {
    width: 160px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    position: relative;
    padding-left: 0px;
    font-size: 1.8rem;
  }
  .comp-history-list .history_item .year::before {
    display: none;
  }
  .comp-history-list .history_item .year::after {
    display: block;
    content: "";
    position: absolute;
    z-index: 15;
    top: 2px;
    left: unset;
    right: -5px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #0A0830;
  }
  .comp-history-list .history_item .content {
    max-width: calc(100% - 160px);
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    margin-top: 0px;
    font-size: 1.8rem;
    line-height: 1.8;
    padding-left: 30px;
  }
}
/* 施設 */
.comp-facility-detail .facility_item {
  margin-bottom: 50px;
}
.comp-facility-detail .facility_item:nth-last-of-type(1) {
  margin-bottom: 0;
}
.comp-facility-detail .facility_item .facility_img {
  width: 100vw;
  margin-left: -7vw;
  margin-bottom: 30px;
}
.comp-facility-detail .facility_item .facility_txt .facility_ttl {
  font-size: 2rem;
  line-height: 1.65;
  margin-bottom: 10px;
}
.comp-facility-detail .facility_item .facility_txt .facility_description {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.87;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: justify;
}
.comp-facility-detail .facility_item .facility_txt .facility_description p {
  margin-bottom: 1em;
}
.comp-facility-detail .facility_item .facility_txt .facility_description p:nth-last-of-type(1) {
  margin-bottom: 0;
}
@media screen and (min-width: 980px) {
  .comp-facility-detail .facility_item .facility_txt .facility_description {
    font-size: 1.6rem;
    padding: 0;
  }
}
.comp-facility-detail .facility_item .facility_txt .comp-arrow-button {
  margin-top: 25px;
}
.comp-facility-detail .facility_item .facility_txt .kamenoo_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 25px;
}
.comp-facility-detail .facility_item .facility_txt .kamenoo_wrap .kamenoo_img {
  width: 80px;
  margin-right: 20px;
}
.comp-facility-detail .facility_item .facility_txt .kamenoo_wrap .kamenoo_txt {
  width: calc(100% - 100px);
}
.comp-facility-detail .facility_item .facility_txt .kamenoo_wrap .kamenoo_txt .kamenoo_ttl {
  font-size: 1.4rem;
  margin-bottom: 10px;
  text-indent: -0.5em;
}
.comp-facility-detail .facility_item .facility_txt .kamenoo_wrap .kamenoo_txt .kamenoo_description {
  font-size: 1.1rem;
  line-height: 1.67;
}

@media screen and (min-width: 980px) {
  .comp-facility-detail .facility_item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 20px;
  }
  .comp-facility-detail .facility_item:nth-last-of-type(1) {
    margin-bottom: 0;
  }
  .comp-facility-detail .facility_item .facility_img {
    width: 50%;
    margin: 0;
  }
  .comp-facility-detail .facility_item .facility_txt {
    width: 50%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-left: 80px;
  }
  .comp-facility-detail .facility_item .facility_txt .facility_ttl {
    font-size: 2.4rem;
    margin-bottom: 15px;
  }
  .comp-facility-detail .facility_item .facility_txt .facility_description {
    text-align: justify;
  }
  .comp-facility-detail .facility_item .facility_txt .comp-arrow-button {
    margin-top: 30px;
  }
  .comp-facility-detail .facility_item .facility_txt .kamenoo_wrap {
    margin-top: 35px;
  }
  .comp-facility-detail .facility_item .facility_txt .kamenoo_wrap .kamenoo_img {
    width: 80px;
    margin-right: 25px;
  }
  .comp-facility-detail .facility_item .facility_txt .kamenoo_wrap .kamenoo_txt {
    width: calc(100% - 105px);
  }
  .comp-facility-detail .facility_item .facility_txt .kamenoo_wrap .kamenoo_txt .kamenoo_ttl {
    font-size: 1.8rem;
    margin-bottom: 10px;
  }
  .comp-facility-detail .facility_item .facility_txt .kamenoo_wrap .kamenoo_txt .kamenoo_description {
    font-size: 1.3rem;
  }
}
.comp-business-calendar {
  border: 1px solid #d8d8d8;
  border-radius: 5px;
}
.comp-business-calendar .calendar_inner {
  padding: 25px;
  background: #fff;
  border-bottom: 1px solid #d8d8d8;
  border-radius: 5px 5px 0 0;
}
.comp-business-calendar .calendar_inner .fc-left, .comp-business-calendar .calendar_inner .fc-center {
  display: none;
}
.comp-business-calendar .calendar_inner .fc-header-toolbar {
  font-size: 1.2rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
}
.comp-business-calendar .calendar_inner .fc-view-container {
  position: relative;
}
.comp-business-calendar .calendar_inner .fc-view-container .fc-month-view thead, .comp-business-calendar .calendar_inner .fc-view-container .fc-month-view tbody, .comp-business-calendar .calendar_inner .fc-view-container .fc-month-view table, .comp-business-calendar .calendar_inner .fc-view-container .fc-month-view tr, .comp-business-calendar .calendar_inner .fc-view-container .fc-month-view td {
  display: block;
  width: 100%;
}
.comp-business-calendar .calendar_inner .fc-view-container .fc-month-view .fc-head > tr {
  border: none;
}
.comp-business-calendar .calendar_inner .fc-view-container .fc-month-view .fc-body > tr {
  border: none;
}
.comp-business-calendar .calendar_inner .fc-view-container .fc-month-view .fc-body > tr > .fc-widget-content {
  width: 100%;
  padding: 0;
}
.comp-business-calendar .calendar_inner .fc-view-container .fc-month-view .fc-body .fc-widget-content .fc-scroller {
  height: auto !important;
  overflow: visible !important;
}
.comp-business-calendar .calendar_inner .fc-view-container .fc-month-view .fc-head-container {
  width: 100%;
}
.comp-business-calendar .calendar_inner .fc-view-container .fc-month-view .fc-bg {
  display: none;
}
.comp-business-calendar .calendar_inner .fc-view-container .fc-month-view .fc-content-skeleton > table {
  border: none;
}
.comp-business-calendar .calendar_inner .fc-view-container .fc-month-view .fc-content-skeleton tbody {
  display: none;
}
.comp-business-calendar .calendar_inner .fc-view-container .fc-month-view thead, .comp-business-calendar .calendar_inner .fc-view-container .fc-month-view tr {
  display: block;
  width: 100%;
}
.comp-business-calendar .calendar_inner .fc-view-container .fc-month-view table {
  border-top: 1px solid #d8d8d8;
}
.comp-business-calendar .calendar_inner .fc-view-container .fc-month-view table tr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  border-bottom: 1px solid #d8d8d8;
}
.comp-business-calendar .calendar_inner .fc-view-container .fc-month-view table tr .fc-day-top {
  display: block;
  width: 14.2857142857%;
  text-align: center;
  padding: 3px 0;
}
.comp-business-calendar .calendar_inner .fc-view-container .fc-month-view table tr .fc-day-top span, .comp-business-calendar .calendar_inner .fc-view-container .fc-month-view table tr .fc-day-top .fc-day-number {
  display: block;
  font-size: 1.2rem;
  line-height: 26px;
}
.comp-business-calendar .calendar_inner .fc-view-container .fc-month-view table tr .fc-day-top span.lastmonth, .comp-business-calendar .calendar_inner .fc-view-container .fc-month-view table tr .fc-day-top span.nextmonth, .comp-business-calendar .calendar_inner .fc-view-container .fc-month-view table tr .fc-day-top .fc-day-number.lastmonth, .comp-business-calendar .calendar_inner .fc-view-container .fc-month-view table tr .fc-day-top .fc-day-number.nextmonth {
  color: #acacac;
}
.comp-business-calendar .calendar_inner .fc-view-container .fc-month-view table tr .fc-day-top.fc-past {
  opacity: 0.5;
}
.comp-business-calendar .calendar_inner .fc-view-container .fc-month-view table tr .fc-day-top.fc-today {
  background: #f4f4f4;
}
.comp-business-calendar .calendar_inner .fc-view-container .fc-month-view table tr .fc-day-top.fc-other-month {
  opacity: 0.5;
}
.comp-business-calendar .calendar_inner .fc-view-container .fc-month-view table tr .fc-day-top.dayoff {
  opacity: 1;
  background: #C53C3C;
  color: #fff;
}
.comp-business-calendar .calendar_inner .fc-view-container .fc-month-view table tr .fc-day-header {
  display: block;
  width: 14.2857142857%;
  text-align: center;
  padding: 3px 0;
}
.comp-business-calendar .calendar_inner .fc-view-container .fc-month-view table tr .fc-day-header span, .comp-business-calendar .calendar_inner .fc-view-container .fc-month-view table tr .fc-day-header .fc-day-number {
  display: block;
  font-size: 1.2rem;
  line-height: 26px;
}
.comp-business-calendar .calendar_inner .fc-view-container .fc-month-view table tr .fc-day-header span.lastmonth, .comp-business-calendar .calendar_inner .fc-view-container .fc-month-view table tr .fc-day-header span.nextmonth, .comp-business-calendar .calendar_inner .fc-view-container .fc-month-view table tr .fc-day-header .fc-day-number.lastmonth, .comp-business-calendar .calendar_inner .fc-view-container .fc-month-view table tr .fc-day-header .fc-day-number.nextmonth {
  color: #acacac;
}
.comp-business-calendar .calendar_inner .fc-view-container .fc-month-view table tr th, .comp-business-calendar .calendar_inner .fc-view-container .fc-month-view table tr td {
  width: 14.2857142857%;
  text-align: center;
  padding: 3px 0;
}
.comp-business-calendar .calendar_inner .fc-view-container .fc-month-view table tr th .weekDay, .comp-business-calendar .calendar_inner .fc-view-container .fc-month-view table tr td .weekDay {
  font-size: 1.2rem;
}
.comp-business-calendar .calendar_inner .fc-view-container .fc-month-view table tr th p, .comp-business-calendar .calendar_inner .fc-view-container .fc-month-view table tr td p {
  font-size: 1.2rem;
  line-height: 26px;
}
.comp-business-calendar .calendar_inner .fc-view-container .fc-month-view table tr th p.lastmonth, .comp-business-calendar .calendar_inner .fc-view-container .fc-month-view table tr th p.nextmonth, .comp-business-calendar .calendar_inner .fc-view-container .fc-month-view table tr td p.lastmonth, .comp-business-calendar .calendar_inner .fc-view-container .fc-month-view table tr td p.nextmonth {
  color: #acacac;
}
.comp-business-calendar .calendar_inner .fc-view-container .fc-month-view > table {
  border: none;
}
.comp-business-calendar .calendar_description {
  font-size: 1.2rem;
  line-height: 1.78;
  padding: 20px 25px;
  background: #F7F7F7;
  border-radius: 0 0 5px 5px;
}

@media screen and (min-width: 768px) {
  .comp-business-calendar2 {
    border-radius: 10px;
  }
  .comp-business-calendar2 .calendar_inner {
    padding: 30px 40px;
    border-radius: 10px 10px 0 0;
  }
  .comp-business-calendar2 .calendar_inner .calendar_header {
    font-size: 1.4rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
  }
  .comp-business-calendar2 .calendar_inner .calendar_table {
    position: relative;
  }
  .comp-business-calendar2 .calendar_inner .calendar_table table tr th .weekDay, .comp-business-calendar2 .calendar_inner .calendar_table table tr td .weekDay {
    font-size: 1.4rem;
  }
  .comp-business-calendar2 .calendar_inner .calendar_table table tr th p, .comp-business-calendar2 .calendar_inner .calendar_table table tr td p {
    font-size: 1.4rem;
    line-height: 26px;
  }
  .comp-business-calendar2 .calendar_description {
    font-size: 1.4rem;
    padding: 25px 40px;
    border-radius: 0 0 10px 10px;
  }
}
.comp-faclity-map .map_img_wrap {
  position: relative;
  height: 87vw;
  margin-bottom: 12px;
}
.comp-faclity-map .map_img_wrap .img_item {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  will-change: opacity;
}
.comp-faclity-map .map_img_wrap .img_item.active_img {
  opacity: 1;
}
.comp-faclity-map .map_button_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: calc(100% - 20px);
  margin: 0 auto;
}
.comp-faclity-map .map_button_wrap .button_item {
  width: calc(33% - 5px);
  margin-right: 7px;
  margin-bottom: 7px;
}
.comp-faclity-map .map_button_wrap .button_item:nth-of-type(3n) {
  margin-right: 0;
}
.comp-faclity-map .map_button_wrap .button_item button {
  width: 100%;
  text-align: center;
  font-size: 1.6rem;
  padding: 12px 0;
  background: #D9D9D9;
  color: #0A0830;
}
.comp-faclity-map .map_button_wrap .button_item button.active_button {
  background: #0A0830;
  color: #fff;
}

@media screen and (min-width: 980px) {
  .comp-faclity-map {
    position: relative;
    width: 86vw;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (min-width: 980px) and (min-width: 720px) {
  .comp-faclity-map {
    width: 83%;
    max-width: 1590px;
  }
}
@media screen and (min-width: 980px) {
  .comp-faclity-map .map_img_wrap {
    width: 100%;
    position: relative;
    height: 50vw;
    overflow: hidden;
    margin-bottom: 12px;
  }
  .comp-faclity-map .map_img_wrap .img_item {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    will-change: opacity;
  }
  .comp-faclity-map .map_img_wrap .img_item img {
    -o-object-fit: cover;
       object-fit: cover;
    width: 100%;
    height: 100%;
  }
  .comp-faclity-map .map_img_wrap .img_item.active_img {
    opacity: 1;
  }
  .comp-faclity-map .map_button_wrap {
    display: block;
    width: auto;
    margin: 0 auto;
  }
  .comp-faclity-map .map_button_wrap .button_item {
    position: absolute;
    top: 0;
    left: 0;
    width: auto;
    margin-right: 7px;
    margin-bottom: 7px;
    height: 40px;
  }
  .comp-faclity-map .map_button_wrap .button_item:nth-of-type(3n) {
    margin-right: 0;
  }
  .comp-faclity-map .map_button_wrap .button_item button {
    width: auto;
    text-align: center;
    font-size: 1.6rem;
    padding: 12px 20px;
    background: #0A0830;
    color: #fff;
    border-radius: 200px;
    will-change: opacity;
  }
  .comp-faclity-map .map_button_wrap .button_item button:hover {
    opacity: 0;
  }
  .comp-faclity-map .map_button_wrap .button_item.button01 {
    display: none;
    left: 20%;
    top: 19%;
  }
  .comp-faclity-map .map_button_wrap .button_item.button02 {
    left: 41%;
    top: 15%;
  }
  .comp-faclity-map .map_button_wrap .button_item.button03 {
    left: 16%;
    top: 30%;
  }
  .comp-faclity-map .map_button_wrap .button_item.button04 {
    left: 57%;
    top: 31%;
  }
  .comp-faclity-map .map_button_wrap .button_item.button05 {
    left: 34%;
    top: 44%;
  }
  .comp-faclity-map .map_button_wrap .button_item.button06 {
    left: 32%;
    top: 58%;
  }
}
