@charset "UTF-8";
/*
Theme Name:無双本舗
Description:
Theme URI: 
Author: HIRAKU WADA (mallet DESIGN)
Author URI: https://mallet-design.com
Version: 
License: 
License URI: 
*/
/* 1.0 Document Setup
--------------------------------------------------------------*/
/*===================================================
     0.CSS Reset / YUI 3.5.0 - reset.css
===================================================*/
/**
 * YUI 3.5.0 - reset.css (http://developer.yahoo.com/yui/3/cssreset/)
 * http://cssreset.com
 * Copyright 2012 Yahoo! Inc. All rights reserved.
 * http://yuilibrary.com/license/
 */
/*
	TODO will need to remove settings on HTML since we can't namespace it.
	TODO with the prefix, should I group by selector or property for weight savings?
*/
html {
  color: #333;
  font-size: 62.5%;
}

/*
	TODO remove settings on BODY since we can't namespace it.
*/
/*
	TODO test putting a class on HEAD.
		- Fails on FF.
*/
body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
input,
textarea,
p,
blockquote,
th,
td {
  margin: 0;
  padding: 0;
}

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

fieldset,
img {
  border: 0;
}

/*
	TODO think about hanlding inheritence differently, maybe letting IE6 fail a bit...
*/
address,
caption,
cite,
code,
dfn,
em,
strong,
th,
var {
  font-style: normal;
  font-weight: normal;
}

ol,
ul {
  list-style: none;
}

caption,
th {
  text-align: left;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
}

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

abbr,
acronym {
  border: 0;
  font-variant: normal;
}

/* to preserve line-height and selector appearance */
sup {
  vertical-align: text-top;
}

sub {
  vertical-align: text-bottom;
}

input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
}

/*to enable resizing for IE*/
input,
textarea,
select {
  *font-size: 100%;
}

/*because legend doesn't inherit in IE */
legend {
  color: #000;
}

/* YUI CSS Detection Stamp */
#yui3-css-stamp.cssreset {
  display: none;
}

.clearfix {
  width: 100%;
}

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

#wpadminbar a {
  color: #fff !important;
}

/*===================================================
     Font
===================================================*/
h1, h2 {
  font-size: 3.6rem !important;
  font-size: clamp(2rem, 3vw, 3.6rem) !important;
  min-height: 0vw;
}

/*===================================================
     Color
===================================================*/
/* -----------------------------------------------------------------
    media query
----------------------------------------------------------------- */
/*===================================================
    1.	Document Setup
===================================================*/
body {
  font-size: 1.6rem !important;
  font-size: clamp(1.1rem, 1.8vw, 1.6rem) !important;
  min-height: 0vw;
  color: #333 !important;
  font-family: "Shippori Mincho", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "Noto Serif JP", "HG明朝E", "ＭＳ Ｐ明朝", serif !important;
  font-weight: 400;
  letter-spacing: 1.5px;
  line-height: 1.8 !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: #fffdf3;
}
body:after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fffdf3;
  z-index: 9999;
  /* 一番手前に */
  pointer-events: none;
  /* 他の要素にアクセス可能にするためにポインターイベントは無効に */
  opacity: 0;
  /* 初期値 : 透過状態 */
  -webkit-transition: opacity 0.4s ease;
  /* アニメーション時間は 0.8秒 */
  transition: opacity 0.4s ease;
}
body.fade-out:after {
  opacity: 1;
}

.t8px {
  font-size: 0.8em;
}

.t9px {
  font-size: 0.9em;
}

.t11px {
  font-size: 1.1em;
}

.t12px {
  font-size: 1.2em;
}

.t13px {
  font-size: 1.3em;
}

.t14px {
  font-size: 1.4em;
}

.t15px {
  font-size: 1.5em;
}

.t16px {
  font-size: 1.6em;
}

.t17px {
  font-size: 1.7em;
}

.t18px {
  font-size: 1.8em;
}

.t19px {
  font-size: 1.9em;
}

.t20px {
  font-size: 2em;
}

.ta_left {
  text-align: left !important;
}

.ta_right {
  text-align: right;
}

.wrapper {
  width: 100%;
  overflow: hidden;
}

input {
  cursor: pointer;
}

/*for Webkit*/
input::-webkit-input-placeholder {
  color: #000;
}

/*for Firefox*/
input:-moz-placeholder {
  color: #000;
}

a {
  text-decoration: none;
  color: #333 !important;
  cursor: pointer;
}

a:hover {
  /*filter: alpha(opacity=60);
  -moz-opacity:0.6;
  opacity:0.6;
  -webkit-transition: 0.2s ease-in-out;
  -moz-transition: 0.2s ease-in-out;*/
  border: none !important;
  text-decoration: none !important;
}

input:focus {
  outline: none;
}

select::-ms-expand {
  display: none;
}

.center {
  text-align: center;
}

.object-fit-img {
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover; object-position: top;";
}

.fade_off {
  opacity: 0;
  -webkit-transition: all 1.5s;
  transition: all 1.5s;
}

.fade_on {
  opacity: 1;
}

/*===================================================
     Utility
===================================================*/
/* padding-top
-------------------------------------------------- */
.pt0 {
  padding-top: 0px !important;
}

.pt10 {
  padding-top: 10px !important;
}

.pt20 {
  padding-top: 20px !important;
}

.pt30 {
  padding-top: 30px !important;
}

.pt40 {
  padding-top: 40px !important;
}

.pt50 {
  padding-top: 50px !important;
}

.pt60 {
  padding-top: 60px !important;
}

.pt70 {
  padding-top: 70px !important;
}

.pt80 {
  padding-top: 80px !important;
}

.pt90 {
  padding-top: 90px !important;
}

.pt100 {
  padding-top: 100px !important;
}

/* padding-bottom
-------------------------------------------------- */
.pb0 {
  padding-bottom: 0px !important;
}

.pb10 {
  padding-bottom: 10px !important;
}

.pb20 {
  padding-bottom: 20px !important;
}

.pb30 {
  padding-bottom: 30px !important;
}

.pb40 {
  padding-bottom: 40px !important;
}

.pb45 {
  padding-bottom: 45px !important;
}

.pb50 {
  padding-bottom: 50px !important;
}

/* padding-Left
-------------------------------------------------- */
.pl10 {
  padding-left: 10px !important;
}

.pl20 {
  padding-left: 20px !important;
}

.pl30 {
  padding-left: 30px !important;
}

.pl40 {
  padding-left: 40px !important;
}

.pl50 {
  padding-left: 50px !important;
}

.pl60px {
  padding-left: 60px !important;
}

/* padding-Right
-------------------------------------------------- */
.pr10 {
  padding-right: 10px !important;
}

.pr20 {
  padding-right: 20px !important;
}

.pr30 {
  padding-right: 30px !important;
}

.pr40 {
  padding-right: 40px !important;
}

.pr50 {
  padding-right: 50px !important;
}

/* margin-top
-------------------------------------------------- */
.mt0 {
  margin-top: 0px !important;
}

/* margin-bottom
-------------------------------------------------- */
.mb0 {
  margin-bottom: 0px !important;
}

.mb10 {
  margin-bottom: 10px !important;
}

.mb20 {
  margin-bottom: 20px !important;
}

.mb30 {
  margin-bottom: 30px !important;
}

.mb40 {
  margin-bottom: 40px !important;
}

.mb50 {
  margin-bottom: 50px !important;
}

.u-df {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.u-dfc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.u-dfsb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

/* pc   --------------------------------*/
@media screen and (min-width: 813px) {
  .sp {
    display: none !important;
  }
}
/* sp   --------------------------------*/
@media screen and (max-width: 812px) {
  body {
    font-size: 12px;
  }

  .pc {
    display: none !important;
  }
}
/* edge   --------------------------------*/
@supports (-ms-ime-align: auto) {
  /* Edge のみ適用される */
  body {
    -webkit-font-feature-settings: "pkna";
            font-feature-settings: "pkna";
  }
}
/*  -------------------------------------
	Slick
  -------------------------------------*/
.slick-next:before {
  content: "" !important;
  background: url(assets/img/icon/icon_next.svg) no-repeat;
  background-size: contain;
  width: 15px;
  height: 30px;
  display: block;
}
@media only screen and (max-width:768px) {
  .slick-next:before {
    width: 10px;
    height: 20px;
  }
}
@media only screen and (max-width:768px) {
  .slick-next {
    right: -20px !important;
  }
}

.slick-prev:before {
  content: "" !important;
  background: url(assets/img/icon/icon_prev.svg) no-repeat;
  background-size: contain;
  width: 15px;
  height: 30px;
  display: block;
}
@media only screen and (max-width:768px) {
  .slick-prev:before {
    width: 10px;
    height: 20px;
  }
}
@media only screen and (max-width:768px) {
  .slick-prev {
    left: -10px !important;
  }
}

.single .slider-nav .slick-list, .page .slider-nav .slick-list {
  padding: 0 !important;
  margin-top: 1em;
}
@media only screen and (max-width:1200px) {
  .single .slider-nav .slick-list, .page .slider-nav .slick-list {
    margin-top: 0.5em;
  }
}
@media only screen and (max-width:1200px) and (max-width:767px) {
  .single .slider-nav .slick-list, .page .slider-nav .slick-list {
    margin-top: 1em;
  }
}
.single .slider-nav .slick-slide, .page .slider-nav .slick-slide {
  padding: 0 0.5em;
}
@media only screen and (max-width:1200px) {
  .single .slider-nav .slick-slide, .page .slider-nav .slick-slide {
    padding: 0 0.25em;
  }
}
@media only screen and (max-width:767px) {
  .single .slider-nav .slick-slide, .page .slider-nav .slick-slide {
    padding: 0 0.5em;
  }
}

/*  -------------------------------------
	タブ実装
  -------------------------------------*/
@-webkit-keyframes fadeIn {
  0% {
    -webkit-opacity: 0;
    opacity: 0;
  }
  100% {
    -webkit-opacity: 1;
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.tab_box .btn_area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media only screen and (max-width:991px) {
  .tab_box .btn_area {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.tab_box .btn_area .tab_btn {
  text-align: center;
  cursor: pointer;
  font-weight: normal;
  color: #999;
  margin: 0 0 20px;
  font-family: "EB Garamond", serif;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  font-size: clamp(1.4rem, 2vw, 2.1rem) !important;
  min-height: 0vw;
  line-height: 1.4em;
  letter-spacing: 0.05em;
  padding-bottom: 10px;
  margin: 0 1em 30px;
  -webkit-transition: 0.6s all;
  transition: 0.6s all;
}
@media only screen and (max-width:480px) {
  .tab_box .btn_area .tab_btn {
    margin-bottom: 15px;
  }
}
.tab_box .btn_area .tab_btn.active {
  -webkit-animation: fadeIn 0.8s ease-in-out;
          animation: fadeIn 0.8s ease-in-out;
  color: #000;
}
.tab_box .btn_area .tab_btn:hover {
  color: #000;
}
.tab_box .tab_panel {
  display: none;
}
.tab_box .tab_panel.active {
  display: block;
  -webkit-animation: fadeIn 0.8s ease-in-out;
          animation: fadeIn 0.8s ease-in-out;
}
.tab_box .tab_panel.active p.lead {
  font-size: clamp(1.3rem, 2vw, 1.8rem) !important;
  min-height: 0vw;
  font-weight: 700;
}
.tab_box .panel_area .p-article {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.tab_box .panel_area .p-article__contents {
  -ms-flex-preferred-size: 31.3%;
      flex-basis: 31.3%;
  max-width: 31.3%;
  margin: 0 0 3%;
}
.tab_box .panel_area .p-article__contents a {
  position: relative;
  display: block;
}
.tab_box .panel_area .p-article__contents a:before {
  content: "";
  display: none;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 10;
  -webkit-transition: 0.6s all;
  transition: 0.6s all;
}
.tab_box .panel_area .p-article__detail {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 10;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  font-size: 30px;
  font-size: 1.875rem;
  color: #fff;
  opacity: 0;
  -webkit-transition: 0.6s all;
  transition: 0.6s all;
  z-index: 2;
  width: 90%;
  text-align: center;
}
@media only screen and (max-width:1200px) {
  .tab_box .panel_area .p-article__detail {
    position: static;
    color: #000;
    width: 100%;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
    opacity: 1;
    padding: 0.5em 0;
  }
}
.tab_box .panel_area .p-article__contents a {
  -webkit-transition: opacity 0.5s ease-out;
  transition: opacity 0.5s ease-out;
}
.tab_box .panel_area .p-article__contents a:hover {
  opacity: 1;
}
.tab_box .panel_area .p-article__contents a:hover:before {
  opacity: 0.3;
  -webkit-transition: 0.6s all;
  transition: 0.6s all;
  z-index: 1;
}
.tab_box .panel_area .p-article__contents a:hover .p-article__detail {
  opacity: 1;
  -webkit-transition: 0.6s all;
  transition: 0.6s all;
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}

.tab_box .panel_area {
  /* border: solid 1px #e3ebf3;
   padding: 20px;*/
}

/*  -------------------------------------
	BlockRevealers
  -------------------------------------*/
.content__image {
  width: 100%;
  display: block;
}

.content__image-wrap--half {
  width: 50vw;
}

.block-revealer__element {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  pointer-events: none;
  opacity: 0;
  z-index: 5;
}

.content__title__inner, .block-revealer__content {
  opacity: 0;
}

.block-revealer {
  opacity: 1;
}

/*  -------------------------------------
	search
  -------------------------------------*/
.search-wrap {
  position: fixed;
  background: #fff;
  top: 0;
  left: 0;
  width: 100%;
  height: 0%;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.35s, visibility 0.35s, height 0.35s;
  transition: opacity 0.35s, visibility 0.35s, height 0.35s;
  z-index: 103;
}
.search-wrap #form {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  padding: 0;
  width: 360px;
  /*-webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;*/
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media only screen and (max-width:480px) {
  .search-wrap #form {
    width: 70%;
    top: 40%;
  }
}
.search-wrap #form ::-webkit-input-placeholder {
  color: #999;
}
.search-wrap #form ::-moz-placeholder {
  color: #999;
}
.search-wrap #form :-ms-input-placeholder {
  color: #999;
}
.search-wrap #form ::-ms-input-placeholder {
  color: #999;
}
.search-wrap #form ::placeholder {
  color: #999;
}
.search-wrap #form input {
  padding: 0 0.5em;
  width: 80%;
  background: none;
  border: none;
  border-bottom: 1px solid #cfcdc0;
}
.search-wrap #form button {
  background: none;
  border: none;
}
.search-wrap #form #s-btn img {
  width: 16px;
  height: 16px;
}
.search-wrap #search-close {
  position: absolute;
  left: 50%;
  -webkit-transform: translate(-50%, 0%);
  transform: translate(-50%, 0%);
  bottom: 30px;
  cursor: pointer;
  border: none;
  border-radius: 20px;
  padding: 0 20px;
  font-family: "Jost", sans-serif;
}
@media only screen and (max-width:480px) {
  .search-wrap #search-close {
    font-size: 12px;
  }
}
@media only screen and (max-width:480px) {
  .search-wrap {
    margin-top: 0;
  }
}
.search-wrap.open {
  opacity: 1;
  visibility: visible;
  height: 30%;
}
.search-wrap.open #search-close {
  position: absolute;
  left: 50%;
  -webkit-transform: translate(-50%, 0%);
  transform: translate(-50%, 0%);
  bottom: 30px;
  cursor: pointer;
  border: none;
  border-radius: 20px;
  padding: 0 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #a2a197;
}
.search-wrap.open #search-close:after {
  content: "×";
  margin-left: 0.5em;
}
@media only screen and (max-width:480px) {
  .search-wrap.open #search-close {
    font-size: 12px;
  }
}
.search-wrap.open #form {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  padding: 0;
  width: 360px;
  /*-webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;*/
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media only screen and (max-width:480px) {
  .search-wrap.open #form {
    width: 70%;
    top: 40%;
  }
}
.search-wrap.open #form ::-webkit-input-placeholder {
  color: #999;
}
.search-wrap.open #form ::-moz-placeholder {
  color: #999;
}
.search-wrap.open #form :-ms-input-placeholder {
  color: #999;
}
.search-wrap.open #form ::-ms-input-placeholder {
  color: #999;
}
.search-wrap.open #form ::placeholder {
  color: #999;
}
.search-wrap.open #form input {
  padding: 0 0.5em;
  width: 80%;
}
.search-wrap.open #form button {
  background: none;
  border: none;
}
.search-wrap.open #form #s-btn img {
  width: 16px;
  height: 16px;
}

/*  -------------------------------------
	wp-pagenavi
  -------------------------------------*/
.wp-pagenavi, .all-page-pager {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 60px 0 0;
}
@media only screen and (max-width:687px) {
  .wp-pagenavi, .all-page-pager {
    margin: 45px 0 0;
  }
}
.wp-pagenavi .current, .wp-pagenavi a:hover, .all-page-pager .current, .all-page-pager a:hover {
  background: #fff;
  font-weight: 400 !important;
  border-color: #BFBFBF !important;
  border: 1px solid #BFBFBF !important;
}
.wp-pagenavi span, .wp-pagenavi a, .all-page-pager span, .all-page-pager a {
  font-family: "Jost", sans-serif;
  width: auto;
  height: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-right: 1em;
  color: #333 !important;
}
@media only screen and (max-width:768px) {
  .wp-pagenavi span, .wp-pagenavi a, .all-page-pager span, .all-page-pager a {
    font-size: 11px;
    width: auto;
    height: 20px;
  }
}
.wp-pagenavi a.nextpostslink, .all-page-pager a.nextpostslink {
  margin-right: 0;
}

.all-page-pager a, .all-page-pager span {
  text-decoration: none;
  border: 1px solid #BFBFBF;
  padding: 3px 5px;
  margin: 2px;
}
.all-page-pager span.page-numbers {
  width: auto;
  height: 30px;
  padding: 0 0.5em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media only screen and (max-width:768px) {
  .all-page-pager span.page-numbers {
    font-size: 12px;
  }
}

/*  -------------------------------------
	グーテンベルク　投稿スタイル
  -------------------------------------*/
body .is-layout-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
body .is-layout-flex figure {
  margin: 0 1em;
}

body .is-layout-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;
}

.wp-container-1.wp-container-1, .wp-container-2.wp-container-2 {
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}

body .is-layout-flex > * {
  margin: 0;
}

/* 2.0 structure
--------------------------------------------------------------*/
/*  -------------------------------------
	Wrapper 
  -------------------------------------*/
.wrapper {
  position: relative;
}
@media only screen and (max-width:1200px) {
  .wrapper {
    padding-top: 0px;
  }
}

/*  -------------------------------------
	Header 
  -------------------------------------*/
.l-header {
  width: 100%;
  position: fixed;
  z-index: 2;
}
.l-header__inner {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 30px;
}
@media only screen and (max-width:812px) {
  .l-header__inner {
    padding: 15px;
  }
}
@media only screen and (max-width:480px) {
  .l-header__inner {
    padding: 15px;
  }
}
.l-header__logo {
  display: block;
}
.l-header__logo img {
  width: auto;
  height: 80px;
  display: inline-block;
  -webkit-transition: all 500ms 0s ease-in;
  transition: all 500ms 0s ease-in;
  line-height: 1em;
}
@media only screen and (max-width:768px) {
  .l-header__logo img {
    height: 60px;
  }
}
@media only screen and (max-width:480px) {
  .l-header__logo img {
    height: 35px;
  }
}
.l-header__caption {
  margin-left: 1.5em;
}
@media only screen and (max-width:480px) {
  .l-header__caption {
    font-size: 1rem;
    -webkit-font-feature-settings: "palt";
            font-feature-settings: "palt";
    letter-spacing: 0.02em;
    margin-left: 1em;
  }
}
.l-header__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 60px;
  padding: 0 45px 0 0;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
@media only screen and (max-width:969px) {
  .l-header__nav {
    display: none;
  }
}

nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0;
  padding: 23px 0;
}
@media only screen and (max-width:1200px) {
  nav ul {
    padding: 18px 0;
  }
}
nav ul ul {
  display: block;
}
nav ul li {
  font-size: 2rem;
  font-size: clamp(1.4rem, 2vw, 1.8rem);
  min-height: 0vw;
  font-weight: 500;
  letter-spacing: 0.08em;
  margin: 0 1.5em;
  line-height: 1em;
  letter-spacing: 0.05em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
@media only screen and (max-width:1200px) {
  nav ul li {
    font-size: clamp(1.2rem, 2vw, 1.5rem);
  }
}
@media only screen and (max-width:991px) {
  nav ul li {
    font-size: clamp(1.3rem, 2vw, 1.6rem);
    letter-spacing: 0.01em;
  }
}
nav ul li a {
  position: relative;
}
nav ul li a:after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  width: 0%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  height: 1px;
  background: #d4eefa;
  -webkit-transition: 0.35s;
  transition: 0.35s;
}
nav ul li a:hover {
  opacity: 0.7;
}
nav ul li.menu-parent-item > a:before {
  content: "";
  position: absolute;
  right: -12px;
  top: 50%;
  margin-top: -3px;
  width: 6px;
  height: 6px;
  border-top: 1px solid #d4eefa;
  border-right: 1px solid #d4eefa;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
}
@media only screen and (max-width:812px) {
  nav ul li.menu-parent-item > a:before {
    top: 17px;
    right: 0px;
    -webkit-transform: rotate(135deg);
            transform: rotate(135deg);
  }
}
nav ul li.menu-parent-item.active > a:before {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
nav ul li.menu-parent-item img {
  max-width: 100%;
  height: auto;
  aspect-ratio: 3/2;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  vertical-align: bottom;
}
nav ul li.menu-parent-item img:hover {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}
nav ul li.menu-parent-item dt {
  overflow: hidden;
  margin: 0 0 10px 0;
}
@media only screen and (max-width:1200px) {
  nav ul li.menu-parent-item dt {
    height: 12vh;
  }
}
nav ul li.menu-parent-item dd {
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  min-height: 0vw;
}
nav ul li.menu-parent-item ul {
  position: absolute;
  left: 5%;
  top: 125px;
  z-index: 4;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  /*形状を指定*/
  background: #fff;
  padding: 2% 1% 0;
  width: 90%;
  /*はじめは非表示*/
  visibility: hidden;
  opacity: 0;
  /*アニメーション設定*/
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-box-shadow: 0 5px 5px rgba(0, 0, 0, 0.3);
          box-shadow: 0 5px 5px rgba(0, 0, 0, 0.3);
}
@media only screen and (max-width:812px) {
  nav ul li.menu-parent-item ul {
    position: relative;
    left: 0;
    top: 0;
    width: 100%;
    visibility: visible;
    /*JSで制御するため一旦表示*/
    opacity: 1;
    /*JSで制御するため一旦表示*/
    display: none;
    /*JSのslidetoggleで表示させるため非表示に*/
    -webkit-transition: none;
    transition: none;
    /*JSで制御するためCSSのアニメーションを切る*/
  }
}
nav ul li.menu-parent-item ul li {
  width: 23%;
  margin: 0 1% 1%;
  text-align: center;
}
@media only screen and (max-width:812px) {
  nav ul li.menu-parent-item ul li {
    width: 100%;
    text-align: left;
  }
}
nav ul li.menu-parent-item ul li a {
  color: #fff;
}
@media only screen and (max-width:812px) {
  nav ul li.menu-parent-item ul li a {
    padding: 0;
  }
}
@media only screen and (max-width:812px) {
  nav ul li.menu-parent-item ul li dl {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media only screen and (max-width:812px) {
  nav ul li.menu-parent-item ul li dl dt {
    width: 30%;
    height: auto;
    margin: 0;
  }
}
@media only screen and (max-width:812px) {
  nav ul li.menu-parent-item ul li dl dd {
    width: 64%;
  }
}
nav ul li.menu-parent-item:hover > ul {
  visibility: visible;
  opacity: 1;
}

body.sticky .button_container {
  -webkit-animation-name: fadeDownAnime;
          animation-name: fadeDownAnime;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 1;
  z-index: 100;
  top: 40px;
}
@media only screen and (max-width:768px) {
  body.sticky .button_container {
    top: 30px;
  }
}
@media only screen and (max-width:480px) {
  body.sticky .button_container {
    top: 15px;
  }
}
body.sticky .l-header {
  -webkit-animation-name: fadeDownAnime;
          animation-name: fadeDownAnime;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
  position: fixed;
  z-index: 1;
  background: #fffdf3;
  -webkit-box-shadow: 0 0 5px 5px #9d9d9d24;
  box-shadow: 0 0 5px 5px #9d9d9d24;
}
@media only screen and (max-width:812px) {
  body.sticky .l-header {
    -webkit-animation: inherit;
            animation: inherit;
    opacity: 1;
  }
}
body.sticky .l-header__logo img {
  width: 70px;
}
@media only screen and (max-width:480px) {
  body.sticky .l-header__logo img {
    width: auto;
  }
}
body.sticky .l-header__inner {
  padding: 15px 30px;
}
@media only screen and (max-width:768px) {
  body.sticky .l-header__inner {
    padding: 15px;
  }
}
body.sticky .l-header__menu {
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
body.sticky .l-header nav {
  -webkit-animation-name: fadeInLogo;
          animation-name: fadeInLogo;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 1;
}

@-webkit-keyframes fadeDownAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(-100px);
            transform: translateY(-100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadeDownAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(-100px);
            transform: translateY(-100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes fadeInLogo {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeInLogo {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/*  -------------------------------------
	sidebar
  -------------------------------------*/
.l-sidebar {
  margin-right: 30px;
}
@media only screen and (max-width:991px) {
  .l-sidebar {
    margin: 90px 0 0;
  }
}
@media only screen and (max-width:768px) {
  .l-sidebar {
    margin-top: 60px;
  }
}
@media only screen and (max-width:480px) {
  .l-sidebar {
    margin-top: 45px;
  }
}
.l-sidebar .widget {
  margin-bottom: 90px;
}
@media only screen and (max-width:991px) {
  .l-sidebar .widget:last-of-type {
    margin-bottom: 0;
  }
}
@media only screen and (max-width:768px) {
  .l-sidebar .widget {
    margin-bottom: 60px;
  }
}
@media only screen and (max-width:480px) {
  .l-sidebar .widget {
    margin-bottom: 45px;
  }
}
.l-sidebar .widget h3 {
  font-size: clamp(1.5rem, 2vw, 2.1rem);
  min-height: 0vw;
  font-weight: 700;
  padding: 0 0 15px;
  margin: 0 0 15px;
  line-height: 1.6em;
  border-bottom: 1px solid #ccc;
}
.l-sidebar .widget ul li {
  margin: 0 0 0.5em;
}
.l-sidebar .widget ul li:last-child {
  margin-bottom: 0;
}

/*  -------------------------------------
	Footer
  -------------------------------------*/
.l-footer {
  background: url(assets/img/common/footer_bg.jpg) no-repeat;
  background-size: cover;
  background-position: center bottom;
}
.l-footer .container-fluid {
  padding-top: 45px;
}
@media only screen and (max-width:812px) {
  .l-footer .container-fluid {
    margin-left: 0;
    margin-right: 0;
  }
}
@media only screen and (max-width:480px) {
  .l-footer .container-fluid {
    padding-top: 30px;
  }
}
@media only screen and (max-width:480px) {
  .l-footer .container-fluid .container {
    padding-left: 0;
    padding-right: 0;
  }
}
.l-footer.content {
  padding: 0 !important;
}
@media only screen and (max-width:812px) {
  .l-footer.content {
    padding: 45px 0 30px;
  }
}
.l-footer__nav {
  margin-bottom: 600px;
}
@media only screen and (max-width:1200px) {
  .l-footer__nav {
    margin-bottom: 500px;
  }
}
@media only screen and (max-width:991px) {
  .l-footer__nav {
    margin-bottom: 400px;
  }
}
@media only screen and (max-width:768px) {
  .l-footer__nav {
    margin-bottom: 300px;
  }
}
@media only screen and (max-width:480px) {
  .l-footer__nav {
    margin-bottom: 200px;
  }
}
.l-footer__nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 0;
  text-align: center;
}
.l-footer__nav ul li {
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  font-weight: 700;
  font-size: clamp(1.1rem, 1.5vw, 1.8rem);
  min-height: 0vw;
  letter-spacing: 0.1em;
  margin: 0 0 1.5em;
  padding: 0;
  text-align: left;
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  text-orientation: upright;
  margin: 0 1.5em;
}
@media only screen and (max-width:768px) {
  .l-footer__nav ul li {
    margin: 0 1em;
  }
}
.l-footer__nav ul li a {
  color: #fff !important;
}
.l-footer__copyright {
  margin: 45px 0 0;
}
.l-footer__copyright p {
  font-family: "EB Garamond", serif;
  font-size: clamp(1.0rem, 2vw, 1.2rem);
  min-height: 0vw;
  font-weight: 400;
  color: #fff;
  text-align: center;
  padding-bottom: 60px;
}
@media only screen and (max-width:480px) {
  .l-footer__copyright p {
    padding-bottom: 30px;
  }
}

/* 3.0 section
--------------------------------------------------------------*/
/* 4.0 contents
--------------------------------------------------------------*/
/*  -------------------------------------
	Content
  -------------------------------------*/
.content {
  padding: 120px 0;
}
@media only screen and (max-width:1200px) {
  .content {
    padding: 90px 0;
  }
}
@media only screen and (max-width:768px) {
  .content {
    padding: 60px 0;
  }
}
@media only screen and (max-width:480px) {
  .content {
    padding: 45px 0;
  }
}
.content .c-title {
  font-weight: 600;
  text-align: center;
  margin: 0;
  letter-spacing: 0.05em;
  font-size: clamp(2.4rem, 2.5vw, 4rem) !important;
  min-height: 0vw;
}
.content .c-title span.sub-title {
  font-family: "Shippori Mincho", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "Noto Serif JP", "HG明朝E", "ＭＳ Ｐ明朝", serif;
  display: block;
  font-size: 40%;
  font-weight: 400;
  margin: 0.5em 0 0;
}
.content p.c-sub_title {
  margin: 0 0 60px;
  font-family: "EB Garamond", serif;
  color: #d4eefa;
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  min-height: 0vw;
}
@media only screen and (max-width:1200px) {
  .content p.c-sub_title {
    margin: 0 0 30px;
  }
}
@media only screen and (max-width:768px) {
  .content p.c-sub_title {
    margin: 0 0 20px;
  }
}
.content .content__txt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
}
.content .content__txt h3 {
  font-family: "Shippori Mincho", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", serif;
  margin: 0 0 20px;
  line-height: 1.4em;
}
@media only screen and (max-width:991px) {
  .content .content__txt h3 {
    font-size: 18px;
  }
}
@media only screen and (max-width:768px) {
  .content .content__txt h3 {
    font-size: 15px;
    margin: 0 0 10px;
  }
}
@media only screen and (max-width:991px) {
  .content .content__txt p {
    font-size: 14px;
  }
}
@media only screen and (max-width:768px) {
  .content .content__txt p {
    font-size: 12px;
  }
}
.content .meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 1em 0 0.5em;
  font-size: 80%;
}
.content .meta .cat {
  color: #037dc1 !important;
  border: 1px solid #037dc1;
  background: #fff;
  border-radius: 5px;
  padding: 0 0.5em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
.content .meta .c-post-date {
  color: #777;
  font-family: "Jost", sans-serif;
}
.content .p-tag {
  margin: 90px auto 0;
  text-align: center;
  width: 60%;
}
@media only screen and (max-width:768px) {
  .content .p-tag {
    width: 80%;
    margin: 60px auto 0;
  }
}
@media only screen and (max-width:480px) {
  .content .p-tag {
    margin: 30px auto 0;
    width: 100%;
  }
}
.content .p-tag__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.content .p-tag__menu li a {
  background: #fff;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 2em;
  margin: 0 0.4em 0.8em;
  border-radius: 30px;
  min-width: 100px;
}
@media only screen and (max-width:480px) {
  .content .p-tag__menu li a {
    height: 30px;
  }
}
.content .p-tag .c-tag-title {
  font-weight: 700;
  font-size: clamp(1.6rem, 2vw, 2.4rem);
  min-height: 0vw;
  margin: 0 0 30px;
  line-height: 1em;
}
.content .p-tag .c-tag-sub_title {
  font-size: clamp(1.4rem, 2vw, 1.8rem);
  min-height: 0vw;
  font-family: "EB Garamond", serif;
  line-height: 1em;
  margin: 0 0 30px;
}

/*  -------------------------------------
	p-page_title
  -------------------------------------*/
.p-page_title {
  padding-bottom: 0;
}
.p-page_title .c-title {
  margin: 0;
  font-size: clamp(2.4rem, 2.5vw, 4.8rem) !important;
  min-height: 0vw;
  letter-spacing: 0.1em;
}

/*  -------------------------------------
	linkBtn
  -------------------------------------*/
.linkBtn_l {
  width: 270px;
  height: 60px;
  border-radius: 30px;
  position: relative;
  background: #d4eefa;
  color: #fff !important;
  border-radius: 5px;
  margin: 45px auto 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 700;
  overflow: hidden;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media only screen and (max-width:1200px) {
  .linkBtn_l {
    margin: 60px auto 0;
  }
}
@media only screen and (max-width:768px) {
  .linkBtn_l {
    height: 50px;
    width: 150px;
    margin: 45px auto 0;
  }
}
@media only screen and (max-width:480px) {
  .linkBtn_l {
    width: 100%;
    margin: 20px auto 0;
    height: 40px;
  }
}
.linkBtn_l:hover span {
  color: #000 !important;
  z-index: 999;
  -webkit-transition: 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transition: 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
}

.linkBtn {
  width: 270px;
  height: 70px;
  background: url(assets/img/common/btn_w.png) no-repeat;
  border-radius: 10px;
  color: #000 !important;
  font-weight: 500;
  padding: 4px 20px;
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  min-height: 0vw;
  margin: 20px 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  overflow: hidden;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  position: relative;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
.linkBtn:hover {
  opacity: 0.6;
}
@media only screen and (max-width:1360px) {
  .linkBtn {
    width: 240px;
  }
}
@media only screen and (max-width:1200px) {
  .linkBtn {
    width: 200px;
    height: 50px;
    font-size: clamp(1.2rem, 2vw, 1.4rem);
  }
}
@media only screen and (max-width:767px) {
  .linkBtn {
    width: 150px;
    height: 40px;
  }
}
/*== 背景が流れる（左から右） */
.bgleft:before {
  content: "";
  /*絶対配置で位置を指定*/
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  /*色や形状*/
  background: #085274;
  /*背景色*/
  width: 100%;
  height: 100%;
  /*アニメーション*/
  -webkit-transition: -webkit-transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transition: -webkit-transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transition: transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transition: transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s, -webkit-transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: right top;
          transform-origin: right top;
}

/*hoverした際の形状*/
.bgleft:hover:before {
  -webkit-transform-origin: left top;
          transform-origin: left top;
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
  color: #000 !important;
}

/*  -------------------------------------
	Top
  -------------------------------------*/
#top {
  padding: 140px 0 0;
  position: relative;
  height: calc(100vh -140px);
}
@media only screen and (max-width:812px) {
  #top {
    padding: 110px 0 0;
    height: calc(100vh -110px);
  }
}
@media only screen and (max-width:480px) {
  #top {
    height: calc(100vh -70px);
    padding: 70px 0 0;
  }
}
#top .container-fluid {
  padding: 0;
}
@media only screen and (max-width:767px) {
  #top .container-fluid {
    padding: 0 15px;
  }
}
#top .container-fluid .row {
  position: relative;
}
#top .container-fluid .row .top_menu {
  position: absolute;
  left: 60px;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
@media only screen and (max-width:991px) {
  #top .container-fluid .row .top_menu {
    display: none;
  }
}
#top .container-fluid .row .top_menu ul {
  margin: 0;
}
#top .container-fluid .row .top_menu ul li {
  font-size: clamp(1.2rem, 1.5vw, 1.8rem);
  min-height: 0vw;
  font-weight: 600;
  line-height: 3em;
  margin: 0;
  color: #085274;
  letter-spacing: 0.05em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
