/* ----------------------------------------------------------------------------------------------  */
/* BASIC SETUP */
/* ----------------------------------------------------------------------------------------------  */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

li {
  list-style: none;
}

a:link,
a:visited {
  text-decoration: none;
}

img {
  image-rendering: -webkit-optimize-contrast;
  -webkit-backface-visibility: hidden;
  width: 100%;
  object-fit: cover;
}

video {
  width: 100%;
}

body {
  color: #202033;
  font-family: 'Zen Old Mincho', serif;
  line-height: 1.5;
  position: relative;
}

header {
  font-weight: 700;
  font-size: 18px;
}

@font-face {
  font-family: 'kouzan';
  src: url("../font/KouzanMouhituFontGyousyo10.ttf");
}

a {
  /* color: #202033; */
  color: #fff;
}

/* ----------------------------------------------------------------------------------------------  */
/* COMPONENTS */
/* ----------------------------------------------------------------------------------------------  */
.loading {
  width: 100%;
  height: 100%;
  transition: all 1s;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  background-color: #fff;
  opacity: 1;
  visibility: visible;
}

.loading.is-active {
  opacity: 0;
  visibility: hidden;
}

body.is-active {
  overflow: hidden;
}

.loading-animation {
  width: 100%;
  height: 100%;
  transition: all 1s;
  background-color: #fff;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
}

.loading-animation img {
  width: 30%;
  margin: 0 auto;
}

.loading-animation.is-active {
  opacity: 1;
  visibility: visible;
}

.fade-in {
  opacity: 0;
  transition: all 1s ease;
}

.fade-in.show {
  opacity: 1;
  transform: none;
}

.fade-in-up {
  transform: translate(0, 100px);
}

.button_return_top {
  cursor: pointer;
  right: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 71px;
  height: 96px;
  z-index: 2;
}

.button_return_top:hover {
  opacity: 0.8 !important;
  transition: 0.3s;
}

.button_back_home {
  position: fixed;
  bottom: 3rem;
  cursor: pointer;
  right: 8px;
  width: 180px;
  z-index: 2;
}

.button_back_home:hover {
  opacity: 0.8 !important;
  transition: 0.3s;
}

.scroll-down {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 15px;
}

.scroll-down a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.mouse {
  width: 34px;
  height: 74px;
  position: relative;
  background: #4e5559 linear-gradient(transparent 0%, transparent 50%, #ffffff 50%, #ffffff 100%);
  background-size: 100% 200%;
  border-radius: 100px;
  animation: colorSlide 5s linear infinite,
    nudgeMouse 5s ease-out infinite;
}

.mouse:before,
.mouse:after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
}

.mouse:before {
  width: 26px;
  height: 66px;
  background-color: #30333a;
  border-radius: 100px;
}

.mouse:after {
  background-color: #ffffff;
  width: 10px;
  height: 10px;
  border-radius: 100%;
  animation: trackBallSlide 5s linear infinite;
}

.scroll-down-txt {
  margin-top: 10px;
  letter-spacing: 5px;
  color: #fff;
  font-size: 1.4rem;
  text-indent: 12px;
  animation: colorText 5s ease-out infinite,
    nudgeText 5s ease-out infinite;
}

/* Animations */
@keyframes colorSlide {
  0% {
    background-position: 0% 100%;
  }

  20% {
    background-position: 0% 0%;
  }

  21% {
    background-color: #4e5559;
  }

  29.99% {
    background-color: #ffffff;
    background-position: 0% 0%;
  }

  30% {
    background-color: #4e5559;
    background-position: 0% 100%;
  }

  50% {
    background-position: 0% 0%;
  }

  51% {
    background-color: #4e5559;
  }

  59% {
    background-color: #ffffff;
    background-position: 0% 0%;
  }

  60% {
    background-color: #4e5559;
    background-position: 0% 100%;
  }

  80% {
    background-position: 0% 0%;
  }

  81% {
    background-color: #4e5559;
  }

  90%,
  100% {
    background-color: #ffffff;
  }
}

@keyframes colorText {
  21% {
    color: #4e5559;
  }

  30% {
    color: #ffffff;
  }

  51% {
    color: #4e5559;
  }

  60% {
    color: #ffffff;
  }

  81% {
    color: #4e5559;
  }

  90% {
    color: #ffffff;
  }
}

@keyframes trackBallSlide {
  0% {
    opacity: 1;
    transform: scale(1) translateY(-20px);
  }

  6% {
    opacity: 1;
    transform: scale(0.9) translateY(5px);
  }

  14% {
    opacity: 0;
    transform: scale(0.4) translateY(40px);
  }

  15%,
  19% {
    opacity: 0;
    transform: scale(0.4) translateY(-20px);
  }

  28%,
  29.99% {
    opacity: 1;
    transform: scale(1) translateY(-20px);
  }

  30% {
    opacity: 1;
    transform: scale(1) translateY(-20px);
  }

  36% {
    opacity: 1;
    transform: scale(0.9) translateY(5px);
  }

  44% {
    opacity: 0;
    transform: scale(0.4) translateY(40px);
  }

  45%,
  49% {
    opacity: 0;
    transform: scale(0.4) translateY(-20px);
  }

  58%,
  59.99% {
    opacity: 1;
    transform: scale(1) translateY(-20px);
  }

  60% {
    opacity: 1;
    transform: scale(0.9) translateY(-20px);
  }

  66% {
    opacity: 1;
    transform: scale(0.9) translateY(5px);
  }

  74% {
    opacity: 0;
    transform: scale(0.4) translateY(40px);
  }

  75%,
  79% {
    opacity: 0;
    transform: scale(0.4) translateY(-20px);
  }

  88%,
  100% {
    opacity: 1;
    transform: scale(1) translateY(-20px);
  }
}

@keyframes nudgeMouse {
  0% {
    transform: translateY(0);
  }

  20% {
    transform: translateY(8px);
  }

  30% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(8px);
  }

  60% {
    transform: translateY(0);
  }

  80% {
    transform: translateY(8px);
  }

  90% {
    transform: translateY(0);
  }
}

@keyframes nudgeText {
  0% {
    transform: translateY(0);
  }

  20% {
    transform: translateY(2px);
  }

  30% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(2px);
  }

  60% {
    transform: translateY(0);
  }

  80% {
    transform: translateY(2px);
  }

  90% {
    transform: translateY(0);
  }
}

.sp_front_slider {
  display: none;
}


.modal,
.modal2,
.modal3,
.modal4,
.modal5 {
  background: rgba(65, 122, 172, .4);
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 9999;
}

.modal__inner {
  background: #fff;
  padding: 2.5rem 2.5rem 6rem 2.5rem;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: auto;
  z-index: 10000;
  border-radius: 15px;
  width: 30%;
}