@media only screen and (max-width:1200px) {
  #top .container-fluid .row .top_menu ul li {
    font-size: clamp(1.2rem, 3vw, 1.5rem);
  }
}
#top .container-fluid .row .top_menu a.linkBtn {
  background: url(assets/img/common/btn.png) repeat-x;
  height: 50px;
  margin-top: 2em;
  background-size: cover !important;
}
#top .container-fluid .row .top_menu a.linkBtn:hover {
  background: url(assets/img/common/btn_r.png) repeat-x !important;
  color: #fff !important;
  opacity: 1;
  background-size: cover !important;
}
#top .container-fluid .col-lg-8 {
  padding: 0;
  position: relative;
}
#top .container-fluid .col-lg-8 .slogan {
  position: absolute;
  left: 60px;
  bottom: 60px;
}
@media only screen and (max-width:480px) {
  #top .container-fluid .col-lg-8 .slogan {
    left: 30px;
    bottom: 30px;
  }
}
#top .container-fluid .col-lg-8 .slogan p {
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  text-orientation: upright;
  font-size: clamp(4rem, 3vw, 8em);
  min-height: 0vw;
  font-weight: 700;
  color: #fff;
}
@media only screen and (max-width:480px) {
  #top .container-fluid .col-lg-8 .slogan p {
    font-size: 2.5rem;
  }
}
#top .container-fluid .col-lg-8 .slick1 {
  overflow: hidden;
}
#top .container-fluid .col-lg-8 .slick1 div {
  aspect-ratio: 16/9;
  width: 100%;
  height: auto;
  margin: 0;
  border-radius: 60px 0 0 60px;
}
@media only screen and (max-width:991px) {
  #top .container-fluid .col-lg-8 .slick1 div {
    border-radius: 0;
  }
}
#top .container-fluid .col-lg-8 .slick1 div.img01 {
  background-image: url(assets/img/slide/slide1.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
#top .container-fluid .col-lg-8 .slick1 div.img02 {
  background-image: url(assets/img/slide/slide2.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
#top .container-fluid .col-lg-8 .slick1 div.img03 {
  background-image: url(assets/img/slide/slide3.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
#top .container-fluid .col-lg-8 .slick1 div.img04 {
  background-image: url(assets/img/slide/slide4.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
#top .container-fluid .col-lg-8 .slick1 div.img05 {
  background-image: url(assets/img/slide/slide5.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
#top .container-fluid .col-lg-8 .slick1 div.img06 {
  background-image: url(assets/img/slide/slide6.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
#top .container-fluid .col-lg-8 .slick1 div.img07 {
  background-image: url(assets/img/slide/slide6.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
#top .container-fluid .col-lg-8 .slick1 div.img08 {
  background-image: url(assets/img/slide/slide6.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
#top .container-fluid .col-lg-8 .slick-dotted.slick-slider {
  margin-bottom: 0px !important;
}

/*  -------------------------------------
	Top-statement
  -------------------------------------*/
#top-statement .container-fluid {
  padding-left: 0;
  padding-right: 0;
}
#top-statement .col-sm-12 h2 {
  text-align: left;
  margin: 0 0 90px;
  line-height: 1.4em;
}
#top-statement .col-sm-12 .statement-text {
  height: 430px;
  margin-bottom: 90px;
  position: relative;
}
@media only screen and (max-width:768px) {
  #top-statement .col-sm-12 .statement-text {
    height: auto;
    padding-bottom: 0px;
  }
}
@media only screen and (max-width:480px) {
  #top-statement .col-sm-12 .statement-text {
    margin-bottom: 60px;
  }
}
#top-statement .col-sm-12 .statement-text a {
  position: absolute;
  right: 0;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
#top-statement .col-sm-12 .statement-text a:hover {
  opacity: 0.6 !important;
}
#top-statement .col-sm-12 .statement-text a:before {
  content: "";
  background: url(assets/img/common/bg_border01.png) repeat-x left top;
  background-size: auto 100%;
  display: block;
  width: 100%;
  height: 1px;
  margin-top: 5px;
  position: absolute;
  left: 0;
  bottom: 0;
}
#top-statement .col-sm-12 .statement-text a:after {
  content: "";
  background: url(assets/img/icon/chevron.svg) no-repeat;
  background-size: contain;
  width: 8px;
  height: 14px;
  display: block;
  margin-left: 0.5em;
}
@media only screen and (max-width:768px) {
  #top-statement .col-sm-12 .statement-text a {
    position: relative;
    display: inline-block;
    margin-top: 30px;
    padding-right: 1.5em;
  }
  #top-statement .col-sm-12 .statement-text a:after {
    position: absolute;
    right: 0;
    top: 50%;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    width: 6px;
    height: 12px;
  }
}
#top-statement .col-sm-12 .statement-text:after {
  content: "";
  display: block;
  background: url(assets/img/top/top-message.png) no-repeat;
  background-size: contain;
  height: 200px;
  width: 30%;
  position: absolute;
  left: -90px;
  bottom: 0;
  opacity: 0;
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
}
@media only screen and (max-width:1360px) {
  #top-statement .col-sm-12 .statement-text:after {
    height: 180px;
    left: -15px;
  }
}
@media only screen and (max-width:1200px) {
  #top-statement .col-sm-12 .statement-text:after {
    height: 140px;
    left: -20px;
  }
}
@media only screen and (max-width:991px) {
  #top-statement .col-sm-12 .statement-text:after {
    left: inherit;
    right: -60px;
    height: 110px;
    bottom: 80px;
  }
}
@media only screen and (max-width:768px) {
  #top-statement .col-sm-12 .statement-text:after {
    right: inherit;
    bottom: inherit;
    width: 40%;
    left: 0;
    top: 20%;
  }
}
#top-statement .col-sm-12 .statement-text__inner {
  position: absolute;
  right: 0;
  top: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  height: 430px;
}
@media only screen and (max-width:768px) {
  #top-statement .col-sm-12 .statement-text__inner {
    display: block;
    height: auto;
    position: static;
    text-align: right;
  }
}
#top-statement .col-sm-12 .statement-text h2 {
  font-size: clamp(2rem, 2vw, 3rem) !important;
  min-height: 0vw;
  font-weight: 600;
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  text-orientation: upright;
  letter-spacing: 0.14em;
  line-height: 1.8em;
  /*@media only screen and (max-width:768px){
  	writing-mode: horizontal-tb;
  	-ms-writing-mode:horizontal-tb;
  	margin: 0 0 1em;
  	font-size: clamp(1.8rem, 1.5vw, 3rem) !important;
  	letter-spacing: 0.1em;
  	br{
  		display: none;
  	}
  }
  span{
  	@media only screen and (max-width:768px){
  		display: block;
  	}
  }*/
}
@media only screen and (max-width:768px) {
  #top-statement .col-sm-12 .statement-text h2 {
    display: inline-block;
    margin-bottom: 20px;
  }
}
#top-statement .col-sm-12 .statement-text p {
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  text-orientation: upright;
  font-size: clamp(1.6rem, 1.5vw, 2rem);
  min-height: 0vw;
  line-height: 2.4em;
  margin-top: 60px;
  margin-right: 60px;
  letter-spacing: 0.12em;
}
@media only screen and (max-width:991px) {
  #top-statement .col-sm-12 .statement-text p {
    font-size: clamp(1.4rem, 3vw, 1.8rem);
  }
}
@media only screen and (max-width:768px) {
  #top-statement .col-sm-12 .statement-text p {
    -webkit-writing-mode: horizontal-tb;
            writing-mode: horizontal-tb;
    -ms-writing-mode: horizontal-tb;
    margin: 0;
    font-size: clamp(1.2rem, 1.5vw, 1.6rem) !important;
    letter-spacing: 0.08em;
    text-align: left;
  }
  #top-statement .col-sm-12 .statement-text p br {
    display: none;
  }
}
#top-statement .col-sm-12 .statement-text.is-visible:after {
  opacity: 1;
  -webkit-transition-delay: 1.2s;
          transition-delay: 1.2s;
}
#top-statement .statement-gallery__post {
  width: 400px;
}
@media only screen and (max-width:480px) {
  #top-statement .statement-gallery__post {
    width: 200px;
  }
}
#top-statement .statement-gallery__post img {
  aspect-ratio: 3/2;
  width: 100%;
}

/*  -------------------------------------
	Top-brand
  -------------------------------------*/
#top-brand {
  padding-bottom: 0;
}
#top-brand .container-fluid {
  padding-left: 0;
  padding-right: 0;
}
#top-brand .container-fluid h2 {
  margin: 0 0 30px;
}
@media only screen and (max-width:480px) {
  #top-brand .container-fluid h2 {
    margin: 0 0 20px 15px;
  }
}
@media only screen and (max-width:480px) {
  #top-brand .container-fluid p {
    padding-left: 15px;
    padding-right: 15px;
  }
}
#top-brand .container-fluid .large-bnr, #top-brand .container-fluid .small-bnr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media only screen and (max-width:768px) {
  #top-brand .container-fluid .large-bnr, #top-brand .container-fluid .small-bnr {
    display: block;
  }
}
#top-brand .container-fluid .large-bnr__content, #top-brand .container-fluid .small-bnr__content {
  -ms-flex-preferred-size: calc(50% - 3px);
      flex-basis: calc(50% - 3px);
  position: relative;
  aspect-ratio: 16/9;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  padding: 30px;
  overflow: hidden;
}
@media only screen and (max-width:768px) {
  #top-brand .container-fluid .large-bnr__content, #top-brand .container-fluid .small-bnr__content {
    margin-bottom: 6px;
  }
}
@media only screen and (max-width:480px) {
  #top-brand .container-fluid .large-bnr__content, #top-brand .container-fluid .small-bnr__content {
    padding: 15px;
  }
}
#top-brand .container-fluid .large-bnr__content:hover:after, #top-brand .container-fluid .small-bnr__content:hover:after {
  opacity: 0.8;
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
#top-brand .container-fluid .large-bnr__content:after, #top-brand .container-fluid .small-bnr__content:after {
  position: absolute;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
#top-brand .container-fluid .large-bnr__content:before, #top-brand .container-fluid .small-bnr__content:before {
  background: rgba(33, 33, 33, 0.5);
  content: "";
  background: -webkit-gradient(linear, left bottom, left top, from(black), color-stop(50%, rgba(0, 0, 0, 0.3)), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(0deg, black 0%, rgba(0, 0, 0, 0.3) 50%, rgba(255, 255, 255, 0) 100%);
  opacity: 0.7 !important;
  position: absolute !important;
  height: 60% !important;
  width: 100% !important;
  left: 0px !important;
  bottom: 0px !important;
  z-index: 2;
}
#top-brand .container-fluid .large-bnr__content:nth-of-type(1):after, #top-brand .container-fluid .small-bnr__content:nth-of-type(1):after {
  background: url(assets/img/top/large-bnr1.jpg);
  background-size: cover;
  background-position: center center;
}
#top-brand .container-fluid .large-bnr__content:nth-of-type(2):after, #top-brand .container-fluid .small-bnr__content:nth-of-type(2):after {
  background: url(assets/img/top/large-bnr2.jpg);
  background-size: cover;
  background-position: center center;
}
#top-brand .container-fluid .large-bnr__text, #top-brand .container-fluid .small-bnr__text {
  color: #fff;
  z-index: 3;
}
#top-brand .container-fluid .large-bnr__text h3, #top-brand .container-fluid .small-bnr__text h3 {
  font-weight: 700;
}
@media only screen and (max-width:1200px) {
  #top-brand .container-fluid .large-bnr__text h3, #top-brand .container-fluid .small-bnr__text h3 {
    font-size: clamp(1.4rem, 3vw, 1.8rem);
  }
}
@media only screen and (max-width:991px) {
  #top-brand .container-fluid .large-bnr__text h3 br, #top-brand .container-fluid .small-bnr__text h3 br {
    display: none;
  }
}
@media only screen and (max-width:812px) {
  #top-brand .container-fluid .large-bnr__text h3, #top-brand .container-fluid .small-bnr__text h3 {
    font-size: clamp(1.4rem, 3vw, 1.6rem);
  }
}
#top-brand .container-fluid .large-bnr {
  margin-top: 60px;
}
#top-brand .container-fluid .small-bnr {
  margin-top: 6px;
}
@media only screen and (max-width:768px) {
  #top-brand .container-fluid .small-bnr {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
@media only screen and (max-width:480px) {
  #top-brand .container-fluid .small-bnr__text h3 {
    margin-bottom: 0;
  }
}
#top-brand .container-fluid .small-bnr__content {
  -ms-flex-preferred-size: calc(25% - 4.5px);
      flex-basis: calc(25% - 4.5px);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 20px;
}
@media only screen and (max-width:768px) {
  #top-brand .container-fluid .small-bnr__content {
    -ms-flex-preferred-size: calc(50% - 3px);
        flex-basis: calc(50% - 3px);
  }
}
@media only screen and (max-width:480px) {
  #top-brand .container-fluid .small-bnr__content {
    padding: 15px;
  }
}
#top-brand .container-fluid .small-bnr__content:nth-of-type(1):after {
  background: url(assets/img/top/small-bnr1.jpg);
  background-size: cover;
  background-position: center center;
}
#top-brand .container-fluid .small-bnr__content:nth-of-type(2):after {
  background: url(assets/img/top/small-bnr2.jpg);
  background-size: cover;
  background-position: center center;
}
#top-brand .container-fluid .small-bnr__content:nth-of-type(3):after {
  background: url(assets/img/top/small-bnr3.jpg);
  background-size: cover;
  background-position: center center;
}
@media only screen and (max-width:768px) {
  #top-brand .container-fluid .small-bnr__content:nth-of-type(3) {
    margin-bottom: 0;
  }
}
#top-brand .container-fluid .small-bnr__content:nth-of-type(4):after {
  background: url(assets/img/top/small-bnr4.jpg);
  background-size: cover;
  background-position: center center;
}
@media only screen and (max-width:768px) {
  #top-brand .container-fluid .small-bnr__content:nth-of-type(4) {
    margin-bottom: 0;
  }
}

/*  -------------------------------------
	Top-products
  -------------------------------------*/
#top-products {
  background: #f2ece0;
  padding-bottom: 150px;
}
@media only screen and (max-width:480px) {
  #top-products {
    padding-bottom: 45px;
  }
}
#top-products .section-title {
  margin-bottom: 60px;
}
@media only screen and (max-width:480px) {
  #top-products .section-title {
    margin-bottom: 30px;
  }
}
#top-products .section-title a.p-more {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
#top-products .section-title a.p-more:hover {
  opacity: 0.6;
}
#top-products .slick-items__img {
  height: auto;
  margin: 0 15px;
}
#top-products .slick-items__img img {
  aspect-ratio: 3/2;
  width: 100%;
  border-radius: 5px;
  -o-object-fit: contain;
     object-fit: contain;
}
#top-products .slick-items__img .linkBtn {
  margin: 20px auto 0;
}
#top-products .slick-items__title {
  margin-top: 20px;
}
#top-products .slick-dots {
  bottom: -75px;
}
#top-products .linkBtn {
  margin: 120px auto 0;
}
@media only screen and (max-width:767px) {
  #top-products .linkBtn {
    width: 200px;
    height: 50px;
  }
}
#top-products .linkBtn:hover {
  background: url(assets/img/common/btn_r.png) repeat-x !important;
  color: #fff !important;
  opacity: 1;
  background-size: cover !important;
}

/*  -------------------------------------
	Top-ume-contents
  -------------------------------------*/
#top-ume-contents {
  position: relative;
  padding-bottom: 0;
}
#top-ume-contents .container {
  z-index: 2;
  position: relative;
}
#top-ume-contents .container:after {
  content: "";
  background: url(assets/img/common/bg_border01.png) repeat-x left top;
  background-size: auto 100%;
  display: block;
  width: 100%;
  height: 1px;
  margin-top: 120px;
}
@media only screen and (max-width:768px) {
  #top-ume-contents .container:after {
    margin-top: 60px;
  }
}
#top-ume-contents .ume-contents-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  margin: 0 0 60px;
}
#top-ume-contents .ume-contents-header:after {
  content: "";
  display: block;
  background: url(assets/img/top/top-ume.png) no-repeat;
  background-size: contain;
  height: 146px;
  width: 206px;
  position: absolute;
  right: 0;
  bottom: 0;
  opacity: 0;
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
}
@media only screen and (max-width:991px) {
  #top-ume-contents .ume-contents-header:after {
    height: 110px;
    width: 160px;
    right: -50px;
  }
}
@media only screen and (max-width:480px) {
  #top-ume-contents .ume-contents-header:after {
    height: 70px;
    width: 100px;
    right: -20px;
  }
}
#top-ume-contents .ume-contents-header h2 {
  font-size: clamp(2rem, 2vw, 3rem) !important;
  min-height: 0vw;
  font-weight: 600;
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  text-orientation: upright;
  letter-spacing: 0.14em;
  line-height: 1.8em;
}
#top-ume-contents .ume-contents-header p {
  margin-left: 120px;
  width: 60%;
}
@media only screen and (max-width:768px) {
  #top-ume-contents .ume-contents-header p {
    margin-left: 90px;
  }
}
@media only screen and (max-width:687px) {
  #top-ume-contents .ume-contents-header p {
    margin-left: 45px;
  }
}
@media only screen and (max-width:480px) {
  #top-ume-contents .ume-contents-header p {
    margin-left: 30px;
  }
}
#top-ume-contents .ume-contents-header.is-visible:after {
  opacity: 1;
  -webkit-transition-delay: 1s;
          transition-delay: 1s;
}
#top-ume-contents .ume-contents-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media only screen and (max-width:768px) {
  #top-ume-contents .ume-contents-wrap {
    display: block;
  }
}
#top-ume-contents .ume-contents-wrap .ume-contents {
  -ms-flex-preferred-size: 49%;
      flex-basis: 49%;
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}
#top-ume-contents .ume-contents-wrap .ume-contents__farmer {
  position: absolute;
  left: 30px;
  bottom: 30px;
  background: url(assets/img/common/btn_w.png) no-repeat;
  background-size: contain;
  width: 270px;
  height: 70px;
  padding: 5px 15px 0;
  z-index: 2;
}
@media only screen and (max-width:991px) {
  #top-ume-contents .ume-contents-wrap .ume-contents__farmer {
    left: 20px;
    bottom: 20px;
  }
}
@media only screen and (max-width:768px) {
  #top-ume-contents .ume-contents-wrap .ume-contents__farmer {
    padding: 5px 15px 0;
    width: 220px;
  }
}
@media only screen and (max-width:480px) {
  #top-ume-contents .ume-contents-wrap .ume-contents__farmer {
    width: 170px;
    padding: 3px 15px 0;
    bottom: 0;
  }
}
#top-ume-contents .ume-contents-wrap .ume-contents__farmer p {
  margin: 0;
}
#top-ume-contents .ume-contents-wrap .ume-contents__farmer h3 {
  margin: 0;
  font-size: clamp(1.3rem, 2vw, 2.2rem) !important;
}
@media only screen and (max-width:1200px) {
  #top-ume-contents .ume-contents-wrap .ume-contents__farmer h3 {
    font-size: clamp(1.3rem, 2vw, 2.2rem) !important;
  }
}
@media only screen and (max-width:768px) {
  #top-ume-contents .ume-contents-wrap .ume-contents {
    margin-bottom: 30px;
  }
  #top-ume-contents .ume-contents-wrap .ume-contents:last-of-type {
    margin-bottom: 0;
  }
}
#top-ume-contents .ume-contents-wrap .ume-contents a {
  overflow: hidden;
}
#top-ume-contents .ume-contents-wrap .ume-contents a:hover:after {
  opacity: 0.8;
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
#top-ume-contents .ume-contents-wrap .ume-contents a:after {
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
#top-ume-contents .ume-contents-wrap .ume-contents:nth-of-type(1) a:after {
  content: "";
  background: url(assets/img/top/ume-contents-img1.jpg) no-repeat;
  background-size: cover;
  width: 100%;
  height: auto;
  aspect-ratio: 5/4;
  display: block;
  border-radius: 20px;
}
#top-ume-contents .ume-contents-wrap .ume-contents:nth-of-type(2) a:after {
  content: "";
  background: url(assets/img/top/ume-contents-img3.jpg) no-repeat;
  background-size: cover;
  width: 100%;
  height: auto;
  aspect-ratio: 5/4;
  display: block;
  border-radius: 20px;
}
#top-ume-contents a.linkBtn {
  margin: 30px auto 0;
  background: #fff;
}

/*  -------------------------------------
	Top-magazine
  -------------------------------------*/
#top-magazine .col-sm-12 {
  position: relative;
}
#top-magazine .col-sm-12 .content-title {
  margin: 0 0 60px;
  text-align: center;
}
@media only screen and (max-width:991px) {
  #top-magazine .col-sm-12 .content-title {
    display: block;
  }
}
@media only screen and (max-width:480px) {
  #top-magazine .col-sm-12 .content-title {
    margin: 0 0 30px;
  }
}
#top-magazine .col-sm-12 .content-title .c-title {
  margin: 0 0 30px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#top-magazine .col-sm-12 .content-title .c-title:before {
  content: "";
  background: url(assets/img/icon/top-book.png) no-repeat;
  background-size: contain;
  display: block;
  width: 60px;
  height: 34px;
  margin-right: 0.5em;
}
#top-magazine .col-sm-12 .magazine-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media only screen and (max-width:991px) {
  #top-magazine .col-sm-12 .magazine-content {
    display: block;
  }
}
#top-magazine .col-sm-12 .magazine-content__tag {
  width: 30%;
  margin-left: 60px;
}
@media only screen and (max-width:991px) {
  #top-magazine .col-sm-12 .magazine-content__tag {
    width: 100%;
    margin-bottom: 3em;
    margin-left: 0px;
  }
}
#top-magazine .col-sm-12 .magazine-content__tag ul li {
  line-height: 2em;
}
#top-magazine .col-sm-12 .magazine-content__tag p {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 600;
  min-height: 0vw;
  margin: 0 0 20px;
  position: relative;
}
#top-magazine .col-sm-12 .magazine-content__tag p:after {
  content: "";
  background: url(assets/img/common/bg_border01.png) repeat-x left top;
  background-size: auto 100%;
  display: block;
  width: 280px;
  height: 1px;
  margin-top: 5px;
}
@media only screen and (max-width:1360px) {
  #top-magazine .col-sm-12 .magazine-content__tag p:after {
    width: 240px;
  }
}
@media only screen and (max-width:1200px) {
  #top-magazine .col-sm-12 .magazine-content__tag p:after {
    width: 180px;
  }
}
@media only screen and (max-width:991px) {
  #top-magazine .col-sm-12 .magazine-content__tag p:after {
    width: 100%;
  }
}
@media only screen and (max-width:991px) {
  #top-magazine .col-sm-12 .magazine-content__tag ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
@media only screen and (max-width:991px) {
  #top-magazine .col-sm-12 .magazine-content__tag ul li {
    margin: 0 1em 1em 0;
    position: relative;
  }
  #top-magazine .col-sm-12 .magazine-content__tag ul li:after {
    content: "｜";
    margin-left: 1em;
  }
  #top-magazine .col-sm-12 .magazine-content__tag ul li:last-child:after {
    display: none;
  }
}
#top-magazine .col-sm-12 .magazine-content__tag a.linkBtn {
  background: #f2ece0;
  margin: 30px 0 0;
}
#top-magazine .col-sm-12 .magazine-content__post {
  width: 70%;
}
@media only screen and (max-width:991px) {
  #top-magazine .col-sm-12 .magazine-content__post {
    width: 100%;
  }
}
#top-magazine .col-sm-12 .magazine-content__post img {
  width: 100%;
  border-radius: 10px;
}
#top-magazine .col-sm-12 .magazine-content__post .magazine-desc {
  margin-right: 1em;
}
#top-magazine .col-sm-12 .magazine-content__post .m-title {
  font-size: clamp(1.2rem, 1.5vw, 2rem);
  line-height: 1.4em;
  font-weight: 600;
  min-height: 0vw;
}

.m-tag {
  color: #af2e42 !important;
  font-size: clamp(1rem, 1.5vw, 1.3rem);
  border: 1px solid #af2e42;
  border-radius: 5px;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  letter-spacing: 0.01em;
  font-weight: 400;
  line-height: 1em;
  padding: 4px 8px;
  margin: 20px 0 10px;
  display: inline-block;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media only screen and (max-width:480px) {
  .m-tag {
    padding: 1px 5px;
  }
}
.m-tag:hover {
  background: #af2e42;
  color: #fff !important;
  border: 1px solid #af2e42 !important;
}

/*  -------------------------------------
	Top-news
  -------------------------------------*/
#top-news .col-sm-12 {
  padding-left: 90px;
}
@media only screen and (max-width:991px) {
  #top-news .col-sm-12 {
    padding-left: 30px;
  }
}
#top-news .col-sm-12 .news-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media only screen and (max-width:991px) {
  #top-news .col-sm-12 .news-content {
    display: block;
  }
}
#top-news .col-sm-12 .news-content__title {
  width: 30%;
}
@media only screen and (max-width:991px) {
  #top-news .col-sm-12 .news-content__title {
    width: 100%;
    margin-bottom: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
#top-news .col-sm-12 .news-content__title a.linkBtn {
  background: #f2ece0;
}
#top-news .col-sm-12 .news-content__title a.linkBtn:hover {
  background: url(assets/img/common/btn_r.png) repeat-x !important;
  color: #fff !important;
  opacity: 1;
  background-size: cover !important;
}
@media only screen and (max-width:480px) {
  #top-news .col-sm-12 .news-content__title {
    margin-bottom: 15px;
  }
}
#top-news .col-sm-12 .news-content__list {
  width: 70%;
}
@media only screen and (max-width:991px) {
  #top-news .col-sm-12 .news-content__list {
    width: calc(100% - 30px);
  }
}
#top-news .c-title {
  text-align: left;
  margin-bottom: 1em;
}
@media only screen and (max-width:767px) {
  #top-news {
    margin-bottom: 1.5em;
  }
}
#top-news dl {
  margin: 0;
  padding: 2em 0;
  position: relative;
}
#top-news dl:after {
  content: "";
  background: url(assets/img/common/bg_border01.png) repeat-x left top;
  background-size: auto 100%;
  display: block;
  width: 100%;
  height: 1px;
  margin-top: 30px;
}
@media only screen and (max-width:480px) {
  #top-news dl {
    padding: 20px 0;
    display: block;
  }
}
#top-news dl dt {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 1em;
}
#top-news dl dt span.p-date {
  font-family: "EB Garamond", serif;
  font-weight: 400;
  color: #777;
  margin: 0 1em 0 0;
}
#top-news dl dt span.p-tag {
  max-width: auto;
  margin: 0;
  padding: 0;
  text-align: left;
}
#top-news dl dt span.p-tag a {
  margin: 0;
}
#top-news dl dd {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media only screen and (max-width:687px) {
  #top-news dl dd {
    display: block;
  }
}
#top-news dl dd span.p-title {
  -ms-flex-preferred-size: 80%;
      flex-basis: 80%;
  font-size: clamp(1.4rem, 1.5vw, 1.8rem);
  font-weight: 600;
  min-height: 0vw;
}
#top-news dl dd a.p-more {
  -ms-flex-preferred-size: 20%;
      flex-basis: 20%;
  text-align: right;
  font-size: clamp(1.2rem, 1.5vw, 1.4rem);
  min-height: 0vw;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  position: relative;
  padding-right: 1.5em;
  letter-spacing: 0.01em;
}
#top-news dl dd a.p-more:after {
  content: "";
  background: url(assets/img/icon/chevron.svg) no-repeat;
  background-size: contain;
  width: 8px;
  height: 12px;
  display: block;
  margin-left: 0.5em;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  margin-top: 1px;
}
@media only screen and (max-width:768px) {
  #top-news dl dd a.p-more:after {
    width: 6px;
    height: 10px;
  }
}
#top-news dl dd a.p-more:hover {
  opacity: 0.6;
}
@media only screen and (max-width:687px) {
  #top-news dl dd a.p-more {
    display: block;
    font-size: 1.1rem;
    margin-top: 0.75em;
  }
}

/*  -------------------------------------
	Top-link
  -------------------------------------*/
#top-link .col-sm-6 {
  padding-left: 30px;
  padding-right: 30px;
  margin-bottom: 30px;
}
#top-link .col-sm-6 h3 {
  text-align: center;
  font-family: "EB Garamond", serif;
  margin-bottom: 15px;
}
@media only screen and (max-width:812px) {
  #top-link .col-sm-6 h3 {
    font-size: 16px;
  }
}
@media only screen and (max-width:480px) {
  #top-link .col-sm-6 h3 {
    font-size: 14px;
    margin: 15px 0 10px;
  }
}
#top-link .col-sm-6 .linkBtn {
  margin: 30px auto 0;
}
@media only screen and (max-width:480px) {
  #top-link .col-sm-6 .linkBtn {
    margin: 15px auto 0;
    width: 150px;
  }
}

/*  -------------------------------------
	Top-contact
  -------------------------------------*/
#top-contact .p-top-contact__detail {
  text-align: center;
}
#top-contact .p-top-contact__detail p {
  font-size: 120%;
}
@media only screen and (max-width:480px) {
  #top-contact .p-top-contact__detail p {
    font-size: 100%;
  }
}
#top-contact .p-top-contact__detail .linkBtn {
  margin-top: 45px;
}
@media only screen and (max-width:480px) {
  #top-contact .p-top-contact__detail .linkBtn {
    margin-top: 20px;
  }
}

/*  -------------------------------------
	page
  -------------------------------------*/
.page .p-pankuzu, .archive .p-pankuzu, .single .p-pankuzu, .search .p-pankuzu {
  padding: 22px 0;
  line-height: 1em;
  font-family: "EB Garamond", serif;
}

/*  -------------------------------------
	archive / single
  -------------------------------------*/
.archive .page-top, .single .page-top, .all-news .page-top, .search .page-top {
  height: 480px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-bottom: 60px;
}
@media only screen and (max-width:1200px) {
  .archive .page-top, .single .page-top, .all-news .page-top, .search .page-top {
    height: 400px;
    padding-bottom: 30px;
  }
}
@media only screen and (max-width:991px) {
  .archive .page-top, .single .page-top, .all-news .page-top, .search .page-top {
    height: 360px;
  }
}
@media only screen and (max-width:812px) {
  .archive .page-top, .single .page-top, .all-news .page-top, .search .page-top {
    height: 300px;
  }
}
@media only screen and (max-width:768px) {
  .archive .page-top, .single .page-top, .all-news .page-top, .search .page-top {
    height: 270px;
    padding-bottom: 0px;
  }
}
@media only screen and (max-width:480px) {
  .archive .page-top, .single .page-top, .all-news .page-top, .search .page-top {
    height: 200px;
    margin-top: 10px;
  }
}
.archive .page-top h1, .single .page-top h1, .all-news .page-top h1, .search .page-top h1 {
  margin: 0;
}
.archive .p-pankuzu__inner, .single .p-pankuzu__inner, .all-news .p-pankuzu__inner, .search .p-pankuzu__inner {
  width: 1200px;
  margin: 0 auto;
}
@media only screen and (max-width:1360px) {
  .archive .p-pankuzu__inner, .single .p-pankuzu__inner, .all-news .p-pankuzu__inner, .search .p-pankuzu__inner {
    width: 90%;
  }
}
.archive .archive-content, .archive .entry-content, .single .archive-content, .single .entry-content, .all-news .archive-content, .all-news .entry-content, .search .archive-content, .search .entry-content {
  background: #f2ece0;
}
.archive .archive-content__eyecatch, .archive .entry-content__eyecatch, .single .archive-content__eyecatch, .single .entry-content__eyecatch, .all-news .archive-content__eyecatch, .all-news .entry-content__eyecatch, .search .archive-content__eyecatch, .search .entry-content__eyecatch {
  margin-top: 0 !important;
}
.archive .archive-content__inner, .archive .entry-content__inner, .single .archive-content__inner, .single .entry-content__inner, .all-news .archive-content__inner, .all-news .entry-content__inner, .search .archive-content__inner, .search .entry-content__inner {
  width: 1200px;
  margin: 0 auto;
  background: #fff;
  padding: 60px;
  border-radius: 10px;
}
@media only screen and (max-width:1360px) {
  .archive .archive-content__inner, .archive .entry-content__inner, .single .archive-content__inner, .single .entry-content__inner, .all-news .archive-content__inner, .all-news .entry-content__inner, .search .archive-content__inner, .search .entry-content__inner {
    width: 90%;
  }
}
@media only screen and (max-width:768px) {
  .archive .archive-content__inner, .archive .entry-content__inner, .single .archive-content__inner, .single .entry-content__inner, .all-news .archive-content__inner, .all-news .entry-content__inner, .search .archive-content__inner, .search .entry-content__inner {
    padding: 45px;
  }
}
@media only screen and (max-width:480px) {
  .archive .archive-content__inner, .archive .entry-content__inner, .single .archive-content__inner, .single .entry-content__inner, .all-news .archive-content__inner, .all-news .entry-content__inner, .search .archive-content__inner, .search .entry-content__inner {
    padding: 30px;
  }
}
.archive .archive-content__inner img, .archive .entry-content__inner img, .single .archive-content__inner img, .single .entry-content__inner img, .all-news .archive-content__inner img, .all-news .entry-content__inner img, .search .archive-content__inner img, .search .entry-content__inner img {
  border-radius: 10px;
  margin: 2em 0;
  width: 100%;
}
.archive .archive-content__inner p, .archive .entry-content__inner p, .single .archive-content__inner p, .single .entry-content__inner p, .all-news .archive-content__inner p, .all-news .entry-content__inner p, .search .archive-content__inner p, .search .entry-content__inner p {
  line-height: 2em;
}
.archive .archive-content__inner dl, .archive .entry-content__inner dl, .single .archive-content__inner dl, .single .entry-content__inner dl, .all-news .archive-content__inner dl, .all-news .entry-content__inner dl, .search .archive-content__inner dl, .search .entry-content__inner dl {
  margin: 0;
  padding: 2em 0;
  position: relative;
}
.archive .archive-content__inner dl:after, .archive .entry-content__inner dl:after, .single .archive-content__inner dl:after, .single .entry-content__inner dl:after, .all-news .archive-content__inner dl:after, .all-news .entry-content__inner dl:after, .search .archive-content__inner dl:after, .search .entry-content__inner dl:after {
  content: "";
  background: url(assets/img/common/bg_border01.png) repeat-x left top;
  background-size: auto 100%;
  display: block;
  width: 100%;
  height: 1px;
  margin-top: 30px;
}
@media only screen and (max-width:480px) {
  .archive .archive-content__inner dl, .archive .entry-content__inner dl, .single .archive-content__inner dl, .single .entry-content__inner dl, .all-news .archive-content__inner dl, .all-news .entry-content__inner dl, .search .archive-content__inner dl, .search .entry-content__inner dl {
    padding: 20px 0;
    display: block;
  }
}
.archive .archive-content__inner dl dt, .archive .entry-content__inner dl dt, .single .archive-content__inner dl dt, .single .entry-content__inner dl dt, .all-news .archive-content__inner dl dt, .all-news .entry-content__inner dl dt, .search .archive-content__inner dl dt, .search .entry-content__inner dl dt {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 1em;
}
.archive .archive-content__inner dl dt span.p-date, .archive .entry-content__inner dl dt span.p-date, .single .archive-content__inner dl dt span.p-date, .single .entry-content__inner dl dt span.p-date, .all-news .archive-content__inner dl dt span.p-date, .all-news .entry-content__inner dl dt span.p-date, .search .archive-content__inner dl dt span.p-date, .search .entry-content__inner dl dt span.p-date {
  font-family: "EB Garamond", serif;
  font-weight: 400;
  color: #777;
  margin: 0 1em 0 0;
}
.archive .archive-content__inner dl dt span.p-tag, .archive .entry-content__inner dl dt span.p-tag, .single .archive-content__inner dl dt span.p-tag, .single .entry-content__inner dl dt span.p-tag, .all-news .archive-content__inner dl dt span.p-tag, .all-news .entry-content__inner dl dt span.p-tag, .search .archive-content__inner dl dt span.p-tag, .search .entry-content__inner dl dt span.p-tag {
  max-width: auto;
  margin: 0;
  padding: 0;
  text-align: left;
}
.archive .archive-content__inner dl dt span.p-tag a, .archive .entry-content__inner dl dt span.p-tag a, .single .archive-content__inner dl dt span.p-tag a, .single .entry-content__inner dl dt span.p-tag a, .all-news .archive-content__inner dl dt span.p-tag a, .all-news .entry-content__inner dl dt span.p-tag a, .search .archive-content__inner dl dt span.p-tag a, .search .entry-content__inner dl dt span.p-tag a {
  margin: 0;
}
.archive .archive-content__inner dl dd, .archive .entry-content__inner dl dd, .single .archive-content__inner dl dd, .single .entry-content__inner dl dd, .all-news .archive-content__inner dl dd, .all-news .entry-content__inner dl dd, .search .archive-content__inner dl dd, .search .entry-content__inner dl dd {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media only screen and (max-width:687px) {
  .archive .archive-content__inner dl dd, .archive .entry-content__inner dl dd, .single .archive-content__inner dl dd, .single .entry-content__inner dl dd, .all-news .archive-content__inner dl dd, .all-news .entry-content__inner dl dd, .search .archive-content__inner dl dd, .search .entry-content__inner dl dd {
    display: block;
  }
}
.archive .archive-content__inner dl dd span.p-title, .archive .entry-content__inner dl dd span.p-title, .single .archive-content__inner dl dd span.p-title, .single .entry-content__inner dl dd span.p-title, .all-news .archive-content__inner dl dd span.p-title, .all-news .entry-content__inner dl dd span.p-title, .search .archive-content__inner dl dd span.p-title, .search .entry-content__inner dl dd span.p-title {
  -ms-flex-preferred-size: 80%;
      flex-basis: 80%;
  font-size: clamp(1.4rem, 1.5vw, 1.8rem);
  font-weight: 600;
  min-height: 0vw;
}
.archive .archive-content__inner dl dd a.p-more, .archive .entry-content__inner dl dd a.p-more, .single .archive-content__inner dl dd a.p-more, .single .entry-content__inner dl dd a.p-more, .all-news .archive-content__inner dl dd a.p-more, .all-news .entry-content__inner dl dd a.p-more, .search .archive-content__inner dl dd a.p-more, .search .entry-content__inner dl dd a.p-more {
  -ms-flex-preferred-size: 20%;
      flex-basis: 20%;
  text-align: right;
  font-size: clamp(1.2rem, 1.5vw, 1.4rem);
  min-height: 0vw;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  position: relative;
  padding-right: 1.5em;
  letter-spacing: 0.01em;
}
.archive .archive-content__inner dl dd a.p-more:after, .archive .entry-content__inner dl dd a.p-more:after, .single .archive-content__inner dl dd a.p-more:after, .single .entry-content__inner dl dd a.p-more:after, .all-news .archive-content__inner dl dd a.p-more:after, .all-news .entry-content__inner dl dd a.p-more:after, .search .archive-content__inner dl dd a.p-more:after, .search .entry-content__inner dl dd a.p-more:after {
  content: "";
  background: url(assets/img/icon/chevron.svg) no-repeat;
  background-size: contain;
  width: 8px;
  height: 12px;
  display: block;
  margin-left: 0.5em;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  margin-top: 1px;
}
@media only screen and (max-width:768px) {
  .archive .archive-content__inner dl dd a.p-more:after, .archive .entry-content__inner dl dd a.p-more:after, .single .archive-content__inner dl dd a.p-more:after, .single .entry-content__inner dl dd a.p-more:after, .all-news .archive-content__inner dl dd a.p-more:after, .all-news .entry-content__inner dl dd a.p-more:after, .search .archive-content__inner dl dd a.p-more:after, .search .entry-content__inner dl dd a.p-more:after {
    width: 6px;
    height: 10px;
  }
}
.archive .archive-content__inner dl dd a.p-more:hover, .archive .entry-content__inner dl dd a.p-more:hover, .single .archive-content__inner dl dd a.p-more:hover, .single .entry-content__inner dl dd a.p-more:hover, .all-news .archive-content__inner dl dd a.p-more:hover, .all-news .entry-content__inner dl dd a.p-more:hover, .search .archive-content__inner dl dd a.p-more:hover, .search .entry-content__inner dl dd a.p-more:hover {
  opacity: 0.6;
}
@media only screen and (max-width:687px) {
  .archive .archive-content__inner dl dd a.p-more, .archive .entry-content__inner dl dd a.p-more, .single .archive-content__inner dl dd a.p-more, .single .entry-content__inner dl dd a.p-more, .all-news .archive-content__inner dl dd a.p-more, .all-news .entry-content__inner dl dd a.p-more, .search .archive-content__inner dl dd a.p-more, .search .entry-content__inner dl dd a.p-more {
    display: block;
    font-size: 1.1rem;
    margin-top: 0.75em;
  }
}

/*  -------------------------------------
	single
  -------------------------------------*/
.single .p-page-title {
  background: none;
  padding: 180px 0 60px;
}
@media only screen and (max-width:991px) {
  .single .p-page-title {
    padding: 150px 0 45px;
  }
}
@media only screen and (max-width:768px) {
  .single .p-page-title {
    padding: 90px 0 45px;
  }
}
@media only screen and (max-width:480px) {
  .single .p-page-title {
    padding: 60px 0 30px;
  }
}
.single .p-page-title .col-sm-12 {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  text-align: left;
  height: auto;
}
.single .p-page-title .col-sm-12 h1 {
  color: #085274;
  font-size: clamp(1.6rem, 2vw, 2.4rem) !important;
  min-height: 0vw;
  font-weight: 500;
  line-height: 1.6em;
}
.single .p-page-title .col-sm-12 .post-date, .single .p-page-title .col-sm-12 .post-cat {
  font-family: "EB Garamond", serif;
}
.single .p-page-title .col-sm-12 .post-date {
  color: #777;
  margin: 1em 0;
}
.single #single-content {
  padding-top: 0;
}
.single #single-content .entry-content img {
  margin: 1em 0;
  width: 100%;
}
@media only screen and (max-width:991px) {
  .single #single-content .entry-content {
    margin-top: 30px;
  }
}
@media only screen and (max-width:480px) {
  .single #single-content .entry-content {
    margin-top: 15px;
  }
}

/*  -------------------------------------
	page:particular
  -------------------------------------*/
.particular .page-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 60px;
}
@media only screen and (max-width:991px) {
  .particular .page-top {
    padding-bottom: 0;
  }
}
.particular .page-top__img {
  -ms-flex-preferred-size: 70%;
      flex-basis: 70%;
}
.particular .page-top__text {
  -ms-flex-preferred-size: 30%;
      flex-basis: 30%;
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  text-orientation: upright;
  letter-spacing: 0.14em;
  line-height: 1.8em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.particular .page-top__text .inner {
  margin: 0 auto;
  padding-left: 3em;
}
.particular .page-top__text h1 {
  margin: 0 0.5em 0 0;
}
.particular .p-pankuzu__inner {
  width: 1200px;
  margin: 0 auto;
}
@media only screen and (max-width:1360px) {
  .particular .p-pankuzu__inner {
    width: 90%;
  }
}
.particular .introduction {
  position: relative;
}
.particular .introduction:after {
  content: "";
  background: #f2ece0;
  height: calc(100% - 300px);
  width: 35%;
  position: absolute;
  top: -300px;
  right: 0;
  z-index: -1;
}
@media only screen and (max-width:991px) {
  .particular .introduction:after {
    top: -100px;
    height: calc(100% - 100px);
  }
}
@media only screen and (max-width:480px) {
  .particular .introduction:after {
    height: calc(70% - 100px);
  }
}
.particular .introduction__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -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;
  position: relative;
  width: 1360px;
  margin: 0 auto;
}
@media only screen and (max-width:1360px) {
  .particular .introduction__inner {
    width: 90%;
  }
}
@media only screen and (max-width:767px) {
  .particular .introduction__inner {
    display: block;
  }
}
.particular .introduction__img {
  -ms-flex-preferred-size: 46%;
      flex-basis: 46%;
}
@media only screen and (max-width:767px) {
  .particular .introduction__img {
    padding: 0 30px;
    margin: 0 0 3em;
  }
}
@media only screen and (max-width:480px) {
  .particular .introduction__img {
    padding: 0 15px;
  }
}
@media only screen and (max-width:767px) {
  .particular .introduction__img img {
    width: 100%;
    margin: 0 auto;
  }
}
.particular .introduction__img img:last-of-type {
  width: 80%;
  margin: 3em auto 0;
}
@media only screen and (max-width:767px) {
  .particular .introduction__img img:last-of-type {
    width: 100%;
  }
}
.particular .introduction__text {
  -ms-flex-preferred-size: 46%;
      flex-basis: 46%;
}
@media only screen and (max-width:767px) {
  .particular .introduction__text {
    padding: 0 30px;
  }
}
@media only screen and (max-width:480px) {
  .particular .introduction__text {
    padding: 0 15px;
  }
}
.particular .introduction__text p.lead {
  font-size: clamp(2.2rem, 1.5vw, 3rem) !important;
  min-height: 0vw;
  font-weight: 600;
  line-height: 1.6em;
  margin: 0 0 1.5em;
}
@media only screen and (max-width:969px) {
  .particular .introduction__text p.lead {
    font-size: clamp(2rem, 1.5vw, 3rem) !important;
  }
}
@media only screen and (max-width:812px) {
  .particular .introduction__text p.lead {
    font-size: clamp(1.8rem, 1.5vw, 3rem) !important;
  }
}
.particular .introduction__text p {
  font-size: clamp(1.3rem, 1.5vw, 1.7rem) !important;
  min-height: 0vw;
}
.particular .about-umesho {
  position: relative;
}
.particular .about-umesho:after {
  content: "";
  background: #f2ece0;
  height: calc(100% - 480px);
  width: 100%;
  position: absolute;
  top: 480px;
  left: 0;
  z-index: -1;
}
@media only screen and (max-width:1200px) {
  .particular .about-umesho:after {
    top: 300px;
    height: calc(100% - 300px);
  }
}
@media only screen and (max-width:480px) {
  .particular .about-umesho:after {
    top: 150px;
    height: calc(100% - 150px);
  }
}
.particular .about-umesho .umesho-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 0 120px;
}
@media only screen and (max-width:767px) {
  .particular .about-umesho .umesho-top {
    margin: 0 0 90px;
  }
}
.particular .about-umesho .umesho-top__text {
  -ms-flex-preferred-size: 30%;
      flex-basis: 30%;
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  text-orientation: upright;
  letter-spacing: 0.14em;
  line-height: 1.8em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.particular .about-umesho .umesho-top__text .inner {
  margin: 0 auto;
}
.particular .about-umesho .umesho-top__img {
  -ms-flex-preferred-size: 70%;
      flex-basis: 70%;
}
.particular .about-umesho .umesho-particular {
  margin-bottom: 120px;
}
@media only screen and (max-width:767px) {
  .particular .about-umesho .umesho-particular {
    margin-bottom: 90px;
  }
}
.particular .about-umesho .umesho-particular:nth-of-type(odd) .umesho-particular__inner {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.particular .about-umesho .umesho-particular:nth-of-type(odd) .umesho-particular__img img {
  margin-bottom: 3em;
}
.particular .about-umesho .umesho-particular:nth-of-type(odd) .umesho-particular__img img:last-of-type {
  margin-bottom: 0;
}
@media only screen and (max-width:768px) {
  .particular .about-umesho .umesho-particular:nth-of-type(odd) .umesho-particular__text {
    padding: 0 15px 0 30px;
  }
}
@media only screen and (max-width:767px) {
  .particular .about-umesho .umesho-particular:nth-of-type(odd) .umesho-particular__text {
    padding: 0 30px;
  }
}
@media only screen and (max-width:480px) {
  .particular .about-umesho .umesho-particular:nth-of-type(odd) .umesho-particular__text {
    padding: 0 15px;
  }
}
.particular .about-umesho .umesho-particular:last-of-type {
  margin-bottom: 0;
}
.particular .about-umesho .umesho-particular__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 1360px;
  margin: 0 auto;
}
@media only screen and (max-width:1360px) {
  .particular .about-umesho .umesho-particular__inner {
    width: 90%;
  }
}
@media only screen and (max-width:767px) {
  .particular .about-umesho .umesho-particular__inner {
    display: block;
  }
}
.particular .about-umesho .umesho-particular__img {
  -ms-flex-preferred-size: 48%;
      flex-basis: 48%;
}
@media only screen and (max-width:767px) {
  .particular .about-umesho .umesho-particular__img {
    padding: 0 30px;
    margin-bottom: 3em;
  }
}
@media only screen and (max-width:480px) {
  .particular .about-umesho .umesho-particular__img {
    padding: 0 15px;
  }
}
.particular .about-umesho .umesho-particular__text {
  -ms-flex-preferred-size: 48%;
      flex-basis: 48%;
  padding: 0 60px;
}
@media only screen and (max-width:1200px) {
  .particular .about-umesho .umesho-particular__text {
    padding: 0 30px;
  }
}
@media only screen and (max-width:768px) {
  .particular .about-umesho .umesho-particular__text {
    padding: 0 30px 0 15px;
  }
}
@media only screen and (max-width:767px) {
  .particular .about-umesho .umesho-particular__text {
    padding: 0 30px;
  }
}
@media only screen and (max-width:480px) {
  .particular .about-umesho .umesho-particular__text {
    padding: 0 15px;
  }
}
.particular .about-umesho .umesho-particular__text h3 {
  font-size: clamp(1.8rem, 2vw, 3rem);
  min-height: 0vw;
  font-weight: 600;
  line-height: 1.6em;
  margin: 0 0 1em;
}
.particular .about-umesho .umesho-particular__text p {
  font-size: clamp(1.2rem, 2vw, 1.7rem);
  min-height: 0vw;
  line-height: 2em;
}
@media only screen and (max-width:1200px) {
  .particular .about-umesho .umesho-particular__text p {
    font-size: clamp(1.3rem, 1.5vw, 1.6rem);
  }
}
.particular .about-tekkamiso .tekkamiso-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 0 120px;
}
@media only screen and (max-width:767px) {
  .particular .about-tekkamiso .tekkamiso-top {
    margin: 0 0 90px;
  }
}
.particular .about-tekkamiso .tekkamiso-top__text {
  -ms-flex-preferred-size: 30%;
      flex-basis: 30%;
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  text-orientation: upright;
  letter-spacing: 0.14em;
  line-height: 1.8em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.particular .about-tekkamiso .tekkamiso-top__text .inner {
  margin: 0 auto;
}
.particular .about-tekkamiso .tekkamiso-top__img {
  -ms-flex-preferred-size: 70%;
      flex-basis: 70%;
}
.particular .about-tekkamiso .tekkamiso-particular {
  margin-bottom: 120px;
}
@media only screen and (max-width:767px) {
  .particular .about-tekkamiso .tekkamiso-particular {
    display: block;
    margin-bottom: 90px;
  }
}
.particular .about-tekkamiso .tekkamiso-particular:nth-of-type(even) .tekkamiso-particular__inner {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media only screen and (max-width:768px) {
  .particular .about-tekkamiso .tekkamiso-particular:nth-of-type(even) .tekkamiso-particular__text {
    padding: 0 0 0 30px;
  }
}
@media only screen and (max-width:767px) {
  .particular .about-tekkamiso .tekkamiso-particular:nth-of-type(even) .tekkamiso-particular__text {
    padding: 0 30px;
  }
}
@media only screen and (max-width:480px) {
  .particular .about-tekkamiso .tekkamiso-particular:nth-of-type(even) .tekkamiso-particular__text {
    padding: 0 15px;
  }
}
.particular .about-tekkamiso .tekkamiso-particular:last-of-type {
  margin-bottom: 0;
}
.particular .about-tekkamiso .tekkamiso-particular__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 1360px;
  margin: 0 auto;
}
@media only screen and (max-width:1360px) {
  .particular .about-tekkamiso .tekkamiso-particular__inner {
    width: 90%;
  }
}
@media only screen and (max-width:767px) {
  .particular .about-tekkamiso .tekkamiso-particular__inner {
    display: block;
  }
}
.particular .about-tekkamiso .tekkamiso-particular__img {
  -ms-flex-preferred-size: 48%;
      flex-basis: 48%;
}
@media only screen and (max-width:767px) {
  .particular .about-tekkamiso .tekkamiso-particular__img {
    padding: 0 30px;
    margin-bottom: 3em;
  }
}
@media only screen and (max-width:480px) {
  .particular .about-tekkamiso .tekkamiso-particular__img {
    padding: 0 15px;
  }
}
.particular .about-tekkamiso .tekkamiso-particular__text {
  -ms-flex-preferred-size: 48%;
      flex-basis: 48%;
  padding: 0 60px;
}
@media only screen and (max-width:1200px) {
  .particular .about-tekkamiso .tekkamiso-particular__text {
    padding: 0 30px;
  }
}
@media only screen and (max-width:768px) {
  .particular .about-tekkamiso .tekkamiso-particular__text {
    padding: 0 30px 0 0;
  }
}
@media only screen and (max-width:767px) {
  .particular .about-tekkamiso .tekkamiso-particular__text {
    padding: 0 30px;
  }
}
@media only screen and (max-width:480px) {
  .particular .about-tekkamiso .tekkamiso-particular__text {
    padding: 0 15px;
  }
}
.particular .about-tekkamiso .tekkamiso-particular__text h3 {
  font-size: clamp(1.8rem, 2vw, 3rem);
  min-height: 0vw;
  font-weight: 600;
  line-height: 1.6em;
  margin: 0 0 1em;
}
.particular .about-tekkamiso .tekkamiso-particular__text p {
  font-size: clamp(1.2rem, 2vw, 1.7rem);
  min-height: 0vw;
  line-height: 2em;
}
@media only screen and (max-width:1200px) {
  .particular .about-tekkamiso .tekkamiso-particular__text p {
    font-size: clamp(1.3rem, 1.5vw, 1.6rem);
  }
}

/*  -------------------------------------
	page:about
  -------------------------------------*/
.about .page-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 60px;
}
@media only screen and (max-width:991px) {
  .about .page-top {
    padding-bottom: 0;
  }
}
.about .page-top__img {
  -ms-flex-preferred-size: 70%;
      flex-basis: 70%;
}
.about .page-top__text {
  -ms-flex-preferred-size: 30%;
      flex-basis: 30%;
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  text-orientation: upright;
  letter-spacing: 0.14em;
  line-height: 1.8em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.about .page-top__text .inner {
  margin: 0 auto;
  padding-left: 3em;
}
.about .page-top__text h1 {
  margin: 0 0.5em 0 0;
}
.about .p-pankuzu__inner {
  width: 1200px;
  margin: 0 auto;
}
@media only screen and (max-width:1360px) {
  .about .p-pankuzu__inner {
    width: 90%;
  }
}
@media only screen and (max-width:767px) {
  .about .introduction {
    padding-top: 120px;
  }
}
@media only screen and (max-width:480px) {
  .about .introduction {
    padding-top: 90px;
  }
}
.about .introduction__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -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;
  position: relative;
  width: 1360px;
  margin: 0 auto;
}
@media only screen and (max-width:1360px) {
  .about .introduction__inner {
    width: 90%;
  }
}
@media only screen and (max-width:991px) {
  .about .introduction__inner {
    width: 95%;
  }
}
@media only screen and (max-width:767px) {
  .about .introduction__inner {
    display: block;
    width: calc(100% - 30px);
  }
}
.about .introduction__img {
  -ms-flex-preferred-size: 46%;
      flex-basis: 46%;
}
@media only screen and (max-width:1360px) {
  .about .introduction__img {
    -ms-flex-preferred-size: 48%;
        flex-basis: 48%;
  }
}
@media only screen and (max-width:767px) {
  .about .introduction__img {
    padding: 0 30px;
    margin: 0 auto 3em;
    width: 80%;
  }
}
@media only screen and (max-width:480px) {
  .about .introduction__img {
    padding: 0 15px;
  }
}
.about .introduction__text {
  padding-left: 100px;
  -ms-flex-preferred-size: 46%;
      flex-basis: 46%;
}
@media only screen and (max-width:1360px) {
  .about .introduction__text {
    -ms-flex-preferred-size: 48%;
        flex-basis: 48%;
    padding-left: 50px;
  }
}
@media only screen and (max-width:991px) {
  .about .introduction__text {
    padding-left: 0;
  }
}
@media only screen and (max-width:767px) {
  .about .introduction__text {
    padding: 0 30px;
  }
}
@media only screen and (max-width:480px) {
  .about .introduction__text {
    padding: 0;
  }
}
.about .introduction__text p.lead {
  font-size: clamp(1.8rem, 2vw, 3rem) !important;
  min-height: 0vw;
  font-weight: 600;
  line-height: 1.6em;
  margin: 0 0 1.5em;
}
.about .introduction__text p {
  font-size: clamp(1.3rem, 2vw, 1.8rem) !important;
  min-height: 0vw;
  line-height: 2.1em;
}
@media only screen and (max-width:1200px) {
  .about .introduction__text p {
    font-size: clamp(1.3rem, 1.5vw, 1.6rem) !important;
  }
}
.about .value {
  background: #f2ece0;
}
.about .value__inner {
  width: 1360px;
  margin: 0 auto;
}
@media only screen and (max-width:1360px) {
  .about .value__inner {
    width: 90%;
  }
}
@media only screen and (max-width:991px) {
  .about .value__inner {
    width: 95%;
  }
}
@media only screen and (max-width:767px) {
  .about .value__inner {
    width: calc(100% - 30px);
  }
}
.about .value .value-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 180px;
}
@media only screen and (max-width:1200px) {
  .about .value .value-content {
    margin-bottom: 120px;
  }
}
@media only screen and (max-width:767px) {
  .about .value .value-content {
    display: block;
    margin-bottom: 90px;
  }
}
@media only screen and (max-width:480px) {
  .about .value .value-content {
    margin-bottom: 60px;
  }
}
.about .value .value-content:nth-of-type(even) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.about .value .value-content:nth-of-type(even) .value-content__text {
  padding-left: 5em;
  padding-right: 0;
}
.about .value .value-content:nth-of-type(even) .value-content__text h3 {
  right: inherit;
  left: 0;
}
.about .value .value-content__img {
  -ms-flex-preferred-size: 46%;
      flex-basis: 46%;
}
.about .value .value-content__img img {
  border-radius: 10px;
}
@media only screen and (max-width:767px) {
  .about .value .value-content__img {
    margin-bottom: 3em;
  }
}
.about .value .value-content__text {
  -ms-flex-preferred-size: 46%;
      flex-basis: 46%;
  position: relative;
  padding-right: 5em;
  padding-top: 3em;
  padding-bottom: 3em;
}
@media only screen and (max-width:767px) {
  .about .value .value-content__text {
    padding-top: 4em;
    padding-bottom: 4em;
  }
}
.about .value .value-content__text h3 {
  position: absolute;
  right: 0;
  top: 0;
  ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
      writing-mode: vertical-rl;
  text-orientation: upright;
  letter-spacing: 0.14em;
  line-height: 1.8em;
  margin: 0;
  padding-top: 45px;
}
@media only screen and (max-width:991px) {
  .about .value .value-content__text h3 {
    padding-top: 30px;
  }
}
@media only screen and (max-width:768px) {
  .about .value .value-content__text h3 {
    font-size: clamp(2rem, 2vw, 3rem) !important;
  }
}
.about .value .value-content__text h3:before {
  content: "";
  width: 1px;
  height: 30px;
  background: #333;
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
}
@media only screen and (max-width:991px) {
  .about .value .value-content__text h3:before {
    height: 20px;
  }
}
.about .value .value-content__text p.lead {
  font-size: clamp(1.8rem, 2vw, 3rem) !important;
  min-height: 0vw;
  font-weight: 600;
  line-height: 1.6em;
  margin: 0 0 1em;
}
.about .value .value-content__text p {
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  min-height: 0vw;
  line-height: 2.1em;
}
@media only screen and (max-width:1200px) {
  .about .value .value-content__text p {
    font-size: clamp(1.3rem, 1.5vw, 1.6rem) !important;
  }
}
.about .wish__inner {
  width: 1360px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -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;
}
@media only screen and (max-width:1360px) {
  .about .wish__inner {
    width: 90%;
  }
}
@media only screen and (max-width:991px) {
  .about .wish__inner {
    width: 95%;
  }
}
@media only screen and (max-width:767px) {
  .about .wish__inner {
    display: block;
    width: calc(100% - 30px);
  }
}
.about .wish__img {
  -ms-flex-preferred-size: 49%;
      flex-basis: 49%;
}
@media only screen and (max-width:767px) {
  .about .wish__img {
    margin-bottom: 3em;
  }
}
.about .wish__img img {
  margin-bottom: 2em;
  border-radius: 10px;
}
.about .wish__img img:last-of-type {
  margin-bottom: 0;
}
.about .wish__text {
  -ms-flex-preferred-size: 49%;
      flex-basis: 49%;
}
.about .wish__text h3 {
  font-size: clamp(2rem, 2vw, 3rem) !important;
  min-height: 0vw;
  font-weight: 600;
  line-height: 1.6em;
  margin: 0 0 1em;
}
.about .wish__text p {
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  min-height: 0vw;
  line-height: 2.1em;
}
@media only screen and (max-width:1200px) {
  .about .wish__text p {
    font-size: clamp(1.3rem, 1.5vw, 1.6rem) !important;
  }
}
.about .wish__text img {
  margin-top: 113px;
  border-radius: 10px;
}
@media only screen and (max-width:1360px) {
  .about .wish__text img {
    margin-top: 75px;
  }
}
@media only screen and (max-width:767px) {
  .about .wish__text img {
    margin-top: 3em;
  }
}