.modal__inner_content_area {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.close__btn_area {
  margin-top: 4rem;
  display: flex;
  justify-content: center;
}

.close__btn_area .btn {
  width: 50%;
}

.close__btn {
  cursor: pointer;
}

.modal__opner {
  cursor: pointer;
  width: 80%;
  margin: 0 auto;
}

.content_slider .slick-dots li.slick-active button:before {
  opacity: 1;
  color: #202033;
}

.content_slider .slick-dots li button:before {
  opacity: 1;
  color: #62B0F3;
  font-size: 1.5rem;
}

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

.fixed {
  overflow: hidden;
}

.sp-show-keyvisual {
  display: none;
}

.sp-br {
  display: none;
}


/* ----------------------------------------------------------------------------------------------  */
/* HEADER */
/* ----------------------------------------------------------------------------------------------  */
.header-area {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 0 9rem;
  position: absolute;
  z-index: 999;
  align-items: stretch;
  padding-top: 2.5rem;
  width: 100%;
}

.header-logo img {
  max-width: 326px;
  width: 100%;
}

.header-content {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.header-content nav {
  height: 100%;
}

.header-content a {
  color: #FFFFFF;
  display: flex;
  height: 100%;
  align-items: center;
}

.header-ul {
  display: flex;
  flex-direction: row;
  height: 100%;
}

.header-ul li {
  font-size: 2.1rem;
  text-shadow: 0.2px 0.2px 1px #3a3a61;
}

.header-list a {
  padding: 0 1rem;
}

.list-area {
  display: flex;
  flex-direction: row;
}

.list-area-low {
  left: 50%;
  top: 100%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  box-shadow: 0 2px 4px rgb(0 0 0 / 10%);
  opacity: 0;
  position: absolute;
  text-align: left;
  transition: opacity .25s, visibility .25s;
  visibility: hidden;
  width: 16em;
  z-index: 1;
  background: #202033;
}

.list-area-low:before {
  background: inherit;
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 0;
}

.list-area-low li {
  position: relative;
}

.list-area-low a {
  padding: 0.5em 0.75em;
  display: block;
  font-size: 1.8rem;
  line-height: 1.5;
}

.header-content-list {
  position: relative;
}

.header-content-list-main {
  position: relative;
}

.header-content-list a {
  padding-left: 2.7em;
  transition: all 0.3s ease-out;
}

.header-content-list-main .header-link {
  padding-left: 2.7em;
  transition: all 0.3s ease-out;
}

.header-content-list-main:before {
  content: '';
  width: 6px;
  height: 6px;
  border: 0;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  position: absolute;
  top: 50%;
  left: 17px;
  margin-top: -5px;
  transform: rotate(45deg);
}

.header-content-list-main:hover .header-link {
  padding-left: 3.2em;
  transition: all 0.3s ease-out;
}

.header-content-list:before {
  content: '';
  width: 6px;
  height: 6px;
  border: 0;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  position: absolute;
  top: 50%;
  left: 17px;
  margin-top: -5px;
  transform: rotate(45deg);
}


.header-content-list:hover a {
  padding-left: 3.2em;
  transition: all 0.3s ease-out;
}

.sub-menu a:before {
  content: '';
  width: 6px;
  height: 6px;
  border: 0;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  position: absolute;
  top: 50%;
  left: 17px;
  margin-top: -5px;
  transform: rotate(45deg);
}

.header-link:before {
  left: 0.5em;
}

.hover-txt {
  position: relative;
}

.hover-txt:hover .list-area-low {
  visibility: visible;
  opacity: 1;
}

.sub-menu {
  left: 100%;
  top: 0%;
  z-index: -1;
  box-shadow: 0 2px 4px rgb(0 0 0 / 10%);
  opacity: 0;
  position: absolute;
  text-align: left;
  transition: opacity .25s, visibility .25s;
  visibility: hidden;
  width: 15em;
  background: #008aff;
}

.sub-menu:before {
  background: inherit;
  content: "";
  height: 100%;
  position: absolute;
  width: 100%;
  z-index: 0;
}

.sub-menu a {
  display: block;
  padding: 0.5em 0.75em;
  padding-left: 2.7em;
  transition: all 0.3s ease-out;
}


.sub-menu li:hover a {
  padding-left: 3.2em;
  transition: all 0.3s ease-out;
}

.list-area-low-content:hover .sub-menu {
  visibility: visible;
  opacity: 1;
}

.header-online-shop {
  margin: 0 2.5rem;
}

.header-online-shop a {
  display: flex;
  background-color: #e2836b;
  flex-direction: row;
  font-size: 1.9rem;
  border: solid 2px #fff;
  padding: 1rem 2rem 1rem 2rem;
  align-items: center;
  border-radius: 22px;
  transition: .2s;
}

.header-online-shop a:hover {
  background-color: #e2836b;
  color: #ffff;
  border: solid 2px #fff;
}

.header-online-shop img {
  width: 28.33px;
}

.online-shop.lower br {
  display: none;
}

.online-shop.lower .private-customer-intro ::before,
.online-shop.lower .private-customer-intro ::after {
  background-color: #d2000d;
  border: solid 1px #202033;
  height: 85px;
}

.header-area-bk-wh {
  display: none;
  padding: 0 9rem;
  box-shadow: 0 2px 4px 0;
}

.header-logo a {
  display: flex;
}

.header-logo-scroll {
  display: flex;
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  background: #fff;
  width: 100%;
  justify-content: space-between;
  align-items: stretch;
  transform: translateY(-70.63px);
  opacity: 0;
  transition: transform 0.6s, opacity 0.6s;
}

.is-show {
  transform: translateY(0);
  opacity: 1;
}

.header-logo-second img {
  max-width: 295px;
  width: 100%;
  padding: 1.5rem 0;
}

.second-color {
  color: #202033 !important;
}

.header-online-shop-second {
  margin: 0 2.5rem;
}

.header-online-shop-second a {
  display: flex;
  flex-direction: row;
  font-size: 2rem;
  border: solid 2px #e2836b;
  background-color: #e2836b;
  padding: 1rem 2rem 1rem 2rem;
  align-items: center;
  border-radius: 23px;
  color: #fff;
  transition: .2s;
}


.header-online-shop-second a:hover {
  border: solid 2px #fff;
}

.header-online-shop-second img {
  width: 28.33px;
}

.normal-display {
  transition: .2s;
}

.header-online-shop-second a:hover .normal-display {
  display: none;
  transition: .2s;
}

.hover-action {
  display: none;
  transition: .2s;
}

.header-online-shop-second a:hover .hover-action {
  display: block;
  transition: .2s;
}

.header-hover {
  position: relative;
}

.header-hover:after {
  width: 100%;
  background-color: #202033;
  bottom: 0.4px;
  content: "";
  display: inline-block;
  left: 0;
  position: absolute;
  transition: width .25s, height .25s, -webkit-transform .25s;
  transition: transform .25s, width .25s, height .25s;
  transition: transform .25s, width .25s, height .25s, -webkit-transform .25s;
  height: 0;
}

.header-hover:hover::after {
  height: 5px;
}

.hover-color:after {
  background-color: #fff;
}

.js_humburgerOpen {
  overflow: hidden;
}

.header_humburger {
  display: flex;
  align-items: stretch;
}

/*ハンバーガーボタン*/
.el_humburger.active {
  position: fixed;
  top: 36px;
  right: 36px;
  width: 46px;
  height: 25px;
  padding-top: 1px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding-top: 0px;
  z-index: 20;
  cursor: pointer;
  pointer-events: auto;
  color: #000;
  text-align: center;
}

.header_scroll_humburger.active {
  top: 24px;
  right: 21px;
}

.el_humburger {
  z-index: 20;
}

.el_humburger_wrapper {
  width: 42px;
  display: inline-block;
}

@media screen and (max-width: 840px) {
  .el_humburger_wrapper {
    width: 30px;
  }
}

.el_humburger_text {
  font-size: 12px;
  letter-spacing: 0.1em;
  font-weight: 700;
}

.js_humburgerOpen .el_humburger_text.el_humburger_text__menu {
  display: none;
}

.el_humburger_text.el_humburger_text__close {
  display: none;
}

.js_humburgerOpen .el_humburger_text.el_humburger_text__close {
  display: block;
}

@media screen and (max-width: 840px) {
  .el_humburger_text {
    font-size: 10px;
    padding-top: 2px;
  }
}

@media screen and (max-width: 840px) {
  .el_humburger_text svg path {
    -webkit-transition: all 200ms cubic-bezier(0.16, 0.52, 0.25, 1);
    -o-transition: all 200ms cubic-bezier(0.16, 0.52, 0.25, 1);
    transition: all 200ms cubic-bezier(0.16, 0.52, 0.25, 1);
    fill: #fff;
  }
}

@media screen and (max-width: 840px) {
  .js_humburgerOpen .el_humburger_text svg path {
    fill: #fff;
  }
}

.el_humburger span.el_humburger_bar {
  display: block;
  width: 100%;
  margin: 0 auto 9px;
  height: 1px;
  background: #fff;
  -webkit-transition: all .2s ease-in-out;
  -o-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}

.el_humburger span.el_humburger_bar:last-child {
  margin-bottom: 0;
}

.js_humburgerOpen .el_humburger span.el_humburger_bar {
  background: #fff !important;
}

@media screen and (max-width: 840px) {
  .el_humburger span.el_humburger_bar {
    left: 0;
    top: 0;
    background: #fff;
  }
}

.js_humburgerOpen .el_humburger span.el_humburger_bar.top {
  -webkit-transform: translateY(9px) rotate(-45deg);
  -ms-transform: translateY(9px) rotate(-45deg);
  transform: translateY(9px) rotate(-45deg);
}

.js_humburgerOpen .el_humburger span.el_humburger_bar.middle {
  opacity: 0;
}

.js_humburgerOpen .el_humburger span.el_humburger_bar.bottom {
  -webkit-transform: translateY(-11px) rotate(45deg);
  -ms-transform: translateY(-11px) rotate(45deg);
  transform: translateY(-11px) rotate(45deg);
}

.el_humburgerButton.el_humburgerButton__close {
  top: 2%;
  right: 2%;
}

.el_humburgerButton__close span.el_humburger_bar {
  display: block;
  width: 35px;
  margin: 0 auto;
  height: 4px;
  background: #fff;
}

.el_humburgerButton__close span.el_humburger_bar.top {
  -webkit-transform: translateY(5px) rotate(-45deg);
  -ms-transform: translateY(5px) rotate(-45deg);
  transform: translateY(5px) rotate(-45deg);
}

.el_humburgerButton__close span.el_humburger_bar.bottom {
  -webkit-transform: translateY(-6px) rotate(45deg);
  -ms-transform: translateY(-6px) rotate(45deg);
  transform: translateY(-6px) rotate(45deg);
}

.navi {
  position: fixed;
  right: 0;
  top: 0;
  width: 450px;
  background-color: #202033;
  opacity: .92;
  padding-top: 100px;
  height: 100%;
  z-index: 19;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 600ms ease-out;
  -o-transition: all 600ms ease-out;
  transition: all 600ms ease-out;
  transform: translateZ(0) translateX(100%);
  overflow: auto;
}


.js_humburgerOpen .navi {
  transform: translateZ(0) translateX(0);
}

@media screen and (max-width: 840px) {
  .navi {
    padding: 100px 5% 0;
  }

  .js_humburgerOpen .navi {
    width: 100%;
  }

  .header_scroll_navi {
    padding: 100px 5% 0;
  }

  .js_humburgerOpen .header_scroll_navi {
    width: 100%;
  }
}

.navi_item {
  position: relative;
  font-size: 19px;
  white-space: nowrap;
  border-top: solid 2px #fff;
  padding: 2rem 4rem;
}

.navi_item.op_innerLink {
  cursor: pointer;
}

@media screen and (max-width: 840px) {
  .navi_item {
    margin-left: 0;
    font-size: 18px;
  }
}

.navi_item a {
  color: #fff;
  display: block;
  padding: 1rem;
}

.el_spChildNavOpen {
  position: absolute;
  top: 28px;
  left: 80%;
  z-index: 20;
  -webkit-transition: all 200ms ease-out;
  -o-transition: all 200ms ease-out;
  transition: all 200ms ease-out;
  -webkit-transform-origin: center;
  -ms-transform-origin: center;
  transform-origin: center;
}

.js_openParent.js_fire>.el_spChildNavOpen {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.js_openParent.js_fire>.el_spChildNavOpen>.el_spChildNavOpen_wrapper:after {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
  opacity: 0;
}

.el_spChildNavOpen_wrapper {
  position: relative;
  width: 23px;
  height: 23px;
  -webkit-transition: all 200ms ease-out;
  -o-transition: all 200ms ease-out;
  transition: all 200ms ease-out;
  -webkit-transform-origin: center;
  -ms-transform-origin: center;
  transform-origin: center;
}

.el_spChildNavOpen_wrapper:before {
  content: "";
  width: 100%;
  height: 2px;
  background-color: #fff;
  position: absolute;
  top: calc(50% - 2px);
}

.el_spChildNavOpen_wrapper:after {
  content: "";
  width: 2px;
  height: 100%;
  background-color: #fff;
  position: absolute;
  left: calc(50% - 2px);
  -webkit-transition: all 200ms ease-out;
  -o-transition: all 200ms ease-out;
  transition: all 200ms ease-out;
}

.nav_child_item {
  position: relative;
  padding-left: 20px;
}

.js_openSwitch {
  cursor: pointer;
  padding: 0 1.5rem;
}

.js_openTarget {
  display: none;
}

/*   ここまで */

.el_humburger {
  display: none;
}


.under-line_gray {
  display: block;
  height: 1.5px;
  background-color: #e4eff3;
  width: 82%;
  margin: 2px auto 0 auto;
}

.thawing_movie .under-line_gray {
  margin-bottom: 13px;
}

.title-underline {
  display: block;
  width: 85%;
  position: relative;
  text-align: center;
  margin-bottom: 10px;
}

.title-underline::before,
.title-underline::after {
  content: "";
  position: absolute;
}

.title-underline::before {
  left: 0;
  top: -4px;
  width: 93%;
  transform: translateX(-2%);
  /* background-color: #26829D; */
  background-color: #c8e0e6;
  height: 0.6px;
}

.title-underline::after {
  right: 0;
  bottom: 0%;
  transform: translateX(4%);
  /* background-color: #707070; */
  background-color: #e4eff3;
  height: 0.6px;
  width: 100%;
}


.title-underline-center {
  display: block;
  width: 100%;
  position: relative;
  margin-top: 5px;
  margin-bottom: 10px;
}

.title-underline-center::before,
.title-underline-center::after {
  content: "";
  position: absolute;
}

.title-underline-center::before {
  left: -15%;
  top: -5px;
  width: 130%;
  /* background-color: #26829D; */
  background-color: #c8e0e6;
  height: 0.6px;
}

.title-underline-center::after {
  left: -30%;
  bottom: 0;
  width: 160%;
  /* background-color: #707070; */
  background-color: #e4eff3;
  height: 0.6px;
}

.title-underline-equal {
  display: block;
  width: 100%;
  position: relative;
  margin-top: 5px;
  margin-bottom: 20px;
}

.title-underline-equal::before,
.title-underline-equal::after {
  content: "";
  position: absolute;
}

.title-underline-equal::before {
  left: 0;
  top: -5px;
  width: 100%;
  /* background-color: #26829D; */
  background-color: #c8e0e6;
  height: 0.7px;
}

.title-underline-equal::after {
  left: 0%;
  bottom: 0;
  width: 100%;
  /* background-color: #707070; */
  background-color: #e4eff3;
  height: 0.7px;
}


/* ----------------------------------------------------------------------------------------------  */
/* FRONTPAGE */
/* ----------------------------------------------------------------------------------------------  */

.main {
  position: relative;
  z-index: 1;
}

.main-visual {
  position: relative;
}

.main-visual img {
  height: 100vh;
  object-fit: cover;
}

.pc-slider {
  display: block !important;
}

.sp-slider {
  display: none !important;
}


.main-visual video {
  width: 100%;
  object-fit: cover;
  height: 100vh;
}


.main-visual h1 {
  font-weight: 900;
  font-size: 4.5rem;
  color: #fff;
  line-height: 1.5;
  position: absolute;
  bottom: 35%;
  right: 2%;
  height: fit-content;
  width: max-content;
  text-shadow: 0.7px 0.7px 0.8px #3a3a61;
}

.front-news {
  margin-top: -4px;
  display: flex;
  flex-direction: row;
  box-shadow: 0px 8px 5px 0px rgba(0, 40, 75, 0.5);
}

.front-news-title {
  width: 19%;
  background-color: #202033;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem 0;
}

.front-news-title h2 {
  font-weight: 400;
  color: #fff;
  font-size: 2.6rem;
}

.front-news-area {
  display: flex;
  flex-direction: row;
  width: 81%;
}

.front-news-txt {
  display: flex;
  align-items: center;
  width: 90%;
  padding: 2rem 0;
  background-color: #fff;
  font-size: 1.8rem;
  font-weight: 700;
}

.front-news-txt a {
  display: flex;
  width: 100%;
  color: #202033;
}

.front-news-txt span {
  display: block;
  margin-right: 1.5rem;
}

.front-news-txt p {
  margin: 0 10% 0 10%;
  padding: 0 1% 0 1%;
  position: relative;
  display: flex;
  flex-direction: row;
  text-decoration: none;
  width: 100%;
}


.front-news-txt p::after {
  position: absolute;
  bottom: -8px;
  left: 0;
  content: '';
  width: 100%;
  height: 1px;
  background: #202033;
  transform: scale(0, 1);
  transform-origin: right top;
  transition: transform .3s;
}

.front-news-txt:hover p::after {
  transform-origin: left top;
  transform: scale(1, 1);
}

.news-arrow-area {
  width: 10%;
  background-color: #202033;
  display: flex;
  align-items: center;
  justify-content: center;
}

.arrow {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

.arrow p {
  display: none;
}

.news-arrow {
  display: block;
  width: 3rem;
  height: 9px;
  border-bottom: 2px solid #fff;
  border-right: 3px solid #fff;
  transform: skew(45deg);
  transition: all 0.3s ease-out;
}

.arrow:hover .news-arrow {
  transition: all 0.3s ease-out;
  margin-left: 10%;
}

.news_content_area li:hover .news-arrow {
  transition: all 0.3s ease-out;
  margin-left: 15%;
  border-bottom: 2px solid #008aff;
  border-right: 3px solid #008aff;
}

.news_content_area li:hover .news_title {
  color: #008aff;
  transition: all 0.3s ease-out;
}

.front-philosophy {
  background-image: url(../img/top-background.png);
  background-size: 60%;
  background-repeat: no-repeat;
  background-position: right;
  background-position-y: initial;
}

.content-area {
  max-width: 1200px;
  margin: 0 auto;
  width: 90%;
}

.front-philosophy-area {
  padding: 10rem 0 0 0;
  color: #202033;
}

.front-philosophy-area h2 {
  font-weight: 900;
  font-size: 4.5rem;
  letter-spacing: 2px;
  text-align: center;
}

.sp-br {
  display: none;
}

.front-philosophy-left h3 {
  font-weight: 900;
  font-size: 2.5rem;
}

.front-philosophy-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  padding-bottom: 12rem;
  margin-top: 4.5rem;
}


.front-philosophy-txt {
  font-size: 1.9rem;
  font-weight: 600;
  letter-spacing: 4px;
  line-height: 1.8;
  text-shadow: 0.3px 0.3px 1px #3a3a61
}

.front-philosophy-txt.mg-tp {
  margin: 3rem 0rem 4rem 0rem;
}


.triangle-container {
  padding: 30px 0 100px 0;
}

.triangle {
  display: flex;
  justify-content: center;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.triangle-under {
  display: flex;
  justify-content: center;
}

.circle {
  width: 250px;
  height: 250px;
  border-radius: 50%;
  color: #fff;
  line-height: 100px;
  font-size: 30px;
  letter-spacing: 3px;
  font-weight: bold;
  background-color: transparent;
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0.9;
}

.above {
  background-color: #e2836b;
  margin-bottom: -34px;
}

.man {
  background-color: #c7894a;
}

.ground {
  background-color: #83a8c1;
}

.btn {
  display: block;
  position: relative;
  /* border-radius: 8px; */
  box-sizing: border-box;
  height: 60px;
  width: 50%;
  transition: opacity 0.5s ease;
  background: #202033;
}

.btn:hover {
  opacity: 0.8;
}

/* .btn:hover span {
  background: #202033;
} */

.btn span {
  align-items: center;
  /* border-radius: 8px; */
  display: flex;
  justify-content: center;
  height: 100%;
  transition: 0.5s ease;
  width: 100%;
  /* border: solid 1px #202033; */
}


.front_btn {
  font-size: 1.9rem;
  font-weight: 700;
  letter-spacing: 2px;
  margin-top: 8rem;
  display: flex;
  justify-content: center;
}

.wave-area {
  position: relative;
}

.sine-canvas-area {
  position: absolute;
  bottom: -1px;
  z-index: 1;
  width: 100%;
}

.sine-canvas-area.second {
  z-index: 0;
}

.front-products {
  background-color: #fff9f5;
}

.front-products-area {
  padding: 8rem 0 13rem 0;
}

.front-products-container {
  max-width: 1050px;
  width: 90%;
  margin: 0 auto;
  background-color: #fff;
  border: #202033 solid 5px;
  border-radius: 20px;
}

.front-products-container .inner-wrap {
  padding: 10rem 3rem;
}

.front-products-container__pickup {
  display: flex;
  margin-bottom: 11rem;
}

.sp-front-products-container__pickup-title {
  display: none;
}

.front-products-container__pickup-title {
  font-size: 2.5rem;
  letter-spacing: 1px;
  font-weight: 800;
}

.front-products-container__pickup-title .title-underline {
  margin-top: 7px;
}

.front-products-container__pickup-text {
  display: block;
  width: 65%;
  position: relative;
  padding-left: 3rem;
}

.front-products-container__pickup-img {
  width: 47%;
}

.front-products-container__pickup-img img {
  width: 100%;
}

.front-products-container__pickup-sentence {
  padding-right: 6.5rem;
}

.front-products-container__pickup-sentence p {
  font-size: 1.8rem;
  letter-spacing: 1px;
  font-weight: 500;
  margin-top: 14px;
  margin-bottom: 20px;
}

.front-pickup-list {
  display: flex;
  font-size: 1.6rem;
  font-weight: 500;
  width: 65%;
  justify-content: space-between;
  text-shadow: 0.1px 0.1px 0.5px;
}

.front-pickup-button {
  position: absolute;
  bottom: 0;
  right: 13%;
}

.front-pickup-button a {
  text-align: center;
  display: inline-block;
  background-color: #19596d;
  color: #fff;
  width: 165px;
  padding: 10px 0;
  text-decoration: none;
  border: 2px solid #fff;
  border-radius: 5px;
  font-weight: bold;
  letter-spacing: 2px;
  transition: opacity 0.3s ease;
  font-size: 1.8rem;
}

.front-pickup-button a:hover {
  opacity: 0.8;
}

.front-products-area h2 {
  font-weight: 900;
  font-size: 4.5rem;
  text-align: center;
  letter-spacing: 2px;
}

.front-products-content {
  width: 29.25%;
  margin-top: 4.5rem;
}

.front-products-content-area {
  display: flex;
  flex-wrap: wrap;
  margin-top: 1.5rem;
  justify-content: center;
}

.front-products-content a {
  display: block;
  position: relative;
  transition: 0.5s ease;
}

.front-products-content a:hover {
  opacity: 0.8;
  transition: 0.5s ease;
}

.front-products-content p {
  width: 100%;
  text-align: center;
  color: #FFF;
  font-weight: 900;
  font-size: 4.5rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  -webkit-transform: translateY(-50%) translateX(-50%);
  z-index: 1;
}

.front-products-content img {
  width: 100%;
}

.front-products-img-sp {
  display: none;
}


.front-products-card-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.front-products-card {
  width: 48%;
  margin-bottom: 50px;
  display: flex;
  border-top: 1.7px solid #e1e1e1;
  padding-top: 50px;
  /* box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.3); */
}

.sp-products-card__title {
  display: none;
}

.card-image {
  width: 60%;
}

.card-content {
  margin-left: 10px;
  position: relative;
}

.card-content h3 {
  font-size: 2.3rem;
  text-align: left;
  margin-bottom: 4px;
}

.front-products-card img {
  width: 100%;
  height: auto;
}

.card-content li {
  padding-left: 1em;
  text-indent: -1em;
  font-size: 1.5rem;
}

.card-content li.indent {
  padding-left: 2em;
}

.front-products-card__button {
  position: absolute;
  bottom: 14px;
  left: 0;
}

.front-products-card__button a {
  text-align: center;
  display: inline-block;
  background-color: #fff;
  color: #202033;
  width: 110px;
  padding: 8px 0;
  text-decoration: none;
  border: 1px solid #202033;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s ease;
  transition: border 0.3 ease;
  font-size: 1.5rem;
  letter-spacing: 0.5px;
}

.front-products-card__button a:hover {
  color: #fff;
  background-color: #19596d;
  border: 1px solid #19596d;
}

.front-products__button {
  font-size: 2rem;
  font-weight: 700;
  margin-top: 3rem;
  letter-spacing: 2px;
  display: flex;
  justify-content: center;
}

.private-customer {
  padding-bottom: 13rem;
}

.private-customer-area {
  max-width: 1200px;
  width: 90%;
  margin: 0 auto;
  padding: 8rem 0 13rem 0;
}

.private-customer-area h2 {
  font-weight: 900;
  font-size: 4.5rem;
  text-align: center;
}

.private-customer-content {
  margin-top: 7rem;
  display: flex;
}

.private-customer-content-left,
.private-customer-content-right {
  width: 50%;
}

.private-customer-content-left {
  padding-left: 6%;
  padding-right: 3%;
}

.private-customer-content-right {
  padding-left: 3%;
  padding-right: 6%;
}

.private-customer-txt {
  font-size: 1.8rem;
  letter-spacing: 1px;
  line-height: 170%;
  font-weight: 600;
}

.online-shop {
  max-width: 1010px;
  margin: 0 auto;
  width: 70%;
}

.online-shop br {
  display: none;
}

.private-customer-intro p {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-weight: 700;
  letter-spacing: 3px;
  font-size: 3.6rem;
  line-height: 1.5;
}

.private-customer-intro p::before,
.private-customer-intro p::after {
  content: '';
  width: 6px;
  height: 100px;
  background-color: #c7894a;
  border: 0.5px solid #3a3a61;
  margin-top: 6px;
}

.private-customer-intro p::before {
  margin-right: 35px;
  transform: rotate(-35deg)
}

.private-customer-intro p::after {
  margin-left: 25px;
  transform: rotate(35deg)
}

.sp_img_online-shop {
  display: none;
}

.online-shop.lower {
  margin-top: 10rem;
  margin-bottom: 10rem;
}

.online-shop.lower.mg-tp {
  margin-top: 6rem;
}

.private-customer__button {
  width: 45rem;
  font-size: 1.8rem;
  letter-spacing: 2px;
  font-weight: 700;
  margin-top: 3rem;
  display: flex;
}

.private-customer__button a {
  width: 100%;
}

.private-customer__button .btn span {
  color: #fff;
  background-color: #c7894a;
  border: 1px solid #c7894a;
}

.front-recruit {
  background-image: url(../img/top-saiyou.jpg);
  padding: 9rem 0 10rem 0;
  background-repeat: no-repeat;
  background-size: cover;
}

.front-recruit-content {
  max-width: 1200px;
  margin: 0 auto;
  width: 85%;
}

.front-recruit-content h2 {
  /* font-family: 'Sawarabi Mincho', serif; */
  font-family: 'Zen Old Mincho', serif;
  font-size: 4.5rem;
  text-align: center;
  font-weight: 600;
  color: #fff;
  letter-spacing: 1px;
  text-shadow: 0.2px 0.2px 2px #202033;
}

.front-recruit-area {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  margin-top: 4.5rem;
}

.front-recruit-area p {
  font-size: 2.1rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 1px;
  text-align: center;
}

.front-recruit-btn-area span {
  color: #202033;
  background-color: #fff;
}

.front-recruit-btn-area {
  display: flex;
  justify-content: space-around;
  margin-top: 4.5rem;
}

.front-recruit-btn-area .front_btn {
  width: 100%;
}

.front-recruit-btn-area .btn {
  width: 80%;
}

.contact {
  background-image: url(../img/left-background.png);
  padding-top: 10rem;
  background-size: 60%;
  background-repeat: no-repeat;
}

.contact-area {
  padding-bottom: 10rem;
}

.contact h2 {
  /* font-family: 'Sawarabi Mincho', serif; */
  font-size: 4.5rem;
  text-align: center;
  letter-spacing: 1px;
  font-weight: 600;
}

.contact-txt {
  line-height: 1.5;
  letter-spacing: 1px;
  font-size: 2.1rem;
  font-weight: 600;
  text-align: center;
  margin-top: 3rem;
}

.front-tell-mail-area {
  max-width: 1050px;
  width: 85%;
  margin: 0 auto;
  margin-top: 8rem;
  display: flex;
  justify-content: center;
}

.front-tell-area {
  width: 48%;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-right: 3px solid #00284B;
  padding: 0 0 3.5rem 0;
}

.front-tell-area img {
  margin-top: 3rem;
  max-width: 50px;
  width: 100%;
}

.front-mail-area {
  width: 48%;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-left: 3px solid #00284B;
  padding: 0 0 3.5rem 0;
}

.front-mail-area img {
  margin-top: 3rem;
  max-width: 60px;
  width: 100%;
}

.front-tell-txt p {
  margin-top: 2.5rem;
  font-weight: 600;
  font-size: 25px;
  line-height: 1.5;
  text-align: center;
}

.front-tell-text span {
  margin-top: 1rem;
  font-weight: 500;
  font-size: 21px;
  letter-spacing: 2px;
  line-height: 1.5;
  text-align: center;
  display: block;
}

.front-mail-area p {
  margin-top: 2.5rem;
  font-weight: 600;
  font-size: 25px;
  line-height: 1.5;
  text-align: center;
}

.tell-area {
  margin-top: 3rem;
  display: flex;
  align-items: center;
}

.tell-area.osaka {
  margin-top: 1rem;
}

.tell-area span {
  font-weight: 500;
  font-size: 27px;
}

.tell-area a {
  font-weight: 700;
  font-size: 30px;
  text-align: center;
  color: #00284B;
  margin-left: 30px;
  letter-spacing: 0.45px;
  position: relative;
}

.tell-area a:after {
  width: 100%;
  background-color: #19596d;
  bottom: -3px;
  content: "";
  display: inline-block;
  left: 0;
  position: absolute;
  transition: width .25s, height .25s, -webkit-transform .25s;
  transition: transform .25s, width .25s, height .25s;
  transition: transform .25s, width .25s, height .25s, -webkit-transform .25s;
  height: 0;
}

.tell-area a:hover::after {
  height: 3px;
}

.reception-time {
  font-size: 2rem;
  display: flex;
  justify-content: center;
}

.front-mail-area .front_btn {
  width: 100%;
}

.front-mail-area .mt-tp {
  margin-top: 3rem;
}

.front-mail-area .btn {
  width: 60%;
  background-color: #c7894a;
  border: none;
}

.online-shop a {
  transition: .3s;
  display: block;
  margin-top: 1rem;
}

.online-shop a:hover img {
  opacity: 0.8;
  transition-duration: 0.3s;
}



/* ----------------------------------------------------------------------------------------------  */
/* footer */
/* ----------------------------------------------------------------------------------------------  */
footer {
  background-color: #202033;
  color: #fff;
}

.footer-area {
  display: flex;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
  width: 90%;
  padding-top: 3rem;
  padding-bottom: 2rem;
}

.footer-left {
  width: 48%;
  padding-right: 2rem;
}

.footer-diary {
  display: block;
  text-align: right;
}

.footer-diary a {
  max-width: 210px;
  transition: 0.2s ease;
  display: inline-block;

}

.footer-diary a:hover {
  opacity: 0.8;
}

.footer-diary img {
  border: solid 3px #fff;
  width: 100%;
}

.privacy_policy-area {
  display: flex;
  justify-content: end;
}

.privacy_policy {
  padding-top: 2.3rem;
  font-size: 1.8rem;
  letter-spacing: 1px;
  font-weight: 600;
  color: #fff;
  position: relative;
}

.privacy_policy:after {
  width: 100%;
  background-color: #008aff;
  bottom: -3px;
  content: "";
  display: inline-block;
  left: 0;
  position: absolute;
  transition: width .25s, height .25s, -webkit-transform .25s;
  transition: transform .25s, width .25s, height .25s;
  transition: transform .25s, width .25s, height .25s, -webkit-transform .25s;
  height: 0;
}

.privacy_policy:hover::after {
  height: 3px;
}

.footer-sns {
  margin-top: 2rem;
  display: flex;
  justify-content: end;
}

.footer-Instagram {
  display: block;
}

.footer-Instagram img {
  max-width: 36px;
  width: 100%;
}

.footer-line {
  margin-left: 1rem;
  display: block;
}

.footer-line img {
  max-width: 36px;
  width: 100%;
}

.footer-youtube {
  display: block;
  margin-left: 1rem;
}

.footer-youtube img {
  max-width: 48px;
  width: 100%;
}

.copywriter {
  text-align: center;
  font-size: 1.4rem;
  font-weight: 700;
  padding: 2rem 0;
}

.footer-sns a {
  transition: 0.3s;
}

.footer-sns a:hover {
  opacity: 0.8;
  transition: 0.3s;
}

.footer-right {
  padding-left: 1rem;
  width: 48%;
  display: flex;
  flex-direction: column;
}

.footer-logo {
  max-width: 333px;
  width: 100%;
}

.footer-logo {
  width: 100%;
}

.post-code {
  display: block;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.5;
  margin-top: 1.5rem;
}

.post-txt {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.5;
}

.footer-tell {
  margin-top: 2rem;
  display: flex;
  align-items: center;
}

.footer-tell span {
  font-size: 1.8rem;
  font-weight: 700;
}

.footer-tell a {
  font-size: 2.6rem;
  font-weight: 700;
  color: #fff;
  position: relative;
}

.footer-tell a:after {
  width: 100%;
  background-color: #008aff;
  bottom: -6px;
  content: "";
  display: inline-block;
  left: 0;
  position: absolute;
  transition: width .25s, height .25s, -webkit-transform .25s;
  transition: transform .25s, width .25s, height .25s;
  transition: transform .25s, width .25s, height .25s, -webkit-transform .25s;
  height: 0;
}

.footer-tell a:hover::after {
  height: 3px;
}

/* ----------------------------------------------------------------------------------------------  */
/* company */
/* ----------------------------------------------------------------------------------------------  */

.key_visual {
  position: relative;
  display: flex;
  height: 19vw;
}

.key_visual h2 {
  font-size: 37px;
  position: absolute;
  top: 55%;
  left: 0;
  transform: translateY(-38%);
  color: #fff;
  width: 100%;
  text-align: center;
  text-shadow: 0.5px 0.5px 3px #3a3a61;
}

.key_visual img {
  /* max-height: 242px; */
  height: 100%;
}

.sp_key_visual_img {
  display: none;
}

.breadcrumbs_area {
  display: flex;
  flex-direction: row;
  position: absolute;
  bottom: 8%;
  left: 8%;
}

.breadcrumbs_area a {
  color: #fff;
  font-size: 1.9rem;
  text-shadow: 0.2px 0.2px 0.5px #202033;
  font-weight: 700;
  transition: all 0.3s ease-out;
}

.breadcrumbs_area li:hover a {
  opacity: 0.8;
  transition: all 0.3s ease-out;
}

.breadcrumbs_area li:hover .breadcrumbs::after {
  color: #fff;
}

.breadcrumbs::after {
  content: ">";
  color: #fff;
  padding: 0 5px;
}

.sp_president_image {
  display: none;
}

.sp_president_name {
  display: none;
}

.message_from_the_president {
  background-image: url(../img/top-background.png);
  background-size: 55%;
  background-repeat: no-repeat;
  background-position: right;
  background-position-y: initial;
}

.president_top_area .title-underline-equal {
  display: none;
}

.president_top_area {
  max-width: 1100px;
  width: 90%;
  margin: 0 auto;
  padding-top: 10rem;
  padding-bottom: 15rem;
}

.president_top_area .pages-sub-title {
  width: 75%;
}

.president_top_area .pages-sub-title h3 {
  font-size: 3.8rem;
  font-weight: 700;
  color: #202033;
  padding-left: 3rem;
  letter-spacing: 3px;
  text-shadow: 0.2px 0.2px 1.3px #202033;
}

.message_from_the_president_txt {
  font-weight: 600;
  font-size: 1.7rem;
  letter-spacing: 1.7px;
  line-height: 1.9;
  padding-right: 1rem;
  padding-left: 8rem;
}

.president_top_content {
  display: flex;
  justify-content: space-between;
}

.president_top_left {
  width: 50%;
}

.president_top_right {
  width: 48%;
}

.president_top_right div {
  width: 100%;
  padding-right: 4rem;
}

.president_top_right div img {
  width: 100%;
}

.president_top_underline {
  margin-top: 5rem;
  padding-left: 5rem;
  width: 100%
}

.president_top_underline .title-underline {
  width: 100%;
}

.president_area {
  max-width: 1100px;
  width: 90%;
  margin: 0 auto;
  padding-top: 7rem;
  padding-bottom: 7rem;
}

.president_content {
  display: flex;
}

.message_from_the_president_txt.mg-tp {
  margin-top: 2.5rem;
}

.president_name {
  padding-top: 3rem;
  text-align: left;
  font-family: kouzan;
  font-size: 2.8em;
  padding-left: 8rem;
}

/* .title-underline.president_bottom {
  margin-left: 2rem;
  margin-top: 2rem;
  width: 100%;
} */

.company_profile {
  background-image: url(../img/company-background.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position-x: 30%;
  overflow: hidden;
  padding-top: 15rem;
}

.company_profile_area {
  width: 90%;
  max-width: 980px;
  margin: 0 auto;
  background-color: #fff;
  opacity: 0.9;
  padding: 5rem 0rem 0rem 0rem;
  margin-bottom: 16rem;
  text-align: center;
}

.company_profile_area h2 {
  font-size: 4.5rem;
  font-weight: 700;
  text-align: center;
  display: inline-block
}

.content_list {
  max-width: 900px;
  margin: 0 auto;
  margin: 1rem auto 0 auto;
  margin-top: 1rem;
  border: 0.4px solid #707070;
  padding: 5rem 7rem;
  box-sizing: border-box;
  position: relative;
}

.content_list::before {
  content: "";
  position: absolute;
  top: 3px;
  left: 5px;
  right: 5px;
  bottom: 3px;
  border: 0.4px solid #287979;
}

.content_list img {
  max-width: 800px;
  margin: 0 auto;
  width: 100%;
  display: flex;
}

.company_content_list {
  max-width: 900px;
  margin: 1rem auto 0 auto;
  margin-top: 1rem;
  padding: 5rem 7rem;
  box-sizing: border-box;
  position: relative;
}

.content_list table,
.company_content_list table {
  max-width: 700px;
  width: 100%;
  margin: 0 auto;
  line-height: 1.5;
}

.content_list tbody,
.company_content_list tbody {
  width: 100%;
}

.content_list tr,
.company_content_list tr {
  border-bottom: solid 1px #707070;
}

.content_list th,
.company_content_list th {
  width: 30%;
  font-weight: 600;
  font-size: 1.8rem;
  text-align: left;
  padding: 1.6rem 2rem 1.6rem 2rem;
}

.content_list td,
.company_content_list td {
  font-weight: 500;
  font-size: 1.8rem;
  width: 100%;
  text-align: left;
  padding: 1.5rem 0rem 1.5rem 0;
  display: flex;
  flex-direction: column;
}

.company_access {
  max-width: 700px;
  width: 100%;
  margin: 0 auto;
  line-height: 1.5;
}



.maps {
  width: 100%;
  margin: 0 auto;
}

.company_map {
  font-size: 1.8rem;
  letter-spacing: 1.5px;
  line-height: 1.5;
  padding: 0 2rem;
  margin-bottom: 5rem;
  text-align: left;
}

.company_map.mg-tp {
  margin-top: 8rem;
}


.company_map p {
  font-weight: 600;
}

.maps iframe {
  width: 100%;
  height: 200px;
}

.sdgs {
  background-color: #FFF;
  padding-top: 6rem;
  opacity: .9;
}

.sdgs_area {
  max-width: 980px;
  margin: 0 auto;
  padding-bottom: 10rem;
  width: 90%;
  text-align: center;
}

.sdgs_target {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}

.sdgs_target_area {
  width: 27%;
  display: flex;
  flex-direction: column;
  margin-top: 5.5rem;
}

.sdgs_area h2 {
  display: inline-block;
  font-size: 4.5rem;
  font-weight: 700;
  text-align: center;
}

.sdgs_txt {
  font-weight: 700;
  font-size: 2.2rem;
  margin-top: 3.5rem;
  text-align: center;
}

.sdgs_txt br {
  display: none;
}

.sdgs_target_area_txt {
  margin-top: 4rem;
  text-align: center;
  font-weight: 700;
  font-size: 2.4rem;
  display: flex;
  flex-direction: row;
  padding: 0 3.4rem 5.5rem 3.4rem;
}

.sdgs_target_area div {
  line-height: 1.5;
}

/* ----------------------------------------------------------------------------------------------  */
/* maguroman */
/* ----------------------------------------------------------------------------------------------  */
.maguro_man_top {
  background-image: url(../img/left-background.png);
  background-size: 62%;
  background-repeat: no-repeat;
  background-position: left;
  background-position-y: initial;
  padding-bottom: 30rem;
  overflow: hidden;
}



.maguro_man_intro_area {
  max-width: 1200px;
  width: 90%;
  margin: 0 auto;
  padding: 9rem 0 20rem 0;
  text-align: center;
}

.maguro_man_intro_area h2 {
  font-size: 4.5rem;
  margin-bottom: 7rem;
}

.maguro_man_catchcopy {
  font-size: 3.5rem;
  font-weight: 700;
  color: #e2836b;
  text-shadow: 0.3px 0.3px 2px #e2836b;
  margin-bottom: 8rem;
}

.maguro_man_catchcopy.fade-in {
  transition: all 1.3s ease;
}

.maguro_man_intro_area p {
  font-size: 2rem;
  letter-spacing: 2px;
  font-weight: 600;
  margin-bottom: 3rem;
  text-shadow: 0.3px 0.3px 1.2px #3a3a61;
}

.outer-wrap {
  max-width: 1300px;
  width: 90%;
  margin: 0 auto;
  position: relative;
}

.maguro_man_rules {
  width: 60%;
}

.maguro_man_rules h3 {
  font-size: 4rem;
  color: #19596d;
  font-weight: 800;
  margin-bottom: 10px;
  letter-spacing: 3px;
  text-shadow: 0.3px 0.3px 1px #19596d;
}

.maguro_man_rules ul {
  padding: 5rem 0 5rem 3rem;
}

.maguro_man_rules ul li {
  font-size: 2rem;
  letter-spacing: 4px;
  text-shadow: 0.3px 0.3px 1.2px #3a3a61;
  margin-bottom: 3rem;
}

.maguro_man_top_img {
  /* max-width: 725px; */
  position: absolute;
  width: 49%;
  top: -20rem;
  right: -15%;
}

.maguro_man_top_img.fade-in {
  transition: all 1.3s ease;
}

.maguro_man_top_img img {
  width: 100%;
}

.maguro_man_area {
  display: flex;
  justify-content: space-between;
  padding-top: 9rem;
}


.maguro_man_right img {
  max-width: 510px;
  width: 100%;
  padding-left: 9%;
}


.maguro_man_movie {
  padding: 9rem 0 9rem 0;
  text-align: center;
  background-color: #fff9f5;
}

.maguro_man_movie h2 {
  font-size: 4.5rem;
}

.maguro_man_movie video {
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
  margin-top: 4.5rem;
  display: flex;
}

.please_note {
  background-color: #fff9f5;
  padding: 9rem 0;
}

.maguro_man_worries_title {
  /* font-family: 'Sawarabi Mincho', serif; */
  font-weight: 500;
  font-size: 3rem;
  display: flex;
  justify-content: center;
}

.maguro_man_worries_title::before,
.maguro_man_worries_title::after {
  content: '';
  width: 5px;
  height: 50px;
  background-color: #202033;
}

.maguro_man_worries_title::before {
  margin-right: 4rem;
  transform: rotate(-35deg)
}

.maguro_man_worries_title::after {
  margin-left: 4rem;
  transform: rotate(35deg)
}

.maguro_man_worries_title span {
  font-family: 'Sawarabi Mincho', serif;
  font-weight: 500;
  font-size: 4.5rem;
  background: linear-gradient(transparent 65%, #F5C400 0%);
  line-height: 1;
}

.maguro_man_worries h3 {
  display: flex;
  align-items: baseline;
}

.maguro_man_worries_title br {
  display: none;
}

.maguro_man_worries_area {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
}

.maguro_man_worries_list {
  width: 48%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 4.5rem;
  border: solid 1px #202033;
  border-radius: 15px;
  padding: 3.5rem;
  background-color: #fff;
}

.maguro_man_worries_list p {
  font-size: 3rem;
  font-weight: 700;
}

.maguro_man_worries_list span {
  font-size: 3.6rem;
  color: #D2000C;
}

.drip_img {
  max-width: 53px;
  width: 100%;
}

.time_img {
  max-width: 82px;
  width: 100%;
}

.save_img {
  max-width: 73px;
  width: 100%;
}

.discoloration_img {
  max-width: 80px;
  width: 100%;
}

.maguro_man_worries_answer {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 5.5rem;
}

.others_area {
  margin-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.others_txt_area {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1.5rem 0;
  width: 29.5%;
  border: solid 1px #707070;
  border-radius: 15px;
  background-color: #fff;
}

.others_txt_area p {
  font-weight: 900;
  font-size: 3.2rem;
  text-align: center;
}

.others_txt {
  text-align: end;
  font-weight: 700;
  font-size: 2.8rem;
  margin-top: 4.5rem;
}

.two_commitments_area {
  max-width: 1100px;
  margin: 0 auto;
  padding-top: 9rem;
  width: 90%;
}

.two_commitments_area h2 {
  font-weight: 600;
  font-size: 4.5rem;
  text-align: center;
  margin-bottom: 4rem;
}

.commitments_title {
  width: 67%;
  margin-bottom: 5rem;
}

.commitments_title h3 {
  font-weight: 600;
  font-size: 2.5rem;
  letter-spacing: 2px;
  margin-bottom: 6px;
}

.commitments_title p {
  margin-top: 3rem;
  font-size: 2rem;
  letter-spacing: 1px;
}

.commitments_orange {
  color: #DF755A;
  font-size: 2.1rem;
  /* color: #e2836b; */
  text-shadow: 0.2px 0.2px 2px #DF755A;
}

.commitments {
  max-width: 1200px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 12rem;
}

.commitments_left {
  width: 48%;
}

.commitments_left p {
  font-weight: 500;
  font-size: 1.7rem;
  letter-spacing: 1px;
}

.commitments_left p.margin-bottom-helper {
  margin-bottom: 2.5rem;
}

.sub-heading {
  font-weight: 500;
  font-size: 2.5rem;
  letter-spacing: 2px;
  color: #DF755A;
  /* color: #e2836b; */
  text-shadow: 0.2px 0.2px 2px #DF755A;
  margin-bottom: 2rem;
}

.commitments_right {
  display: flex;
  justify-content: end;
  width: 50%;
}

.commitments_right img {
  max-width: 500px;
  max-height: 347px;
  width: 90%;
}

.commitments_right.mg-tp img {
  margin-top: 4rem;
}

.manufacturing_method_title {
  display: block;
  font-weight: 900;
  font-size: 2.2rem;
  margin-top: 2rem;
  margin-bottom: 1.5rem;
}



.manufacturing_process {
  background-color: #fff9f5;
}

.manufacturing_process_area {
  max-width: 1000px;
  width: 90%;
  margin: 0 auto;
  padding: 10rem 0;
}

.manufacturing_process_area h2 {
  font-size: 4.5rem;
  text-align: center;
}

.manufacturing_process_area img {
  margin-top: 4rem;
}

.scrollable {
  display: none;
}

.developer_interview {
  background-image: url(../img/top-background.png);
  background-size: 50%;
  background-repeat: no-repeat;
  background-position: right;
  background-position-y: initial;
}

.developer_interview_area h2 br {
  display: none;
}

.developer_interview_contens {
  margin-top: 6rem;
}

.developer_interview_area {
  max-width: 1100px;
  width: 90%;
  margin: 0 auto;
  padding: 9rem 0 8rem 0;

}

.developer_img {
  max-width: 250px;
  width: 100%;
  height: auto;
}

.developer_interview_title {
  margin-bottom: 9rem;
}

.developer_interview_upside,
.developer_interview_under {
  display: flex;
  margin-bottom: 4rem;
  justify-content: space-between;
}

.developer_interview_left,
.developer_interview_right {
  width: 47%;
}

.developer_interview_area h2 {
  font-weight: 700;
  font-size: 4.5rem;
  text-align: center;
}

.developer_interview_area h3 {
  font-weight: 500;
  font-size: 2.3rem;
  letter-spacing: 2px;
  color: #e2836b;
  margin-top: 1rem;
  text-shadow: 0.2px 0.2px 2px #e2836b;
  text-align: center;
}

.developer_interview_left h4,
.developer_interview_right h4 {
  font-weight: 700;
  font-size: 2rem;
  margin-bottom: 1rem;
  display: block;
  color: #26829D;
  letter-spacing: 1px;
  text-shadow: 0.1px 0.1px 0.5px #26829D;
}

.developer_interview_left p {
  font-weight: 500;
  font-size: 1.7rem;
  margin-bottom: 4rem;
  letter-spacing: 1px;
}

.developer_interview_right p {
  font-weight: 500;
  font-size: 1.6rem;
  margin-bottom: 5rem;
  letter-spacing: 1px;
}


.idea_content {
  margin-top: 7rem;
}

.developer_area,
.idea_content_area {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.developer_area p {
  margin-top: 1rem;
  font-weight: 600;
  font-size: 2.3rem;
}

.idea_content_area p {
  font-weight: 700;
  font-size: 2rem;
  margin-bottom: 5px;
  letter-spacing: 1.5px;
  color: #e2836b;
  text-shadow: 0.1px 0.1px 1px #e2836b;
}

.idea_content_area img {
  width: 100%;
  max-width: 400px;
  border: 2.5px solid #4e5559b6;
  padding: 13px;
}

.idea_content_note {
  margin-top: 1.5rem;
}

.idea_content_note span {
  margin-right: 1.5rem;
}

.color_flesh_title {
  margin-top: 4rem;
  font-weight: 700;
  font-size: 2.2rem;
  display: block;
  margin-bottom: 1.5rem;
}

.color_flesh_list li {
  margin-top: 1.5rem;
}

.color_flesh_list span {
  font-weight: 700;
  font-size: 2rem;
}

.important_point_area {
  margin: 6rem 8%;
  background-color: #F5FAFF;
  border-radius: 5px;
  padding: 5.5rem 10rem;
}

.important_point_area h2 {
  text-align: center;
  font-size: 3.5rem;
}

.important_point_area ul {
  margin-top: 3rem;
  font-size: 2rem;
  font-family: 'Sawarabi Mincho', serif;
  font-weight: 500;
  line-height: 2;
}

.important_point_area span {
  color: #D2000C;
}

.important_point_area p {
  margin-top: 4.5rem;
  font-size: 2rem;
  font-family: 'Sawarabi Mincho', serif;
  font-weight: 500;
  line-height: 2;
}

.important_point_area .sp-br {
  display: none;
}

.thawing {
  background-color: #fff9f5;
}

.thawing_area {
  max-width: 1200px;
  width: 90%;
  margin: 0 auto;
  padding: 9rem 0 9rem 0;
}

.thawing_area h2 {
  /* font-family: 'Sawarabi Mincho', serif; */
  font-weight: 700;
  font-size: 4.3rem;
  text-align: center;
  margin-bottom: 6rem;
}

.thawing_area h2 br {
  display: none;
}

.thawing_area .sp_img {
  display: none;
}

.thawing_movie {
  max-width: 1100px;
  width: 90%;
  margin: 0 auto;
  padding: 9rem 0;
}

.thawing_movie h2 {
  /* font-family: 'Sawarabi Mincho', serif; */
  font-weight: 500;
  font-size: 3rem;
  text-align: center;
}

.thawing_movie video {
  max-width: 800px;
  width: 100%;
  margin: 4rem auto 4rem auto;
  text-align: center;
  display: block;
}

.thawing {
  padding-bottom: 3rem;
}

.thawing_time_txt {
  font-weight: 700;
  font-size: 2.5rem;
  margin-top: 3.5rem;
  margin-bottom: 3px;
  text-align: center;
}

.thawing_time_note {
  font-weight: 700;
  font-size: 2rem;
  letter-spacing: 1px;
  text-align: center;
  margin-bottom: 4px;
  color: #26829D;
  text-shadow: 0.1px 0.1px 0.6px #26829D;
}

.thawing_time_txt span {
  font-size: 3.5rem;
  color: #D2000C;
  display: initial;
}

.thawing_time_txt br {
  display: none;
}

.please_note_area {
  max-width: 1100px;
  width: 90%;
  margin: 0 auto;
  padding-bottom: 5rem;
  background-color: #ebeff3;
  border-radius: 15px;
}

.balloon h3 {
  display: inline-block;
  font-family: 'GenEiNuGothicEB';
  font-weight: 600;
  font-size: 4rem;
  margin: 2rem auto;
  /* background-color: #F5FAFF; */
  padding: 8px;
  background-color: #ffbb33;
  color: #202033;
}

:root {
  --base-color: #202033;
  --main-color: #ffbb33;
}


.balloon {
  position: relative;
  padding: 20px;
  width: 100%;
  text-align: center;
  background: repeating-linear-gradient(45deg, var(--main-color) 0, var(--main-color) 20px, var(--base-color) 20px, var(--base-color) 40px);
  border-radius: 15px;
}

.please_note_content {
  display: flex;
  width: 87%;
  justify-content: space-between;
  margin: 9rem auto;
}

.please_note_right {
  width: 48%;
}

.please_note_right h3 {
  font-weight: 700;
  letter-spacing: 1px;
  font-size: 2.6rem;
  margin-bottom: 4px;
}

.plaese_note_underline {
  display: block;
  height: 2px;
  width: 105%;
  background-color: #ffbb33;
}

.please_note_right p {
  font-weight: 500;
  font-size: 1.8rem;
  margin-top: 2rem;
}

.note_txt {
  color: #D2000C;
  font-weight: 900;
}

.please_note_left {
  width: 48%;
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  align-items: end;
}

.please_note_left img {
  max-width: 500px;
  width: 90%;
  max-height: 341px;
}

.please_note_btn {
  font-size: 2rem;
  letter-spacing: 2px;
  font-weight: 700;
  margin-top: 4.5rem;
}

.please_note_btn .btn {
  width: 75%;
}


.bacteria_test_report {
  background-color: #DFF0FF;
}

.bacteria_test_report_area {
  max-width: 1200px;
  width: 90%;
  margin: 0 auto;
  padding: 10rem 0 19rem 0;
}

.bacteria_test_report_area h2 {
  /* font-family: 'Sawarabi Mincho', serif; */
  font-weight: 500;
  font-size: 4.5rem;
  text-align: center;
}

.sp_bacteria_test_report_content {
  display: none;
}

.bacteria_test_report_content {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 4.5rem;
}

.bacteria_test_report_content::after {
  content: "";
  width: 30%;
}

.report_content {
  width: 30%;
  margin-top: 2.5rem;
}

.report_content p {
  font-weight: 700;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.report_content img {
  width: 100%;
}

#modal-container,
#modal-container_two,
#modal-container_three,
#modal-container_four,
#modal-container_five {
  display: none;
  position: fixed;
  background: rgba(0, 0, 0, .6);
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
}

#modal-container div,
#modal-container_two div,
#modal-container_three div,
#modal-container_four div,
#modal-container_five div {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  cursor: pointer;
}

#modal-container img,
#modal-container_two img,
#modal-container_three img,
#modal-container_four img,
#modal-container_five img {
  width: 32%;
  height: auto;
  object-fit: cover;
}

img.popup,
.popup_two,
.popup_three,
.popup_four,
.popup_five {
  cursor: pointer;
}

.product_information {
  padding-bottom: 9rem;
  padding-top: 9rem;
}

.product_information.mg-tp {
  padding-top: 9rem;
}

.product_information_area {
  max-width: 1200px;
  width: 90%;
  margin: 0 auto;
}

.product_information_area h2 {
  /* font-family: 'Sawarabi Mincho', serif; */
  font-size: 4.5rem;
  text-align: center;
}

.voice {
  padding-top: 10rem;
  background-color: #fff9f5;
}

.voice_area {
  max-width: 1200px;
  width: 90%;
  margin: 0 auto;
}

.voice_title {
  display: block;
  text-align: center;
  width: 100%;
}

.voice_area h2 {
  display: inline-block;
  font-weight: 700;
  font-size: 4.5rem;
  text-align: center;
}

.voice_txt {
  font-weight: 500;
  font-size: 2.4rem;
  text-align: center;
  color: #e2836b;
  text-shadow: 0.2px 0.2px 2px;
  margin-top: 2.5rem;
  letter-spacing: 1.5px;
}

.voice_txt.fade-in {
  transform: 1.2s;
}

.content_slider_area {
  max-width: 1400px;
  margin: 0 auto;
  width: 90%;
  margin-top: 4rem;
}

.modal__opner_area {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.modal__opner_area div {
  display: flex;
  flex-direction: column;
}

.modal__btn,
.modal__btn2,
.modal__btn3,
.modal__btn4,
.modal__btn5 {
  padding: 2rem;
  border: 1px solid #202033;
  border-radius: 15px;
  background: #fff;
  position: relative;
}

.modal__btn::before,
.modal__btn2::before,
.modal__btn3::before,
.modal__btn4::before,
.modal__btn5::before {
  content: "";
  position: absolute;
  top: 3px;
  left: 4px;
  right: 4px;
  bottom: 3px;
  border-radius: 15px;
  border: 0.4px solid #287979;
}


.modal__opner_area p {
  font-weight: 500;
  font-size: 2.2rem;
  /* color: #e2836b; */
  text-shadow: 0.1px 0.1px 1px;

}

.modal__opner_area span {
  font-size: 1.8rem;
  font-weight: 500;
}

.modal__opner_area .mg-tp {
  margin-top: 2rem;
}

.modal__opner_area img {
  max-width: 105px;
  width: 100%;
  margin-right: 1rem;
}

.modal__inner_content_right {
  display: flex;
  flex-direction: column;
}

.modal__inner_content_right p {
  font-weight: 900;
  font-size: 2.2rem;
}

.modal__inner_content_right .mg-tp {
  margin-top: 2rem;
}

.modal__inner_content_right span {
  font-weight: 700;
  font-size: 1.8rem;
}

.close__btn_area span {
  font-weight: 700;
  font-size: 1.8rem;
}

.modal__inner_txt {
  margin-top: 4rem;
  font-size: 2.2rem;
  font-weight: 500;
}

.modal__inner_content_left {
  margin-right: 1rem;
}

.voice_others_container {
  margin-top: 15rem;
  display: flex;
  justify-content: space-between;
}

.voice_others_card_left,
.voice_others_card_right {
  width: 48%;
  text-align: center;
  border: 0.4px solid #707070;
  padding: 5rem 7rem;
  box-sizing: border-box;
  position: relative;
  background-color: #fff;
}

.voice_others_card_left::before,
.voice_others_card_right::before {
  content: "";
  position: absolute;
  top: 3px;
  left: 5px;
  right: 5px;
  bottom: 3px;
  border: 0.4px solid #287979;
}

.voice_others_card_left h3,
.voice_others_card_right h3 {
  display: inline-block;
  font-family: 'Sawarabi Mincho', serif;
  font-weight: 500;
  font-size: 2.3rem;
  letter-spacing: 1.5px;
  color: #e2836b;
  text-shadow: 0.2px 0.2px 1.5px #e2836b;
  padding-bottom: 8px;
}

.voice_others_card_left h3 {
  font-size: 2.7rem;
}

.voice_others_card_left h3 .title-underline-center,
.voice_others_card_right h3 .title-underline-center {
  margin-top: 7px;
}

.voice_others_card_left h3 .title-underline-center::before,
.voice_others_card_left h3 .title-underline-center::after,
.voice_others_card_right h3 .title-underline-center::before,
.voice_others_card_right h3 .title-underline-center::after {
  left: 0%;
  width: 100%;
}


.voice_others_card_left p,
.voice_others_card_right p {
  font-size: 1.9rem;
  font-weight: 500;
  margin-top: 3rem;
  letter-spacing: 1px;
}

.maguroman_other {
  max-width: 1200px;
  width: 90%;
  margin: 0 auto;
  padding-bottom: 10rem;
}

.nationwide_shipping_right p {
  font-size: 1.8rem;
  font-weight: 700;
  margin-top: 1.5rem;
}

.invite_text {
  color: #19596D;
  font-size: 2.3rem;
  text-shadow: 0.2px 0.2px 1.5px
}

.nationwide_shipping_btn {
  font-weight: 700;
  font-size: 1.9rem;
  margin-top: 6rem;
  display: flex;
  justify-content: center;
}

.nationwide_shipping_btn .btn {
  background-color: #19596D;
  width: 70%;
  border-radius: 8px;
}

.nationwide_shipping_btn .btn span {
  border-radius: 8px;
}

.contact-area.lower h2 {
  font-size: 4.5rem;
}

/* ----------------------------------------------- */
/* himemaguro */
/* ----------------------------------------------- */

.product_information.pd-bt {
  padding-bottom: 9rem;
}

.himemaguro_top {
  margin-top: -3px;
  background: #fff;
  padding-bottom: 9rem;
}

.pages-title {
  font-size: 4.5rem;
  text-align: center;
  margin-bottom: 7rem;
}

.pages-sub-title,
.sp-pages-sub-title {
  text-align: left;
  width: 57%;
  margin-bottom: 3rem;
  padding-left: 5rem;
}

.pages-sub-title h3,
.sp-pages-sub-title h3 {
  font-weight: 500;
  font-size: 2.7rem;
  letter-spacing: 3px;
  color: #e2836b;
  /* color: #DF755A; */
  text-shadow: 0.2px 0.2px 2px #e2836b;
  margin-bottom: 7px;
}

.sp-pages-sub-title {
  display: none;
}

.himemaguro_top_area {
  max-width: 1100px;
  width: 90%;
  margin: 0 auto;
  padding-top: 7rem;
}

.himemaguro_top_area .title-underline-equal {
  display: none;
}

.himemaguro_top_content {
  display: flex;
  margin-bottom: 5rem;
}

.himemaguro_top_left {
  width: 50%;
}

.himemaguro_top_left p {
  font-weight: 600;
  font-size: 1.8rem;
  letter-spacing: 2px;
  line-height: 1.8;
  padding-right: 6rem;
  padding-left: 5rem;
}

.himemaguro_top_left span {
  color: #D2000C;
  text-shadow: 0.1px 0.1px 1px #e2836b;
}


.himemaguro_top_right {
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: end;
}

.himemaguro_top_right div {
  width: 100%;
}

.himemaguro_top_content__sub {
  display: flex;
  justify-content: space-between;
}

.himemaguro_top_right a {
  display: flex;
  background-color: #202033;
}

.himemaguro_top_right img {
  transition: .5s;
}

.himemaguro_top_right a:hover img {
  opacity: 0.8;
  transition: .5s;
}

.himemaguro_top_content__sub .himemaguro_top_left {
  background-color: #F8FCFE;
  width: 47%;
}

.annotation {
  font-weight: 600;
  letter-spacing: 1px;
}

.himemaguro_top_content__sub .himemaguro_top_left p {
  font-family: 'Yu Gothic UI ';
  font-weight: 500;
  padding: 1rem 2.5rem;
  font-size: 1.5rem;
}

.unloading {
  padding: 9rem 0;
  background-color: #fff9f5;
}

.unloading h2 {
  font-size: 4.5rem;
  text-align: center;
}

.unloading_content {
  margin: 4.5rem auto 0 auto;
  display: flex;
  max-width: 1100px;
  width: 90%;
  justify-content: space-between;
}

.unloading_content_left {
  width: 46%;
}

.unloading_content_left img {
  border: 0.5px solid #e4eff3;
}

.unloading_content_right h3 {
  font-weight: 500;
  font-size: 2.7rem;
  letter-spacing: 3px;
  color: #e2836b;
  /* color: #DF755A; */
  text-shadow: 0.2px 0.2px 2px #e2836b;
  margin-bottom: 7px;
}

.unloading_content_right p {
  font-weight: 600;
  font-size: 1.8rem;
  letter-spacing: 2px;
  line-height: 1.8;
}

.unloading_content_right {
  width: 50%;
}

.dismantling {
  padding-top: 9rem;
}

.dismantling h2 {
  /* font-family: 'Sawarabi Mincho', serif; */
  font-weight: 500;
  font-size: 4.5rem;
  text-align: center;
}

.dismantling_content {
  margin-top: 4.5rem;
  display: flex;
}

.dismantling_content_left {
  width: 50%;
}

.dismantling_content_left img {
  width: 100%;
}

.dismantling_content_right {
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: end;
}

.dismantling_content_right div {
  width: 83%;
}

.dismantling_content_right p {
  font-weight: 500;
  font-size: 1.8rem;
  letter-spacing: 0.27px;
}

.dismantling_content_right .mg-tp {
  margin-top: 2rem;
}

.introduction_video_content {
  padding: 9rem 0;
}

.introduction_video_content h2 {
  font-size: 4.5rem;
  text-align: center;
  letter-spacing: 1px;
}


.introduction_video_area {
  width: 55%;
  margin: 0 auto;
  margin-top: 4.5rem;
}

.introdution_video_back {
  width: 100%;
  box-shadow: 0.1px 0.1px 1px #202033;
}

.case-study {
  background-color: #fff9f5;
}

.delivery_example {
  padding-top: 9rem;
  width: 90%;
  margin: 0 auto;
}

.delivery_example_title {
  text-align: center;
}

.delivery_example h2 {
  font-weight: 700;
  font-size: 4.5rem;
  display: inline-block;
  text-align: center;
  letter-spacing: 2px;
}

.delivery_example p {
  font-weight: 500;
  letter-spacing: 1.5px;
  font-size: 2.4rem;
  line-height: 145%;
  text-align: center;
  margin-top: 2.5rem;
  color: #e2836b;
  text-shadow: 0.2px 0.2px 2px;
}

.delivery_example br {
  /* display: none; */
}

.delivery_example_area {
  margin-top: 9rem;
}

.delivery_example_slider img {
  max-height: 331px;
}

/* ----------------------------------------------- */
/* himesuma */
/* ----------------------------------------------- */

.himesuma_top {
  margin-top: -3px;
  background: #fff;
}

.himesuma_top_content,
.himesuma_introduction_content,
.himesuma_report_content {
  display: flex;
}

.himesuma_top_area {
  max-width: 1100px;
  width: 90%;
  margin: 0 auto;
  padding-top: 7rem;
  padding-bottom: 7rem;
}

.himesuma_top_area .title-underline-equal {
  display: none;
}

.himesuma_introduction_content,
.himesuma_report_content {
  margin-top: 4.5rem;
}

.himesuma_top_left,
.himesuma_report_left,
.himesuma_top_right,
.himesuma_introduction_right,
.himesuma_report_right {
  width: 50%;
}

.himesuma_top_right div {
  width: 100%;
}

.himesuma_top_left h2,
.himesuma_introduction h2,
.himesuma_report h2 {
  /* font-family: 'Sawarabi Mincho', serif; */
  /* font-weight: 500; */
  font-size: 4.5rem;
  text-align: center;
}

.himesuma_top_left p {
  font-weight: 600;
  font-size: 1.8rem;
  letter-spacing: 2px;
  line-height: 1.8;
  padding-right: 6rem;
  padding-left: 5rem;
}

.himesuma_top_right img {
  border: 1.5px solid #e4eff3;
}

.himesuma_introduction,
.himesuma_report {
  background-color: #fff9f5
}

.himesuma_introduction_area,
.himesuma_report_area {
  max-width: 1100px;
  width: 90%;
  margin: 0 auto;
  padding-top: 9rem;
  padding-bottom: 9rem;
}

.himesuma_introduction_left,
.himesuma_report_left {
  width: 46%;
}

.himesuma_introduction_left img,
.himesuma_report_left img {
  border: 0.5px solid #707070;
}

.himesuma_introduction_left p {
  text-align: right;
  font-size: 13px;
}

.himesuma_introduction_left a {
  color: #202033;
}

.himesuma_introduction_left a:hover {
  transition: .5s;
  color: #008aff;
}

.himesuma_introduction_right,
.himesuma_report_right {
  padding-left: 6rem;
}

.himesuma_introduction_right h3,
.himesuma_report_right h3 {
  font-weight: 500;
  font-size: 2.7rem;
  letter-spacing: 3px;
  /* color: #e2836b; */
  color: #DF755A;
  text-shadow: 0.2px 0.2px 2px #DF755A;
  margin-bottom: 7px;
}

.himesuma_introduction_right p,
.himesuma_report_right p {
  font-weight: 600;
  font-size: 1.8rem;
  letter-spacing: 2px;
  line-height: 1.8;
}




/* ----------------------------------------------- */
/* Products handled */
/* ----------------------------------------------- */
.recommendation_product {
  background-color: #DFF0FF;
  margin-top: -3px;
}

.recommendation_product_area,
.tab-content {
  max-width: 1200px;
  width: 90%;
  margin: 0 auto 9rem auto;
}

.recommendation_product_area {
  padding-top: 9rem;
  padding-bottom: 19rem;
}

.recommendation_product_content {
  display: flex;
  margin-top: 4.5rem;
}

.recommendation_product_area h2 {
  /* font-family: 'Sawarabi Mincho', serif; */
  font-weight: 500;
  font-size: 4.5rem;
  text-align: center;
}

.recommendation_product_list {
  position: relative;
}

.recommendation_product_list a {
  display: block;
  transition: .5s;
}

.recommendation_product_list a:hover img {
  transition: .5s;
  opacity: 0.8;
}

.recommendation_product_list img {
  position: relative;
}

.recommendation_product_list p {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-weight: 900;
  font-size: 4.4rem;
  color: #fff;
  text-shadow: -1px 0 #202033, 0 1px #202033, 1px 0 #202033, 0 -1px #202033;
  transition: .5s;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(1px);
}

.recommendation_product_list a:hover p {
  text-shadow: none;
  color: #202033;
  transition: .5s;
}

.products_category_title {
  text-align: center;
}

.products_category_title h2 {
  display: inline-block;
}

.other_product {
  padding-top: 9rem;
  background-image: url(../img/top-background.png);
  background-size: 60%;
  background-repeat: no-repeat;
  background-position: right;
  background-position-y: initial;
}

.other_product_area {
  max-width: 1200px;
  margin: 0 auto;
}

.other_product_area h2 {
  /* font-family: 'Sawarabi Mincho', serif; */
  font-weight: 500;
  font-size: 3rem;
  text-align: center;
  letter-spacing: 2px;
  text-shadow: 0.2px 0.2px 1px;
}

.list-tab {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 700px;
  margin: 0 auto;
  width: 80%;
}

.list-tab::after {
  content: "";
  display: block;
  width: 29.28%;
}

.list-tab li {
  width: 29.28%;
  position: relative;
  background-color: #fff;
  border-radius: 10px;
  text-align: center;
  font-size: 2rem;
  font-weight: 500;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 60px;
  white-space: none;
  margin-top: 2.5rem;
  cursor: pointer;
}

.list-tab a {
  display: block;
  width: 100%;
  height: 100%;
}

.list-tab span {
  border: solid 1px #202033;
  align-items: center;
  background: #fff;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  height: 100%;
  transition: 0.5s ease;
  width: 100%;
  color: #202033;
  text-shadow: 0.2px 0.2px 0.5px #202033;
}

.active span {
  background: #202033;
}

.list-tab li:hover span {
  background: #202033;
  color: #fff;
  text-shadow: 0.2px 0.2px 1px #fff;
}

.list-tab .active span {
  background: #202033;
  color: #fff;
  text-shadow: 0.1px 0.1px 1px #fff;
}

.wrap-tab-content {
  margin-top: 15rem;
  margin-bottom: 15rem;
}

.tab_content_title h2 {
  text-align: center;
  /* font-family: 'Sawarabi Mincho', serif; */
  font-weight: 700;
  font-size: 4.5rem;
  text-align: center;
  letter-spacing: 2px;
  text-shadow: 0.2px 0.2px 1px;
}

.tab-content {
  display: none;
}

.is_show {
  display: block;
}

.other_product_area .title-underline-equal {
  display: block;
  margin: 9rem 0rem 9rem 0rem;
}

.product_txt {
  margin-top: 4rem;
  font-weight: 600;
  font-size: 1.8rem;
  letter-spacing: 0.27px;
  text-align: center;
}

.other_product_content {
  display: flex;
  flex-wrap: wrap;
}

.other_product_content.products_center {
  display: flex;
  justify-content: center;
}

.other_product_list {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 32%;
  box-shadow: 0px 3px 6px #202033;
  border-radius: 15px;
  padding: 2rem 1.6rem 14rem 1.6rem;
  margin-top: 4.5rem;
  margin-right: 2rem;
}

.other_product_list.center_width {
  width: 47%;
  margin-right: 0px;
}

.other_product_list:nth-child(3n) {
  margin-right: 0;
}

.other_product_list h3 {
  margin-top: 2rem;
  font-weight: 700;
  font-size: 1.9rem;
  text-shadow: 0.2px 0.2px 0.8px #3a3a61;
}

.other_product_list ul {
  font-size: 1.4rem;
  letter-spacing: 1px;
  line-height: 1.8;
  text-shadow: 0.1px 0.1px 0.8px;
  margin: 2rem 0;
}

.other_product_list span {
  display: block;
  margin-top: 2rem;
  font-weight: 700;
  font-size: 1.9rem;
}

.other_product_list p {
  font-weight: 500;
  font-size: 1.6rem;
  margin-top: 1rem;
}

.products_handled-himesuma-content {
  margin-top: 3rem;
  display: flex;
  position: relative;
}

.products_handled-himesuma-title {
  font-size: 3rem;
  font-family: 'Sawarabi Mincho', serif;
  font-weight: 700;
}

.product_txt.mg {
  margin: 0;
}

.product_txt.mg-tp {
  margin-top: 2rem;
}

.other_product_btn-area {
  display: flex;
  justify-content: center;
}

.other_product_btn {
  position: absolute;
  bottom: 8%;
  margin-top: 6rem;
  width: 70%;
  background: #f5f8fa;
  /* background-color: #fff9f5; */
  border-radius: 8px;
  text-align: center;
  font-size: 1.8rem;
  font-weight: 500;
  height: 60px;
}

.other_product_btn a {
  align-items: center;
  color: #202033;
  font-weight: 600;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  height: 100%;
  transition: 0.5s ease;
  width: 100%;
  border: solid 0.4px #3a3a61;
}

.other_product_btn:hover a {
  background: #19596d;
  border: solid 1px #19596d;
  color: #fff;
}

.other_product_btn.mg-tp {
  margin-top: 10rem;
}

.tab_content_title {
  margin: 0 auto;
  width: 40%;
}

.front-products__button.contact_link {
  font-size: 2.6rem;
  font-weight: 600;
  letter-spacing: 2.5px;
}

.front-products__button.contact_link a {
  height: 70px;
  width: 60%;
}

.compare-list-title {
  text-align: center;
  display: block;
  margin: 0 auto;
  margin-top: 9rem;
}

.compare-list-title h2 {
  font-weight: 500;
  font-size: 3.5rem;
  text-align: center;
  letter-spacing: 2px;
  text-shadow: 0.2px 0.2px 1px;
}


.products_handled-tuna {
  width: 100%;
}

.table {
  font-weight: 500;
  margin-top: 3rem;
  width: 100%;
}

.table tr:nth-child(1) {
  font-weight: 600;
}

.table th:nth-child(1) {
  background-color: #fff9f5;
  font-weight: 600;
}

.table td:nth-child(3) {
  background-color: #fff9f5;
}

.table .bd-pd {
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.table th {
  border-top: solid 1px #707070;
  border-left: solid 1px #707070;
  font-size: 1.8rem;
  font-weight: 500;
  width: 12%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.table a {
  display: flex;
  transition: 0.5s ease;
}

.table a:hover {
  opacity: 0.8;
}

.table tr {
  display: flex;
  justify-content: center;
}

.list-ls,
.br-bt th {
  border-bottom: solid 1px #707070;
}


.table td {
  width: 28%;
  border-top: solid 1px #707070;
  border-left: solid 1px #707070;
  font-size: 1.6rem;
  display: flex;
}

.table td:last-child {
  border-right: solid 1px #707070;
  ;
}

.ft-title {
  font-size: 2.5rem;
  text-align: center;
}

.table .tx-lf {
  padding: 1.3rem 3rem;
}

.list-branch div {
  display: flex;
  flex-direction: row;
  width: 100%;
}

.list-branch p {
  width: 50%;
  text-align: center;
  padding: 1.5rem 0;
}

.list-branch .bd-rt {
  border-right: 1px solid #707070;
}

.table ul {
  padding: 1.3rem 3rem;
}

.table ul li {
  margin-bottom: 8px;
}

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

.table .list-ls {
  width: 84%;
}

.table li {
  position: relative;
}

.page-product-shop-banner {
  background: #fff;
  padding-top: 1rem;
}

/* ----------------------------------------------- */
/* recruit */
/* ----------------------------------------------- */

.recruit-area {
  padding-top: 7rem;
  max-width: 1100px;
  margin: 0 auto;
  width: 90%;
}

.recruit_category_title {
  text-align: center;
}

.recruit_category_title h2 {
  font-size: 3rem;
  letter-spacing: 1.5px;
  display: inline-block;
}

.recruit-list-tab {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 570px;
  margin: 0 auto;
}


.recruit-list-tab li {
  width: 45%;
  position: relative;
  background: #fff;
  border-radius: 8px;
  text-align: center;
  font-size: 2rem;
  font-weight: 500;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 60px;
  white-space: none;
  margin-top: 2.5rem;
  cursor: pointer;
}

.recruit-list-tab a {
  display: block;
  width: 100%;
  height: 100%;
  color: #202033;
}

.recruit-list-tab span {
  align-items: center;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  height: 100%;
  transition: 0.5s ease;
  width: 100%;
  font-weight: 700;
  border: solid 1px #202033;
}

.recruit-list-tab li:hover span {
  background: #202033;
  color: #fff;
}

.recruit-list-tab .active span {
  color: #fff;
}

.one-tab .sp-br {
  display: none;
}

.part-time-job_content_category {
  margin-top: 2rem;
  display: flex;
}

.part-time-job_content_category span {
  font-size: 1.8rem;
  padding: 2px 1.5rem;
  margin-right: 1.5rem;
  border: 1px solid #707070;
  border-radius: 5px;
  letter-spacing: 1px;
  font-weight: 500;
  text-shadow: 0.1px 0.1px 0.5px #3a3a61;
}

.part-time-job_content_category span:last-child {
  margin: 0;
}

.part-time-job_content {
  display: flex;
  margin-top: 3rem;
}

.part-time-job_content_left,
.part-time-job_content_right {
  width: 50%;
}

.part-time-job_content_right {
  padding-left: 5rem;
}


.part-time-job_content_right h2 {
  font-size: 3.5rem;
  font-weight: 500;
  text-shadow: 0.2px 0.2px 0.8px #3a3a61;
}

.hourly_wage {
  margin-top: 1.8rem;
  display: flex;
  align-items: center;
}

.hourly_wage span {
  font-size: 2.5rem;
  text-shadow: 0.1px 0.1px 0.5px #3a3a61;
}

.hourly_wage .mg {
  margin-right: 1rem;
}

.subheading {
  margin-top: 5px;
  font-weight: 700;
  font-size: 2rem;
  color: #e2836b;
  text-shadow: 0.2px 0.2px 0.1px
}

.subheading span {
  margin-left: 1.5rem;
}

.part-time-job_content_txt {
  margin-top: 1.5rem;
  font-size: 1.8rem;
  letter-spacing: 1px;
  line-height: 1.5;
  font-weight: 500;
}

.sp-part-time-job_image {
  display: none;
}

.recruit-area .wrap-tab-content {
  margin-top: 10rem;
}

.recruitment_public_offering {
  margin-top: 7rem;
  padding: 6rem 0rem;
  /* background-color: #e9eeee; */
  background-color: #f8f8f8;
}

.recruitment_public_offering h2 {
  font-size: 4.5rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-align: center;
  border: none;
  padding: 0;
}

.recruitment_public_offering_content {
  margin-top: 6rem;
}

.recruitment_public_offering_content table {
  display: flex;
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
  line-height: 1.5;
}

.recruitment_public_offering_content tbody {
  width: 100%;
}

.recruitment_public_offering_content tr {
  display: flex;
  border-bottom: solid 1px #707070;
}

.recruitment_public_offering_content tr:first-child {
  border-top: solid 1px #707070;
}

.recruitment_public_offering_content th {
  width: 30%;
  font-weight: 600;
  font-size: 2rem;
  text-align: left;
  padding: 1.5rem 2rem 1.5rem 2rem;
}

.recruitment_public_offering_content td {
  font-weight: 500;
  font-size: 1.8rem;
  letter-spacing: 1px;
  width: 100%;
  text-align: left;
  padding: 1.5rem 0rem 1.5rem 0;
  display: flex;
  flex-direction: column;
}

.recruitment_public_offering_content span {
  font-weight: 700;
  color: #19596d;
  line-height: 2;
  text-shadow: 0.1px 0.1px 0.5px;
}

.recruitment_public_offering_content .mg-tp {
  margin-top: 2.5rem;
}

.recruitment_public_offering_content .mg-tp.tk-sz {
  margin-top: 1.5rem;
  font-size: 1.6rem;
}

.recruitment_public_offering_content .sp-br {
  display: none;
}

.recruit_btn_area {
  display: flex;
  justify-content: center;
}

.recruit_btn {
  margin-top: 6rem;
  width: 45%;
  position: relative;
  background: #fff;
  border-radius: 8px;
  text-align: center;
  font-size: 2.2rem;
  font-weight: 500;
  letter-spacing: 3px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 60px;
  white-space: none;
  text-shadow: 0.1px 0.1px 0.5px;
}

.recruit_btn a {
  align-items: center;
  /* background: #19596d; */
  background: #202033;
  display: flex;
  justify-content: center;
  height: 100%;
  transition: 0.5s ease;
  width: 100%;
  color: #fff;
}

.recruit_btn:hover a {
  opacity: 0.8;
}

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

.coming-soon_area p {
  font-size: 4.5rem;
}

.recruit-tab-content {
  display: none;
}

.recruit-tab-content.is_show {
  display: block;
}

/* ----------------------------------------------- */
/* contact */
/* ----------------------------------------------- */
.contact_from {
  background-color: #fff;
  background-image: url(../img/left-background.png);
  background-size: 60%;
  background-repeat: no-repeat;
}

.contact_from_area {
  max-width: 1100px;
  width: 90%;
  margin: 0 auto;
  padding-top: 8rem;
  padding-bottom: 9rem;
}

.contact_from_area h2 {
  font-size: 3.4rem;
  color: #19596d;
  margin-top: 2.5rem;
  line-height: 1.5;
  text-align: center;
  text-shadow: 0.3px 0.3px 1px #19596d
}


.contact_from_txt {
  font-size: 2.3rem;
  padding-top: 7rem;
  text-align: center;
}

.contact_tel {
  margin-top: 2.5rem;
}

.contact_from .front-tell-area {
  width: 80%;
  background-color: #FFF;
  opacity: 0.8;
  border-radius: 15px;
  border: 0.4px solid #707070;
  padding: 0rem 7rem 3rem 7rem;
  box-sizing: border-box;
  position: relative;
  margin: 0 auto;
}

.contact_from .front-tell-area::before {
  content: "";
  border-radius: 15px;
  position: absolute;
  top: 3px;
  left: 5px;
  right: 5px;
  bottom: 3px;
  border: 0.4px solid #287979;
}

.contact_tel div {
  width: 49%;
  display: flex;
  align-items: center;
}

.contact_tel_left {
  justify-content: end;
  margin-right: 1rem;
}

.contact_tel p {
  font-size: 2.2rem;
  font-weight: 500;
  margin-right: 1rem;
}

.contact_tel a {
  font-size: 3rem;
  color: #39a0ff;
  font-weight: 700;
}

.contact_mail_form {
  max-width: 980px;
  width: 90%;
  margin: 9rem auto 4rem auto;
  padding: 2rem 0rem 7rem 0rem;
  background-color: #f8f8f8;
  opacity: 0.9;
}

.contact_mail_from_txt {
  font-size: 2rem;
  margin-top: 2.3rem;
  letter-spacing: 1.5px;
  font-weight: 500;
  text-align: center;
  text-shadow: 0.1px 0.1px 1px #19596d
}

.contact_content .wpcf7-form {
  display: flex !important;
  flex-direction: column !important;
}

.contact_content label {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-top: 2rem;
  font-weight: 600;
}

.contact_content {
  width: 60%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 500;
  margin-top: 2rem;
}

.contact_content input {
  padding: 5px;
  font-size: 1.8rem;
  font-weight: 500;
}

.contact_content .wp-block-contact-form-7-contact-form-selector {
  width: 100%;
}

.contact_content select {
  width: 100%;
  padding: 5px;
  font-size: 1.8rem;
  font-weight: 500;
}

.wpcf7-textarea {
  width: 100%;
  padding: 5px;
  font-size: 1.8rem;
}

.wpcf7-spinner {
  display: none !important;
}

.contact_content .wpcf7-list-item.last label {
  flex-direction: row;
  width: 100%;
}

.contact_content .wpcf7-list-item.last,
.wpcf7-list-item-label {
  width: 100%;
}

.contact_content .wpcf7-list-item.last input {
  width: 3rem !important;
}



.contact_btn_area {
  display: flex;
  justify-content: center;
  margin-top: 4.5rem;
}

.contact_btn {
  display: block;
  position: relative;
  background: #fff;
  border-radius: 8px;
  box-sizing: border-box;
  height: 60px;
  width: 39%;
}

.contact_btn .wpcf7-submit {
  align-items: center;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  height: 100%;
  transition: 0.5s ease;
  width: 100%;
  color: #202033;
  font-size: 1.8rem;
  font-weight: 500;
  border: solid 1px #202033;
  background: #fff;
}

.contact_btn .wpcf7-submit:hover {
  background: #202033;
  color: #fff;
}

/* ----------------------------------------------- */
/* 新着情報・お知らせ */
/* ----------------------------------------------- */
.news_area,
.single {
  background-color: #fff;
  margin-top: -3px;
}

.news_content,
.single_area {
  max-width: 1200px;
  width: 60%;
  margin: 0 auto;
  padding-top: 7rem;
  padding-bottom: 7rem;
}

.single_area {
  padding-bottom: 17rem;
}

.news_content a {
  color: #202033;
}

.single_area h2 {
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
}

.news_content_area a {
  display: flex;
  flex-direction: row;
  font-size: 1.8rem;
  font-weight: 500;
  border-bottom: solid 1px #202033;
  padding: 2rem;
}

.news_day {
  width: 20%;
}

.news_title {
  width: 90%;
  transition: all 0.3s ease-out;
}

.news_title_area {
  display: flex;
  align-items: center;
  width: 80%;
}


.news-arrow-area.lower {
  background-color: initial;
  height: 100%;
}

.news-arrow.lower {
  border-bottom: 2px solid #202033;
  border-right: 3px solid #202033;
}


.single_area h2 {
  /* font-family: 'Sawarabi Mincho', serif; */
  font-weight: 500;
  font-size: 4rem;
  text-align: left;
  word-break: break-word;
  padding-left: 2rem;
}

.single_area .news_day {
  font-size: 1.8rem;
  padding-right: 0.5rem;
  text-align: right;
  width: 100%;
}

.single_content {
  max-width: 900px;
  width: 100%;
  padding: 0 2rem;
  margin: 0 auto;
  font-weight: 500;
  font-size: 1.8rem;
  margin-bottom: 7rem;
}

.archive-link {
  width: 72%;
  margin: 5rem auto 0rem auto;
}

.archive-link :hover {
  opacity: 0.8;
  transition: 0.8s;
}

.archive-link img {
  border: solid 1.5px #707070;
}

.single_content,
.single_btn {
  font-size: 1.8rem;
  font-weight: 500;
  margin-top: 4.5rem;
}

.single_btn {
  display: flex;
  justify-content: center;
}

.single_btn a {
  width: 40%;
}


/* ページネーション */

.pagenation-area {
  margin-top: 4rem;
  display: block;
  width: 100%;
}

#pagenation {
  text-align: center;
}

#pagenation #pagenation-list {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

#pagenation:after {
  content: ".";
  display: block;
  clear: both;
  height: 0;
  visibility: hidden;
}

#pagenation #pagenation-list li {
  float: left;
  background: none;
  list-style: none;
  padding: 0;
  margin: 0 10px 0 0;
}

#pagenation #pagenation-list li:last-child {
  margin-left: 0;
}

#pagenation #pagenation-list a,
#pagenation #pagenation-list span {
  background: none;
  display: block;
  margin: 0;
  padding: 0 5px;
  font-size: 1.8rem;
  line-height: 1.5;
  text-align: center;
  font-family: 'Sawarabi Mincho', serif;
  font-weight: 500;
}

#pagenation #pagenation-list .current {
  color: #008aff;
}

#pagenation #pagenation-list .omit {
  padding: 0 2px;
  color: #000000;
}

#pagenation #pagenation-list li a {
  color: #000000;
  text-decoration: none;
}

#pagenation #pagenation-list a:hover {
  color: #000000;
  text-decoration: none;
}



/* ----------------------------------------------- */
/* privacy-polycy */
/* ----------------------------------------------- */
.privacy_policy_area {
  max-width: 1200px;
  width: 90%;
  margin: 0 auto;
  padding-top: 9rem;
  padding-bottom: 6rem;
}

.privacy_policy_content {
  font-family: 'Sawarabi Mincho', serif;
  font-weight: 500;
}

.privacy_policy_content h2 {
  font-size: 2.2rem;
}

.privacy_policy_content p {
  font-size: 1.8rem;
}

.privacy_policy_list li {
  position: relative;
  font-size: 1.8rem;
  padding-left: 1.8rem;
}

.privacy_policy_list li::before {
  content: "・";
  position: absolute;
  top: 0;
  left: 0;
  font-size: 1.8rem;
}

.privacy_policy_content.mg-tp {
  margin-top: 2.5rem;
}

.contact_information {
  margin-top: 2.5rem;
  font-size: 1.8rem;
  font-family: 'Sawarabi Mincho', serif;
  font-weight: 500;
}