/*  -------------------------------------
	single:single-item
  -------------------------------------*/
.single-item {
  background: #f2ece0;
}
.single-item .p-pankuzu {
  margin: 180px 0 0;
}
@media only screen and (max-width:1200px) {
  .single-item .p-pankuzu {
    margin: 120px 0 0;
  }
}
@media only screen and (max-width:480px) {
  .single-item .p-pankuzu {
    margin: 80px 0 0;
  }
}
.single-item .p-pankuzu__inner {
  width: 1360px;
  margin: 0 auto;
}
@media only screen and (max-width:1360px) {
  .single-item .p-pankuzu__inner {
    width: 90%;
  }
}
@media only screen and (max-width:991px) {
  .single-item .p-pankuzu__inner {
    width: 95%;
  }
}
@media only screen and (max-width:767px) {
  .single-item .p-pankuzu__inner {
    width: calc(100% - 30px);
  }
}
.single-item .item-content {
  padding-top: 60px;
}
@media only screen and (max-width:767px) {
  .single-item .item-content {
    padding-bottom: 0;
  }
}
@media only screen and (max-width:480px) {
  .single-item .item-content {
    padding-top: 30px;
  }
}
.single-item .item-content__inner {
  width: 1360px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media only screen and (max-width:1360px) {
  .single-item .item-content__inner {
    width: 90%;
  }
}
@media only screen and (max-width:991px) {
  .single-item .item-content__inner {
    width: 95%;
  }
}
@media only screen and (max-width:767px) {
  .single-item .item-content__inner {
    display: block;
    width: calc(100% - 30px);
  }
}
.single-item .item-content__img {
  -ms-flex-preferred-size: 46%;
      flex-basis: 46%;
  max-width: 46%;
}
@media only screen and (max-width:767px) {
  .single-item .item-content__img {
    max-width: 100%;
    margin: 0 0 3em;
  }
}
.single-item .item-content__img img {
  border-radius: 5px;
}
.single-item .item-content__text {
  -ms-flex-preferred-size: 46%;
      flex-basis: 46%;
  max-width: 46%;
}
@media only screen and (max-width:767px) {
  .single-item .item-content__text {
    max-width: 100%;
  }
}
.single-item .item-content__text h1 {
  margin: 0 0 1em;
  text-align: left;
  font-size: clamp(1.6rem, 2vw, 2.7rem) !important;
  min-height: 0vw;
  font-weight: 600;
}
.single-item .item-content__text .price {
  font-size: clamp(1.6rem, 2vw, 2.4rem) !important;
  min-height: 0vw;
  font-weight: 600;
  margin: 0 0 1em;
}
.single-item .item-content__text .price span {
  font-size: 70%;
}
.single-item .item-content__text dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.single-item .item-content__text dl dt {
  -ms-flex-preferred-size: 20%;
      flex-basis: 20%;
}
.single-item .item-content__text dl dd {
  -ms-flex-preferred-size: 80%;
      flex-basis: 80%;
}
.single-item .item-content__text .onlinestore_wrap {
  /* background: #fff;*/
  padding: 30px;
  border-radius: 5px;
}
.single-item .item-content__text .onlinestore_wrap table th {
  padding: 10px;
}
.single-item .item-content__text .linkBtn {
  margin: 3em 0 0;
}
@media only screen and (max-width:767px) {
  .single-item .item-content__text .linkBtn {
    width: 300px;
    height: 60px;
    margin: 3em auto 0;
  }
}
.single-item .item-content .item-topic {
  width: 1360px;
  margin: 90px auto 0;
  position: relative;
}
@media only screen and (max-width:1360px) {
  .single-item .item-content .item-topic {
    width: 90%;
  }
}
@media only screen and (max-width:991px) {
  .single-item .item-content .item-topic {
    width: 95%;
  }
}
@media only screen and (max-width:767px) {
  .single-item .item-content .item-topic {
    width: calc(100% - 30px);
    padding: 45px 0;
    margin: 30px auto 0;
  }
}
.single-item .item-content .item-topic__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  background: #fff;
  padding: 90px;
  border-radius: 10px;
}
@media only screen and (max-width:1200px) {
  .single-item .item-content .item-topic__inner {
    padding: 60px;
  }
}
@media only screen and (max-width:991px) {
  .single-item .item-content .item-topic__inner {
    padding: 45px;
  }
}
@media only screen and (max-width:767px) {
  .single-item .item-content .item-topic__inner {
    display: block;
    padding: 30px;
  }
}
.single-item .item-content .item-topic__content {
  -ms-flex-preferred-size: 46%;
      flex-basis: 46%;
}
@media only screen and (max-width:1499px) {
  .single-item .item-content .item-topic__content {
    -ms-flex-preferred-size: 48%;
        flex-basis: 48%;
  }
}
@media only screen and (max-width:767px) {
  .single-item .item-content .item-topic__content {
    margin: 0 0 3em;
  }
  .single-item .item-content .item-topic__content:last-of-type {
    margin-bottom: 0;
  }
}
.single-item .item-content .item-topic__content h3 {
  font-size: clamp(1.6rem, 2vw, 2.4rem) !important;
  min-height: 0vw;
  font-weight: 600;
  position: relative;
  padding-left: 60px;
  margin: 0 0 1.5em;
}
@media only screen and (max-width:991px) {
  .single-item .item-content .item-topic__content h3 {
    padding-left: 45px;
  }
}
.single-item .item-content .item-topic__content h3:before {
  content: "";
  width: 45px;
  height: 1px;
  position: absolute;
  display: block;
  background: #000;
  left: 0;
  top: 50%;
}
@media only screen and (max-width:991px) {
  .single-item .item-content .item-topic__content h3:before {
    width: 30px;
  }
}
.single-item .item-content .item-topic__content img {
  display: block;
  margin: 0 0 1em;
  border-radius: 10px;
}
.single-item .related-item {
  background: #fffdf3;
}
.single-item .related-item__inner {
  width: 1360px;
  margin: 0 auto;
}
@media only screen and (max-width:1360px) {
  .single-item .related-item__inner {
    width: 90%;
  }
}
@media only screen and (max-width:991px) {
  .single-item .related-item__inner {
    width: 95%;
  }
}
@media only screen and (max-width:767px) {
  .single-item .related-item__inner {
    width: calc(100% - 30px);
  }
}
.single-item .related-item__inner h2 {
  text-align: center;
  margin: 0 0 90px;
}
@media only screen and (max-width:812px) {
  .single-item .related-item__inner h2 {
    margin: 0 0 60px;
  }
}
@media only screen and (max-width:767px) {
  .single-item .related-item__inner h2 {
    margin: 0 0 45px;
  }
}
.single-item .related-item .related-item-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.single-item .related-item .related-item-wrap .related-item-desc {
  -ms-flex-preferred-size: 20%;
      flex-basis: 20%;
  text-align: center;
  margin: 0 2.5%;
}
@media only screen and (max-width:812px) {
  .single-item .related-item .related-item-wrap .related-item-desc {
    -ms-flex-preferred-size: 40%;
        flex-basis: 40%;
    margin: 0 5% 4%;
  }
}
.single-item .related-item .related-item-wrap .related-item-desc img {
  display: block;
  margin: 0 auto 1em;
  height: 250px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media only screen and (max-width:812px) {
  .single-item .related-item .related-item-wrap .related-item-desc img {
    height: 200px;
  }
}
@media only screen and (max-width:767px) {
  .single-item .related-item .related-item-wrap .related-item-desc img {
    height: 150px;
  }
}
.single-item .related-item .related-item-wrap .related-item-desc .item-name {
  font-weight: 600;
}
.single-item .related-item .related-item-wrap .related-item-desc .item-price span {
  font-weight: 80%;
}
.single-item .slick-track {
  margin-left: inherit;
  margin-right: inherit;
}

/*  -------------------------------------
	archive:tax-brand
  -------------------------------------*/
.post-type-archive-item .page-top, .tax-brand .page-top {
  height: 680px;
  margin-top: 170px;
  position: relative;
  padding: 0;
}
@media only screen and (max-width:1499px) {
  .post-type-archive-item .page-top, .tax-brand .page-top {
    height: 580px;
  }
}
@media only screen and (max-width:1200px) {
  .post-type-archive-item .page-top, .tax-brand .page-top {
    margin-top: 150px;
  }
}
@media only screen and (max-width:991px) {
  .post-type-archive-item .page-top, .tax-brand .page-top {
    height: 480px;
  }
}
@media only screen and (max-width:812px) {
  .post-type-archive-item .page-top, .tax-brand .page-top {
    margin-top: 120px;
    height: 380px;
  }
}
@media only screen and (max-width:768px) {
  .post-type-archive-item .page-top, .tax-brand .page-top {
    margin-top: 90px;
  }
}
@media only screen and (max-width:687px) {
  .post-type-archive-item .page-top, .tax-brand .page-top {
    height: 300px;
  }
}
@media only screen and (max-width:480px) {
  .post-type-archive-item .page-top, .tax-brand .page-top {
    height: 240px;
    margin-top: 64px;
  }
}
.post-type-archive-item .page-top:before, .tax-brand .page-top:before {
  background: rgba(33, 33, 33, 0.5);
  content: "";
  opacity: 0.5 !important;
  position: absolute !important;
  height: 100% !important;
  width: 100% !important;
  left: 0px !important;
  bottom: 0px !important;
  z-index: 2;
}
.post-type-archive-item .page-top__text, .tax-brand .page-top__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 1360px;
  margin: 0 auto;
}
@media only screen and (max-width:1360px) {
  .post-type-archive-item .page-top__text, .tax-brand .page-top__text {
    width: 90%;
  }
}
@media only screen and (max-width:991px) {
  .post-type-archive-item .page-top__text, .tax-brand .page-top__text {
    width: 95%;
  }
}
@media only screen and (max-width:767px) {
  .post-type-archive-item .page-top__text, .tax-brand .page-top__text {
    width: calc(100% - 90px);
  }
}
.post-type-archive-item .page-top__text h1, .tax-brand .page-top__text h1 {
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  text-orientation: upright;
  letter-spacing: 0.14em;
  line-height: 1.8em;
  color: #fff;
  margin: 0;
  position: relative;
  z-index: 2;
}
@media only screen and (max-width:1200px) {
  .post-type-archive-item .page-top__text h1, .tax-brand .page-top__text h1 {
    margin: 75px 0 0;
  }
}
@media only screen and (max-width:812px) {
  .post-type-archive-item .page-top__text h1, .tax-brand .page-top__text h1 {
    margin: 60px 0 0;
  }
}
@media only screen and (max-width:768px) {
  .post-type-archive-item .page-top__text h1, .tax-brand .page-top__text h1 {
    margin: 45px 0 0;
  }
}
@media only screen and (max-width:480px) {
  .post-type-archive-item .page-top__text h1, .tax-brand .page-top__text h1 {
    margin: 0;
  }
}
.post-type-archive-item .p-pankuzu__inner, .tax-brand .p-pankuzu__inner {
  width: 1360px;
  margin: 0 auto;
}
@media only screen and (max-width:1360px) {
  .post-type-archive-item .p-pankuzu__inner, .tax-brand .p-pankuzu__inner {
    width: 90%;
  }
}
@media only screen and (max-width:991px) {
  .post-type-archive-item .p-pankuzu__inner, .tax-brand .p-pankuzu__inner {
    width: 95%;
  }
}
@media only screen and (max-width:767px) {
  .post-type-archive-item .p-pankuzu__inner, .tax-brand .p-pankuzu__inner {
    width: calc(100% - 30px);
  }
}
.post-type-archive-item .introduction__inner, .tax-brand .introduction__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -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;
  position: relative;
  width: 1360px;
  margin: 0 auto;
}
@media only screen and (max-width:1360px) {
  .post-type-archive-item .introduction__inner, .tax-brand .introduction__inner {
    width: 90%;
  }
}
@media only screen and (max-width:991px) {
  .post-type-archive-item .introduction__inner, .tax-brand .introduction__inner {
    width: 95%;
  }
}
@media only screen and (max-width:767px) {
  .post-type-archive-item .introduction__inner, .tax-brand .introduction__inner {
    display: block;
    width: calc(100% - 30px);
  }
}
.post-type-archive-item .introduction__img, .tax-brand .introduction__img {
  -ms-flex-preferred-size: 46%;
      flex-basis: 46%;
}
@media only screen and (max-width:1360px) {
  .post-type-archive-item .introduction__img, .tax-brand .introduction__img {
    -ms-flex-preferred-size: 48%;
        flex-basis: 48%;
  }
}
@media only screen and (max-width:767px) {
  .post-type-archive-item .introduction__img, .tax-brand .introduction__img {
    margin: 0 auto 1.5em;
    width: 80%;
  }
}
@media only screen and (max-width:480px) {
  .post-type-archive-item .introduction__img, .tax-brand .introduction__img {
    width: 100%;
  }
}
.post-type-archive-item .introduction__img img, .tax-brand .introduction__img img {
  border-radius: 10px;
}
.post-type-archive-item .introduction__text, .tax-brand .introduction__text {
  -ms-flex-preferred-size: 46%;
      flex-basis: 46%;
}
@media only screen and (max-width:1360px) {
  .post-type-archive-item .introduction__text, .tax-brand .introduction__text {
    -ms-flex-preferred-size: 48%;
        flex-basis: 48%;
  }
}
@media only screen and (max-width:991px) {
  .post-type-archive-item .introduction__text, .tax-brand .introduction__text {
    padding-left: 0;
  }
}
@media only screen and (max-width:767px) {
  .post-type-archive-item .introduction__text, .tax-brand .introduction__text {
    width: 80%;
    margin: 0 auto;
  }
}
@media only screen and (max-width:480px) {
  .post-type-archive-item .introduction__text, .tax-brand .introduction__text {
    padding: 0;
    width: 100%;
  }
}
.post-type-archive-item .introduction__text p.lead, .tax-brand .introduction__text p.lead {
  font-size: clamp(1.8rem, 2vw, 3rem) !important;
  min-height: 0vw;
  font-weight: 600;
  line-height: 1.6em;
  margin: 0 0 1.5em;
}
.post-type-archive-item .introduction__text p, .tax-brand .introduction__text p {
  font-size: clamp(1.3rem, 2vw, 1.8rem) !important;
  min-height: 0vw;
  line-height: 2.1em;
}
@media only screen and (max-width:1200px) {
  .post-type-archive-item .introduction__text p, .tax-brand .introduction__text p {
    font-size: clamp(1.3rem, 1.5vw, 1.6rem) !important;
  }
}
.post-type-archive-item .product-info, .tax-brand .product-info {
  background: #f2ece0;
  padding-bottom: 0;
}
@media only screen and (max-width:768px) {
  .post-type-archive-item .product-info, .tax-brand .product-info {
    padding-bottom: 0px;
  }
}
.post-type-archive-item .product-info h2, .tax-brand .product-info h2 {
  text-align: center;
  margin: 0 0 90px;
}
@media only screen and (max-width:768px) {
  .post-type-archive-item .product-info h2, .tax-brand .product-info h2 {
    margin: 0 0 45px;
  }
}
.post-type-archive-item .product-info__inner, .tax-brand .product-info__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  position: relative;
  width: 1360px;
  margin: 0 auto;
}
@media only screen and (max-width:1360px) {
  .post-type-archive-item .product-info__inner, .tax-brand .product-info__inner {
    width: 90%;
  }
}
@media only screen and (max-width:991px) {
  .post-type-archive-item .product-info__inner, .tax-brand .product-info__inner {
    width: 95%;
  }
}
@media only screen and (max-width:767px) {
  .post-type-archive-item .product-info__inner, .tax-brand .product-info__inner {
    width: calc(100% - 60px);
  }
}
.post-type-archive-item .product-info .product-info-content, .tax-brand .product-info .product-info-content {
  -ms-flex-preferred-size: 46%;
      flex-basis: 46%;
  margin-bottom: 120px;
}
@media only screen and (max-width:1200px) {
  .post-type-archive-item .product-info .product-info-content, .tax-brand .product-info .product-info-content {
    margin-bottom: 90px;
  }
}
@media only screen and (max-width:768px) {
  .post-type-archive-item .product-info .product-info-content, .tax-brand .product-info .product-info-content {
    margin-bottom: 60px;
  }
}
.post-type-archive-item .product-info .product-info-content__img img, .tax-brand .product-info .product-info-content__img img {
  height: 220px;
  margin: 0 auto 3em;
}
@media only screen and (max-width:768px) {
  .post-type-archive-item .product-info .product-info-content__img img, .tax-brand .product-info .product-info-content__img img {
    height: 150px;
    -o-object-fit: contain;
       object-fit: contain;
  }
}
.post-type-archive-item .product-info .product-info-content__text, .tax-brand .product-info .product-info-content__text {
  text-align: center;
}
.post-type-archive-item .product-info .product-info-content__text h3, .tax-brand .product-info .product-info-content__text h3 {
  font-size: clamp(1.6rem, 2vw, 2.2rem) !important;
  min-height: 0vw;
  font-weight: 600;
  line-height: 1.6em;
  margin: 0 0 0.5em;
}
.post-type-archive-item .product-info .product-info-content__text p.weight, .tax-brand .product-info .product-info-content__text p.weight {
  font-size: clamp(1.4rem, 2vw, 2rem) !important;
  min-height: 0vw;
  font-weight: 500;
  margin: 0 0 0.5em;
}
.post-type-archive-item .product-info .product-info-content__text p.desc, .tax-brand .product-info .product-info-content__text p.desc {
  text-align: left;
  margin: 0 0 0.5em;
}
.post-type-archive-item .product-info .product-info-content__text p.price, .tax-brand .product-info .product-info-content__text p.price {
  font-size: clamp(1.6rem, 2vw, 2.2rem) !important;
  min-height: 0vw;
  font-weight: 500;
  line-height: 1.6em;
}
.post-type-archive-item .product-info .product-info-content__text p.price span, .tax-brand .product-info .product-info-content__text p.price span {
  font-size: 70%;
}
.post-type-archive-item .brand-list h2, .tax-brand .brand-list h2 {
  text-align: center;
  margin: 0 0 60px;
}
@media only screen and (max-width:768px) {
  .post-type-archive-item .brand-list h2, .tax-brand .brand-list h2 {
    margin: 0 0 30px;
  }
}
.post-type-archive-item .brand-list__inner, .tax-brand .brand-list__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  position: relative;
  width: 1360px;
  margin: 0 auto;
}
@media only screen and (max-width:1360px) {
  .post-type-archive-item .brand-list__inner, .tax-brand .brand-list__inner {
    width: 90%;
  }
}
@media only screen and (max-width:991px) {
  .post-type-archive-item .brand-list__inner, .tax-brand .brand-list__inner {
    width: 95%;
  }
}
@media only screen and (max-width:767px) {
  .post-type-archive-item .brand-list__inner, .tax-brand .brand-list__inner {
    width: calc(100% - 30px);
  }
}
.post-type-archive-item .brand-list__content, .tax-brand .brand-list__content {
  -ms-flex-preferred-size: calc(100% / 3 - 5px);
      flex-basis: calc(100% / 3 - 5px);
  position: relative;
  aspect-ratio: 16/9;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  padding: 0 0 20px;
  overflow: hidden;
}
@media only screen and (max-width:767px) {
  .post-type-archive-item .brand-list__content, .tax-brand .brand-list__content {
    -ms-flex-preferred-size: calc(100% / 2 - 3px);
        flex-basis: calc(100% / 2 - 3px);
  }
}
.post-type-archive-item .brand-list__content:hover:after, .tax-brand .brand-list__content:hover:after {
  opacity: 0.8;
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
.post-type-archive-item .brand-list__content:after, .tax-brand .brand-list__content:after {
  position: absolute;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.post-type-archive-item .brand-list__content:before, .tax-brand .brand-list__content:before {
  background: rgba(33, 33, 33, 0.5);
  content: "";
  background: -webkit-gradient(linear, left bottom, left top, from(black), color-stop(50%, rgba(0, 0, 0, 0.3)), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(0deg, black 0%, rgba(0, 0, 0, 0.3) 50%, rgba(255, 255, 255, 0) 100%);
  opacity: 0.7 !important;
  position: absolute !important;
  height: 60% !important;
  width: 100% !important;
  left: 0px !important;
  bottom: 0px !important;
  z-index: 2;
}
@media only screen and (max-width:480px) {
  .post-type-archive-item .brand-list__content:before, .tax-brand .brand-list__content:before {
    background: -webkit-gradient(linear, left bottom, left top, from(black), color-stop(70%, rgba(0, 0, 0, 0.4)), to(rgba(255, 255, 255, 0)));
    background: linear-gradient(0deg, black 0%, rgba(0, 0, 0, 0.4) 70%, rgba(255, 255, 255, 0) 100%);
  }
}
.post-type-archive-item .brand-list__content:nth-of-type(1), .tax-brand .brand-list__content:nth-of-type(1) {
  margin-bottom: 6px;
}
.post-type-archive-item .brand-list__content:nth-of-type(1):after, .tax-brand .brand-list__content:nth-of-type(1):after {
  background: url(assets/img/top/large-bnr1.jpg);
  background-size: cover;
  background-position: center center;
}
@media only screen and (max-width:767px) {
  .post-type-archive-item .brand-list__content:nth-of-type(1), .tax-brand .brand-list__content:nth-of-type(1) {
    margin-bottom: 6px;
  }
}
.post-type-archive-item .brand-list__content:nth-of-type(2), .tax-brand .brand-list__content:nth-of-type(2) {
  margin-bottom: 6px;
}
.post-type-archive-item .brand-list__content:nth-of-type(2):after, .tax-brand .brand-list__content:nth-of-type(2):after {
  background: url(assets/img/top/large-bnr2.jpg);
  background-size: cover;
  background-position: center center;
}
@media only screen and (max-width:767px) {
  .post-type-archive-item .brand-list__content:nth-of-type(2), .tax-brand .brand-list__content:nth-of-type(2) {
    margin-bottom: 6px;
  }
}
.post-type-archive-item .brand-list__content:nth-of-type(3), .tax-brand .brand-list__content:nth-of-type(3) {
  margin-bottom: 6px;
}
.post-type-archive-item .brand-list__content:nth-of-type(3):after, .tax-brand .brand-list__content:nth-of-type(3):after {
  background: url(assets/img/top/small-bnr1.jpg);
  background-size: cover;
  background-position: center center;
}
@media only screen and (max-width:767px) {
  .post-type-archive-item .brand-list__content:nth-of-type(3), .tax-brand .brand-list__content:nth-of-type(3) {
    margin-bottom: 6px;
  }
}
.post-type-archive-item .brand-list__content:nth-of-type(4):after, .tax-brand .brand-list__content:nth-of-type(4):after {
  background: url(assets/img/top/small-bnr2.jpg);
  background-size: cover;
  background-position: center center;
}
@media only screen and (max-width:767px) {
  .post-type-archive-item .brand-list__content:nth-of-type(4), .tax-brand .brand-list__content:nth-of-type(4) {
    margin-bottom: 6px;
  }
}
.post-type-archive-item .brand-list__content:nth-of-type(5):after, .tax-brand .brand-list__content:nth-of-type(5):after {
  background: url(assets/img/top/small-bnr3.jpg);
  background-size: cover;
  background-position: center center;
}
@media only screen and (max-width:767px) {
  .post-type-archive-item .brand-list__content:nth-of-type(5), .tax-brand .brand-list__content:nth-of-type(5) {
    margin-bottom: 6px;
  }
}
.post-type-archive-item .brand-list__content:nth-of-type(6):after, .tax-brand .brand-list__content:nth-of-type(6):after {
  background: url(assets/img/top/small-bnr4.jpg);
  background-size: cover;
  background-position: center center;
}
@media only screen and (max-width:767px) {
  .post-type-archive-item .brand-list__content:nth-of-type(6), .tax-brand .brand-list__content:nth-of-type(6) {
    margin-bottom: 6px;
  }
}
.post-type-archive-item .brand-list__text h3, .tax-brand .brand-list__text h3 {
  position: relative;
  color: #fff;
  z-index: 2;
  margin: 0;
  text-align: center;
  font-size: clamp(1.5rem, 2vw, 2.1rem) !important;
  min-height: 0vw;
  line-height: 1.4em;
}

.post-type-archive-item .product-info {
  padding-top: 240px;
  padding-bottom: 120px;
}
@media only screen and (max-width:767px) {
  .post-type-archive-item .product-info {
    padding-top: 180px;
    padding-bottom: 90px;
  }
}
@media only screen and (max-width:480px) {
  .post-type-archive-item .product-info {
    padding-top: 120px;
    padding-bottom: 60px;
  }
}
.post-type-archive-item .product-info h1 {
  margin: 0 0 120px;
}
@media only screen and (max-width:480px) {
  .post-type-archive-item .product-info h1 {
    margin: 0 0 90px;
  }
}
.post-type-archive-item .product-info .product-info-content {
  -ms-flex-preferred-size: 31.3%;
      flex-basis: 31.3%;
}
@media only screen and (max-width:767px) {
  .post-type-archive-item .product-info .product-info-content {
    -ms-flex-preferred-size: 45%;
        flex-basis: 45%;
  }
  .post-type-archive-item .product-info .product-info-content__img img {
    height: 150px;
    -o-object-fit: contain;
       object-fit: contain;
  }
}

.term-brand-umesho .page-top {
  background: url(assets/img/tax-brand/term_umesho_top.jpg) no-repeat;
  background-size: cover;
}

.term-brand-tekkamiso .page-top {
  background: url(assets/img/tax-brand/term_tekkamiso_top.jpg) no-repeat;
  background-size: cover;
}

.term-brand-genmai .page-top {
  background: url(assets/img/tax-brand/term_genmai_top.jpg) no-repeat;
  background-size: cover;
}

.term-brand-shoga .page-top {
  background: url(assets/img/tax-brand/term_shoga_top.jpg) no-repeat;
  background-size: cover;
}

.term-brand-ume .page-top {
  background: url(assets/img/tax-brand/term_ume_top.jpg) no-repeat;
  background-size: cover;
}

.term-brand-teate .page-top {
  background: url(assets/img/tax-brand/term_teate_top.jpg) no-repeat;
  background-size: cover;
}

/*  -------------------------------------
	page:selftreatment
  -------------------------------------*/
.selftreatment .page-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 60px;
}
@media only screen and (max-width:991px) {
  .selftreatment .page-top {
    padding-bottom: 0;
  }
}
.selftreatment .page-top__img {
  -ms-flex-preferred-size: 70%;
      flex-basis: 70%;
}
.selftreatment .page-top__text {
  -ms-flex-preferred-size: 30%;
      flex-basis: 30%;
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  text-orientation: upright;
  letter-spacing: 0.14em;
  line-height: 1.8em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.selftreatment .page-top__text .inner {
  margin: 0 auto;
  padding-left: 3em;
}
@media only screen and (max-width:480px) {
  .selftreatment .page-top__text .inner {
    padding-left: 0;
  }
}
.selftreatment .page-top__text p {
  font-size: clamp(1.3rem, 1.5vw, 2.2rem);
  min-height: 0vw;
  font-weight: 600;
}
@media only screen and (max-width:480px) {
  .selftreatment .page-top__text p {
    font-size: 1.2rem;
  }
}
.selftreatment .page-top__text h1 {
  margin: 0 0.25em 0 0;
  text-align: left;
  line-height: 2em;
  font-size: clamp(2rem, 2vw, 3.6rem) !important;
  min-height: 0vw;
}
@media only screen and (max-width:480px) {
  .selftreatment .page-top__text h1 {
    font-size: clamp(1.4rem, 2vw, 2rem) !important;
  }
}
.selftreatment .page-top__text h1 span {
  display: block;
  font-size: 150%;
  margin-top: 0.5em;
}
.selftreatment .p-pankuzu__inner {
  width: 1200px;
  margin: 0 auto;
}
@media only screen and (max-width:1360px) {
  .selftreatment .p-pankuzu__inner {
    width: 90%;
  }
}
.selftreatment .introduction {
  position: relative;
}
.selftreatment .introduction__text {
  width: 700px;
  margin: 0 auto;
  font-size: clamp(1.3rem, 2vw, 1.8rem);
  min-height: 0vw;
  line-height: 2em;
}
@media only screen and (max-width:1360px) {
  .selftreatment .introduction__text {
    width: 50%;
    font-size: clamp(1.3rem, 2vw, 1.7rem);
  }
}
@media only screen and (max-width:991px) {
  .selftreatment .introduction__text {
    font-size: clamp(1.3rem, 2vw, 1.6rem);
  }
}
@media only screen and (max-width:812px) {
  .selftreatment .introduction__text {
    font-size: clamp(1.2rem, 2vw, 1.4rem);
  }
}
@media only screen and (max-width:767px) {
  .selftreatment .introduction__text {
    width: calc(100% - 60px);
    margin: 0 auto;
  }
}
@media only screen and (max-width:480px) {
  .selftreatment .introduction__text {
    width: calc(100% - 30px);
    margin: 0 auto;
  }
}
.selftreatment .introduction__img:nth-of-type(1) {
  position: absolute;
  right: 0;
  top: 5%;
  width: 20%;
}
@media only screen and (max-width:767px) {
  .selftreatment .introduction__img:nth-of-type(1) {
    display: none;
  }
}
.selftreatment .introduction__img:nth-of-type(2) {
  position: absolute;
  left: 0;
  bottom: 15%;
  width: 20%;
}
@media only screen and (max-width:767px) {
  .selftreatment .introduction__img:nth-of-type(2) {
    display: none;
  }
}
.selftreatment .selftreatment-menu {
  background: #f2ece0;
}
.selftreatment .selftreatment-menu__title {
  text-align: center;
  margin: 0 0 90px;
}
.selftreatment .selftreatment-menu__title h2 {
  margin: 0.5em 0 0;
}
@media only screen and (max-width:767px) {
  .selftreatment .selftreatment-menu__title {
    margin: 0 0 45px;
  }
}
@media only screen and (max-width:480px) {
  .selftreatment .selftreatment-menu__title {
    margin: 0 0 30px;
  }
}
.selftreatment .selftreatment-menu__inner {
  width: 1360px;
  margin: 0 auto;
}
@media only screen and (max-width:1360px) {
  .selftreatment .selftreatment-menu__inner {
    width: 90%;
  }
}
@media only screen and (max-width:991px) {
  .selftreatment .selftreatment-menu__inner {
    width: 95%;
  }
}
@media only screen and (max-width:767px) {
  .selftreatment .selftreatment-menu__inner {
    width: calc(100% - 60px);
  }
}
.selftreatment .selftreatment-menu .selftreatment-menu-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 1px solid #999;
  padding-bottom: 90px;
  margin-bottom: 90px;
}
@media only screen and (max-width:767px) {
  .selftreatment .selftreatment-menu .selftreatment-menu-content {
    display: block;
    padding-bottom: 45px;
    margin-bottom: 45px;
  }
}
.selftreatment .selftreatment-menu .selftreatment-menu-content__img {
  -ms-flex-preferred-size: 46%;
      flex-basis: 46%;
  position: relative;
}
@media only screen and (max-width:767px) {
  .selftreatment .selftreatment-menu .selftreatment-menu-content__img {
    margin-bottom: 2em;
  }
}
.selftreatment .selftreatment-menu .selftreatment-menu-content__img img {
  border-radius: 10px;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media only screen and (max-width:767px) {
  .selftreatment .selftreatment-menu .selftreatment-menu-content__img img {
    height: auto;
  }
}
.selftreatment .selftreatment-menu .selftreatment-menu-content__img:after {
  content: "";
  width: 1px;
  height: 100%;
  background: #999;
  display: block;
  position: absolute;
  right: -9%;
  top: 0;
}
.selftreatment .selftreatment-menu .selftreatment-menu-content__text {
  -ms-flex-preferred-size: 46%;
      flex-basis: 46%;
  position: relative;
  background: #fff;
  padding: 60px 120px 90px 30px;
  border-radius: 10px;
}
@media only screen and (max-width:1360px) {
  .selftreatment .selftreatment-menu .selftreatment-menu-content__text {
    padding: 45px 90px 60px 30px;
  }
}
@media only screen and (max-width:1200px) {
  .selftreatment .selftreatment-menu .selftreatment-menu-content__text {
    padding: 45px 75px 60px 30px;
  }
}
@media only screen and (max-width:480px) {
  .selftreatment .selftreatment-menu .selftreatment-menu-content__text {
    padding: 30px 75px 60px 30px;
  }
}
.selftreatment .selftreatment-menu .selftreatment-menu-content__text h3 {
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  text-orientation: upright;
  letter-spacing: 0.14em;
  line-height: 1.8em;
  position: absolute;
  right: 30px;
  top: 30px;
  font-size: clamp(1.8rem, 2vw, 3rem);
  min-height: 0vw;
  margin: 0;
}
@media only screen and (max-width:1200px) {
  .selftreatment .selftreatment-menu .selftreatment-menu-content__text h3 {
    right: 20px;
  }
}
.selftreatment .selftreatment-menu .selftreatment-menu-content__text p {
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  min-height: 0vw;
}
@media only screen and (max-width:1360px) {
  .selftreatment .selftreatment-menu .selftreatment-menu-content__text p {
    font-size: clamp(1.2rem, 2vw, 1.5rem);
  }
}
@media only screen and (max-width:1200px) {
  .selftreatment .selftreatment-menu .selftreatment-menu-content__text p {
    font-size: clamp(1.2rem, 2vw, 1.4rem);
  }
}
.selftreatment .selftreatment-menu .selftreatment-menu-content__text a {
  position: absolute;
  right: 30px;
  bottom: 30px;
  padding-right: 1.5em;
  border-bottom: 1px solid #999;
}
@media only screen and (max-width:991px) {
  .selftreatment .selftreatment-menu .selftreatment-menu-content__text a {
    bottom: 20px;
  }
}
.selftreatment .selftreatment-menu .selftreatment-menu-content__text a:after {
  content: "";
  background: url(assets/img/icon/chevron.svg) no-repeat;
  background-size: contain;
  width: 8px;
  height: 12px;
  display: block;
  margin-left: 0.5em;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  margin-top: 1px;
}
@media only screen and (max-width:768px) {
  .selftreatment .selftreatment-menu .selftreatment-menu-content__text a:after {
    width: 6px;
    height: 10px;
  }
}
.selftreatment .selftreatment-menu .selftreatment-menu-content:nth-of-type(even) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.selftreatment .selftreatment-menu .selftreatment-menu-content:nth-of-type(even) .selftreatment-menu-content__text {
  padding: 60px 30px 90px 120px;
  position: relative;
}
@media only screen and (max-width:1360px) {
  .selftreatment .selftreatment-menu .selftreatment-menu-content:nth-of-type(even) .selftreatment-menu-content__text {
    padding: 45px 30px 60px 90px;
  }
}
@media only screen and (max-width:1200px) {
  .selftreatment .selftreatment-menu .selftreatment-menu-content:nth-of-type(even) .selftreatment-menu-content__text {
    padding: 45px 30px 60px 75px;
  }
}
@media only screen and (max-width:480px) {
  .selftreatment .selftreatment-menu .selftreatment-menu-content:nth-of-type(even) .selftreatment-menu-content__text {
    padding: 30px 30px 60px 75px;
  }
}
.selftreatment .selftreatment-menu .selftreatment-menu-content:nth-of-type(even) .selftreatment-menu-content__text:after {
  content: "";
  width: 1px;
  height: 100%;
  background: #999;
  display: block;
  position: absolute;
  right: -9%;
  top: 0;
}
.selftreatment .selftreatment-menu .selftreatment-menu-content:nth-of-type(even) .selftreatment-menu-content__text h3 {
  right: inherit;
  left: 30px;
}
@media only screen and (max-width:1200px) {
  .selftreatment .selftreatment-menu .selftreatment-menu-content:nth-of-type(even) .selftreatment-menu-content__text h3 {
    left: 20px;
  }
}
.selftreatment .selftreatment-menu .selftreatment-menu-content:nth-of-type(even) .selftreatment-menu-content__img:after {
  display: none;
}
.selftreatment .selftreatment-menu .selftreatment-menu-content:last-of-type {
  margin-bottom: 0;
}

/*  -------------------------------------
	archive:post-type-archive-voice /tax-voice_tag
  -------------------------------------*/
.post-type-archive-voice .page-top, .tax-voice_tag .page-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 60px;
  height: auto;
}
@media only screen and (max-width:767px) {
  .post-type-archive-voice .page-top, .tax-voice_tag .page-top {
    padding-bottom: 30px;
    padding-top: 0;
  }
}
.post-type-archive-voice .page-top__img, .tax-voice_tag .page-top__img {
  -ms-flex-preferred-size: 70%;
      flex-basis: 70%;
}
.post-type-archive-voice .page-top__text, .tax-voice_tag .page-top__text {
  -ms-flex-preferred-size: 30%;
      flex-basis: 30%;
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  text-orientation: upright;
  letter-spacing: 0.14em;
  line-height: 1.8em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.post-type-archive-voice .page-top__text .inner, .tax-voice_tag .page-top__text .inner {
  margin: 0 auto;
}
@media only screen and (max-width:480px) {
  .post-type-archive-voice .page-top__text .inner, .tax-voice_tag .page-top__text .inner {
    padding-left: 0;
  }
}
.post-type-archive-voice .page-top__text p, .tax-voice_tag .page-top__text p {
  font-size: clamp(1.3rem, 1.5vw, 2.2rem);
  min-height: 0vw;
  font-weight: 600;
}
@media only screen and (max-width:480px) {
  .post-type-archive-voice .page-top__text p, .tax-voice_tag .page-top__text p {
    font-size: 1.2rem;
  }
}
.post-type-archive-voice .page-top__text h1, .tax-voice_tag .page-top__text h1 {
  margin: 0;
  text-align: left;
  line-height: 2em;
  font-size: clamp(3rem, 2vw, 3.6rem) !important;
  min-height: 0vw;
}
@media only screen and (max-width:768px) {
  .post-type-archive-voice .page-top__text h1, .tax-voice_tag .page-top__text h1 {
    font-size: clamp(2.4rem, 2vw, 3rem) !important;
  }
}
@media only screen and (max-width:480px) {
  .post-type-archive-voice .page-top__text h1, .tax-voice_tag .page-top__text h1 {
    font-size: 1.6rem !important;
  }
}
.post-type-archive-voice .page-top__text h1 span, .tax-voice_tag .page-top__text h1 span {
  display: block;
  font-size: 150%;
  margin-top: 0.5em;
}
.post-type-archive-voice .voice-list, .tax-voice_tag .voice-list {
  background: #f2ece0;
}
.post-type-archive-voice .voice-list h2, .tax-voice_tag .voice-list h2 {
  text-align: center;
  margin: 0 0 60px;
  font-size: clamp(1.8rem, 2vw, 2.4rem) !important;
  min-height: 0vw;
}
@media only screen and (max-width:687px) {
  .post-type-archive-voice .voice-list h2, .tax-voice_tag .voice-list h2 {
    margin: 0 0 30px;
  }
}
.post-type-archive-voice .voice-list__inner, .tax-voice_tag .voice-list__inner {
  width: 1360px;
  margin: 0 auto;
  -webkit-column-count: 2;
     -moz-column-count: 2;
          column-count: 2;
  -webkit-column-gap: 1;
     -moz-column-gap: 1;
          column-gap: 1;
}
@media only screen and (max-width:1360px) {
  .post-type-archive-voice .voice-list__inner, .tax-voice_tag .voice-list__inner {
    width: 90%;
  }
}
@media only screen and (max-width:991px) {
  .post-type-archive-voice .voice-list__inner, .tax-voice_tag .voice-list__inner {
    width: 95%;
  }
}
@media only screen and (max-width:767px) {
  .post-type-archive-voice .voice-list__inner, .tax-voice_tag .voice-list__inner {
    width: calc(100% - 30px);
  }
}
@media only screen and (max-width:687px) {
  .post-type-archive-voice .voice-list__inner, .tax-voice_tag .voice-list__inner {
    -webkit-column-count: 1;
       -moz-column-count: 1;
            column-count: 1;
  }
}
.post-type-archive-voice .voice-list__tag, .tax-voice_tag .voice-list__tag {
  width: 50%;
  margin: 0 auto 60px;
}
@media only screen and (max-width:1360px) {
  .post-type-archive-voice .voice-list__tag, .tax-voice_tag .voice-list__tag {
    width: 90%;
  }
}
@media only screen and (max-width:991px) {
  .post-type-archive-voice .voice-list__tag, .tax-voice_tag .voice-list__tag {
    width: 95%;
  }
}
@media only screen and (max-width:767px) {
  .post-type-archive-voice .voice-list__tag, .tax-voice_tag .voice-list__tag {
    width: calc(100% - 30px);
  }
}
@media only screen and (max-width:687px) {
  .post-type-archive-voice .voice-list__tag, .tax-voice_tag .voice-list__tag {
    margin: 0 auto 30px;
    width: calc(100% - 30px);
  }
}
.post-type-archive-voice .voice-list__tag .p-tag__menu li, .tax-voice_tag .voice-list__tag .p-tag__menu li {
  font-size: clamp(1.1rem, 1.5vw, 1.4rem) !important;
  min-height: 0vw;
}
.post-type-archive-voice .voice-list__tag .p-tag__menu li a, .tax-voice_tag .voice-list__tag .p-tag__menu li a {
  height: 30px;
  padding: 0 1em;
}
.post-type-archive-voice .voice-list .voice-content, .tax-voice_tag .voice-list .voice-content {
  padding: 30px;
  background-image: linear-gradient(0deg, transparent calc(100% - 1px), #f0f0f0 calc(100% - 1px)), linear-gradient(90deg, transparent calc(100% - 1px), #f0f0f0 calc(100% - 1px));
  background-size: 16px 16px;
  background-repeat: repeat;
  background-position: center center;
  background-color: #fff;
  -webkit-column-break-inside: avoid;
  page-break-inside: avoid;
  -moz-column-break-inside: avoid;
       break-inside: avoid;
  margin: 0 1em 3em;
}
@media only screen and (max-width:687px) {
  .post-type-archive-voice .voice-list .voice-content, .tax-voice_tag .voice-list .voice-content {
    margin: 0 0 3em;
  }
}
.post-type-archive-voice .voice-list .voice-content:last-of-type, .tax-voice_tag .voice-list .voice-content:last-of-type {
  margin-bottom: 0;
}
.post-type-archive-voice .voice-list .voice-content h3, .tax-voice_tag .voice-list .voice-content h3 {
  margin: 0 0 0.5em;
  font-size: clamp(1.6rem, 2vw, 2.4rem) !important;
  min-height: 0vw;
}
.post-type-archive-voice .voice-list .voice-content p, .tax-voice_tag .voice-list .voice-content p {
  line-height: 2em;
  font-size: clamp(1.3rem, 1.5vw, 1.6rem) !important;
  min-height: 0vw;
}
.post-type-archive-voice .voice-list .voice-content .meta-wrap, .tax-voice_tag .voice-list .voice-content .meta-wrap {
  margin-top: 1.5em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  position: relative;
}
.post-type-archive-voice .voice-list .voice-content .meta-wrap .p-tag__menu, .tax-voice_tag .voice-list .voice-content .meta-wrap .p-tag__menu {
  -ms-flex-preferred-size: 60%;
      flex-basis: 60%;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin: 0;
}
.post-type-archive-voice .voice-list .voice-content .meta-wrap .p-tag__menu li a, .tax-voice_tag .voice-list .voice-content .meta-wrap .p-tag__menu li a {
  border: 1px solid #333;
  padding: 0 1em;
  font-size: clamp(1.1rem, 1.5vw, 1.4rem) !important;
  min-height: 0vw;
  height: 30px;
}
.post-type-archive-voice .voice-list .voice-content .meta-wrap .p-tag__menu li a:hover, .tax-voice_tag .voice-list .voice-content .meta-wrap .p-tag__menu li a:hover {
  border: 1px solid #333 !important;
}
.post-type-archive-voice .voice-list .voice-content .meta-wrap .age, .tax-voice_tag .voice-list .voice-content .meta-wrap .age {
  -ms-flex-preferred-size: 40%;
      flex-basis: 40%;
  text-align: right;
  font-size: clamp(1.2rem, 1.5vw, 1.5rem) !important;
  min-height: 0vw;
  position: absolute;
  right: 0;
  top: 0;
}
@media only screen and (max-width:687px) {
  .post-type-archive-voice .voice-list .voice-content .meta-wrap .age, .tax-voice_tag .voice-list .voice-content .meta-wrap .age {
    margin-top: 3px;
  }
}

.tax-voice_tag .page-top {
  height: 480px;
  margin-top: 0;
}
@media only screen and (max-width:1200px) {
  .tax-voice_tag .page-top {
    height: 400px;
  }
}
@media only screen and (max-width:991px) {
  .tax-voice_tag .page-top {
    height: 360px;
  }
}
@media only screen and (max-width:812px) {
  .tax-voice_tag .page-top {
    height: 300px;
  }
}
@media only screen and (max-width:768px) {
  .tax-voice_tag .page-top {
    height: 270px;
  }
}
@media only screen and (max-width:480px) {
  .tax-voice_tag .page-top {
    height: 200px;
  }
}
.tax-voice_tag .page-top__text {
  -webkit-writing-mode: horizontal-tb;
      -ms-writing-mode: lr-tb;
          writing-mode: horizontal-tb;
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
}
.tax-voice_tag .page-top__text h1 {
  text-align: center;
}
.tax-voice_tag .voice-list__tag {
  margin-top: 60px;
}
@media only screen and (max-width:480px) {
  .tax-voice_tag .voice-list__tag {
    margin-top: 30px;
  }
}

/*  -------------------------------------
	page:page-selftreatment-child
  -------------------------------------*/
.page-selftreatment-child .page-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 60px;
}
@media only screen and (max-width:991px) {
  .page-selftreatment-child .page-top {
    padding-bottom: 0;
  }
}
.page-selftreatment-child .page-top__img {
  -ms-flex-preferred-size: 70%;
      flex-basis: 70%;
}
.page-selftreatment-child .page-top__text {
  -ms-flex-preferred-size: 30%;
      flex-basis: 30%;
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  text-orientation: upright;
  letter-spacing: 0.14em;
  line-height: 1.8em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.page-selftreatment-child .page-top__text .inner {
  margin: 0 auto;
  padding-left: 3em;
}
.page-selftreatment-child .page-top__text h1 {
  margin: 0 0.5em 0 0;
  font-size: clamp(2rem, 3vw, 4rem) !important;
}
.page-selftreatment-child .page-top__text p {
  font-size: clamp(1.5rem, 3vw, 2rem) !important;
}
.page-selftreatment-child .worries h2, .page-selftreatment-child .reason h2 {
  text-align: center;
  font-size: clamp(1.8rem, 3vw, 3rem) !important;
  min-height: 0vw;
  margin: 0 0 90px;
}
@media only screen and (max-width:767px) {
  .page-selftreatment-child .worries h2, .page-selftreatment-child .reason h2 {
    margin: 0 0 60px;
  }
}
@media only screen and (max-width:480px) {
  .page-selftreatment-child .worries h2, .page-selftreatment-child .reason h2 {
    margin: 0 0 45px;
  }
}
.page-selftreatment-child .worries__inner, .page-selftreatment-child .reason__inner {
  position: relative;
  width: 1360px;
  margin: 0 auto;
}
@media only screen and (max-width:1360px) {
  .page-selftreatment-child .worries__inner, .page-selftreatment-child .reason__inner {
    width: 90%;
  }
}
@media only screen and (max-width:991px) {
  .page-selftreatment-child .worries__inner, .page-selftreatment-child .reason__inner {
    width: 95%;
  }
}
@media only screen and (max-width:767px) {
  .page-selftreatment-child .worries__inner, .page-selftreatment-child .reason__inner {
    width: calc(100% - 30px);
  }
}
.page-selftreatment-child .worries .worries-content, .page-selftreatment-child .worries .reason-content, .page-selftreatment-child .reason .worries-content, .page-selftreatment-child .reason .reason-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 90px;
}
@media only screen and (max-width:767px) {
  .page-selftreatment-child .worries .worries-content, .page-selftreatment-child .worries .reason-content, .page-selftreatment-child .reason .worries-content, .page-selftreatment-child .reason .reason-content {
    display: block;
  }
}
@media only screen and (max-width:480px) {
  .page-selftreatment-child .worries .worries-content, .page-selftreatment-child .worries .reason-content, .page-selftreatment-child .reason .worries-content, .page-selftreatment-child .reason .reason-content {
    margin-bottom: 45px;
  }
}
.page-selftreatment-child .worries .worries-content:nth-of-type(odd), .page-selftreatment-child .worries .reason-content:nth-of-type(odd), .page-selftreatment-child .reason .worries-content:nth-of-type(odd), .page-selftreatment-child .reason .reason-content:nth-of-type(odd) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.page-selftreatment-child .worries .worries-content:last-of-type, .page-selftreatment-child .worries .reason-content:last-of-type, .page-selftreatment-child .reason .worries-content:last-of-type, .page-selftreatment-child .reason .reason-content:last-of-type {
  margin-bottom: 0;
}
.page-selftreatment-child .worries .worries-content__img, .page-selftreatment-child .worries .reason-content__img, .page-selftreatment-child .reason .worries-content__img, .page-selftreatment-child .reason .reason-content__img {
  -ms-flex-preferred-size: 46%;
      flex-basis: 46%;
}
@media only screen and (max-width:969px) {
  .page-selftreatment-child .worries .worries-content__img, .page-selftreatment-child .worries .reason-content__img, .page-selftreatment-child .reason .worries-content__img, .page-selftreatment-child .reason .reason-content__img {
    -ms-flex-preferred-size: 45%;
        flex-basis: 45%;
  }
}
@media only screen and (max-width:767px) {
  .page-selftreatment-child .worries .worries-content__img, .page-selftreatment-child .worries .reason-content__img, .page-selftreatment-child .reason .worries-content__img, .page-selftreatment-child .reason .reason-content__img {
    margin-bottom: 3em;
  }
}
.page-selftreatment-child .worries .worries-content__img img, .page-selftreatment-child .worries .reason-content__img img, .page-selftreatment-child .reason .worries-content__img img, .page-selftreatment-child .reason .reason-content__img img {
  height: 350px;
  margin: 0 auto;
  -o-object-fit: contain;
     object-fit: contain;
}
@media only screen and (max-width:991px) {
  .page-selftreatment-child .worries .worries-content__img img, .page-selftreatment-child .worries .reason-content__img img, .page-selftreatment-child .reason .worries-content__img img, .page-selftreatment-child .reason .reason-content__img img {
    height: 300px;
  }
}
@media only screen and (max-width:480px) {
  .page-selftreatment-child .worries .worries-content__img img, .page-selftreatment-child .worries .reason-content__img img, .page-selftreatment-child .reason .worries-content__img img, .page-selftreatment-child .reason .reason-content__img img {
    height: 200px;
  }
}
.page-selftreatment-child .worries .worries-content__text, .page-selftreatment-child .worries .reason-content__text, .page-selftreatment-child .reason .worries-content__text, .page-selftreatment-child .reason .reason-content__text {
  -ms-flex-preferred-size: 46%;
      flex-basis: 46%;
}
@media only screen and (max-width:969px) {
  .page-selftreatment-child .worries .worries-content__text, .page-selftreatment-child .worries .reason-content__text, .page-selftreatment-child .reason .worries-content__text, .page-selftreatment-child .reason .reason-content__text {
    -ms-flex-preferred-size: 55%;
        flex-basis: 55%;
  }
}
@media only screen and (max-width:767px) {
  .page-selftreatment-child .worries .worries-content__text, .page-selftreatment-child .worries .reason-content__text, .page-selftreatment-child .reason .worries-content__text, .page-selftreatment-child .reason .reason-content__text {
    width: 60%;
    margin: 0 auto;
  }
}
@media only screen and (max-width:687px) {
  .page-selftreatment-child .worries .worries-content__text, .page-selftreatment-child .worries .reason-content__text, .page-selftreatment-child .reason .worries-content__text, .page-selftreatment-child .reason .reason-content__text {
    width: 100%;
  }
}
.page-selftreatment-child .worries .worries-content__text ul li, .page-selftreatment-child .worries .reason-content__text ul li, .page-selftreatment-child .reason .worries-content__text ul li, .page-selftreatment-child .reason .reason-content__text ul li {
  font-size: clamp(1.5rem, 1.5vw, 2rem) !important;
  min-height: 0vw;
  line-height: 2.5em;
  letter-spacing: 0.03em;
}
@media only screen and (max-width:480px) {
  .page-selftreatment-child .worries .worries-content__text ul li, .page-selftreatment-child .worries .reason-content__text ul li, .page-selftreatment-child .reason .worries-content__text ul li, .page-selftreatment-child .reason .reason-content__text ul li {
    font-size: clamp(1.3rem, 1.5vw, 2rem) !important;
  }
}
.page-selftreatment-child .worries .worries-content__text ul li:before, .page-selftreatment-child .worries .reason-content__text ul li:before, .page-selftreatment-child .reason .worries-content__text ul li:before, .page-selftreatment-child .reason .reason-content__text ul li:before {
  content: "・";
  margin-right: 0.5em;
}
.page-selftreatment-child .worries .worries-content__text p, .page-selftreatment-child .worries .reason-content__text p, .page-selftreatment-child .reason .worries-content__text p, .page-selftreatment-child .reason .reason-content__text p {
  font-size: clamp(1.5rem, 1.5vw, 2rem) !important;
  min-height: 0vw;
  line-height: 2.5em;
}
@media only screen and (max-width:480px) {
  .page-selftreatment-child .worries .worries-content__text p, .page-selftreatment-child .worries .reason-content__text p, .page-selftreatment-child .reason .worries-content__text p, .page-selftreatment-child .reason .reason-content__text p {
    font-size: clamp(1.3rem, 1.5vw, 2rem) !important;
    letter-spacing: 0.01em;
  }
}
.page-selftreatment-child .recipe {
  background: #f2ece0;
}
.page-selftreatment-child .recipe h2 {
  text-align: center;
  margin: 0 0 60px;
  font-size: clamp(1.8rem, 3vw, 3rem) !important;
}
@media only screen and (max-width:480px) {
  .page-selftreatment-child .recipe h2 {
    margin: 0 0 45px;
  }
}
.page-selftreatment-child .recipe__inner {
  width: 750px;
  margin: 0 auto;
}
@media only screen and (max-width:768px) {
  .page-selftreatment-child .recipe__inner {
    width: 95%;
  }
}
@media only screen and (max-width:767px) {
  .page-selftreatment-child .recipe__inner {
    width: calc(100% - 30px);
  }
}
.page-selftreatment-child .recipe .recipe-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -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: 180px 0;
}
@media only screen and (max-width:767px) {
  .page-selftreatment-child .recipe .recipe-content {
    display: block;
    margin: 120px 0;
  }
}
@media only screen and (max-width:480px) {
  .page-selftreatment-child .recipe .recipe-content {
    display: block;
    margin: 60px 0;
  }
}
.page-selftreatment-child .recipe .recipe-content__img {
  -ms-flex-preferred-size: 46%;
      flex-basis: 46%;
}
@media only screen and (max-width:767px) {
  .page-selftreatment-child .recipe .recipe-content__img {
    margin: 0 0 3em;
  }
}
.page-selftreatment-child .recipe .recipe-content__img img {
  height: 270px;
  margin: 0 auto;
  -o-object-fit: contain;
     object-fit: contain;
}
@media only screen and (max-width:480px) {
  .page-selftreatment-child .recipe .recipe-content__img img {
    height: 240px;
  }
}
.page-selftreatment-child .recipe .recipe-content__text {
  -ms-flex-preferred-size: 46%;
      flex-basis: 46%;
}
@media only screen and (max-width:767px) {
  .page-selftreatment-child .recipe .recipe-content__text {
    width: 60%;
    margin: 0 auto;
  }
}
@media only screen and (max-width:687px) {
  .page-selftreatment-child .recipe .recipe-content__text {
    width: 100%;
  }
}
.page-selftreatment-child .recipe .recipe-content__text .number {
  font-family: "EB Garamond", serif;
  font-size: clamp(3rem, 2vw, 4.8rem) !important;
  min-height: 0vw;
  margin: 0 0 0.25em;
  line-height: 1em;
}
.page-selftreatment-child .recipe .recipe-content__text p {
  font-size: clamp(1.5rem, 1.5vw, 1.8rem) !important;
  min-height: 0vw;
  line-height: 1.8em;
}
.page-selftreatment-child .recipe .recipe-content.last {
  margin-bottom: 90px;
}
@media only screen and (max-width:768px) {
  .page-selftreatment-child .recipe .recipe-content.last {
    margin-bottom: 45px;
  }
}
.page-selftreatment-child .recipe .material {
  background: url(assets/img/common/btn_w.png) no-repeat;
  background-size: cover;
  background-position: center center;
  border-radius: 10px;
  padding: 45px;
}
@media only screen and (max-width:768px) {
  .page-selftreatment-child .recipe .material {
    padding: 30px;
  }
}
.page-selftreatment-child .recipe .material h3 {
  text-align: center;
  margin: 0 0 1em;
  font-size: clamp(1.5rem, 1.5vw, 2rem) !important;
}
.page-selftreatment-child .recipe .material ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 70%;
  margin: 0 auto;
}
@media only screen and (max-width:480px) {
  .page-selftreatment-child .recipe .material ul {
    width: 100%;
  }
}
.page-selftreatment-child .recipe .material ul li {
  -ms-flex-preferred-size: 50%;
      flex-basis: 50%;
  margin: 0 0 1em;
}
@media only screen and (max-width:480px) {
  .page-selftreatment-child .recipe .material ul li {
    letter-spacing: 0.01em;
  }
}
.page-selftreatment-child .recipe .recommend {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -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-top: 90px;
}
@media only screen and (max-width:767px) {
  .page-selftreatment-child .recipe .recommend {
    margin-top: 45px;
  }
}
@media only screen and (max-width:480px) {
  .page-selftreatment-child .recipe .recommend {
    display: block;
  }
}
.page-selftreatment-child .recipe .recommend:before {
  content: "";
  background: url(assets/img/common/bg_border01.png) repeat-x left top;
  background-size: auto 100%;
  display: block;
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
  top: 0;
}
.page-selftreatment-child .recipe .recommend:after {
  content: "";
  background: url(assets/img/common/bg_border01.png) repeat-x left top;
  background-size: auto 100%;
  display: block;
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: 0;
}
.page-selftreatment-child .recipe .recommend__inner {
  padding: 4em 0;
}
@media only screen and (max-width:480px) {
  .page-selftreatment-child .recipe .recommend__inner {
    padding: 1.5em 0 4em;
  }
}
.page-selftreatment-child .recipe .recommend__inner dl {
  margin: 0 0 2em;
}
.page-selftreatment-child .recipe .recommend__inner dl:last-of-type {
  margin: 0;
}
.page-selftreatment-child .recipe .recommend__inner dl dt {
  position: relative;
  padding-left: 35px;
  font-size: clamp(1.5rem, 1.5vw, 2.2rem) !important;
  min-height: 0vw;
  font-weight: 600;
  margin: 0 0 0.5em;
}
@media only screen and (max-width:767px) {
  .page-selftreatment-child .recipe .recommend__inner dl dt {
    padding-left: 25px;
  }
}
.page-selftreatment-child .recipe .recommend__inner dl dt:before {
  content: "";
  height: 1px;
  width: 20px;
  background: #999;
  margin-right: 0.25em;
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
}
@media only screen and (max-width:767px) {
  .page-selftreatment-child .recipe .recommend__inner dl dt:before {
    width: 15px;
  }
}
.page-selftreatment-child .recipe .recommend h3 {
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  text-orientation: upright;
  letter-spacing: 0.14em;
  line-height: 1.8em;
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 3rem) !important;
}
@media only screen and (max-width:767px) {
  .page-selftreatment-child .recipe .recommend h3 {
    line-height: 1.4em;
  }
}
@media only screen and (max-width:480px) {
  .page-selftreatment-child .recipe .recommend h3 {
    padding: 2em 0 0;
    -webkit-writing-mode: horizontal-tb;
        -ms-writing-mode: lr-tb;
            writing-mode: horizontal-tb;
  }
  .page-selftreatment-child .recipe .recommend h3 br {
    display: none;
  }
}
@media only screen and (max-width:767px) {
  .page-selftreatment-child .recipe .caution {
    width: 80%;
    margin: 0 auto;
  }
}
@media only screen and (max-width:687px) {
  .page-selftreatment-child .recipe .caution {
    width: 100%;
  }
}
.page-selftreatment-child .selftreatment-product {
  padding-bottom: 30px;
}
@media only screen and (max-width:767px) {
  .page-selftreatment-child .selftreatment-product {
    padding-bottom: 60px;
  }
}
.page-selftreatment-child .selftreatment-product h2 {
  text-align: center;
  margin: 0 0 90px;
  font-size: clamp(1.6rem, 3vw, 3rem) !important;
}
@media only screen and (max-width:768px) {
  .page-selftreatment-child .selftreatment-product h2 {
    margin: 0 0 45px;
  }
}
.page-selftreatment-child .selftreatment-product__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  position: relative;
  width: 1360px;
  margin: 0 auto;
}
@media only screen and (max-width:1360px) {
  .page-selftreatment-child .selftreatment-product__inner {
    width: 90%;
  }
}
@media only screen and (max-width:991px) {
  .page-selftreatment-child .selftreatment-product__inner {
    width: 95%;
  }
}
@media only screen and (max-width:767px) {
  .page-selftreatment-child .selftreatment-product__inner {
    width: 60%;
    display: block;
  }
}
@media only screen and (max-width:687px) {
  .page-selftreatment-child .selftreatment-product__inner {
    width: calc(100% - 30px);
  }
}
.page-selftreatment-child .selftreatment-product .selftreatment-product-content {
  -ms-flex-preferred-size: 46%;
      flex-basis: 46%;
  margin-bottom: 90px;
}
@media only screen and (max-width:767px) {
  .page-selftreatment-child .selftreatment-product .selftreatment-product-content {
    margin-bottom: 60px;
  }
}
.page-selftreatment-child .selftreatment-product .selftreatment-product-content:last-of-type {
  margin-bottom: 0;
}
.page-selftreatment-child .selftreatment-product .selftreatment-product-content img {
  height: 300px;
  margin: 0 auto 3em;
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
}
@media only screen and (max-width:1200px) {
  .page-selftreatment-child .selftreatment-product .selftreatment-product-content img {
    height: 200px;
  }
}
@media only screen and (max-width:767px) {
  .page-selftreatment-child .selftreatment-product .selftreatment-product-content img {
    height: 170px;
  }
}
@media only screen and (max-width:480px) {
  .page-selftreatment-child .selftreatment-product .selftreatment-product-content img {
    height: 150px;
  }
}
.page-selftreatment-child .selftreatment-product .selftreatment-product-content h3 {
  margin: 0 0 0.75em;
  text-align: center;
  font-size: clamp(1.5rem, 2vw, 2.4rem) !important;
}

.selftreatment-shoga .selftreatment-product, .selftreatment-satoimo .selftreatment-product {
  padding-bottom: 120px;
}
@media only screen and (max-width:1200px) {
  .selftreatment-shoga .selftreatment-product, .selftreatment-satoimo .selftreatment-product {
    padding-bottom: 90px;
  }
}
@media only screen and (max-width:768px) {
  .selftreatment-shoga .selftreatment-product, .selftreatment-satoimo .selftreatment-product {
    padding-bottom: 60px;
  }
}
@media only screen and (max-width:480px) {
  .selftreatment-shoga .selftreatment-product, .selftreatment-satoimo .selftreatment-product {
    padding-bottom: 45px;
  }
}
.selftreatment-shoga .selftreatment-product__inner, .selftreatment-satoimo .selftreatment-product__inner {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.selftreatment-satoimo .worries .worries-content:nth-of-type(1) .worries-content__img img {
  height: 300px;
}
@media only screen and (max-width:969px) {
  .selftreatment-satoimo .worries .worries-content:nth-of-type(1) .worries-content__img img {
    height: 260px;
  }
}
@media only screen and (max-width:812px) {
  .selftreatment-satoimo .worries .worries-content__img {
    -webkit-box-flex: 40%;
        -ms-flex: 40%;
            flex: 40%;
  }
}
@media only screen and (max-width:812px) {
  .selftreatment-satoimo .worries .worries-content__text {
    -webkit-box-flex: 60%;
        -ms-flex: 60%;
            flex: 60%;
  }
}
.selftreatment-satoimo .reason .worries-content__img img {
  height: 500px;
}
@media only screen and (max-width:969px) {
  .selftreatment-satoimo .reason .worries-content__img img {
    height: 450px;
  }
}
@media only screen and (max-width:812px) {
  .selftreatment-satoimo .reason .worries-content__img img {
    height: 400px;
  }
}
@media only screen and (max-width:480px) {
  .selftreatment-satoimo .reason .worries-content__img img {
    height: 350px;
  }
}
@media only screen and (max-width:480px) {
  .selftreatment-satoimo .recipe .recipe-content__img img {
    height: 200px;
  }
}

/*  -------------------------------------
	page:magokoro
  -------------------------------------*/
.magokoro .page-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 60px;
}
@media only screen and (max-width:991px) {
  .magokoro .page-top {
    padding-bottom: 0;
  }
}
.magokoro .page-top__img {
  -ms-flex-preferred-size: 70%;
      flex-basis: 70%;
}
.magokoro .page-top__img img {
  border-radius: 0 10px 10px 0;
}
.magokoro .page-top__text {
  -ms-flex-preferred-size: 30%;
      flex-basis: 30%;
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  text-orientation: upright;
  letter-spacing: 0.14em;
  line-height: 1.8em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.magokoro .page-top__text .inner {
  margin: 0 auto;
  padding-left: 3em;
}
@media only screen and (max-width:767px) {
  .magokoro .page-top__text .inner {
    padding-left: 1em;
  }
}
.magokoro .page-top__text h1 {
  margin: 0 0.5em 0 0;
  font-size: clamp(2rem, 3vw, 4rem) !important;
}
.magokoro .page-top__text p {
  font-size: clamp(1.3rem, 2vw, 2rem) !important;
}
.magokoro .p-pankuzu__inner {
  width: 1200px;
  margin: 0 auto;
}
@media only screen and (max-width:1360px) {
  .magokoro .p-pankuzu__inner {
    width: 90%;
  }
}
.magokoro .introduction__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  position: relative;
  width: 1360px;
  margin: 0 auto;
  padding: 0 5%;
}
@media only screen and (max-width:1360px) {
  .magokoro .introduction__inner {
    width: 90%;
    padding: 0;
  }
}
@media only screen and (max-width:991px) {
  .magokoro .introduction__inner {
    width: 95%;
  }
}
@media only screen and (max-width:767px) {
  .magokoro .introduction__inner {
    width: calc(100% - 30px);
    display: block;
  }
}
.magokoro .introduction__text {
  -ms-flex-preferred-size: 35%;
      flex-basis: 35%;
}
@media only screen and (max-width:1360px) {
  .magokoro .introduction__text {
    -ms-flex-preferred-size: 40%;
        flex-basis: 40%;
  }
}
@media only screen and (max-width:1200px) {
  .magokoro .introduction__text {
    -ms-flex-preferred-size: 45%;
        flex-basis: 45%;
  }
}
@media only screen and (max-width:767px) {
  .magokoro .introduction__text {
    margin: 0 0 4%;
  }
}
.magokoro .introduction__text h3 {
  font-size: clamp(1.8rem, 3vw, 3rem) !important;
  font-weight: 600;
  margin: 0 0 1em;
}
@media only screen and (max-width:767px) {
  .magokoro .introduction__text h3 {
    margin: 0 0 0.5em;
  }
}
.magokoro .introduction__text p {
  font-size: clamp(1.3rem, 2vw, 1.8rem) !important;
}
@media only screen and (max-width:991px) {
  .magokoro .introduction__text p {
    font-size: clamp(1.3rem, 2vw, 1.6rem) !important;
  }
}
@media only screen and (max-width:812px) {
  .magokoro .introduction__text p {
    font-size: clamp(1.3rem, 2vw, 1.5rem) !important;
  }
}
.magokoro .introduction__img {
  -ms-flex-preferred-size: 65%;
      flex-basis: 65%;
}
@media only screen and (max-width:1360px) {
  .magokoro .introduction__img {
    -ms-flex-preferred-size: 60%;
        flex-basis: 60%;
  }
}
@media only screen and (max-width:1360px) {
  .magokoro .introduction__img {
    -ms-flex-preferred-size: 55%;
        flex-basis: 55%;
  }
}
.magokoro .introduction__img ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.magokoro .introduction__img ul li {
  -ms-flex-preferred-size: 48%;
      flex-basis: 48%;
}
.magokoro .introduction__img ul li img {
  margin-bottom: 4%;
  border-radius: 10px;
}
.magokoro .introduction__img ul li span {
  display: block;
}
.magokoro .introduction__img ul li span.name {
  font-size: clamp(1.5rem, 3vw, 2rem) !important;
}
.magokoro .history__inner {
  position: relative;
  width: 1360px;
  margin: 0 auto;
  padding: 0 5%;
}
@media only screen and (max-width:1360px) {
  .magokoro .history__inner {
    width: 90%;
    padding: 0;
  }
}
@media only screen and (max-width:991px) {
  .magokoro .history__inner {
    width: 95%;
  }
}
@media only screen and (max-width:767px) {
  .magokoro .history__inner {
    width: calc(100% - 30px);
  }
}
.magokoro .history .history-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media only screen and (max-width:767px) {
  .magokoro .history .history-content {
    display: block;
  }
}
.magokoro .history .history-content__img {
  -ms-flex-preferred-size: 46%;
      flex-basis: 46%;
}
@media only screen and (max-width:1200px) {
  .magokoro .history .history-content__img {
    -ms-flex-preferred-size: 48%;
        flex-basis: 48%;
  }
}
@media only screen and (max-width:767px) {
  .magokoro .history .history-content__img {
    margin-bottom: 4%;
  }
}
.magokoro .history .history-content__img img {
  border-radius: 10px;
}
@media only screen and (max-width:991px) {
  .magokoro .history .history-content__img img {
    height: 100%;
  }
}
@media only screen and (max-width:767px) {
  .magokoro .history .history-content__img img {
    height: auto;
  }
}
.magokoro .history .history-content__text {
  -ms-flex-preferred-size: 46%;
      flex-basis: 46%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.magokoro .history .history-content__text .inner {
  width: 100%;
}
@media only screen and (max-width:1200px) {
  .magokoro .history .history-content__text {
    -ms-flex-preferred-size: 48%;
        flex-basis: 48%;
  }
}
.magokoro .history .history-content__text p.lead {
  font-size: clamp(1.3rem, 2vw, 1.8rem) !important;
  line-height: 2em;
  margin-bottom: 30px;
  letter-spacing: 0.15em;
}
@media only screen and (max-width:1200px) {
  .magokoro .history .history-content__text p.lead {
    font-size: clamp(1.3rem, 2vw, 1.6rem) !important;
    margin-bottom: 20px;
  }
}
@media only screen and (max-width:767px) {
  .magokoro .history .history-content__text p.lead {
    margin-bottom: 4%;
  }
}
.magokoro .history .history-content__text .enkaku {
  position: relative;
  padding-top: 30px;
}
@media only screen and (max-width:1200px) {
  .magokoro .history .history-content__text .enkaku {
    padding-top: 20px;
  }
}
@media only screen and (max-width:767px) {
  .magokoro .history .history-content__text .enkaku {
    padding-top: 4%;
  }
}
.magokoro .history .history-content__text .enkaku:before {
  content: "";
  background: url(assets/img/common/bg_border01.png) repeat-x left top;
  background-size: auto 100%;
  display: block;
  width: 100%;
  height: 1px;
  position: absolute;
  top: 0;
  left: 0;
}
.magokoro .history .history-content__text .enkaku dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
@media only screen and (max-width:1200px) {
  .magokoro .history .history-content__text .enkaku dl {
    font-size: clamp(1.2rem, 2vw, 1.5rem) !important;
  }
}
@media only screen and (max-width:1200px) and (max-width:991px) {
  .magokoro .history .history-content__text .enkaku dl {
    display: block;
  }
}
.magokoro .history .history-content__text .enkaku dl dt {
  font-weight: 400;
  -ms-flex-preferred-size: 15%;
      flex-basis: 15%;
}
@media only screen and (max-width:991px) {
  .magokoro .history .history-content__text .enkaku dl dt {
    margin-bottom: 0.25em;
  }
}
.magokoro .story__inner {
  width: 1360px;
  margin: 0 auto;
  padding: 0 5%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media only screen and (max-width:1360px) {
  .magokoro .story__inner {
    width: 90%;
    padding: 0;
  }
}
@media only screen and (max-width:991px) {
  .magokoro .story__inner {
    width: 95%;
  }
}
@media only screen and (max-width:767px) {
  .magokoro .story__inner {
    width: calc(100% - 30px);
    display: block;
  }
}
.magokoro .story__inner p {
  font-size: clamp(1.3rem, 2vw, 1.8rem) !important;
  line-height: 2em;
}
.magokoro .story__img {
  -ms-flex-preferred-size: 60%;
      flex-basis: 60%;
}
@media only screen and (max-width:1360px) {
  .magokoro .story__img {
    -ms-flex-preferred-size: 55%;
        flex-basis: 55%;
  }
}
.magokoro .story__img ul {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.magokoro .story__img ul li {
  -ms-flex-preferred-size: 48%;
      flex-basis: 48%;
  margin-bottom: 4%;
}
.magokoro .story__img ul li img {
  border-radius: 10px;
}
.magokoro .story__img ul li:first-child {
  -ms-flex-preferred-size: 70%;
      flex-basis: 70%;
  margin-left: 30%;
}
.magokoro .story__text {
  -ms-flex-preferred-size: 35%;
      flex-basis: 35%;
  padding-left: 5%;
}
@media only screen and (max-width:1360px) {
  .magokoro .story__text {
    -ms-flex-preferred-size: 40%;
        flex-basis: 40%;
    padding-left: 0;
  }
}
@media only screen and (max-width:1360px) {
  .magokoro .story__text {
    -ms-flex-preferred-size: 45%;
        flex-basis: 45%;
  }
}
.magokoro .story__text p {
  font-size: clamp(1.3rem, 2vw, 1.8rem) !important;
  line-height: 2.2em;
}
@media only screen and (max-width:1200px) {
  .magokoro .story__text p {
    font-size: clamp(1.3rem, 2vw, 1.6rem) !important;
  }
}
.magokoro .story-second {
  padding-bottom: 300px;
}
@media only screen and (max-width:767px) {
  .magokoro .story-second {
    padding-bottom: 60px;
  }
}
@media only screen and (max-width:480px) {
  .magokoro .story-second {
    padding-bottom: 45px;
  }
}
.magokoro .story-second__inner {
  width: 1360px;
  margin: 0 auto;
  padding: 0 5%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media only screen and (max-width:1360px) {
  .magokoro .story-second__inner {
    width: 90%;
    padding: 0;
  }
}
@media only screen and (max-width:991px) {
  .magokoro .story-second__inner {
    width: 95%;
  }
}
@media only screen and (max-width:767px) {
  .magokoro .story-second__inner {
    width: calc(100% - 30px);
    display: block;
  }
}
.magokoro .story-second__img {
  -ms-flex-preferred-size: 50%;
      flex-basis: 50%;
}
@media only screen and (max-width:991px) {
  .magokoro .story-second__img {
    -ms-flex-preferred-size: 45%;
        flex-basis: 45%;
  }
}
@media only screen and (max-width:767px) {
  .magokoro .story-second__img {
    margin-bottom: 8%;
  }
}
.magokoro .story-second__img img {
  border-radius: 10px;
}
.magokoro .story-second__text {
  -ms-flex-preferred-size: 40%;
      flex-basis: 40%;
  position: relative;
}
@media only screen and (max-width:1200px) {
  .magokoro .story-second__text {
    -ms-flex-preferred-size: 46%;
        flex-basis: 46%;
  }
}
@media only screen and (max-width:991px) {
  .magokoro .story-second__text {
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
  }
}
.magokoro .story-second__text p {
  font-size: clamp(1.3rem, 2vw, 1.8rem) !important;
  line-height: 2em;
}
@media only screen and (max-width:1200px) {
  .magokoro .story-second__text p {
    font-size: clamp(1.3rem, 2vw, 1.6rem) !important;
  }
}
.magokoro .story-second__text img {
  width: 90%;
  position: absolute;
  right: 0;
  bottom: -400px;
  border-radius: 10px;
}
@media only screen and (max-width:1200px) {
  .magokoro .story-second__text img {
    bottom: -350px;
  }
}
@media only screen and (max-width:991px) {
  .magokoro .story-second__text img {
    bottom: -300px;
    width: 80%;
  }
}
@media only screen and (max-width:812px) {
  .magokoro .story-second__text img {
    bottom: -250px;
  }
}
@media only screen and (max-width:767px) {
  .magokoro .story-second__text img {
    position: static;
    width: 100%;
    margin-top: 8%;
  }
}
.magokoro .story-third__inner {
  width: 1360px;
  margin: 0 auto;
  padding: 0 5%;
}
@media only screen and (max-width:1360px) {
  .magokoro .story-third__inner {
    width: 90%;
    padding: 0;
  }
}
@media only screen and (max-width:991px) {
  .magokoro .story-third__inner {
    width: 95%;
  }
}
@media only screen and (max-width:767px) {
  .magokoro .story-third__inner {
    width: calc(100% - 30px);
    display: block;
  }
}
.magokoro .story-third__img ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.magokoro .story-third__img ul li {
  -ms-flex-preferred-size: 23%;
      flex-basis: 23%;
}
@media only screen and (max-width:767px) {
  .magokoro .story-third__img ul li {
    -ms-flex-preferred-size: 48%;
        flex-basis: 48%;
  }
  .magokoro .story-third__img ul li:nth-child(1), .magokoro .story-third__img ul li:nth-child(2) {
    margin-bottom: 4%;
  }
}
.magokoro .story-third__img ul li img {
  border-radius: 10px;
}
.magokoro .story-fourth {
  margin-bottom: 120px;
}
@media only screen and (max-width:767px) {
  .magokoro .story-fourth {
    margin-bottom: 60px;
  }
}
@media only screen and (max-width:480px) {
  .magokoro .story-fourth {
    margin-bottom: 45px;
  }
}
.magokoro .story-fourth__inner {
  width: 1360px;
  margin: 0 auto;
  padding: 0 5%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media only screen and (max-width:1360px) {
  .magokoro .story-fourth__inner {
    width: 90%;
    padding: 0;
  }
}
@media only screen and (max-width:991px) {
  .magokoro .story-fourth__inner {
    width: 95%;
  }
}
@media only screen and (max-width:767px) {
  .magokoro .story-fourth__inner {
    width: calc(100% - 30px);
    display: block;
  }
}
.magokoro .story-fourth__img {
  -ms-flex-preferred-size: 46%;
      flex-basis: 46%;
}
@media only screen and (max-width:767px) {
  .magokoro .story-fourth__img {
    margin-bottom: 4%;
  }
}
.magokoro .story-fourth__img img {
  border-radius: 10px;
}
.magokoro .story-fourth__text {
  -ms-flex-preferred-size: 46%;
      flex-basis: 46%;
}
.magokoro .story-fourth__text p {
  font-size: clamp(1.3rem, 2vw, 1.8rem) !important;
  line-height: 2em;
}
@media only screen and (max-width:1200px) {
  .magokoro .story-fourth__text p {
    font-size: clamp(1.3rem, 2vw, 1.6rem) !important;
  }
}

/*  -------------------------------------
	page:fukami
  -------------------------------------*/
.fukami .page-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 60px;
}
@media only screen and (max-width:991px) {
  .fukami .page-top {
    padding-bottom: 0;
  }
}
.fukami .page-top__img {
  -ms-flex-preferred-size: 70%;
      flex-basis: 70%;
}
.fukami .page-top__img img {
  border-radius: 0 10px 10px 0;
}
.fukami .page-top__text {
  -ms-flex-preferred-size: 30%;
      flex-basis: 30%;
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  text-orientation: upright;
  letter-spacing: 0.14em;
  line-height: 1.8em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.fukami .page-top__text .inner {
  margin: 0 auto;
  padding-left: 3em;
}
.fukami .page-top__text h1 {
  margin: 0 0.5em 0 0;
  font-size: clamp(2rem, 3vw, 4rem) !important;
}
.fukami .page-top__text p {
  font-size: clamp(1.3rem, 2vw, 2rem) !important;
}
.fukami .p-pankuzu__inner {
  width: 1200px;
  margin: 0 auto;
}
@media only screen and (max-width:1360px) {
  .fukami .p-pankuzu__inner {
    width: 90%;
  }
}
.fukami .introduction__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  position: relative;
  width: 1360px;
  margin: 0 auto;
  padding: 0 5%;
}
@media only screen and (max-width:1360px) {
  .fukami .introduction__inner {
    width: 90%;
    padding: 0;
  }
}
@media only screen and (max-width:991px) {
  .fukami .introduction__inner {
    width: 95%;
  }
}
@media only screen and (max-width:767px) {
  .fukami .introduction__inner {
    width: calc(100% - 30px);
    display: block;
  }
}
.fukami .introduction__text {
  -ms-flex-preferred-size: 35%;
      flex-basis: 35%;
}
@media only screen and (max-width:1360px) {
  .fukami .introduction__text {
    -ms-flex-preferred-size: 40%;
        flex-basis: 40%;
  }
}
@media only screen and (max-width:1200px) {
  .fukami .introduction__text {
    -ms-flex-preferred-size: 45%;
        flex-basis: 45%;
  }
}
@media only screen and (max-width:767px) {
  .fukami .introduction__text {
    margin: 0 0 4%;
  }
}
.fukami .introduction__text h3 {
  font-size: clamp(1.8rem, 3vw, 3rem) !important;
  font-weight: 600;
  margin: 0 0 1em;
}
@media only screen and (max-width:767px) {
  .fukami .introduction__text h3 {
    margin: 0 0 0.5em;
    text-align: center;
  }
}
.fukami .introduction__text p {
  font-size: clamp(1.3rem, 2vw, 1.8rem) !important;
}
@media only screen and (max-width:991px) {
  .fukami .introduction__text p {
    font-size: clamp(1.3rem, 2vw, 1.6rem) !important;
  }
}
@media only screen and (max-width:812px) {
  .fukami .introduction__text p {
    font-size: clamp(1.3rem, 2vw, 1.5rem) !important;
  }
}
@media only screen and (max-width:767px) {
  .fukami .introduction__text p {
    text-align: center;
  }
}
.fukami .introduction__img {
  -ms-flex-preferred-size: 65%;
      flex-basis: 65%;
}
@media only screen and (max-width:1360px) {
  .fukami .introduction__img {
    -ms-flex-preferred-size: 60%;
        flex-basis: 60%;
  }
}
@media only screen and (max-width:1360px) {
  .fukami .introduction__img {
    -ms-flex-preferred-size: 55%;
        flex-basis: 55%;
  }
}
.fukami .introduction__img ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.fukami .introduction__img ul li {
  -ms-flex-preferred-size: 60%;
      flex-basis: 60%;
}
.fukami .introduction__img ul li img {
  margin-bottom: 4%;
  border-radius: 10px;
}
.fukami .introduction__img ul li span {
  display: block;
}
.fukami .introduction__img ul li span.name {
  font-size: clamp(1.5rem, 3vw, 2rem) !important;
}
@media only screen and (max-width:767px) {
  .fukami .introduction__img ul li span.name {
    text-align: center;
  }
}
.fukami .story {
  padding-bottom: 300px;
}
@media only screen and (max-width:767px) {
  .fukami .story {
    padding-bottom: 60px;
  }
}
@media only screen and (max-width:480px) {
  .fukami .story {
    padding-bottom: 45px;
  }
}
.fukami .story__inner {
  width: 1360px;
  margin: 0 auto;
  padding: 0 5%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media only screen and (max-width:1360px) {
  .fukami .story__inner {
    width: 90%;
    padding: 0;
  }
}
@media only screen and (max-width:991px) {
  .fukami .story__inner {
    width: 95%;
  }
}
@media only screen and (max-width:767px) {
  .fukami .story__inner {
    width: calc(100% - 30px);
    display: block;
  }
}
.fukami .story__inner p {
  font-size: clamp(1.3rem, 2vw, 1.8rem) !important;
  line-height: 2em;
}
.fukami .story__img {
  -ms-flex-preferred-size: 60%;
      flex-basis: 60%;
  text-align: right;
}
@media only screen and (max-width:1360px) {
  .fukami .story__img {
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
  }
}
.fukami .story__img img {
  display: inline-block;
  border-radius: 10px;
}
.fukami .story__img img:nth-child(2) {
  width: 60%;
  margin: 8% 8% 0;
}
@media only screen and (max-width:1360px) {
  .fukami .story__img img:nth-child(2) {
    margin: 10% 10% 0;
  }
}
@media only screen and (max-width:767px) {
  .fukami .story__img img:nth-child(2) {
    margin: 10%;
  }
}
.fukami .story__text {
  -ms-flex-preferred-size: 35%;
      flex-basis: 35%;
  position: relative;
}
@media only screen and (max-width:1360px) {
  .fukami .story__text {
    -ms-flex-preferred-size: 40%;
        flex-basis: 40%;
    padding-left: 0;
  }
}
@media only screen and (max-width:1360px) {
  .fukami .story__text {
    -ms-flex-preferred-size: 45%;
        flex-basis: 45%;
  }
}
.fukami .story__text p {
  font-size: clamp(1.3rem, 2vw, 1.8rem) !important;
  line-height: 2.2em;
  margin-bottom: 16%;
}
@media only screen and (max-width:1200px) {
  .fukami .story__text p {
    font-size: clamp(1.3rem, 2vw, 1.6rem) !important;
    margin-bottom: 10%;
  }
}
.fukami .story__text img {
  width: 95%;
  border-radius: 10px;
}
@media only screen and (max-width:1200px) {
  .fukami .story__text img {
    bottom: -350px;
  }
}
@media only screen and (max-width:991px) {
  .fukami .story__text img {
    bottom: -300px;
    width: 80%;
  }
}
@media only screen and (max-width:812px) {
  .fukami .story__text img {
    bottom: -250px;
  }
}
@media only screen and (max-width:767px) {
  .fukami .story__text img {
    position: static;
    width: 70%;
    margin-top: 8%;
  }
}
.fukami .story-second__inner {
  width: 1360px;
  margin: 0 auto;
  padding: 0 5%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media only screen and (max-width:1360px) {
  .fukami .story-second__inner {
    width: 90%;
    padding: 0;
  }
}
@media only screen and (max-width:991px) {
  .fukami .story-second__inner {
    width: 95%;
  }
}
@media only screen and (max-width:767px) {
  .fukami .story-second__inner {
    width: calc(100% - 30px);
    display: block;
  }
}
.fukami .story-second__inner p {
  font-size: clamp(1.3rem, 2vw, 1.8rem) !important;
  line-height: 2em;
}
.fukami .story-second__img {
  -ms-flex-preferred-size: 46%;
      flex-basis: 46%;
}
@media only screen and (max-width:767px) {
  .fukami .story-second__img {
    margin: 0 0 3%;
  }
}
.fukami .story-second__img img {
  border-radius: 10px;
}
.fukami .story-second__text {
  -ms-flex-preferred-size: 48%;
      flex-basis: 48%;
}
.fukami .story-second__text p {
  font-size: clamp(1.3rem, 2vw, 1.8rem) !important;
  line-height: 2.2em;
}
@media only screen and (max-width:1200px) {
  .fukami .story-second__text p {
    font-size: clamp(1.3rem, 2vw, 1.6rem) !important;
  }
}
.fukami .story-third__inner {
  width: 1360px;
  margin: 0 auto;
  padding: 0 5%;
}
@media only screen and (max-width:1360px) {
  .fukami .story-third__inner {
    width: 90%;
    padding: 0;
  }
}
@media only screen and (max-width:991px) {
  .fukami .story-third__inner {
    width: 95%;
  }
}
@media only screen and (max-width:767px) {
  .fukami .story-third__inner {
    width: calc(100% - 30px);
    display: block;
  }
}
.fukami .story-third__img ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media only screen and (max-width:480px) {
  .fukami .story-third__img ul {
    display: block;
  }
}
.fukami .story-third__img ul li {
  -ms-flex-preferred-size: calc((100% - 20px) / 2);
      flex-basis: calc((100% - 20px) / 2);
}
.fukami .story-third__img ul li img {
  border-radius: 10px;
}
@media only screen and (max-width:480px) {
  .fukami .story-third__img ul li img {
    width: 70%;
    margin: 0 auto;
  }
}
@media only screen and (max-width:767px) {
  .fukami .story-third__img ul li {
    -ms-flex-preferred-size: calc((100% - 20px) / 2);
        flex-basis: calc((100% - 20px) / 2);
  }
  .fukami .story-third__img ul li:nth-child(1), .fukami .story-third__img ul li:nth-child(2) {
    margin-bottom: 20px;
  }
}
@media only screen and (max-width:687px) {
  .fukami .story-third__img ul li {
    -ms-flex-preferred-size: calc((100% - 15px) / 2);
        flex-basis: calc((100% - 15px) / 2);
  }
  .fukami .story-third__img ul li:nth-child(1), .fukami .story-third__img ul li:nth-child(2) {
    margin-bottom: 15px;
  }
}
.fukami .story-third__img ul li:nth-child(3), .fukami .story-third__img ul li:nth-child(4), .fukami .story-third__img ul li:nth-child(5), .fukami .story-third__img ul li:nth-child(6) {
  -ms-flex-preferred-size: calc((100% - 60px) / 4);
      flex-basis: calc((100% - 60px) / 4);
  margin-top: 20px;
}
@media only screen and (max-width:767px) {
  .fukami .story-third__img ul li:nth-child(3), .fukami .story-third__img ul li:nth-child(4), .fukami .story-third__img ul li:nth-child(5), .fukami .story-third__img ul li:nth-child(6) {
    margin-top: 0;
  }
}
@media only screen and (max-width:687px) {
  .fukami .story-third__img ul li:nth-child(3), .fukami .story-third__img ul li:nth-child(4), .fukami .story-third__img ul li:nth-child(5), .fukami .story-third__img ul li:nth-child(6) {
    -ms-flex-preferred-size: calc((100% - 45px) / 4);
        flex-basis: calc((100% - 45px) / 4);
  }
}
@media only screen and (max-width:480px) {
  .fukami .story-third__img ul li:nth-child(3), .fukami .story-third__img ul li:nth-child(4), .fukami .story-third__img ul li:nth-child(5), .fukami .story-third__img ul li:nth-child(6) {
    margin-bottom: 15px;
  }
}
.fukami .story-third__img ul li ul li {
  -ms-flex-preferred-size: calc((100% - 20px) / 2);
      flex-basis: calc((100% - 20px) / 2);
}
.fukami .story-third__img ul li ul li:nth-child(1), .fukami .story-third__img ul li ul li:nth-child(2) {
  margin-bottom: 20px;
}
@media only screen and (max-width:687px) {
  .fukami .story-third__img ul li ul li:nth-child(1), .fukami .story-third__img ul li ul li:nth-child(2) {
    margin-bottom: 15px;
  }
}
@media only screen and (max-width:687px) {
  .fukami .story-third__img ul li ul li {
    -ms-flex-preferred-size: calc((100% - 15px) / 2);
        flex-basis: calc((100% - 15px) / 2);
  }
}
.fukami .story-third__img ul li ul li:nth-child(3), .fukami .story-third__img ul li ul li:nth-child(4) {
  -ms-flex-preferred-size: calc((100% - 20px) / 2);
      flex-basis: calc((100% - 20px) / 2);
  margin-top: 0;
}
@media only screen and (max-width:687px) {
  .fukami .story-third__img ul li ul li:nth-child(3), .fukami .story-third__img ul li ul li:nth-child(4) {
    -ms-flex-preferred-size: calc((100% - 15px) / 2);
        flex-basis: calc((100% - 15px) / 2);
  }
}
.fukami .story-fourth__inner {
  width: 1360px;
  margin: 0 auto;
  padding: 0 5%;
}
@media only screen and (max-width:1360px) {
  .fukami .story-fourth__inner {
    width: 90%;
    padding: 0;
  }
}
@media only screen and (max-width:991px) {
  .fukami .story-fourth__inner {
    width: 95%;
  }
}
@media only screen and (max-width:767px) {
  .fukami .story-fourth__inner {
    width: calc(100% - 30px);
    display: block;
  }
}
.fukami .story-fourth__img {
  width: 100%;
}
.fukami .story-fourth__img img {
  border-radius: 10px;
}

/*  -------------------------------------
	page:contact / privacy / contract / company /error404
  -------------------------------------*/
.contact .page-top, .privacy .page-top, .contract .page-top, .company .page-top, .error404 .page-top, .thanks .page-top {
  height: 480px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-bottom: 60px;
}
@media only screen and (max-width:1200px) {
  .contact .page-top, .privacy .page-top, .contract .page-top, .company .page-top, .error404 .page-top, .thanks .page-top {
    height: 400px;
    padding-bottom: 30px;
  }
}
@media only screen and (max-width:991px) {
  .contact .page-top, .privacy .page-top, .contract .page-top, .company .page-top, .error404 .page-top, .thanks .page-top {
    height: 360px;
  }
}
@media only screen and (max-width:812px) {
  .contact .page-top, .privacy .page-top, .contract .page-top, .company .page-top, .error404 .page-top, .thanks .page-top {
    height: 300px;
  }
}
@media only screen and (max-width:768px) {
  .contact .page-top, .privacy .page-top, .contract .page-top, .company .page-top, .error404 .page-top, .thanks .page-top {
    height: 270px;
    padding-bottom: 0px;
  }
}
@media only screen and (max-width:480px) {
  .contact .page-top, .privacy .page-top, .contract .page-top, .company .page-top, .error404 .page-top, .thanks .page-top {
    height: 200px;
    margin-top: 10px;
  }
}
.contact .page-top h1, .privacy .page-top h1, .contract .page-top h1, .company .page-top h1, .error404 .page-top h1, .thanks .page-top h1 {
  margin: 0;
}
.contact .p-pankuzu__inner, .privacy .p-pankuzu__inner, .contract .p-pankuzu__inner, .company .p-pankuzu__inner, .error404 .p-pankuzu__inner, .thanks .p-pankuzu__inner {
  width: 1200px;
  margin: 0 auto;
}
@media only screen and (max-width:1360px) {
  .contact .p-pankuzu__inner, .privacy .p-pankuzu__inner, .contract .p-pankuzu__inner, .company .p-pankuzu__inner, .error404 .p-pankuzu__inner, .thanks .p-pankuzu__inner {
    width: 90%;
  }
}
.contact .contact-content, .contact .privacy-content, .contact .contract-content, .contact .company-content, .contact .error404-content, .contact .thanks-content, .privacy .contact-content, .privacy .privacy-content, .privacy .contract-content, .privacy .company-content, .privacy .error404-content, .privacy .thanks-content, .contract .contact-content, .contract .privacy-content, .contract .contract-content, .contract .company-content, .contract .error404-content, .contract .thanks-content, .company .contact-content, .company .privacy-content, .company .contract-content, .company .company-content, .company .error404-content, .company .thanks-content, .error404 .contact-content, .error404 .privacy-content, .error404 .contract-content, .error404 .company-content, .error404 .error404-content, .error404 .thanks-content, .thanks .contact-content, .thanks .privacy-content, .thanks .contract-content, .thanks .company-content, .thanks .error404-content, .thanks .thanks-content {
  background: #f2ece0;
}
.contact .form-wrap, .contact .privacy-content__inner, .contact .contract-content__inner, .contact .company-content__inner, .contact .error404-content__inner, .contact .thanks-content__inner, .privacy .form-wrap, .privacy .privacy-content__inner, .privacy .contract-content__inner, .privacy .company-content__inner, .privacy .error404-content__inner, .privacy .thanks-content__inner, .contract .form-wrap, .contract .privacy-content__inner, .contract .contract-content__inner, .contract .company-content__inner, .contract .error404-content__inner, .contract .thanks-content__inner, .company .form-wrap, .company .privacy-content__inner, .company .contract-content__inner, .company .company-content__inner, .company .error404-content__inner, .company .thanks-content__inner, .error404 .form-wrap, .error404 .privacy-content__inner, .error404 .contract-content__inner, .error404 .company-content__inner, .error404 .error404-content__inner, .error404 .thanks-content__inner, .thanks .form-wrap, .thanks .privacy-content__inner, .thanks .contract-content__inner, .thanks .company-content__inner, .thanks .error404-content__inner, .thanks .thanks-content__inner {
  width: 1200px;
  margin: 0 auto;
  padding: 60px;
  background: #fff;
  border-radius: 10px;
}
@media only screen and (max-width:1360px) {
  .contact .form-wrap, .contact .privacy-content__inner, .contact .contract-content__inner, .contact .company-content__inner, .contact .error404-content__inner, .contact .thanks-content__inner, .privacy .form-wrap, .privacy .privacy-content__inner, .privacy .contract-content__inner, .privacy .company-content__inner, .privacy .error404-content__inner, .privacy .thanks-content__inner, .contract .form-wrap, .contract .privacy-content__inner, .contract .contract-content__inner, .contract .company-content__inner, .contract .error404-content__inner, .contract .thanks-content__inner, .company .form-wrap, .company .privacy-content__inner, .company .contract-content__inner, .company .company-content__inner, .company .error404-content__inner, .company .thanks-content__inner, .error404 .form-wrap, .error404 .privacy-content__inner, .error404 .contract-content__inner, .error404 .company-content__inner, .error404 .error404-content__inner, .error404 .thanks-content__inner, .thanks .form-wrap, .thanks .privacy-content__inner, .thanks .contract-content__inner, .thanks .company-content__inner, .thanks .error404-content__inner, .thanks .thanks-content__inner {
    width: 90%;
  }
}
@media only screen and (max-width:991px) {
  .contact .form-wrap, .contact .privacy-content__inner, .contact .contract-content__inner, .contact .company-content__inner, .contact .error404-content__inner, .contact .thanks-content__inner, .privacy .form-wrap, .privacy .privacy-content__inner, .privacy .contract-content__inner, .privacy .company-content__inner, .privacy .error404-content__inner, .privacy .thanks-content__inner, .contract .form-wrap, .contract .privacy-content__inner, .contract .contract-content__inner, .contract .company-content__inner, .contract .error404-content__inner, .contract .thanks-content__inner, .company .form-wrap, .company .privacy-content__inner, .company .contract-content__inner, .company .company-content__inner, .company .error404-content__inner, .company .thanks-content__inner, .error404 .form-wrap, .error404 .privacy-content__inner, .error404 .contract-content__inner, .error404 .company-content__inner, .error404 .error404-content__inner, .error404 .thanks-content__inner, .thanks .form-wrap, .thanks .privacy-content__inner, .thanks .contract-content__inner, .thanks .company-content__inner, .thanks .error404-content__inner, .thanks .thanks-content__inner {
    width: 95%;
    padding: 45px;
  }
}
@media only screen and (max-width:767px) {
  .contact .form-wrap, .contact .privacy-content__inner, .contact .contract-content__inner, .contact .company-content__inner, .contact .error404-content__inner, .contact .thanks-content__inner, .privacy .form-wrap, .privacy .privacy-content__inner, .privacy .contract-content__inner, .privacy .company-content__inner, .privacy .error404-content__inner, .privacy .thanks-content__inner, .contract .form-wrap, .contract .privacy-content__inner, .contract .contract-content__inner, .contract .company-content__inner, .contract .error404-content__inner, .contract .thanks-content__inner, .company .form-wrap, .company .privacy-content__inner, .company .contract-content__inner, .company .company-content__inner, .company .error404-content__inner, .company .thanks-content__inner, .error404 .form-wrap, .error404 .privacy-content__inner, .error404 .contract-content__inner, .error404 .company-content__inner, .error404 .error404-content__inner, .error404 .thanks-content__inner, .thanks .form-wrap, .thanks .privacy-content__inner, .thanks .contract-content__inner, .thanks .company-content__inner, .thanks .error404-content__inner, .thanks .thanks-content__inner {
    width: calc(100% - 30px);
    display: block;
    padding: 30px;
  }
}
.contact .form-wrap dl, .contact .privacy-content__inner dl, .contact .contract-content__inner dl, .contact .company-content__inner dl, .contact .error404-content__inner dl, .contact .thanks-content__inner dl, .privacy .form-wrap dl, .privacy .privacy-content__inner dl, .privacy .contract-content__inner dl, .privacy .company-content__inner dl, .privacy .error404-content__inner dl, .privacy .thanks-content__inner dl, .contract .form-wrap dl, .contract .privacy-content__inner dl, .contract .contract-content__inner dl, .contract .company-content__inner dl, .contract .error404-content__inner dl, .contract .thanks-content__inner dl, .company .form-wrap dl, .company .privacy-content__inner dl, .company .contract-content__inner dl, .company .company-content__inner dl, .company .error404-content__inner dl, .company .thanks-content__inner dl, .error404 .form-wrap dl, .error404 .privacy-content__inner dl, .error404 .contract-content__inner dl, .error404 .company-content__inner dl, .error404 .error404-content__inner dl, .error404 .thanks-content__inner dl, .thanks .form-wrap dl, .thanks .privacy-content__inner dl, .thanks .contract-content__inner dl, .thanks .company-content__inner dl, .thanks .error404-content__inner dl, .thanks .thanks-content__inner dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin: 0 0 60px;
}
@media only screen and (max-width:768px) {
  .contact .form-wrap dl, .contact .privacy-content__inner dl, .contact .contract-content__inner dl, .contact .company-content__inner dl, .contact .error404-content__inner dl, .contact .thanks-content__inner dl, .privacy .form-wrap dl, .privacy .privacy-content__inner dl, .privacy .contract-content__inner dl, .privacy .company-content__inner dl, .privacy .error404-content__inner dl, .privacy .thanks-content__inner dl, .contract .form-wrap dl, .contract .privacy-content__inner dl, .contract .contract-content__inner dl, .contract .company-content__inner dl, .contract .error404-content__inner dl, .contract .thanks-content__inner dl, .company .form-wrap dl, .company .privacy-content__inner dl, .company .contract-content__inner dl, .company .company-content__inner dl, .company .error404-content__inner dl, .company .thanks-content__inner dl, .error404 .form-wrap dl, .error404 .privacy-content__inner dl, .error404 .contract-content__inner dl, .error404 .company-content__inner dl, .error404 .error404-content__inner dl, .error404 .thanks-content__inner dl, .thanks .form-wrap dl, .thanks .privacy-content__inner dl, .thanks .contract-content__inner dl, .thanks .company-content__inner dl, .thanks .error404-content__inner dl, .thanks .thanks-content__inner dl {
    display: block;
  }
}
.contact .form-wrap dl dt, .contact .privacy-content__inner dl dt, .contact .contract-content__inner dl dt, .contact .company-content__inner dl dt, .contact .error404-content__inner dl dt, .contact .thanks-content__inner dl dt, .privacy .form-wrap dl dt, .privacy .privacy-content__inner dl dt, .privacy .contract-content__inner dl dt, .privacy .company-content__inner dl dt, .privacy .error404-content__inner dl dt, .privacy .thanks-content__inner dl dt, .contract .form-wrap dl dt, .contract .privacy-content__inner dl dt, .contract .contract-content__inner dl dt, .contract .company-content__inner dl dt, .contract .error404-content__inner dl dt, .contract .thanks-content__inner dl dt, .company .form-wrap dl dt, .company .privacy-content__inner dl dt, .company .contract-content__inner dl dt, .company .company-content__inner dl dt, .company .error404-content__inner dl dt, .company .thanks-content__inner dl dt, .error404 .form-wrap dl dt, .error404 .privacy-content__inner dl dt, .error404 .contract-content__inner dl dt, .error404 .company-content__inner dl dt, .error404 .error404-content__inner dl dt, .error404 .thanks-content__inner dl dt, .thanks .form-wrap dl dt, .thanks .privacy-content__inner dl dt, .thanks .contract-content__inner dl dt, .thanks .company-content__inner dl dt, .thanks .error404-content__inner dl dt, .thanks .thanks-content__inner dl dt {
  -ms-flex-preferred-size: 25%;
      flex-basis: 25%;
  max-width: 25%;
  font-weight: 400;
}
@media only screen and (max-width:991px) {
  .contact .form-wrap dl dt, .contact .privacy-content__inner dl dt, .contact .contract-content__inner dl dt, .contact .company-content__inner dl dt, .contact .error404-content__inner dl dt, .contact .thanks-content__inner dl dt, .privacy .form-wrap dl dt, .privacy .privacy-content__inner dl dt, .privacy .contract-content__inner dl dt, .privacy .company-content__inner dl dt, .privacy .error404-content__inner dl dt, .privacy .thanks-content__inner dl dt, .contract .form-wrap dl dt, .contract .privacy-content__inner dl dt, .contract .contract-content__inner dl dt, .contract .company-content__inner dl dt, .contract .error404-content__inner dl dt, .contract .thanks-content__inner dl dt, .company .form-wrap dl dt, .company .privacy-content__inner dl dt, .company .contract-content__inner dl dt, .company .company-content__inner dl dt, .company .error404-content__inner dl dt, .company .thanks-content__inner dl dt, .error404 .form-wrap dl dt, .error404 .privacy-content__inner dl dt, .error404 .contract-content__inner dl dt, .error404 .company-content__inner dl dt, .error404 .error404-content__inner dl dt, .error404 .thanks-content__inner dl dt, .thanks .form-wrap dl dt, .thanks .privacy-content__inner dl dt, .thanks .contract-content__inner dl dt, .thanks .company-content__inner dl dt, .thanks .error404-content__inner dl dt, .thanks .thanks-content__inner dl dt {
    -ms-flex-preferred-size: 30%;
        flex-basis: 30%;
    max-width: 30%;
  }
}
@media only screen and (max-width:767px) {
  .contact .form-wrap dl dt, .contact .privacy-content__inner dl dt, .contact .contract-content__inner dl dt, .contact .company-content__inner dl dt, .contact .error404-content__inner dl dt, .contact .thanks-content__inner dl dt, .privacy .form-wrap dl dt, .privacy .privacy-content__inner dl dt, .privacy .contract-content__inner dl dt, .privacy .company-content__inner dl dt, .privacy .error404-content__inner dl dt, .privacy .thanks-content__inner dl dt, .contract .form-wrap dl dt, .contract .privacy-content__inner dl dt, .contract .contract-content__inner dl dt, .contract .company-content__inner dl dt, .contract .error404-content__inner dl dt, .contract .thanks-content__inner dl dt, .company .form-wrap dl dt, .company .privacy-content__inner dl dt, .company .contract-content__inner dl dt, .company .company-content__inner dl dt, .company .error404-content__inner dl dt, .company .thanks-content__inner dl dt, .error404 .form-wrap dl dt, .error404 .privacy-content__inner dl dt, .error404 .contract-content__inner dl dt, .error404 .company-content__inner dl dt, .error404 .error404-content__inner dl dt, .error404 .thanks-content__inner dl dt, .thanks .form-wrap dl dt, .thanks .privacy-content__inner dl dt, .thanks .contract-content__inner dl dt, .thanks .company-content__inner dl dt, .thanks .error404-content__inner dl dt, .thanks .thanks-content__inner dl dt {
    max-width: 100%;
    margin-bottom: 0.5em;
  }
}
.contact .form-wrap dl dd, .contact .privacy-content__inner dl dd, .contact .contract-content__inner dl dd, .contact .company-content__inner dl dd, .contact .error404-content__inner dl dd, .contact .thanks-content__inner dl dd, .privacy .form-wrap dl dd, .privacy .privacy-content__inner dl dd, .privacy .contract-content__inner dl dd, .privacy .company-content__inner dl dd, .privacy .error404-content__inner dl dd, .privacy .thanks-content__inner dl dd, .contract .form-wrap dl dd, .contract .privacy-content__inner dl dd, .contract .contract-content__inner dl dd, .contract .company-content__inner dl dd, .contract .error404-content__inner dl dd, .contract .thanks-content__inner dl dd, .company .form-wrap dl dd, .company .privacy-content__inner dl dd, .company .contract-content__inner dl dd, .company .company-content__inner dl dd, .company .error404-content__inner dl dd, .company .thanks-content__inner dl dd, .error404 .form-wrap dl dd, .error404 .privacy-content__inner dl dd, .error404 .contract-content__inner dl dd, .error404 .company-content__inner dl dd, .error404 .error404-content__inner dl dd, .error404 .thanks-content__inner dl dd, .thanks .form-wrap dl dd, .thanks .privacy-content__inner dl dd, .thanks .contract-content__inner dl dd, .thanks .company-content__inner dl dd, .thanks .error404-content__inner dl dd, .thanks .thanks-content__inner dl dd {
  -ms-flex-preferred-size: 75%;
      flex-basis: 75%;
  max-width: 75%;
}
@media only screen and (max-width:991px) {
  .contact .form-wrap dl dd, .contact .privacy-content__inner dl dd, .contact .contract-content__inner dl dd, .contact .company-content__inner dl dd, .contact .error404-content__inner dl dd, .contact .thanks-content__inner dl dd, .privacy .form-wrap dl dd, .privacy .privacy-content__inner dl dd, .privacy .contract-content__inner dl dd, .privacy .company-content__inner dl dd, .privacy .error404-content__inner dl dd, .privacy .thanks-content__inner dl dd, .contract .form-wrap dl dd, .contract .privacy-content__inner dl dd, .contract .contract-content__inner dl dd, .contract .company-content__inner dl dd, .contract .error404-content__inner dl dd, .contract .thanks-content__inner dl dd, .company .form-wrap dl dd, .company .privacy-content__inner dl dd, .company .contract-content__inner dl dd, .company .company-content__inner dl dd, .company .error404-content__inner dl dd, .company .thanks-content__inner dl dd, .error404 .form-wrap dl dd, .error404 .privacy-content__inner dl dd, .error404 .contract-content__inner dl dd, .error404 .company-content__inner dl dd, .error404 .error404-content__inner dl dd, .error404 .thanks-content__inner dl dd, .thanks .form-wrap dl dd, .thanks .privacy-content__inner dl dd, .thanks .contract-content__inner dl dd, .thanks .company-content__inner dl dd, .thanks .error404-content__inner dl dd, .thanks .thanks-content__inner dl dd {
    -ms-flex-preferred-size: 70%;
        flex-basis: 70%;
    max-width: 70%;
  }
}
@media only screen and (max-width:768px) {
  .contact .form-wrap dl dd, .contact .privacy-content__inner dl dd, .contact .contract-content__inner dl dd, .contact .company-content__inner dl dd, .contact .error404-content__inner dl dd, .contact .thanks-content__inner dl dd, .privacy .form-wrap dl dd, .privacy .privacy-content__inner dl dd, .privacy .contract-content__inner dl dd, .privacy .company-content__inner dl dd, .privacy .error404-content__inner dl dd, .privacy .thanks-content__inner dl dd, .contract .form-wrap dl dd, .contract .privacy-content__inner dl dd, .contract .contract-content__inner dl dd, .contract .company-content__inner dl dd, .contract .error404-content__inner dl dd, .contract .thanks-content__inner dl dd, .company .form-wrap dl dd, .company .privacy-content__inner dl dd, .company .contract-content__inner dl dd, .company .company-content__inner dl dd, .company .error404-content__inner dl dd, .company .thanks-content__inner dl dd, .error404 .form-wrap dl dd, .error404 .privacy-content__inner dl dd, .error404 .contract-content__inner dl dd, .error404 .company-content__inner dl dd, .error404 .error404-content__inner dl dd, .error404 .thanks-content__inner dl dd, .thanks .form-wrap dl dd, .thanks .privacy-content__inner dl dd, .thanks .contract-content__inner dl dd, .thanks .company-content__inner dl dd, .thanks .error404-content__inner dl dd, .thanks .thanks-content__inner dl dd {
    max-width: 100%;
  }
}
.contact .form-wrap dl dd input, .contact .privacy-content__inner dl dd input, .contact .contract-content__inner dl dd input, .contact .company-content__inner dl dd input, .contact .error404-content__inner dl dd input, .contact .thanks-content__inner dl dd input, .privacy .form-wrap dl dd input, .privacy .privacy-content__inner dl dd input, .privacy .contract-content__inner dl dd input, .privacy .company-content__inner dl dd input, .privacy .error404-content__inner dl dd input, .privacy .thanks-content__inner dl dd input, .contract .form-wrap dl dd input, .contract .privacy-content__inner dl dd input, .contract .contract-content__inner dl dd input, .contract .company-content__inner dl dd input, .contract .error404-content__inner dl dd input, .contract .thanks-content__inner dl dd input, .company .form-wrap dl dd input, .company .privacy-content__inner dl dd input, .company .contract-content__inner dl dd input, .company .company-content__inner dl dd input, .company .error404-content__inner dl dd input, .company .thanks-content__inner dl dd input, .error404 .form-wrap dl dd input, .error404 .privacy-content__inner dl dd input, .error404 .contract-content__inner dl dd input, .error404 .company-content__inner dl dd input, .error404 .error404-content__inner dl dd input, .error404 .thanks-content__inner dl dd input, .thanks .form-wrap dl dd input, .thanks .privacy-content__inner dl dd input, .thanks .contract-content__inner dl dd input, .thanks .company-content__inner dl dd input, .thanks .error404-content__inner dl dd input, .thanks .thanks-content__inner dl dd input {
  background: none;
  border: none;
  border-bottom: 1px solid #999;
  width: 100%;
  padding: 0 0 30px;
  border-radius: 0;
}
.contact .form-wrap dl dd textarea, .contact .privacy-content__inner dl dd textarea, .contact .contract-content__inner dl dd textarea, .contact .company-content__inner dl dd textarea, .contact .error404-content__inner dl dd textarea, .contact .thanks-content__inner dl dd textarea, .privacy .form-wrap dl dd textarea, .privacy .privacy-content__inner dl dd textarea, .privacy .contract-content__inner dl dd textarea, .privacy .company-content__inner dl dd textarea, .privacy .error404-content__inner dl dd textarea, .privacy .thanks-content__inner dl dd textarea, .contract .form-wrap dl dd textarea, .contract .privacy-content__inner dl dd textarea, .contract .contract-content__inner dl dd textarea, .contract .company-content__inner dl dd textarea, .contract .error404-content__inner dl dd textarea, .contract .thanks-content__inner dl dd textarea, .company .form-wrap dl dd textarea, .company .privacy-content__inner dl dd textarea, .company .contract-content__inner dl dd textarea, .company .company-content__inner dl dd textarea, .company .error404-content__inner dl dd textarea, .company .thanks-content__inner dl dd textarea, .error404 .form-wrap dl dd textarea, .error404 .privacy-content__inner dl dd textarea, .error404 .contract-content__inner dl dd textarea, .error404 .company-content__inner dl dd textarea, .error404 .error404-content__inner dl dd textarea, .error404 .thanks-content__inner dl dd textarea, .thanks .form-wrap dl dd textarea, .thanks .privacy-content__inner dl dd textarea, .thanks .contract-content__inner dl dd textarea, .thanks .company-content__inner dl dd textarea, .thanks .error404-content__inner dl dd textarea, .thanks .thanks-content__inner dl dd textarea {
  background: #f4f4f4;
  border: none;
  width: 100%;
  height: 250px;
  padding: 0.5em;
  border-radius: 10px;
}
@media only screen and (max-width:768px) {
  .contact .form-wrap dl dd textarea, .contact .privacy-content__inner dl dd textarea, .contact .contract-content__inner dl dd textarea, .contact .company-content__inner dl dd textarea, .contact .error404-content__inner dl dd textarea, .contact .thanks-content__inner dl dd textarea, .privacy .form-wrap dl dd textarea, .privacy .privacy-content__inner dl dd textarea, .privacy .contract-content__inner dl dd textarea, .privacy .company-content__inner dl dd textarea, .privacy .error404-content__inner dl dd textarea, .privacy .thanks-content__inner dl dd textarea, .contract .form-wrap dl dd textarea, .contract .privacy-content__inner dl dd textarea, .contract .contract-content__inner dl dd textarea, .contract .company-content__inner dl dd textarea, .contract .error404-content__inner dl dd textarea, .contract .thanks-content__inner dl dd textarea, .company .form-wrap dl dd textarea, .company .privacy-content__inner dl dd textarea, .company .contract-content__inner dl dd textarea, .company .company-content__inner dl dd textarea, .company .error404-content__inner dl dd textarea, .company .thanks-content__inner dl dd textarea, .error404 .form-wrap dl dd textarea, .error404 .privacy-content__inner dl dd textarea, .error404 .contract-content__inner dl dd textarea, .error404 .company-content__inner dl dd textarea, .error404 .error404-content__inner dl dd textarea, .error404 .thanks-content__inner dl dd textarea, .thanks .form-wrap dl dd textarea, .thanks .privacy-content__inner dl dd textarea, .thanks .contract-content__inner dl dd textarea, .thanks .company-content__inner dl dd textarea, .thanks .error404-content__inner dl dd textarea, .thanks .thanks-content__inner dl dd textarea {
    margin-top: 1em;
  }
}
.contact .form-wrap dl dd span, .contact .privacy-content__inner dl dd span, .contact .contract-content__inner dl dd span, .contact .company-content__inner dl dd span, .contact .error404-content__inner dl dd span, .contact .thanks-content__inner dl dd span, .privacy .form-wrap dl dd span, .privacy .privacy-content__inner dl dd span, .privacy .contract-content__inner dl dd span, .privacy .company-content__inner dl dd span, .privacy .error404-content__inner dl dd span, .privacy .thanks-content__inner dl dd span, .contract .form-wrap dl dd span, .contract .privacy-content__inner dl dd span, .contract .contract-content__inner dl dd span, .contract .company-content__inner dl dd span, .contract .error404-content__inner dl dd span, .contract .thanks-content__inner dl dd span, .company .form-wrap dl dd span, .company .privacy-content__inner dl dd span, .company .contract-content__inner dl dd span, .company .company-content__inner dl dd span, .company .error404-content__inner dl dd span, .company .thanks-content__inner dl dd span, .error404 .form-wrap dl dd span, .error404 .privacy-content__inner dl dd span, .error404 .contract-content__inner dl dd span, .error404 .company-content__inner dl dd span, .error404 .error404-content__inner dl dd span, .error404 .thanks-content__inner dl dd span, .thanks .form-wrap dl dd span, .thanks .privacy-content__inner dl dd span, .thanks .contract-content__inner dl dd span, .thanks .company-content__inner dl dd span, .thanks .error404-content__inner dl dd span, .thanks .thanks-content__inner dl dd span {
  display: block;
  font-weight: normal;
}
.contact .form-wrap dl dd span label, .contact .privacy-content__inner dl dd span label, .contact .contract-content__inner dl dd span label, .contact .company-content__inner dl dd span label, .contact .error404-content__inner dl dd span label, .contact .thanks-content__inner dl dd span label, .privacy .form-wrap dl dd span label, .privacy .privacy-content__inner dl dd span label, .privacy .contract-content__inner dl dd span label, .privacy .company-content__inner dl dd span label, .privacy .error404-content__inner dl dd span label, .privacy .thanks-content__inner dl dd span label, .contract .form-wrap dl dd span label, .contract .privacy-content__inner dl dd span label, .contract .contract-content__inner dl dd span label, .contract .company-content__inner dl dd span label, .contract .error404-content__inner dl dd span label, .contract .thanks-content__inner dl dd span label, .company .form-wrap dl dd span label, .company .privacy-content__inner dl dd span label, .company .contract-content__inner dl dd span label, .company .company-content__inner dl dd span label, .company .error404-content__inner dl dd span label, .company .thanks-content__inner dl dd span label, .error404 .form-wrap dl dd span label, .error404 .privacy-content__inner dl dd span label, .error404 .contract-content__inner dl dd span label, .error404 .company-content__inner dl dd span label, .error404 .error404-content__inner dl dd span label, .error404 .thanks-content__inner dl dd span label, .thanks .form-wrap dl dd span label, .thanks .privacy-content__inner dl dd span label, .thanks .contract-content__inner dl dd span label, .thanks .company-content__inner dl dd span label, .thanks .error404-content__inner dl dd span label, .thanks .thanks-content__inner dl dd span label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0 0 5px;
}
.contact .form-wrap dl dd span label input, .contact .privacy-content__inner dl dd span label input, .contact .contract-content__inner dl dd span label input, .contact .company-content__inner dl dd span label input, .contact .error404-content__inner dl dd span label input, .contact .thanks-content__inner dl dd span label input, .privacy .form-wrap dl dd span label input, .privacy .privacy-content__inner dl dd span label input, .privacy .contract-content__inner dl dd span label input, .privacy .company-content__inner dl dd span label input, .privacy .error404-content__inner dl dd span label input, .privacy .thanks-content__inner dl dd span label input, .contract .form-wrap dl dd span label input, .contract .privacy-content__inner dl dd span label input, .contract .contract-content__inner dl dd span label input, .contract .company-content__inner dl dd span label input, .contract .error404-content__inner dl dd span label input, .contract .thanks-content__inner dl dd span label input, .company .form-wrap dl dd span label input, .company .privacy-content__inner dl dd span label input, .company .contract-content__inner dl dd span label input, .company .company-content__inner dl dd span label input, .company .error404-content__inner dl dd span label input, .company .thanks-content__inner dl dd span label input, .error404 .form-wrap dl dd span label input, .error404 .privacy-content__inner dl dd span label input, .error404 .contract-content__inner dl dd span label input, .error404 .company-content__inner dl dd span label input, .error404 .error404-content__inner dl dd span label input, .error404 .thanks-content__inner dl dd span label input, .thanks .form-wrap dl dd span label input, .thanks .privacy-content__inner dl dd span label input, .thanks .contract-content__inner dl dd span label input, .thanks .company-content__inner dl dd span label input, .thanks .error404-content__inner dl dd span label input, .thanks .thanks-content__inner dl dd span label input {
  margin-right: 5px;
  width: auto;
}
.contact .form-wrap .linkBtn, .contact .privacy-content__inner .linkBtn, .contact .contract-content__inner .linkBtn, .contact .company-content__inner .linkBtn, .contact .error404-content__inner .linkBtn, .contact .thanks-content__inner .linkBtn, .privacy .form-wrap .linkBtn, .privacy .privacy-content__inner .linkBtn, .privacy .contract-content__inner .linkBtn, .privacy .company-content__inner .linkBtn, .privacy .error404-content__inner .linkBtn, .privacy .thanks-content__inner .linkBtn, .contract .form-wrap .linkBtn, .contract .privacy-content__inner .linkBtn, .contract .contract-content__inner .linkBtn, .contract .company-content__inner .linkBtn, .contract .error404-content__inner .linkBtn, .contract .thanks-content__inner .linkBtn, .company .form-wrap .linkBtn, .company .privacy-content__inner .linkBtn, .company .contract-content__inner .linkBtn, .company .company-content__inner .linkBtn, .company .error404-content__inner .linkBtn, .company .thanks-content__inner .linkBtn, .error404 .form-wrap .linkBtn, .error404 .privacy-content__inner .linkBtn, .error404 .contract-content__inner .linkBtn, .error404 .company-content__inner .linkBtn, .error404 .error404-content__inner .linkBtn, .error404 .thanks-content__inner .linkBtn, .thanks .form-wrap .linkBtn, .thanks .privacy-content__inner .linkBtn, .thanks .contract-content__inner .linkBtn, .thanks .company-content__inner .linkBtn, .thanks .error404-content__inner .linkBtn, .thanks .thanks-content__inner .linkBtn {
  margin: 0 0.5em;
  background: url(assets/img/common/btn.png) no-repeat;
  background-size: contain;
  font-weight: 600;
  border: none;
}
.contact .form-wrap .linkBtn:hover, .contact .privacy-content__inner .linkBtn:hover, .contact .contract-content__inner .linkBtn:hover, .contact .company-content__inner .linkBtn:hover, .contact .error404-content__inner .linkBtn:hover, .contact .thanks-content__inner .linkBtn:hover, .privacy .form-wrap .linkBtn:hover, .privacy .privacy-content__inner .linkBtn:hover, .privacy .contract-content__inner .linkBtn:hover, .privacy .company-content__inner .linkBtn:hover, .privacy .error404-content__inner .linkBtn:hover, .privacy .thanks-content__inner .linkBtn:hover, .contract .form-wrap .linkBtn:hover, .contract .privacy-content__inner .linkBtn:hover, .contract .contract-content__inner .linkBtn:hover, .contract .company-content__inner .linkBtn:hover, .contract .error404-content__inner .linkBtn:hover, .contract .thanks-content__inner .linkBtn:hover, .company .form-wrap .linkBtn:hover, .company .privacy-content__inner .linkBtn:hover, .company .contract-content__inner .linkBtn:hover, .company .company-content__inner .linkBtn:hover, .company .error404-content__inner .linkBtn:hover, .company .thanks-content__inner .linkBtn:hover, .error404 .form-wrap .linkBtn:hover, .error404 .privacy-content__inner .linkBtn:hover, .error404 .contract-content__inner .linkBtn:hover, .error404 .company-content__inner .linkBtn:hover, .error404 .error404-content__inner .linkBtn:hover, .error404 .thanks-content__inner .linkBtn:hover, .thanks .form-wrap .linkBtn:hover, .thanks .privacy-content__inner .linkBtn:hover, .thanks .contract-content__inner .linkBtn:hover, .thanks .company-content__inner .linkBtn:hover, .thanks .error404-content__inner .linkBtn:hover, .thanks .thanks-content__inner .linkBtn:hover {
  background: url(assets/img/common/btn_r.png) no-repeat;
  background-size: contain;
  cursor: pointer;
  color: #fff !important;
  opacity: 1;
  -webkit-transition: all 0.1s;
  transition: all 0.1s;
}
.contact .form-wrap .linkBtn input, .contact .privacy-content__inner .linkBtn input, .contact .contract-content__inner .linkBtn input, .contact .company-content__inner .linkBtn input, .contact .error404-content__inner .linkBtn input, .contact .thanks-content__inner .linkBtn input, .privacy .form-wrap .linkBtn input, .privacy .privacy-content__inner .linkBtn input, .privacy .contract-content__inner .linkBtn input, .privacy .company-content__inner .linkBtn input, .privacy .error404-content__inner .linkBtn input, .privacy .thanks-content__inner .linkBtn input, .contract .form-wrap .linkBtn input, .contract .privacy-content__inner .linkBtn input, .contract .contract-content__inner .linkBtn input, .contract .company-content__inner .linkBtn input, .contract .error404-content__inner .linkBtn input, .contract .thanks-content__inner .linkBtn input, .company .form-wrap .linkBtn input, .company .privacy-content__inner .linkBtn input, .company .contract-content__inner .linkBtn input, .company .company-content__inner .linkBtn input, .company .error404-content__inner .linkBtn input, .company .thanks-content__inner .linkBtn input, .error404 .form-wrap .linkBtn input, .error404 .privacy-content__inner .linkBtn input, .error404 .contract-content__inner .linkBtn input, .error404 .company-content__inner .linkBtn input, .error404 .error404-content__inner .linkBtn input, .error404 .thanks-content__inner .linkBtn input, .thanks .form-wrap .linkBtn input, .thanks .privacy-content__inner .linkBtn input, .thanks .contract-content__inner .linkBtn input, .thanks .company-content__inner .linkBtn input, .thanks .error404-content__inner .linkBtn input, .thanks .thanks-content__inner .linkBtn input {
  border: none;
  background: none;
  font-weight: 500;
}
.contact .form-wrap #submit-wrap, .contact .privacy-content__inner #submit-wrap, .contact .contract-content__inner #submit-wrap, .contact .company-content__inner #submit-wrap, .contact .error404-content__inner #submit-wrap, .contact .thanks-content__inner #submit-wrap, .privacy .form-wrap #submit-wrap, .privacy .privacy-content__inner #submit-wrap, .privacy .contract-content__inner #submit-wrap, .privacy .company-content__inner #submit-wrap, .privacy .error404-content__inner #submit-wrap, .privacy .thanks-content__inner #submit-wrap, .contract .form-wrap #submit-wrap, .contract .privacy-content__inner #submit-wrap, .contract .contract-content__inner #submit-wrap, .contract .company-content__inner #submit-wrap, .contract .error404-content__inner #submit-wrap, .contract .thanks-content__inner #submit-wrap, .company .form-wrap #submit-wrap, .company .privacy-content__inner #submit-wrap, .company .contract-content__inner #submit-wrap, .company .company-content__inner #submit-wrap, .company .error404-content__inner #submit-wrap, .company .thanks-content__inner #submit-wrap, .error404 .form-wrap #submit-wrap, .error404 .privacy-content__inner #submit-wrap, .error404 .contract-content__inner #submit-wrap, .error404 .company-content__inner #submit-wrap, .error404 .error404-content__inner #submit-wrap, .error404 .thanks-content__inner #submit-wrap, .thanks .form-wrap #submit-wrap, .thanks .privacy-content__inner #submit-wrap, .thanks .contract-content__inner #submit-wrap, .thanks .company-content__inner #submit-wrap, .thanks .error404-content__inner #submit-wrap, .thanks .thanks-content__inner #submit-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.contact .p-page-content, .privacy .p-page-content, .contract .p-page-content, .company .p-page-content, .error404 .p-page-content, .thanks .p-page-content {
  margin: 0 0 60px;
}
@media only screen and (max-width:768px) {
  .contact .p-page-content, .privacy .p-page-content, .contract .p-page-content, .company .p-page-content, .error404 .p-page-content, .thanks .p-page-content {
    margin: 0 0 45px;
  }
}
@media only screen and (max-width:480px) {
  .contact .p-page-content, .privacy .p-page-content, .contract .p-page-content, .company .p-page-content, .error404 .p-page-content, .thanks .p-page-content {
    margin: 0 0 30px;
  }
}
.contact .p-page-content:last-of-type, .privacy .p-page-content:last-of-type, .contract .p-page-content:last-of-type, .company .p-page-content:last-of-type, .error404 .p-page-content:last-of-type, .thanks .p-page-content:last-of-type {
  margin-bottom: 0;
}
.contact .p-page-content h3, .privacy .p-page-content h3, .contract .p-page-content h3, .company .p-page-content h3, .error404 .p-page-content h3, .thanks .p-page-content h3 {
  font-size: clamp(1.4rem, 2vw, 1.8rem) !important;
  min-width: 0;
  margin: 0 0 1em;
  font-weight: 600;
}

.contract .contract-content__inner dl, .contract .company-content__inner dl, .company .contract-content__inner dl, .company .company-content__inner dl {
  position: relative;
  padding-bottom: 40px;
  margin: 0 0 40px;
}
@media only screen and (max-width:767px) {
  .contract .contract-content__inner dl, .contract .company-content__inner dl, .company .contract-content__inner dl, .company .company-content__inner dl {
    padding-bottom: 30px;
    margin: 0 0 30px;
  }
}
@media only screen and (max-width:480px) {
  .contract .contract-content__inner dl, .contract .company-content__inner dl, .company .contract-content__inner dl, .company .company-content__inner dl {
    padding-bottom: 20px;
    margin: 0 0 20px;
  }
}
.contract .contract-content__inner dl:after, .contract .company-content__inner dl:after, .company .contract-content__inner dl:after, .company .company-content__inner dl:after {
  content: "";
  background: url(assets/img/common/bg_border01.png) repeat-x left top;
  background-size: auto 100%;
  display: block;
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: 0;
}
.contract .contract-content__inner dl:last-of-type, .contract .company-content__inner dl:last-of-type, .company .contract-content__inner dl:last-of-type, .company .company-content__inner dl:last-of-type {
  margin-bottom: 0;
}

.company .company-content h2 {
  position: relative;
  padding-left: 90px;
  margin: 0 0 60px;
  font-size: clamp(1.8rem, 2vw, 2.84rem) !important;
  min-width: 0;
}
@media only screen and (max-width:768px) {
  .company .company-content h2 {
    padding-left: 60px;
    margin: 0 0 45px;
  }
}
@media only screen and (max-width:480px) {
  .company .company-content h2 {
    padding-left: 45px;
    margin: 0 0 30px;
  }
}
.company .company-content h2:before {
  content: "";
  background: #000;
  width: 60px;
  height: 1px;
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
}
@media only screen and (max-width:768px) {
  .company .company-content h2:before {
    width: 45px;
  }
}
@media only screen and (max-width:480px) {
  .company .company-content h2:before {
    width: 30px;
  }
}
.company .company-content__inner {
  background: none;
}
@media only screen and (max-width:768px) {
  .company .company-content__inner {
    padding: 0;
  }
}
.company .company-content__desc {
  background: #fff;
  padding: 60px;
  border-radius: 10px;
  margin: 0 0 120px;
}
@media only screen and (max-width:768px) {
  .company .company-content__desc {
    margin: 0 0 90px;
  }
}
@media only screen and (max-width:687px) {
  .company .company-content__desc {
    padding: 45px 30px;
  }
}
@media only screen and (max-width:480px) {
  .company .company-content__desc {
    margin: 0 0 60px;
  }
}
.company .company-content__desc.history {
  margin-bottom: 0;
}
.company .company-content__desc.history dl {
  padding-bottom: 40px;
}
@media only screen and (max-width:768px) {
  .company .company-content__desc.history dl {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.company .company-content__desc.history dl:last-of-type {
  padding-bottom: 0;
  margin-bottom: 0;
}
.company .company-content__desc.history dl:after {
  display: none;
}
.company .company-content__desc.history dl dt {
  position: relative;
}
@media only screen and (max-width:1200px) {
  .company .company-content__desc.history dl dt {
    -ms-flex-preferred-size: 30%;
        flex-basis: 30%;
    max-width: 30%;
  }
}
@media only screen and (max-width:969px) {
  .company .company-content__desc.history dl dt {
    -ms-flex-preferred-size: 35%;
        flex-basis: 35%;
    max-width: 35%;
  }
}
@media only screen and (max-width:687px) {
  .company .company-content__desc.history dl dt {
    -ms-flex-preferred-size: 40%;
        flex-basis: 40%;
    max-width: 40%;
  }
}
@media only screen and (max-width:480px) {
  .company .company-content__desc.history dl dt {
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
    max-width: 50%;
  }
}
.company .company-content__desc.history dl dt:before {
  content: "";
  background: #555;
  width: 1px;
  height: calc(100% + 80px);
  position: absolute;
  right: 25%;
  top: 50%;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}
.company .company-content__desc.history dl dt:after {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 100%;
  background: #000;
  position: absolute;
  right: 25%;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  margin-right: -3px;
}
.company .company-content__desc.history dl dd {
  position: relative;
  padding-left: 90px;
}
@media only screen and (max-width:1200px) {
  .company .company-content__desc.history dl dd {
    -ms-flex-preferred-size: 70%;
        flex-basis: 70%;
    max-width: 70%;
  }
}
@media only screen and (max-width:969px) {
  .company .company-content__desc.history dl dd {
    -ms-flex-preferred-size: 65%;
        flex-basis: 65%;
    max-width: 65%;
  }
}
@media only screen and (max-width:768px) {
  .company .company-content__desc.history dl dd {
    padding-left: 45px;
  }
}
@media only screen and (max-width:687px) {
  .company .company-content__desc.history dl dd {
    -ms-flex-preferred-size: 60%;
        flex-basis: 60%;
    max-width: 60%;
  }
}
@media only screen and (max-width:480px) {
  .company .company-content__desc.history dl dd {
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
    max-width: 50%;
    padding-left: 30px;
  }
}
.company .company-content__desc.history dl dd:before {
  content: "";
  background: #000;
  width: 45px;
  height: 1px;
  display: block;
  position: absolute;
  left: 0;
  top: 10px;
}
@media only screen and (max-width:768px) {
  .company .company-content__desc.history dl dd:before {
    width: 20px;
  }
}
@media only screen and (max-width:480px) {
  .company .company-content__desc.history dl dd:before {
    width: 15px;
  }
}
@media only screen and (max-width:969px) {
  .company .company-content__desc.history dl:nth-of-type(1) dt:before {
    height: calc(100% + 170px);
  }
}
.company .company-content__desc.history dl:nth-of-type(4) dt:before {
  height: calc(100% + 122px);
}
@media only screen and (max-width:1200px) {
  .company .company-content__desc.history dl:nth-of-type(4) dt:before {
    height: calc(100% + 170px);
  }
}
@media only screen and (max-width:480px) {
  .company .company-content__desc.history dl:nth-of-type(4) dt:before {
    height: calc(100% + 190px);
  }
}
@media only screen and (max-width:1200px) {
  .company .company-content__desc.history dl:nth-of-type(5) dt:before {
    height: calc(100% + 122px);
  }
}
@media only screen and (max-width:1200px) {
  .company .company-content__desc.history dl:nth-of-type(8) dt:before {
    height: calc(100% + 132px);
  }
}
.company .company-content__desc.history dl:last-of-type dt:before {
  display: none;
}

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

/*  -------------------------------------
	page:magazine
  -------------------------------------*/
.magazine .page-top {
  height: 480px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 180px;
  padding-bottom: 60px;
}
@media only screen and (max-width:1200px) {
  .magazine .page-top {
    height: 400px;
    padding-top: 120px;
    padding-bottom: 30px;
  }
}
@media only screen and (max-width:991px) {
  .magazine .page-top {
    height: 360px;
  }
}
@media only screen and (max-width:812px) {
  .magazine .page-top {
    height: 300px;
  }
}
@media only screen and (max-width:768px) {
  .magazine .page-top {
    height: 270px;
    padding-top: 60px;
    padding-bottom: 0px;
  }
}
@media only screen and (max-width:480px) {
  .magazine .page-top {
    height: 200px;
    margin-top: 10px;
  }
}
.magazine .page-top h1 {
  margin: 0;
  position: relative;
}
.magazine .page-top h1:before {
  content: "";
  background: url(assets/img/icon/top-book.png) no-repeat;
  background-size: contain;
  display: block;
  width: 60px;
  height: 34px;
  margin: 0 auto 0.5em;
}
@media only screen and (max-width:768px) {
  .magazine .page-top h1:before {
    width: 40px;
    height: 23px;
  }
}
.magazine .p-pankuzu__inner {
  width: 1360px;
  margin: 0 auto;
}
@media only screen and (max-width:1360px) {
  .magazine .p-pankuzu__inner {
    width: 90%;
  }
}
@media only screen and (max-width:991px) {
  .magazine .p-pankuzu__inner {
    width: 95%;
  }
}
@media only screen and (max-width:767px) {
  .magazine .p-pankuzu__inner {
    width: calc(100% - 30px);
  }
}
.magazine .magazine-content__inner {
  width: 1360px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media only screen and (max-width:1360px) {
  .magazine .magazine-content__inner {
    width: 90%;
    padding: 0;
  }
}
@media only screen and (max-width:991px) {
  .magazine .magazine-content__inner {
    width: 95%;
  }
}
@media only screen and (max-width:767px) {
  .magazine .magazine-content__inner {
    width: calc(100% - 30px);
    display: block;
  }
}
.magazine .magazine-content .sidebar {
  -ms-flex-preferred-size: 25%;
      flex-basis: 25%;
}
@media only screen and (max-width:767px) {
  .magazine .magazine-content .sidebar {
    margin-top: 3em;
  }
}
.magazine .magazine-content .sidebar h3 {
  margin: 0 0 0.5em;
  font-size: clamp(1.5rem, 2vw, 2rem) !important;
  min-width: 0;
}
.magazine .magazine-content .sidebar ul {
  margin: 0 0 3em;
}
.magazine .magazine-content .sidebar .m-tag__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.magazine .magazine-content .sidebar .m-tag__menu li {
  margin-right: 0.5em;
  margin-bottom: 0.1em;
}
.magazine .magazine-content .sidebar .m-tag__menu li a.m-tag {
  margin: 0;
}
.magazine .magazine-content .magazine-list {
  -ms-flex-preferred-size: 75%;
      flex-basis: 75%;
  background: #f2ece0;
  padding: 60px;
  border-radius: 10px;
}
@media only screen and (max-width:991px) {
  .magazine .magazine-content .magazine-list {
    padding: 45px;
  }
}
@media only screen and (max-width:767px) {
  .magazine .magazine-content .magazine-list {
    padding: 30px;
  }
}
@media only screen and (max-width:480px) {
  .magazine .magazine-content .magazine-list {
    padding: 30px 20px;
  }
}
.magazine .magazine-content .magazine-list .magazine-desc {
  position: relative;
  padding-bottom: 60px;
  margin-bottom: 60px;
}
@media only screen and (max-width:767px) {
  .magazine .magazine-content .magazine-list .magazine-desc {
    padding-bottom: 30px;
    margin-bottom: 30px;
  }
}
.magazine .magazine-content .magazine-list .magazine-desc:after {
  content: "";
  background: url(assets/img/common/bg_border01.png) repeat-x left top;
  background-size: auto 100%;
  display: block;
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: 0;
}
.magazine .magazine-content .magazine-list .magazine-desc:last-of-type {
  margin-bottom: 0;
  padding-bottom: 0;
}
.magazine .magazine-content .magazine-list .magazine-desc:last-of-type:after {
  display: none;
}
.magazine .magazine-content .magazine-list .magazine-desc h2 {
  font-size: clamp(1.5rem, 2vw, 2.2rem) !important;
  margin: 0 0 4%;
  position: relative;
  padding-left: 60px;
}
@media only screen and (max-width:767px) {
  .magazine .magazine-content .magazine-list .magazine-desc h2 {
    padding-left: 45px;
  }
}
@media only screen and (max-width:480px) {
  .magazine .magazine-content .magazine-list .magazine-desc h2 {
    padding-left: 30px;
  }
}
.magazine .magazine-content .magazine-list .magazine-desc h2:before {
  content: "";
  width: 45px;
  height: 1px;
  display: block;
  background: #000;
  position: absolute;
  left: 0;
  top: 50%;
}
@media only screen and (max-width:767px) {
  .magazine .magazine-content .magazine-list .magazine-desc h2:before {
    width: 30px;
  }
}
@media only screen and (max-width:480px) {
  .magazine .magazine-content .magazine-list .magazine-desc h2:before {
    width: 20px;
  }
}
.magazine .magazine-content .magazine-list .magazine-desc .p-more {
  position: absolute;
  right: 0;
  top: 0;
  padding-right: 1em;
}
@media only screen and (max-width:480px) {
  .magazine .magazine-content .magazine-list .magazine-desc .p-more {
    position: relative;
    margin-bottom: 3em;
    display: inline-block;
  }
}
.magazine .magazine-content .magazine-list .magazine-desc .p-more:after {
  content: "";
  background: url(assets/img/icon/chevron.svg) no-repeat;
  background-size: contain;
  width: 8px;
  height: 12px;
  display: block;
  margin-left: 0.5em;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  margin-top: 1px;
}
@media only screen and (max-width:767px) {
  .magazine .magazine-content .magazine-list .magazine-desc .p-more:after {
    width: 6px;
    height: 9px;
  }
}
.magazine .magazine-content .magazine-list .magazine-desc__post ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0;
}
.magazine .magazine-content .magazine-list .magazine-desc__post ul li {
  -ms-flex-preferred-size: 31.3%;
      flex-basis: 31.3%;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  letter-spacing: 0.02em;
  line-height: 1.6em;
}
@media only screen and (max-width:480px) {
  .magazine .magazine-content .magazine-list .magazine-desc__post ul li {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    margin-bottom: 3em;
    font-size: 1.4rem;
  }
  .magazine .magazine-content .magazine-list .magazine-desc__post ul li:last-child {
    margin-bottom: 0;
  }
}
.magazine .magazine-content .magazine-list .magazine-desc__post ul li img {
  display: block;
  margin: 0 0 4%;
  border-radius: 10px;
}

/*  -------------------------------------
	page:404
  -------------------------------------*/
.error404 .page-top {
  padding-bottom: 0;
}
.error404 .p-pankuzu {
  padding: 22px 0;
}
.error404 .p-pankuzu__inner {
  width: 1360px;
  margin: 0 auto;
}
@media only screen and (max-width:1360px) {
  .error404 .p-pankuzu__inner {
    width: 90%;
  }
}
@media only screen and (max-width:991px) {
  .error404 .p-pankuzu__inner {
    width: 95%;
  }
}
@media only screen and (max-width:767px) {
  .error404 .p-pankuzu__inner {
    width: calc(100% - 30px);
  }
}
.error404 .error404-content__inner {
  width: 1360px;
  margin: 0 auto;
  text-align: center;
}
@media only screen and (max-width:1360px) {
  .error404 .error404-content__inner {
    width: 90%;
  }
}
@media only screen and (max-width:991px) {
  .error404 .error404-content__inner {
    width: 95%;
  }
}
@media only screen and (max-width:767px) {
  .error404 .error404-content__inner {
    width: calc(100% - 30px);
    padding: 20px;
  }
}
.error404 .error404-content__inner h3 {
  margin: 0 0 1em;
  font-size: clamp(1.4rem, 2vw, 2.4rem) !important;
}
.error404 .error404-content__inner .linkBtn:hover {
  opacity: 1;
}

/*  -------------------------------------
	page:sitemap
  -------------------------------------*/
.sitemap #sitemap-content ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media only screen and (max-width:480px) {
  .sitemap #sitemap-content ul {
    display: block;
  }
}
.sitemap #sitemap-content ul li {
  -ms-flex-preferred-size: 48%;
      flex-basis: 48%;
  max-width: 48%;
  border-bottom: 1px solid #085274;
  font-family: "EB Garamond", serif;
  font-size: clamp(1.4rem, 2vw, 1.8rem) !important;
}
@media only screen and (max-width:480px) {
  .sitemap #sitemap-content ul li {
    max-width: 100%;
  }
}
.sitemap #sitemap-content ul li a {
  color: #085274 !important;
  display: block;
  padding: 24px 0;
}

/*  -------------------------------------
	navigation
  -------------------------------------*/
.navigation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 60px 0 0;
  font-family: "EB Garamond", serif;
  font-weight: 500;
  font-size: clamp(1.2rem, 1.5vw, 1.6rem) !important;
}
@media only screen and (max-width:768px) {
  .navigation {
    margin: 30px 0 0;
  }
}
.navigation a {
  color: #333 !important;
}
.navigation .alignleft {
  position: relative;
  padding-left: 2em;
}
@media only screen and (max-width:767px) {
  .navigation .alignleft {
    padding-left: 1.25em;
  }
}
.navigation .alignleft:before {
  content: "";
  background: url(assets/img/icon/iconChevronL.svg) no-repeat;
  background-size: contain;
  width: 14px;
  height: 14px;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
@media only screen and (max-width:768px) {
  .navigation .alignleft:before {
    width: 8px;
    height: 12px;
    margin-top: -1px;
  }
}
@media only screen and (max-width:480px) {
  .navigation .alignleft:before {
    width: 6px;
    height: 9px;
    margin-top: 0px;
  }
}
.navigation .alignright {
  position: relative;
  padding-right: 2em;
}
@media only screen and (max-width:767px) {
  .navigation .alignright {
    padding-right: 1.25em;
  }
}
.navigation .alignright:before {
  content: "";
  background: url(assets/img/icon/iconChevron.svg) no-repeat;
  background-size: contain;
  width: 14px;
  height: 14px;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
@media only screen and (max-width:768px) {
  .navigation .alignright:before {
    width: 8px;
    height: 12px;
    margin-top: -1px;
  }
}
@media only screen and (max-width:480px) {
  .navigation .alignright:before {
    width: 6px;
    height: 9px;
    margin-top: 0px;
  }
}

/* 5.0 drawer
--------------------------------------------------------------*/
h1 {
  position: relative;
  text-align: center;
}

.button_container {
  position: fixed;
  border-radius: 100%;
  height: 35px;
  width: 60px;
  cursor: pointer;
  z-index: 100;
  -webkit-transition: opacity 0.25s ease;
  transition: opacity 0.25s ease;
  right: 30px;
  top: 50px;
}
@media only screen and (max-width:812px) {
  .button_container {
    top: 37px;
  }
}
@media only screen and (max-width:768px) {
  .button_container {
    right: 15px;
    top: 30px;
  }
}
@media only screen and (max-width:480px) {
  .button_container {
    width: 30px;
    top: 18px;
  }
}
.button_container:hover {
  opacity: 0.7;
}
.button_container.active .top {
  -webkit-transform: translateY(4px) translateX(-50%) rotate(45deg);
          transform: translateY(4px) translateX(-50%) rotate(45deg);
  background: #fff;
}
@media only screen and (max-width:768px) {
  .button_container.active .top {
    -webkit-transform: translateY(4px) translateX(-50%) rotate(45deg);
            transform: translateY(4px) translateX(-50%) rotate(45deg);
  }
}
.button_container.active .middle {
  opacity: 0;
  background: #000;
}
.button_container.active .bottom {
  -webkit-transform: translateY(-6px) translateX(-50%) rotate(-45deg);
          transform: translateY(-6px) translateX(-50%) rotate(-45deg);
  background: #fff;
}
@media only screen and (max-width:768px) {
  .button_container.active .bottom {
    -webkit-transform: translateY(-7px) translateX(-50%) rotate(-45deg);
            transform: translateY(-7px) translateX(-50%) rotate(-45deg);
  }
}
@media only screen and (max-width:687px) {
  .button_container.active .bottom {
    -webkit-transform: translateY(-5px) translateX(-50%) rotate(-45deg);
            transform: translateY(-5px) translateX(-50%) rotate(-45deg);
  }
}
.button_container.active span:nth-of-type(2) {
  top: 16px;
}
@media only screen and (max-width:768px) {
  .button_container.active span:nth-of-type(2) {
    top: 15px;
  }
}
@media only screen and (max-width:687px) {
  .button_container.active span:nth-of-type(2) {
    top: 14px;
  }
}
@media only screen and (max-width:687px) {
  .button_container.active span:nth-of-type(3) {
    top: 18px;
  }
}
.button_container span {
  background: #000;
  border: none;
  height: 1px;
  width: 60%;
  position: absolute;
  top: 12px;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
  cursor: pointer;
}
@media only screen and (max-width:768px) {
  .button_container span {
    top: 9px;
  }
}
.button_container span:nth-of-type(2) {
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
@media only screen and (max-width:768px) {
  .button_container span:nth-of-type(2) {
    top: 14px;
  }
}
.button_container span:nth-of-type(3) {
  top: 22px;
}
@media only screen and (max-width:768px) {
  .button_container span:nth-of-type(3) {
    top: 18px;
  }
}

.overlay {
  position: fixed;
  background: #000;
  top: 0;
  right: 0;
  width: 0%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.35s, visibility 0.35s, width 0.35s;
  transition: opacity 0.35s, visibility 0.35s, width 0.35s;
  overflow: hidden;
  z-index: 10;
}
.overlay.open {
  opacity: 0.85;
  visibility: visible;
  width: 30%;
  z-index: 99;
  overflow: scroll;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media only screen and (max-width:991px) {
  .overlay.open {
    width: 50%;
  }
}
@media only screen and (max-width:480px) {
  .overlay.open {
    width: 80%;
  }
}
.overlay.open li {
  -webkit-animation: fadeInRight 0.5s ease forwards;
          animation: fadeInRight 0.5s ease forwards;
  -webkit-animation-delay: 0.35s;
          animation-delay: 0.35s;
  text-align: left;
  line-height: 0.8em;
}
.overlay.open li:nth-of-type(2) {
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}
.overlay.open li:nth-of-type(3) {
  -webkit-animation-delay: 0.45s;
          animation-delay: 0.45s;
}
.overlay.open li:nth-of-type(4) {
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}
.overlay.open li:nth-of-type(5) {
  -webkit-animation-delay: 0.55s;
          animation-delay: 0.55s;
}
.overlay.open li:nth-of-type(6) {
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}
.overlay.open li:nth-of-type(7) {
  -webkit-animation-delay: 0.65s;
          animation-delay: 0.65s;
}
.overlay.open li:nth-of-type(8) {
  -webkit-animation-delay: 0.7s;
          animation-delay: 0.7s;
}
.overlay.open li:nth-of-type(9) {
  -webkit-animation-delay: 0.75s;
          animation-delay: 0.75s;
}
.overlay.open li:nth-of-type(10) {
  -webkit-animation-delay: 0.8s;
          animation-delay: 0.8s;
}
.overlay.open li:nth-of-type(11) {
  -webkit-animation-delay: 0.85s;
          animation-delay: 0.85s;
}
.overlay.open li:nth-of-type(12) {
  -webkit-animation-delay: 0.9s;
          animation-delay: 0.9s;
}
.overlay.open li.menu-parent-item:hover ul {
  position: relative;
  top: 0;
}
.overlay nav {
  position: relative;
  height: auto;
  width: 100%;
  padding: 10%;
  /* top: 50%;
   transform: translateY(-50%);*/
  font-size: 1.8rem;
  font-size: clamp(1.4rem, 2vw, 1.8rem);
  min-height: 0vw;
  font-family: "Shippori Mincho", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "Noto Serif JP", "HG明朝E", "ＭＳ Ｐ明朝", serif;
  font-weight: 300;
  text-align: center;
  overflow: scroll;
}
.overlay nav form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  border-bottom: 1px solid #fff;
  margin-bottom: 1.5em;
  -webkit-animation: fadeInRight 0.5s ease forwards;
          animation: fadeInRight 0.5s ease forwards;
  -webkit-animation-delay: 0.35s;
          animation-delay: 0.35s;
}
.overlay nav form input {
  background: none;
  width: 100%;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: none;
  color: #fff;
  padding: 0 0.5em;
}
.overlay nav form #s-btn-area {
  background: none;
  border: none;
  padding: 0;
}
.overlay nav form #s-btn-area #s-btn img {
  height: 20px;
  width: 18px;
}
@media only screen and (max-width:480px) {
  .overlay nav form #s-btn-area #s-btn img {
    height: 16px;
    width: 14px;
  }
}
.overlay ul {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  display: inline-block;
  position: relative;
  height: 100%;
  width: 100%;
}
.overlay ul li {
  display: block;
  position: relative;
  opacity: 0;
  padding: 2% 0;
  font-weight: 500;
  margin: 0 0 0.75em;
}
.overlay ul li:last-child {
  margin: 0;
}
@media only screen and (max-width:1200px) {
  .overlay ul li {
    padding: 3% 0;
  }
}
.overlay ul li a {
  display: block;
  position: relative;
  text-decoration: none;
  font-size: 1.7rem;
  font-size: clamp(1.3rem, 2vw, 1.8rem);
  font-weight: 500;
  color: #fff !important;
  letter-spacing: 0.05em;
  padding-bottom: 0.25em;
}
.overlay ul li a span {
  width: 110px;
  display: inline-block;
  font-size: 18px;
}
.overlay ul li a:hover:after, .overlay ul li a:focus:after, .overlay ul li a:active:after {
  width: 0%;
}
.overlay ul li a:hover {
  opacity: 0.8;
}
.overlay ul li a:hover:after {
  width: 0;
}
.overlay ul li a:after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0%;
  width: 0%;
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
  height: 1px;
  background: #fff;
  -webkit-transition: 0.35s;
  transition: 0.35s;
}
.overlay ul li ul {
  display: block;
  margin: 1em 0 0;
}
.overlay ul li ul li {
  height: auto;
  font-weight: 400;
  margin-bottom: 0;
  text-indent: 1em;
}
.overlay ul li ul li a {
  font-size: 1.4rem;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
}

@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    left: 20%;
  }
  100% {
    opacity: 1;
    left: 0;
  }
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    left: 20%;
  }
  100% {
    opacity: 1;
    left: 0;
  }
}