@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Cormorant:ital,wght@0,300..700;1,300..700&family=EB+Garamond:ital,wght@0,400..800;1,400..800&family=Zen+Kaku+Gothic+New:wght@300;400;500;700;900&family=Zen+Old+Mincho:wght@400;500;600;700;900&display=swap");
/* font */
/* width */
/* color */
/* mixin */
/* @include circle; */
/* @include absPosition(5px, 20px, 10px, 15px); */
/*サイトのメインカラー*/
/*-------------------------------------------
animate.css
----------------------------------------------*/
@keyframes zoomUp {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.15); /* 拡大率 */
  }
}
.add-animation {
  animation: zoomUp 10s linear 0s normal both;
}

/*-------------------------------------------
animate.css
----------------------------------------------*/
@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -10%, 0);
    transform: translate3d(0, -10%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -10%, 0);
    transform: translate3d(0, -10%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 10%, 0);
    transform: translate3d(0, 10%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 10%, 0);
    transform: translate3d(0, 10%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(5%, 0, 0);
    transform: translate3d(5%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(5%, 0, 0);
    transform: translate3d(5%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-5%, 0, 0);
    transform: translate3d(-5%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-5%, 0, 0);
    transform: translate3d(-5%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

.zoomin {
  animation: zoomIn 0.8s cubic-bezier(0.25, 1, 0.5, 1) 1 forwards;
}

@keyframes zoomIn {
  0% {
    transform: scale(0.8);
    opacity: 0;
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes rotate {
  0% {
    transform: rotate(0deg) translate3d(0, 0, 0);
  }
  25% {
    transform: rotate(3deg) translate3d(0, 0, 0);
  }
  50% {
    transform: rotate(-3deg) translate3d(0, 0, 0);
  }
  75% {
    transform: rotate(1deg) translate3d(0, 0, 0);
  }
  100% {
    transform: rotate(0deg) translate3d(0, 0, 0);
  }
}
.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  opacity: 0;
}

.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

.animated.delay-03s {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}

.animated.delay-05s {
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
}

.animated.delay-07s {
  -webkit-animation-delay: 0.7s;
  animation-delay: 0.7s;
}

.animated.delay-1s {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

.animated.delay-2s {
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}

.animated.delay-3s {
  -webkit-animation-delay: 3s;
  animation-delay: 3s;
}

.animated.delay-4s {
  -webkit-animation-delay: 4s;
  animation-delay: 4s;
}

.animated.delay-5s {
  -webkit-animation-delay: 5s;
  animation-delay: 5s;
}

.animated.fast {
  -webkit-animation-duration: 800ms;
  animation-duration: 800ms;
}

.animated.faster {
  -webkit-animation-duration: 500ms;
  animation-duration: 500ms;
}

.animated.slow {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}

.animated.slower {
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
}

@media (print), (prefers-reduced-motion: reduce) {
  .animated {
    -webkit-animation-duration: 1ms !important;
    animation-duration: 1ms !important;
    -webkit-transition-duration: 1ms !important;
    transition-duration: 1ms !important;
    -webkit-animation-iteration-count: 1 !important;
    animation-iteration-count: 1 !important;
  }
}
@media all and (max-width: 769px) {
  .animated.delay-1s,
  .animated.delay-2s,
  .animated.delay-3s,
  .animated.delay-4s,
  .animated.delay-5s {
    -webkit-animation-duration: 0.3s;
    animation-duration: 0.3s;
  }
}
/* animation
----------------------------------*/
@-webkit-keyframes flash {
  0% {
    opacity: 0.4;
  }
  100% {
    opacity: 1;
  }
}
@keyframes flash {
  0% {
    opacity: 0.4;
  }
  100% {
    opacity: 1;
  }
}
@keyframes animation-bar {
  0% {
    left: 0;
    width: 0;
  }
  50% {
    left: 0;
    width: 100%;
  }
  51% {
    left: 0;
    width: 100%;
  }
  100% {
    left: 100.5%;
    width: 0;
  }
}
@keyframes animation-txt {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.animation-content.move .animation-bar:before {
  animation: animation-bar 1.5s ease 0s 1 normal forwards;
}
.animation-content.move .animation-txt {
  animation: animation-txt 0s ease 0.8s 1 normal forwards;
}
.animation-content .animation-box {
  display: block;
  text-align: center;
}
.animation-content .animation-bar {
  position: relative;
  display: block;
  transform: translate3d(0, 0, 0);
}
.animation-content .animation-bar:before {
  content: "";
  display: inline-block;
  width: 0;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  background: linear-gradient(to right, #74c7c0, #449845);
}
.animation-content .animation-txt {
  opacity: 0;
  transform: translate3d(0, 0, 0);
}

.effect_fade {
  opacity: 0;
  transform: translate(0, 45px);
  transition: all 2s;
}
.effect_fade.effect_scroll {
  opacity: 1;
  transform: translate(0, 0);
}

/**

  @mixin
---------------------------------------------------------
  _clearfix.scss
--------------------------------------------------------
  Use @include clearfix(); in your CSS
  Use @include before(); in your CSS
--------------------------------------------------------- */
/**
  @breakpoints mixin
-----------------------------------------------------
@include for-size(phone-only){}
@include for-size(tablet-portrait-up){}
@include for-size(tablet-landscape-up){}
@include for-size(desktop){}
@include for-size(desktop-up){}
-----------------------------------------------------  
@mixin for-size($size) {
  @if $size == phone-only {//スマホオンリー
    @media all and  (max-width: 640px) { @content; }
  } @else if $size == tablet-portrait-up {
    @media all and  (min-width: 639px) { @content; }
  } @else if $size == tablet-landscape-up {
    @media all and  (min-width: 885px) { @content; }
  }  @else if $size == desktop { 
    @media all and  (min-width: 1000px) { @content; }
  }  @else if $size == desktop-up { 
    @media all and  (min-width: 1300px) { @content; }
  } 
}*/
/**
  @breakpoints mixin (PC-first)
-----------------------------------------------------

-----------------------------------------------------  */
/**
  @bgimg.scss bgimg 
--------------------------------------------------------
  Use @include bgimg(); in your CSS
--------------------------------------------------------- */
/**
  @fonts.scss fonts 
--------------------------------------------------------
@include sec-read(); 
@include base-text($size); 

@include base-text_2($size); 

@include base-text_en($size); 
@include page_section_line() ; 

in your CSS
--------------------------------------------------------- */
/**
  @align-height
--------------------------------------------------------
@include align-height(); in your CSS
--------------------------------------------------------- */
/*----------------------------------------------------
レイアウトのみ
-------------------------------------------------------*/
.innerA {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
.innerA .left_s {
  width: 30%;
}
.innerA .right_l {
  width: 66%;
  margin-left: 4%;
}

/*----------------------------------------------------
レイアウトのみ
-------------------------------------------------------*/
.innerB {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
@media all and (max-width: 639px) {
  .innerB {
    display: block;
  }
}
.innerB .left,
.innerB .right {
  width: 48%;
}
@media all and (max-width: 639px) {
  .innerB .left,
  .innerB .right {
    width: 100%;
    float: none;
  }
}
.innerB .right {
  margin-left: 4%;
}
@media all and (max-width: 639px) {
  .innerB .right {
    margin-left: 0;
    margin-top: 15px;
  }
}
.innerB .left_s {
  width: 30%;
}
@media all and (max-width: 639px) {
  .innerB .left_s {
    width: 100%;
    float: none;
  }
}
.innerB .right_l {
  width: 66%;
  margin-left: 4%;
}
@media all and (max-width: 639px) {
  .innerB .right_l {
    margin-left: 0;
    margin-top: 15px;
    width: 100%;
    float: none;
  }
}

.innerC {
  display: table;
  width: 100%;
  table-layout: fixed;
}
.innerC .left,
.innerC .right {
  width: 48%;
  float: left;
}
.innerC .right {
  margin-left: 4%;
}
.innerC .left_s {
  width: 30%;
  float: left;
}
.innerC .right_l {
  width: 66%;
  float: left;
  margin-left: 4%;
}

/*-----------------------------------------------------------------------------
ぶろぐ
<section id="entry" class="common_page__sec">
 <div class="single">
 <div class="nakaA">
  <h3>新着情報</h3>
  <div class="entry__cotent">
   <p class="data"><span>2018.09.20</span></p>
   <p class="entry__title">
   タイトルホームページを公開致しました</p>

   <div class="entry__cotent__text">
   本文ホームページを公開致しました</div>
   </div>
  </div>
 </div>
</section>
--------------------------------------------------------------------------------*/
#entry {
  padding-bottom: 80px;
}
#entry .entry__cotent {
  background: #fff;
  padding: 30px;
  font-family: YakuHaMP, "Zen Old Mincho", serif;
}
@media all and (max-width: 821px) {
  #entry .entry__cotent {
    padding: 15px;
  }
}
#entry .entry__cotent .data span {
  background: #c3baaf;
  padding: 0.3em 0.5em;
}
#entry .entry__cotent .page_sec_title {
  margin: 10px 0;
  border-bottom: 1px solid #449845;
}
@media all and (max-width: 821px) {
  #entry .entry__cotent .entry__cotent__text {
    font-size: 14px;
  }
}

/*--------------------------------------------------------------
下層ページ　ページ看板共通
ページ共通
<div id="page_top">
    <div class="box">
     <div class="nakaA">
      <h2 class="page__title">
       会社概要
       <span>Company</span>
      </h2>
     </div>
    </div>
   </div>

#page_top{
 @include page_top();
}
-------------------------------------------------------------------*/
/*--------------------------------------------------------------
下層ページ　コンテンツレイアウト(左右半々)
ページ共通
----HTML---------------------------------------------------------------
<div class="listA">
 <div class="listA__item">
  <div class="listA__item__inner">
   <div class="listA__item__inner__left">
    <img src="https://placehold.jp/150x150.png" alt="">
   </div>
   <div class="listA__item__inner__right">
    <p class="listA__item__read">
     タイトル
    </p>
    <p class="listA__item__text">
     本文
    </p>
   </div>
  </div>
 </div>
 <div class="listA__item">
  <div class="listA__item__inner">
   <div class="listA__item__inner__left">
    <img class="_sp" src="https://placehold.jp/150x150.png" alt="">
    <p class="listA__item__read">
     タイトル
    </p>
    <p class="listA__item__text">
     本文
    </p>
   </div>
   <div class="listA__item__inner__right">
    <img src="https://placehold.jp/150x150.png" alt="">
   </div>
  </div>
 </div>
</div>
-----css--------------------------------------------------------------
.listA{
 @include sec_content_listA();
}
-------------------------------------------------------------------*/
/*--------------------------------------------------------------
下層ページ　ページ看板共通
ページ共通
<div id="page_top">
    <div class="box">
     <div class="nakaA">
      <h2 class="page__title">
       会社概要
       <span>Company</span>
      </h2>
     </div>
    </div>
   </div>

#page_top{
 @include page_top();
}
-------------------------------------------------------------------*/
/*------------------------------------------------------
下層ページパンくず共通
<div id="pankuzu_list">
    <div class="box">
     <div class="nakaA">
      <ul>
       <li>
        <a href="">TOP</a>
       </li>
       <li>会社概要</li>
      </ul>
     </div>
    </div>
   </div>

#pankuzu_list{
 @include pankuzu_list();
}
 in your CSS
-------------------------------------------------*/
html {
  height: 100%;
  font-size: 62.5%;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  width: 100%;
  height: 100%;
  color: #111;
  font-size: 1rem;
  *font-size: small;
  *font: x-small;
  line-height: 1.8;
  margin: 0 auto;
  font-family: YakuHaMP, "Zen Old Mincho", serif;
  font-size: 15px;
  font-size: 1.5rem;
  font-weight: 400;
}

#body {
  display: flex;
  flex-direction: column;
  font-size: 1.5rem;
}
@media all and (max-width: 639px) {
  #body {
    overflow: hidden;
  }
}

#page {
  display: flex;
  flex-direction: column;
}

a:link, a:visited, a:hover {
  color: #74c7c0;
  text-decoration: none;
}

.tbox {
  border: 2px solid #74c7c0;
  padding: 15px;
  width: calc(100% - 34px);
}

.sign_ttl {
  border-bottom: 1px solid #111;
  font-size: 1.5rem;
  padding: 5px 0;
  text-align: center;
  max-width: 300px;
  margin: 0 auto;
}

header {
  width: 100%;
  z-index: 2222;
  transition: 0.4s;
  position: absolute;
}
@media all and (max-width: 639px) {
  header {
    position: relative;
  }
}
header .logo {
  width: 184px;
  display: block;
  margin-top: 40px;
  margin-left: 40px;
}
@media all and (max-width: 639px) {
  header .logo {
    width: 144px;
    margin-top: 20px;
    margin-left: 20px;
    margin-bottom: 27px;
  }
}
header .logo a {
  display: block;
}
header .logo img {
  width: 100%;
  height: auto;
}

/* --- 右側固定サイドバー (常に表示) --- */
.side-bar {
  position: fixed;
  top: 0;
  right: 0;
  width: 80px;
  height: 100vh;
  background-color: #fff; /* 背景白 */
  border-left: 1px solid #eee;
  z-index: 1000; /* 最前面 */
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 3333;
}
@media all and (max-width: 639px) {
  .side-bar {
    height: auto;
    padding: 30px 0;
  }
}
.side-bar .in_bottom {
  position: absolute;
  bottom: 30px;
}
@media all and (max-width: 639px) {
  .side-bar .in_bottom {
    display: none;
  }
}
.side-bar .in_bottom__sns {
  margin-bottom: 40px;
}
.side-bar .in_bottom__sns li:nth-child(n+2) {
  margin-top: 30px;
}
.side-bar .in_bottom__sns li a {
  display: block;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  margin: auto;
  font-family: YakuHaMP, "Zen Old Mincho", serif;
  font-size: 15px;
  font-size: 1.5rem;
  font-weight: 400;
  color: #1d201f;
}
.side-bar .in_bottom__sns li a i {
  margin-bottom: 5px;
}
.side-bar .in_bottom img {
  display: block;
  width: 30%;
  margin: auto;
}
@media all and (max-width: 639px) {
  .side-bar .in_bottom img {
    display: none;
  }
}

/* 縦書きのMENUラベル */
.menu-label {
  writing-mode: vertical-rl;
  font-family: "Cormorant Garamond", serif;
  letter-spacing: 0.3em;
  font-size: 14px;
  margin-bottom: 20px;
  color: #333;
  margin-top: 30px;
}
@media all and (max-width: 639px) {
  .menu-label {
    display: none;
  }
}

/* ハンバーガーボタン本体 */
.hamburger {
  background: none;
  border: none;
  cursor: pointer;
  width: 30px;
  height: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0;
  margin-top: 30px;
}
@media all and (max-width: 639px) {
  .hamburger {
    margin-top: 0;
  }
}

/* 2本線のデザイン */
.hamburger span {
  display: block;
  width: 100%;
  height: 1px;
  background-color: #333;
  transition: all 0.4s ease;
}

/* クリックされた時のハサミのようなクロス（×印） */
.hamburger.is-active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.hamburger.is-active span:nth-child(2) {
  transform: translateY(-10px) rotate(-45deg);
}

/* --- 全画面オーバーレイメニュー --- */
.full-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  /* --- グラデーションの設定 --- */
  /* 似たトーンのティファニーブルーを3色ほど混ぜます */
  background: linear-gradient(135deg, #81d8d0, #74c7c0, #98e2db, #6bb8b1);
  background-size: 400% 400%; /* 背景を大きく広げる */
  animation: gradientAnimation 10s ease infinite; /* 10秒かけてループ */
  /* 初期状態は隠す */
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease-in-out;
}

/* 背景を動かすアニメーションの定義 */
@keyframes gradientAnimation {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
/* メニューが開いた時 */
.full-menu.is-active {
  opacity: 1;
  visibility: visible;
}

.full-menu nav {
  width: 80%;
  margin: auto;
  max-width: 800px;
}
.full-menu ul {
  list-style: none;
  padding: 0;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
}
@media all and (max-width: 639px) {
  .full-menu ul {
    display: block;
  }
}
.full-menu ul li {
  overflow: hidden;
  width: 32%;
  margin-right: 2%;
  border: 1px solid #fff;
  box-sizing: border-box;
  position: relative;
}
@media all and (max-width: 639px) {
  .full-menu ul li {
    width: 100%;
    margin: 0 0 10px;
  }
}
.full-menu ul li:nth-child(3n), .full-menu ul li:last-child {
  margin-right: 0;
}
.full-menu ul li:nth-child(n+4) {
  margin-top: 20px;
}
@media all and (max-width: 639px) {
  .full-menu ul li:nth-child(n+4) {
    margin-top: 0;
  }
}
.full-menu ul li a {
  font-family: "Cormorant", serif;
  font-weight: 300;
  letter-spacing: 0.05em;
  line-height: 1em;
  font-size: 19px;
  font-size: 1.9rem;
  letter-spacing: 0.05em;
  line-height: 1em;
  color: #fff;
  text-decoration: none;
  letter-spacing: 0.1em;
  padding: 21px 0;
  display: block;
  transition: transform 0.3s ease;
}
.full-menu ul li a:hover {
  opacity: 0.7;
  transform: scale(1.1);
}

/* --- メインコンテンツの仮設定 --- */
main {
  padding-right: 80px; /* サイドバーの分だけ余白を空ける */
  height: 200vh; /* スクロール確認用 */
  display: flex;
  align-items: center;
  justify-content: center;
}

/* /dropdownmenu */
.sp {
  display: none;
}

.pc {
  display: block;
  margin: 0 auto;
}

.map {
  width: 100%;
  height: 450px;
}

/*  scrollbar  */
.scrollbar-y {
  width: 100%;
  height: 350px;
  overflow-x: hidden;
  overflow-y: scroll;
  padding-right: 20px;
}
@media screen and (max-width: 768px) {
  .scrollbar-y {
    height: 200px;
  }
}
.scrollbar-y::-webkit-scrollbar {
  width: 5px;
}
.scrollbar-y::-webkit-scrollbar-track {
  border-radius: 10px;
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.1);
}
.scrollbar-y::-webkit-scrollbar-thumb {
  background-color: rgba(50, 50, 50, 0.5);
  border-radius: 10px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.3);
}

.mbox_white {
  background: rgba(255, 255, 255, 0.4);
  padding: 30px 20px;
}

/*link*/
/*containar*/
#contentwrap {
  width: 100%;
  flex: 1 1 auto;
  background-size: 160px;
  position: relative;
}
#contentwrap.kasou {
  padding-top: 100px;
}
@media all and (max-width: 639px) {
  #contentwrap.kasou {
    padding-top: 30px;
  }
}
#contentwrap.kasou:before {
  content: "";
  display: block;
  position: absolute;
  background-repeat: no-repeat;
  margin: auto;
  width: 100%;
  height: 100px;
  background: #f9f8f4;
  top: 0;
}
@media all and (max-width: 639px) {
  #contentwrap.kasou:before {
    height: 30px;
  }
}

.single {
  position: relative;
  width: 1160px;
  margin: 0 auto;
  padding: 80px 0;
}
.single .tbox p {
  margin-bottom: 0px;
}

#page-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 990;
}
#page-top a {
  display: block;
}
#page-top a img {
  display: block;
  width: 76px;
}
@media all and (max-width: 639px) {
  #page-top a img {
    width: 22px;
  }
}

#footer {
  width: 1160px;
  margin: 0 auto 0;
  padding: 40px 0;
}
#footer address {
  margin-top: 10px;
}

/* table */
table {
  margin: 10px 0;
}
table th {
  vertical-align: middle;
  padding: 3px 10px;
  font-weight: bold;
  line-height: 1.5;
  border: #ddd 1px solid;
  background: #74c7c0;
  color: #fff;
}
table td b {
  color: #74c7c0;
  font-size: 12px;
}
table td {
  padding: 5px 10px;
  vertical-align: middle;
  border: #ddd 1px solid;
}

@media screen and (max-width: 800px) {
  table.rstable {
    width: 100%;
  }
  table.rstable td {
    display: block;
    text-align: center;
    width: calc(100% - 2px) !important;
    padding: 5px 0;
  }
  table.rstable th {
    display: block;
    width: calc(100% - 2px) !important;
    overflow: hidden;
    padding: 5px 0;
  }
}
table.tbl-2l {
  margin: 15px 0;
  background: rgba(255, 255, 255, 0.8);
  color: #333;
}
table.tbl-2l th {
  padding: 15px 10px;
  font-weight: bold;
  line-height: 1.5;
  border: #ddd 0px solid;
  color: #555;
  background: none !important;
}
table.tbl-2l tr:nth-child(odd) {
  background: #f2f2f2 !important;
}
table.tbl-2l td {
  padding: 15px 10px;
  border: #eee 0px solid !important;
}

@media screen and (max-width: 800px) {
  table.tbl-2l {
    margin: 15px 0;
  }
  table.tbl-2l th {
    padding: 5px 0px;
  }
  table.tbl-2l td {
    padding: 5px 5px;
    text-align: left;
    width: calc(100% - 10px) !important;
  }
}
/* mailform */
.form {
  margin: 10px 0 10px;
}
.form dt span {
  color: #fff;
  background: #ff4f4f;
  padding: 0 5px 0;
  margin-right: 5px;
  font-size: 1.1rem;
  border-radius: 2px;
  position: relative;
  top: -2px;
}
.form dl {
  margin: 10px 0;
  font-size: 1.6rem;
}
.form dt {
  float: left;
  width: 280px;
  padding-top: 20px;
}
.form dd {
  padding-left: 280px;
  padding-bottom: 20px;
  padding-top: 23px;
  line-height: 1.5;
  border-bottom: 1px solid #eee;
}
.form dd p {
  padding-top: 5px;
  color: #888;
}
.form dd:last-child {
  border-bottom: 0px;
  margin-bottom: 0px;
}

.textarea,
textarea,
.dropdown {
  border-radius: 2px;
  border: 1px solid #ddd;
}

.textarea {
  border-radius: 2px;
  border: 1px solid #ddd;
  height: 30px;
  padding: 0 5px;
}

.form-button {
  padding: 5px;
  border-radius: 5px;
  text-align: center;
  margin: 10px 0;
}

#mailform button {
  cursor: pointer;
  display: block;
  margin: 0 auto 5px;
  padding: 10px 0 10px;
  color: #fff;
  text-align: center;
  width: 250px;
  border-radius: 30px;
  background: #449845;
  font-weight: bold;
  border: 2px solid #449845;
}
#mailform button:before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f0e0";
  margin-right: 6px;
}
#mailform button:hover {
  background: #fff;
  color: #449845;
}
#mailform button * {
  -moz-transition: 0.2s;
  -ms-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}

.form-button * {
  -moz-transition: 0.2s;
  -ms-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}

/*Radio Text*/
label.radio_text {
  cursor: pointer;
  position: relative;
  margin-right: 20px;
  overflow: hidden;
  padding-left: 20px;
  display: inline-block;
}
label.radio_text:before {
  position: absolute;
  width: 15px;
  height: 15px;
  border: 1px solid #ccc;
  border-radius: 50%;
  left: 0px;
  top: 2px;
  content: "";
  z-index: 3;
}
label.radio_text:after {
  content: "";
  position: absolute;
  width: 11px;
  height: 11px;
  border-radius: 100%;
  left: 3px;
  top: 5px;
  background-color: #64bcff;
  z-index: 1;
}
label.radio_text input[type=radio] {
  -moz-appearance: none;
  -webkit-appearance: none;
  position: absolute;
  z-index: 2;
  width: 20px;
  height: 20px;
  left: -23px;
  top: 0px;
  margin: 0px;
  box-shadow: 20px -1px #fff;
}
label.radio_text input[type=radio]:checked {
  box-shadow: none;
}
label.radio_text input[type=radio]:focus {
  opacity: 0.2;
  box-shadow: 20px -1px #fff;
}
label.checkbox_text {
  cursor: pointer;
  position: relative;
  padding-left: 25px;
  margin-right: 20px;
  overflow: hidden;
  display: inline-block;
  box-sizing: border-box;
}
label.checkbox_text:before {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  left: 0px;
  top: 0;
  border: 1px solid #ccc;
  z-index: 3;
}
label.checkbox_text:after {
  content: "";
  position: absolute;
  top: 40%;
  left: 5px;
  display: block;
  margin-top: -9px;
  width: 8px;
  height: 12px;
  border-right: 3px solid #74c7c0;
  border-bottom: 3px solid #74c7c0;
  transform: rotate(45deg);
  z-index: 1;
}
label.checkbox_text input[type=checkbox] {
  -moz-appearance: none;
  -webkit-appearance: none;
  position: absolute;
  left: -40px;
  width: 20px;
  height: 20px;
  display: block;
  box-shadow: 41px 0px #fff;
  z-index: 2;
  margin: 0px;
  padding: 0px;
}
label.checkbox_text input[type=checkbox]:checked {
  box-shadow: none;
}
label.checkbox_text input[type=checkbox]:checked:focus {
  box-shadow: 40px 0px #666;
  opacity: 0.1;
}
label.checkbox_text input[type=checkbox]:focus {
  box-shadow: 41px 0px #eee;
}

.fm-text {
  padding: 10px;
  margin: 10px 0;
  text-align: center;
}

/*共通ルール*/
.single_new {
  width: 95%;
  margin: auto;
}
@media all and (max-width: 639px) {
  .single_new {
    width: 95%;
  }
}

div,
section {
  box-sizing: border-box;
}

@media all and (max-width: 1400px) {
  .single {
    width: 95%;
  }
}

/* --- OPローダー全体 --- */
.loading {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #81d8d0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.loading.is-hide {
  animation: loadingFade 1s ease forwards;
}

@keyframes loadingFade {
  100% {
    opacity: 0;
    visibility: hidden;
  }
}
#mainView {
  width: min(420px, 78vw);
}

.svg_wrap {
  position: relative;
  width: 100%;
}

#svg {
  width: 100%;
  height: auto;
  display: block;
}

/* 手書き線用 */
#svg path,
#svg rect {
  fill: none !important;
  stroke: #fff !important;
  stroke-width: 1.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* 完成ロゴ */
#s4u {
  display: none;
  position: absolute;
  inset: 0;
}

#s4u img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.35));
}

/*--------------*/
#top_main .top_main_vis {
  width: 100%;
  position: relative;
  margin: auto;
}
@media all and (max-width: 639px) {
  #top_main .top_main_vis {
    height: auto;
  }
}
#top_main .top_main_vis img {
  display: block;
  height: 100%;
}
#top_main .main_chashi {
  position: absolute;
  height: 130px;
  margin: auto;
  left: 0;
  bottom: 0;
  top: 0;
  right: 0;
  z-index: 33;
}
@media all and (max-width: 639px) {
  #top_main .main_chashi {
    height: 62px;
    margin: auto;
  }
}
#top_main .main_chashi img {
  display: block;
  margin: auto;
}
#top_main .main_chashi img._en {
  height: 94px;
}
@media all and (max-width: 639px) {
  #top_main .main_chashi img._en {
    height: 32px;
  }
}
#top_main .main_chashi img._ja {
  height: 23px;
}
@media all and (max-width: 639px) {
  #top_main .main_chashi img._ja {
    height: 18px;
    margin-top: 3px;
  }
}
#top_main .top_main_vis_text {
  position: absolute;
  left: 3%;
  bottom: 40px;
  color: #fff;
  font-family: YakuHaMP, "Zen Old Mincho", serif;
  font-size: 21px;
  font-size: 2.1rem;
  font-weight: 400;
  z-index: 33;
}
@media all and (max-width: 639px) {
  #top_main .top_main_vis_text {
    display: none;
  }
}
#top_main .top_main_vis_text span {
  display: block;
  margin-top: 30px;
}
#top_main.page_unde {
  position: relative;
}
#top_main.page_unde .page_title {
  position: relative;
  z-index: 2;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 150px 0 50px;
  padding-right: 80px;
}
@media all and (max-width: 639px) {
  #top_main.page_unde .page_title {
    padding: 70px 0 30px;
  }
}
#top_main.page_unde .page_title.page_concept {
  background-image: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/27887/page_concept_bg.jpg);
}
#top_main.page_unde .page_title.page_menu {
  background-image: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/27887/page_menu_bg.jpg);
}
#top_main.page_unde .page_title.page_salon {
  background-image: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/27887/page_salon_bg.jpg);
}
#top_main.page_unde .page_title.page_blog {
  background-image: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/27887/page_blog_bg.jpg);
}
#top_main.page_unde .page_title h2 {
  font-family: "Cormorant", serif;
  font-weight: 300;
  letter-spacing: 0.05em;
  line-height: 1em;
  font-size: 80px;
  font-size: 8rem;
  letter-spacing: 0.05em;
  line-height: 1em;
  color: #fff;
  display: block;
  margin: auto;
  text-align: center;
  letter-spacing: 0.05em;
}
@media all and (max-width: 639px) {
  #top_main.page_unde .page_title h2 {
    font-family: YakuHaMP, "Zen Old Mincho", serif;
    font-size: 17px;
    font-size: 1.7rem;
    font-weight: 400;
  }
}

#top_1 {
  position: relative;
  margin-top: 100px;
}
#top_1 .single {
  padding-bottom: 0;
}
#top_1:before {
  content: "";
  display: block;
  position: absolute;
  background-repeat: no-repeat;
  margin: auto;
  width: 58%;
  height: 100%;
  background-image: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/27887/top_1.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  right: 0;
  top: 0;
}
@media all and (max-width: 639px) {
  #top_1:before {
    display: none;
  }
}
#top_1 .top_1_item {
  width: 50%;
}
@media all and (max-width: 639px) {
  #top_1 .top_1_item {
    width: 100%;
  }
}
#top_1 .read {
  text-align: center;
  font-family: "Cormorant", serif;
  font-weight: 300;
  letter-spacing: 0.05em;
  line-height: 1em;
  font-size: 53px;
  font-size: 5.3rem;
  letter-spacing: 0.05em;
  line-height: 1em;
  color: #1d201f;
  font-weight: 500;
}
@media all and (max-width: 639px) {
  #top_1 .read {
    font-family: "Cormorant", serif;
    font-weight: 300;
    letter-spacing: 0.05em;
    line-height: 1em;
    font-size: 35px;
    font-size: 3.5rem;
    letter-spacing: 0.05em;
    line-height: 1em;
  }
}
#top_1 .read {
  text-align: left;
}
#top_1 .bg_w {
  background: #fff;
  padding-right: 60px;
  padding-top: 40px;
  padding-bottom: 60px;
  position: relative;
}
@media all and (max-width: 639px) {
  #top_1 .bg_w {
    padding: 0;
  }
}
#top_1 .bg_w img._sp {
  display: none;
}
@media all and (max-width: 639px) {
  #top_1 .bg_w img._sp {
    display: block;
    width: 100%;
  }
}
#top_1 .top_1_item_sub_read {
  font-family: YakuHaMP, "Zen Old Mincho", serif;
  font-size: 23px;
  font-size: 2.3rem;
  font-weight: 400;
  color: #1d201f;
  margin-bottom: 30px;
  letter-spacing: 0.08em;
}
@media all and (max-width: 639px) {
  #top_1 .top_1_item_sub_read {
    font-family: YakuHaMP, "Zen Old Mincho", serif;
    font-size: 19px;
    font-size: 1.9rem;
    font-weight: 400;
    color: #1d201f;
    margin-top: 20px;
  }
}
#top_1 .main {
  font-family: YakuHaJP, "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 400;
  color: #1d201f;
  line-height: 2.3em;
  letter-spacing: 0;
}
@media all and (max-width: 639px) {
  #top_1 .main {
    margin-top: 20px;
  }
}

#top_2 {
  margin-top: 140px;
}
@media all and (max-width: 639px) {
  #top_2 {
    margin-top: 40px;
  }
}
#top_2 .top_2_tilte {
  background-image: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/27887/top_2_tilte.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 170px 0 100px;
}
@media all and (max-width: 639px) {
  #top_2 .top_2_tilte {
    padding: 90px 0 50px;
  }
}
#top_2 .read {
  text-align: center;
  font-family: "Cormorant", serif;
  font-weight: 300;
  letter-spacing: 0.05em;
  line-height: 1em;
  font-size: 53px;
  font-size: 5.3rem;
  letter-spacing: 0.05em;
  line-height: 1em;
  color: #1d201f;
  font-weight: 500;
}
@media all and (max-width: 639px) {
  #top_2 .read {
    font-family: "Cormorant", serif;
    font-weight: 300;
    letter-spacing: 0.05em;
    line-height: 1em;
    font-size: 35px;
    font-size: 3.5rem;
    letter-spacing: 0.05em;
    line-height: 1em;
  }
}
#top_2 .read {
  color: #fff;
  text-align: left;
}
#top_2 .top_2_sub_read {
  font-family: YakuHaMP, "Zen Old Mincho", serif;
  font-size: 23px;
  font-size: 2.3rem;
  font-weight: 400;
  color: #fff;
  letter-spacing: 0.08em;
  margin-top: 40px;
}
@media all and (max-width: 639px) {
  #top_2 .top_2_sub_read {
    font-family: YakuHaMP, "Zen Old Mincho", serif;
    font-size: 19px;
    font-size: 1.9rem;
    font-weight: 400;
    color: #fff;
  }
}
#top_2 .top_2_item {
  background: #fff;
  margin-top: -200px;
  padding: 80px 70px 0;
}
@media all and (max-width: 639px) {
  #top_2 .top_2_item {
    margin-top: -70px;
    padding: 50px 20px 0;
  }
}
#top_2 .top_2_item ul li:nth-child(n+2) {
  margin-top: 60px;
}
#top_2 .top_2_item img {
  display: block;
  width: 100%;
}
#top_2 .top_2_item .top_2_item_no {
  font-family: "EB Garamond", serif;
  font-weight: 400;
  letter-spacing: 0.06em;
  font-size: 81px;
  font-size: 8.1rem;
  color: #74c7c0;
  line-height: 1em;
  opacity: 0.3;
}
#top_2 .top_2_item .top_2_item_read {
  font-family: YakuHaMP, "Zen Old Mincho", serif;
  font-size: 22px;
  font-size: 2.2rem;
  font-weight: 400;
  color: #1d201f;
  letter-spacing: 0.08em;
  line-height: 1.6em;
  margin-top: -40px;
  position: relative;
}
#top_2 .top_2_item .top_2_item_main {
  margin-top: 15px;
  font-family: YakuHaJP, "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 400;
  color: #1d201f;
  line-height: 2em;
}

#top_3 {
  padding-right: 80px;
  margin-top: 100px;
}
@media all and (max-width: 639px) {
  #top_3 {
    padding-right: 0;
  }
}
#top_3 .col-2 {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
#top_3 .col-2-item {
  width: 32%;
  position: relative;
  margin-right: 2%;
}
#top_3 .col-2-item:nth-child(3n) {
  margin-right: 0;
}
@media all and (max-width: 639px) {
  #top_3 .col-2-item {
    width: 100%;
    margin-right: 0;
    margin-bottom: 10px;
  }
}
#top_3 .col-2-item a {
  display: block;
  position: relative;
}
#top_3 .col-2-item a .top_3_link {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 353px;
  margin: 0 auto 0;
  background-color: #74c7c0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media all and (max-width: 639px) {
  #top_3 .col-2-item a .top_3_link {
    height: 253px;
  }
}
#top_3 .col-2-item a .top_3_link:after {
  position: absolute;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  opacity: 0.8;
  -ms-background-size: cover;
  background-size: cover;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  background-repeat: no-repeat;
  background-position: center;
  background-blend-mode: multiply;
  background-color: #74c7c0;
}
#top_3 .col-2-item a .top_3_link.item-1:after {
  background-image: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/27887/top_3_01.jpg);
}
#top_3 .col-2-item a .top_3_link.item-2:after {
  background-image: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/27887/top_3_02.jpg);
}
#top_3 .col-2-item a .top_3_link.item-3:after {
  background-image: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/27887/top_3_03.jpg);
}
#top_3 .col-2-item a .top_3_link:hover:after {
  opacity: 1;
  -moz-transform: scale(1.2);
  -webkit-transform: scale(1.2);
  -ms-transform: scale(1.2);
  transform: scale(1.2);
  background-color: #74c7c0;
  opacity: 1;
}
#top_3 .col-2-item a .top_3_item_read {
  position: relative;
  margin: 0 auto 12px;
  text-align: center;
  z-index: 2;
  padding-bottom: 0;
  font-family: "Cormorant", serif;
  font-weight: 300;
  letter-spacing: 0.05em;
  line-height: 1em;
  font-size: 39px;
  font-size: 3.9rem;
  letter-spacing: 0.05em;
  line-height: 1em;
  color: #fff;
}
@media all and (max-width: 639px) {
  #top_3 .col-2-item a .top_3_item_read {
    font-family: "Cormorant", serif;
    font-weight: 300;
    letter-spacing: 0.05em;
    line-height: 1em;
    font-size: 26px;
    font-size: 2.6rem;
    letter-spacing: 0.05em;
    line-height: 1em;
  }
}
#top_3 .col-2-item a img {
  display: block;
  width: 50px;
  margin: 20px auto 0;
  position: relative;
  z-index: 3;
}

#top_4 {
  margin-top: 80px;
}
#top_4 .read {
  text-align: center;
  font-family: "Cormorant", serif;
  font-weight: 300;
  letter-spacing: 0.05em;
  line-height: 1em;
  font-size: 53px;
  font-size: 5.3rem;
  letter-spacing: 0.05em;
  line-height: 1em;
  color: #1d201f;
  font-weight: 500;
}
@media all and (max-width: 639px) {
  #top_4 .read {
    font-family: "Cormorant", serif;
    font-weight: 300;
    letter-spacing: 0.05em;
    line-height: 1em;
    font-size: 35px;
    font-size: 3.5rem;
    letter-spacing: 0.05em;
    line-height: 1em;
  }
}
#top_4 .cms_clen {
  margin: 50px auto 0;
  max-width: 1000px;
}
#top_4 .cms_clen #cms-calendar-1-area {
  display: flex;
  flex-wrap: wrap;
}
@media all and (max-width: 639px) {
  #top_4 .cms_clen #cms-calendar-1-area {
    display: block;
  }
}
#top_4 .cms_clen #cms-calendar-1-area .calendar#roscal {
  width: 48%;
}
@media all and (max-width: 639px) {
  #top_4 .cms_clen #cms-calendar-1-area .calendar#roscal {
    width: 100%;
  }
}
#top_4 .cms_clen #cms-calendar-1-area .calendar#roscal:nth-child(2) {
  margin-left: auto;
}
@media all and (max-width: 639px) {
  #top_4 .cms_clen #cms-calendar-1-area .calendar#roscal:nth-child(2) {
    margin-top: 50px;
  }
}
#top_4 .cms_clen #cms-calendar-1-area .calendar#roscal table {
  width: 100%;
  border-top: 1px solid #d8d8d8;
}
#top_4 .cms_clen #cms-calendar-1-area .calendar#roscal table th,
#top_4 .cms_clen #cms-calendar-1-area .calendar#roscal table td {
  background: none;
  text-align: center;
  border: none;
  color: #1d201f;
  padding: 15px 5px;
  border-bottom: 1px solid #d8d8d8;
}

#top_5 .read {
  text-align: center;
  font-family: "Cormorant", serif;
  font-weight: 300;
  letter-spacing: 0.05em;
  line-height: 1em;
  font-size: 53px;
  font-size: 5.3rem;
  letter-spacing: 0.05em;
  line-height: 1em;
  color: #1d201f;
  font-weight: 500;
}
@media all and (max-width: 639px) {
  #top_5 .read {
    font-family: "Cormorant", serif;
    font-weight: 300;
    letter-spacing: 0.05em;
    line-height: 1em;
    font-size: 35px;
    font-size: 3.5rem;
    letter-spacing: 0.05em;
    line-height: 1em;
  }
}
#top_5 ul.post_list {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  margin-top: 50px;
}
@media all and (max-width: 639px) {
  #top_5 ul.post_list {
    width: 100%;
    display: block;
  }
}
#top_5 ul.post_list li {
  width: 32%;
  position: relative;
  padding: 0;
  margin-right: 2%;
  box-sizing: border-box;
}
#top_5 ul.post_list li:nth-child(3n) {
  margin-left: auto;
  margin-right: 0;
}
#top_5 ul.post_list li:nth-child(n+4) {
  margin-top: 40px;
}
@media all and (max-width: 639px) {
  #top_5 ul.post_list li:nth-child(n+4) {
    margin-top: 0;
  }
}
@media all and (max-width: 639px) {
  #top_5 ul.post_list li {
    width: 100%;
    float: none;
    margin-bottom: 20px;
  }
}
#top_5 ul.post_list li .thams {
  display: block;
  width: 100%;
  height: 240px;
  overflow: hidden;
  position: relative;
}
@media all and (max-width: 821px) {
  #top_5 ul.post_list li .thams {
    height: 207px;
    line-height: 198px;
  }
}
@media all and (max-width: 639px) {
  #top_5 ul.post_list li .thams {
    margin: auto;
  }
}
#top_5 ul.post_list li .thams img {
  width: 100%;
  height: auto;
  object-fit: cover;
  vertical-align: middle;
  min-width: 100%;
  min-height: 100%;
  font-family: "object-fit: contain;";
}
#top_5 ul.post_list li .title {
  font-family: YakuHaMP, "Zen Old Mincho", serif;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 400;
  position: relative;
  display: block;
  color: #1d201f;
  line-height: 1.6em;
  margin-top: 15px;
}
#top_5 ul.post_list li .title span {
  font-family: YakuHaMP, "Zen Old Mincho", serif;
  font-size: 13px;
  font-size: 1.3rem;
  font-weight: 400;
  display: table;
  font-weight: 400;
  color: #1d201f;
}
#top_5 .pages {
  display: none;
}

#top_6 .read {
  text-align: center;
  font-family: "Cormorant", serif;
  font-weight: 300;
  letter-spacing: 0.05em;
  line-height: 1em;
  font-size: 53px;
  font-size: 5.3rem;
  letter-spacing: 0.05em;
  line-height: 1em;
  color: #1d201f;
  font-weight: 500;
}
@media all and (max-width: 639px) {
  #top_6 .read {
    font-family: "Cormorant", serif;
    font-weight: 300;
    letter-spacing: 0.05em;
    line-height: 1em;
    font-size: 35px;
    font-size: 3.5rem;
    letter-spacing: 0.05em;
    line-height: 1em;
  }
}
#top_6 .main {
  text-align: center;
  font-family: YakuHaMP, "Zen Old Mincho", serif;
  font-size: 22px;
  font-size: 2.2rem;
  font-weight: 400;
  color: #1d201f;
  letter-spacing: 0.08em;
  margin-top: 30px;
}
@media all and (max-width: 639px) {
  #top_6 .main {
    font-family: YakuHaMP, "Zen Old Mincho", serif;
    font-size: 19px;
    font-size: 1.9rem;
    font-weight: 400;
  }
}
#top_6 .voice_list {
  max-width: 937px;
  width: 100%;
  margin: 70px auto 0;
}
#top_6 .voice_list li {
  border-bottom: 1px solid #d8d8d8;
  padding: 40px;
}
@media all and (max-width: 639px) {
  #top_6 .voice_list li {
    padding: 40px 20px;
  }
}
#top_6 .voice_list li:first-child {
  border-top: 1px solid #d8d8d8;
}
#top_6 .voice_list li .voice_list_text {
  font-family: YakuHaJP, "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 400;
  color: #1d201f;
}
#top_6 .more {
  display: block;
  width: 300px;
  margin: 60px auto 0;
  border: 1px solid #324331;
  padding: 20px 0;
}
#top_6 .more span {
  position: relative;
  display: table;
  margin: auto;
  font-family: YakuHaMP, "Zen Old Mincho", serif;
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 400;
  color: #1d201f;
  padding-right: 46px;
}
#top_6 .more span:before {
  content: "";
  display: block;
  position: absolute;
  background-repeat: no-repeat;
  margin: auto;
  width: 36px;
  height: 15px;
  background-image: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/27887/link_icon.svg);
  margin: auto;
  top: 0;
  bottom: 0;
  right: 0;
}

.sp_bottmnav {
  display: none;
}
@media all and (max-width: 639px) {
  .sp_bottmnav {
    display: block;
    position: fixed;
    bottom: 0;
    background: #fff;
    border-top: 1px solid #d8d8d8;
    width: 100%;
  }
  .sp_bottmnav ul {
    display: flex;
    flex-wrap: wrap;
  }
  .sp_bottmnav ul li {
    width: 33.33333333%;
    box-sizing: border-box;
  }
  .sp_bottmnav ul li:nth-child(n+2) {
    border-left: 1px solid #d8d8d8;
  }
  .sp_bottmnav ul li a {
    display: block;
    text-align: center;
    padding: 15px 10px;
  }
  .sp_bottmnav ul li a i {
    display: block;
    font-size: 24px;
  }
  .sp_bottmnav ul li a span {
    font-family: YakuHaJP, "Zen Kaku Gothic New", sans-serif;
    font-size: 14px;
    font-size: 1.4rem;
    font-weight: 400;
    color: #1d201f;
  }
}

footer {
  padding-right: 80px;
  margin-top: 100px;
}
@media all and (max-width: 639px) {
  footer {
    padding-bottom: 80px;
  }
}
footer .foot_con .access_in {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
@media all and (max-width: 639px) {
  footer .foot_con .access_in {
    display: block;
  }
}
footer .foot_con .access_in .in_item:nth-child(n+2) {
  margin-left: 50px;
}
@media all and (max-width: 639px) {
  footer .foot_con .access_in .in_item:nth-child(n+2) {
    margin: 20px 0 0;
  }
}
footer .foot_con .access_in .in_item .read {
  text-align: center;
  font-family: "Cormorant", serif;
  font-weight: 300;
  letter-spacing: 0.05em;
  line-height: 1em;
  font-size: 53px;
  font-size: 5.3rem;
  letter-spacing: 0.05em;
  line-height: 1em;
  color: #1d201f;
  font-weight: 500;
}
@media all and (max-width: 639px) {
  footer .foot_con .access_in .in_item .read {
    font-family: "Cormorant", serif;
    font-weight: 300;
    letter-spacing: 0.05em;
    line-height: 1em;
    font-size: 35px;
    font-size: 3.5rem;
    letter-spacing: 0.05em;
    line-height: 1em;
  }
}
footer .foot_con .access_in .in_item .access_in_text {
  font-family: YakuHaJP, "Zen Kaku Gothic New", sans-serif;
  font-size: 15px;
  font-size: 1.5rem;
  font-weight: 400;
  color: #1d201f;
}
footer .foot_con a.foot_tel_link {
  font-family: "EB Garamond", serif;
  font-weight: 400;
  letter-spacing: 0.06em;
  font-size: 40px;
  font-size: 4rem;
  font-weight: 300;
  color: #1d201f;
  line-height: 1em;
  margin-top: 47px;
  display: block;
  text-align: center;
}
footer .foot_con a.foot_tel_link span {
  font-size: 80%;
  margin-right: 10px;
}
footer .foot_con .foot_link {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
@media all and (max-width: 639px) {
  footer .foot_con .foot_link {
    display: block;
  }
}
footer .foot_con .foot_link li {
  width: 30%;
  max-width: 300px;
}
@media all and (max-width: 639px) {
  footer .foot_con .foot_link li {
    width: 100%;
    margin: 20px auto 0;
  }
}
footer .foot_con .foot_link li:nth-child(n+2) {
  margin-left: 50px;
}
@media all and (max-width: 639px) {
  footer .foot_con .foot_link li:nth-child(n+2) {
    margin: 20px auto 0;
  }
}
footer .foot_con .foot_link li a {
  display: block;
}
footer .foot_con .foot_link li a.foot_link_item {
  border-top: 1px solid #d8d8d8;
  border-bottom: 1px solid #d8d8d8;
  padding: 15px 0;
}
footer .foot_con .foot_link li a.foot_link_item span {
  position: relative;
  display: table;
  margin: auto;
  font-family: YakuHaMP, "Zen Old Mincho", serif;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 400;
  color: #1d201f;
  padding-right: 46px;
}
footer .foot_con .foot_link li a.foot_link_item span:before {
  content: "";
  display: block;
  position: absolute;
  background-repeat: no-repeat;
  margin: auto;
  width: 36px;
  height: 15px;
  background-image: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/27887/link_icon.svg);
  margin: auto;
  top: 0;
  bottom: 0;
  right: 0;
}
footer .foot_con .foot_link li p {
  font-family: YakuHaJP, "Zen Kaku Gothic New", sans-serif;
  font-size: 13px;
  font-size: 1.3rem;
  font-weight: 400;
  color: #1d201f;
  margin-top: 10px;
}
footer .foot_copy {
  background-image: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/27887/foot_copy_bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding-top: 80px;
}
footer .foot_copy .foot_logo {
  display: block;
  margin: auto;
  max-width: 303px;
}
footer .foot_copy .foot_chashi_text {
  display: block;
  max-width: 583px;
  width: 60%;
  margin: 40px auto;
}
footer .copy {
  font-family: YakuHaMP, "Zen Old Mincho", serif;
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 400;
  font-weight: 300;
  z-index: 2;
  color: #fff;
  text-align: center;
  padding: 15px 0;
}
@media all and (max-width: 639px) {
  footer .copy {
    font-family: YakuHaMP, "Zen Old Mincho", serif;
    font-size: 12px;
    font-size: 1.2rem;
    font-weight: 400;
    font-weight: 400;
    position: relative;
    text-align: center;
    padding: 0;
  }
}

/*--------------------------------------------------
CONCEPT(concept.php)
----------------------------------------------------*/
.page_section_read {
  text-align: center;
  font-family: YakuHaMP, "Zen Old Mincho", serif;
  font-size: 21px;
  font-size: 2.1rem;
  font-weight: 400;
  color: #1d201f;
  letter-spacing: 0.08em;
  margin-top: 80px;
  text-wrap: balance;
  word-break: auto-phrase;
}

#concept_1 {
  position: relative;
  margin-top: 100px;
}
@media all and (max-width: 639px) {
  #concept_1 {
    margin-top: 50px;
  }
}
#concept_1 .single {
  padding-bottom: 0;
}
#concept_1:before {
  content: "";
  display: block;
  position: absolute;
  background-repeat: no-repeat;
  margin: auto;
  width: 58%;
  height: 100%;
  background-image: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/27887/concept_1.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  right: 0;
  top: 0;
}
@media all and (max-width: 639px) {
  #concept_1:before {
    display: none;
  }
}
#concept_1 .top_1_item {
  width: 50%;
}
@media all and (max-width: 639px) {
  #concept_1 .top_1_item {
    width: 100%;
  }
}
#concept_1 .read {
  text-align: center;
  font-family: "Cormorant", serif;
  font-weight: 300;
  letter-spacing: 0.05em;
  line-height: 1em;
  font-size: 53px;
  font-size: 5.3rem;
  letter-spacing: 0.05em;
  line-height: 1em;
  color: #1d201f;
  font-weight: 500;
}
@media all and (max-width: 639px) {
  #concept_1 .read {
    font-family: "Cormorant", serif;
    font-weight: 300;
    letter-spacing: 0.05em;
    line-height: 1em;
    font-size: 35px;
    font-size: 3.5rem;
    letter-spacing: 0.05em;
    line-height: 1em;
  }
}
#concept_1 .read {
  text-align: left;
}
@media all and (max-width: 639px) {
  #concept_1 .read {
    text-align: center;
  }
}
#concept_1 .bg_w {
  background: #fff;
  padding-right: 60px;
  padding-top: 40px;
  padding-bottom: 60px;
  position: relative;
}
@media all and (max-width: 639px) {
  #concept_1 .bg_w {
    padding: 0;
  }
}
#concept_1 .top_1_item_sub_read {
  font-family: YakuHaMP, "Zen Old Mincho", serif;
  font-size: 23px;
  font-size: 2.3rem;
  font-weight: 400;
  color: #1d201f;
  margin-bottom: 30px;
  letter-spacing: 0.08em;
}
@media all and (max-width: 639px) {
  #concept_1 .top_1_item_sub_read {
    font-family: YakuHaMP, "Zen Old Mincho", serif;
    font-size: 19px;
    font-size: 1.9rem;
    font-weight: 400;
    text-align: center;
  }
}
#concept_1 img._sp {
  display: none;
}
@media all and (max-width: 639px) {
  #concept_1 img._sp {
    display: block;
    width: 100%;
  }
}
#concept_1 .main {
  font-family: YakuHaJP, "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 400;
  color: #1d201f;
  line-height: 2.3em;
  letter-spacing: 0;
}
@media all and (max-width: 639px) {
  #concept_1 .main {
    margin-top: 15px;
  }
}

#concept_2 {
  background: #f9f8f4;
  margin: 180px 0 80px;
  padding: 60px 0;
}
@media all and (max-width: 639px) {
  #concept_2 {
    margin: 90px 0 50px;
  }
}
#concept_2 .read {
  text-align: center;
  font-family: "Cormorant", serif;
  font-weight: 300;
  letter-spacing: 0.05em;
  line-height: 1em;
  font-size: 53px;
  font-size: 5.3rem;
  letter-spacing: 0.05em;
  line-height: 1em;
  color: #1d201f;
  font-weight: 500;
}
@media all and (max-width: 639px) {
  #concept_2 .read {
    font-family: "Cormorant", serif;
    font-weight: 300;
    letter-spacing: 0.05em;
    line-height: 1em;
    font-size: 35px;
    font-size: 3.5rem;
    letter-spacing: 0.05em;
    line-height: 1em;
  }
}
#concept_2 .concept_2_item {
  max-width: 961px;
  width: 100%;
  margin: 60px auto 0;
}
#concept_2 .concept_2_item:nth-child(n+2) {
  margin-top: 90px;
}
#concept_2 .concept_2_item .innerB {
  width: 85%;
  margin: auto;
}
@media all and (max-width: 639px) {
  #concept_2 .concept_2_item .innerB {
    width: 100%;
  }
}
#concept_2 .concept_2_item .innerB img {
  display: block;
  width: 100%;
}
#concept_2 .concept_2_item .innerB .yaksuhoku {
  font-family: YakuHaMP, "Zen Old Mincho", serif;
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 400;
  color: #1d201f;
  margin-top: 50px;
}
@media all and (max-width: 639px) {
  #concept_2 .concept_2_item .innerB .yaksuhoku {
    text-align: center;
  }
}
#concept_2 .concept_2_item .innerB .name {
  font-family: YakuHaMP, "Zen Old Mincho", serif;
  font-size: 23px;
  font-size: 2.3rem;
  font-weight: 400;
  color: #1d201f;
  margin-top: 10px;
}
@media all and (max-width: 639px) {
  #concept_2 .concept_2_item .innerB .name {
    text-align: center;
  }
}
#concept_2 .concept_2_item .innerB .name span {
  display: block;
  font-family: "Cormorant", serif;
  font-weight: 300;
  letter-spacing: 0.05em;
  line-height: 1em;
  font-size: 40px;
  font-size: 4rem;
  letter-spacing: 0.05em;
  line-height: 1em;
}
#concept_2 .concept_2_item .innerB a {
  display: block;
  font-family: "Cormorant", serif;
  font-weight: 300;
  letter-spacing: 0.05em;
  line-height: 1em;
  font-size: 18px;
  font-size: 1.8rem;
  letter-spacing: 0.05em;
  line-height: 1em;
  color: #1d201f;
  margin-top: 20px;
}
#concept_2 .concept_2_item .concept_2_item_messe {
  font-family: YakuHaJP, "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 400;
  color: #1d201f;
  margin-top: 40px;
  line-height: 2.3em;
}

#concept_3 .read {
  text-align: center;
  font-family: "Cormorant", serif;
  font-weight: 300;
  letter-spacing: 0.05em;
  line-height: 1em;
  font-size: 53px;
  font-size: 5.3rem;
  letter-spacing: 0.05em;
  line-height: 1em;
  color: #1d201f;
  font-weight: 500;
}
@media all and (max-width: 639px) {
  #concept_3 .read {
    font-family: "Cormorant", serif;
    font-weight: 300;
    letter-spacing: 0.05em;
    line-height: 1em;
    font-size: 35px;
    font-size: 3.5rem;
    letter-spacing: 0.05em;
    line-height: 1em;
  }
}
#concept_3 ul.gyara {
  display: flex;
  flex-wrap: wrap;
  margin-top: 50px;
}
#concept_3 ul.gyara li {
  width: 32%;
  margin-right: 2%;
}
@media all and (max-width: 639px) {
  #concept_3 ul.gyara li {
    width: 48%;
    margin-right: 0;
    margin-bottom: 50px;
  }
}
#concept_3 ul.gyara li:nth-child(3n) {
  margin-right: 0;
}
#concept_3 ul.gyara li:nth-child(n+4) {
  margin-top: 60px;
}
@media all and (max-width: 639px) {
  #concept_3 ul.gyara li:nth-child(n+4) {
    margin-top: 0;
  }
}
@media all and (max-width: 639px) {
  #concept_3 ul.gyara li:nth-child(even) {
    margin-left: auto;
  }
}
#concept_3 ul.gyara li a {
  display: block;
  width: 100%;
}
@media all and (max-width: 639px) {
  #concept_3 ul.gyara li a {
    height: 164px;
    line-height: 154px;
  }
}
#concept_3 ul.gyara li a img {
  width: 100%;
  height: auto;
}
#concept_3 ul.gyara li p {
  text-align: center;
  font-family: YakuHaMP, "Zen Old Mincho", serif;
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 400;
  color: #1d201f;
  margin-top: 6px;
}

/*--------------------------------------------------
MENU(menu.php)
----------------------------------------------------*/
#menu_1 .menu_1_item {
  max-width: 1040px;
  width: 100%;
  margin: 0 auto 0;
  border-bottom: 1px solid #d8d8d8;
  padding: 90px 20px;
}
@media all and (max-width: 639px) {
  #menu_1 .menu_1_item {
    padding: 60px 0;
  }
}
#menu_1 .menu_1_item .inner {
  display: flex;
  flex-wrap: wrap;
}
@media all and (max-width: 639px) {
  #menu_1 .menu_1_item .inner {
    display: block;
  }
}
#menu_1 .menu_1_item .inner .in_left {
  width: 37%;
}
@media all and (max-width: 639px) {
  #menu_1 .menu_1_item .inner .in_left {
    width: 100%;
  }
}
#menu_1 .menu_1_item .inner .in_left .menu_1_item_read {
  font-family: YakuHaMP, "Zen Old Mincho", serif;
  font-size: 17px;
  font-size: 1.7rem;
  font-weight: 400;
  color: #1d201f;
}
#menu_1 .menu_1_item .inner .in_left .menu_1_item_read span {
  font-family: "Cormorant", serif;
  font-weight: 300;
  letter-spacing: 0.05em;
  line-height: 1em;
  font-size: 32px;
  font-size: 3.2rem;
  letter-spacing: 0.05em;
  line-height: 1em;
  color: #1d201f;
  display: block;
}
#menu_1 .menu_1_item .inner .in_right {
  width: 60%;
  margin-left: auto;
}
@media all and (max-width: 639px) {
  #menu_1 .menu_1_item .inner .in_right {
    width: 100%;
    margin-top: 60px;
  }
}
#menu_1 .menu_1_item .inner .in_right .menu-list {
  list-style: none;
  padding: 0;
  width: 100%;
  margin: 0 auto;
  padding-left: 0;
}
#menu_1 .menu_1_item .inner .in_right .menu-list .menu-item {
  display: flex;
  align-items: baseline; /* 文字の底辺で揃える */
  margin-bottom: 15px;
  width: 100%;
}
@media all and (max-width: 639px) {
  #menu_1 .menu_1_item .inner .in_right .menu-list .menu-item {
    margin-bottom: 0;
    padding: 20px 0;
    border-bottom: 1px dotted #ccc;
    display: block;
  }
}
#menu_1 .menu_1_item .inner .in_right .menu-list .menu-item:after {
  content: "";
  order: 1; /* 名前と金額の間に強制割り込み */
  flex-grow: 1;
  border-bottom: 1px dotted #ccc;
  margin: 0 10px;
  position: relative;
  top: -4px;
}
@media all and (max-width: 639px) {
  #menu_1 .menu_1_item .inner .in_right .menu-list .menu-item:after {
    display: none;
  }
}
#menu_1 .menu_1_item .inner .in_right .menu-list .menu-item {
  /* 1: メニュー名 */
}
#menu_1 .menu_1_item .inner .in_right .menu-list .menu-item .menu-name {
  order: 0;
  white-space: nowrap;
  padding-right: 10px;
  font-family: YakuHaJP, "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 400;
  color: #1d201f;
}
#menu_1 .menu_1_item .inner .in_right .menu-list .menu-item {
  /* 3: 金額（右端に配置） */
}
#menu_1 .menu_1_item .inner .in_right .menu-list .menu-item .menu-price {
  order: 2;
  white-space: nowrap;
  padding-left: 10px;
  text-align: right;
  font-family: YakuHaJP, "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 400;
  color: #1d201f;
}
@media all and (max-width: 639px) {
  #menu_1 .menu_1_item .inner .in_right .menu-list .menu-item .menu-price {
    padding-left: 0;
  }
}
#menu_1 .menu_1_item .inner .in_right .menu_description {
  font-family: YakuHaJP, "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 400;
  color: #1d201f;
}
@media all and (max-width: 639px) {
  #menu_1 .menu_1_item .inner .in_right .menu_description {
    margin-top: 30px;
  }
}
#menu_1 .menu_1_item .inner .in_right a {
  display: block;
  background: #f9f8f4;
  max-width: 360px;
  width: 100%;
  margin-top: 40px;
  padding: 20px 0;
  transition: 0.4s;
}
#menu_1 .menu_1_item .inner .in_right a span {
  position: relative;
  font-family: YakuHaJP, "Zen Kaku Gothic New", sans-serif;
  font-size: 15px;
  font-size: 1.5rem;
  font-weight: 400;
  color: #1d201f;
  display: table;
  padding-right: 46px;
  margin: auto;
  transition: 0.4s;
}
#menu_1 .menu_1_item .inner .in_right a span:before {
  content: "";
  display: block;
  position: absolute;
  background-repeat: no-repeat;
  margin: auto;
  width: 36px;
  height: 15px;
  background-image: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/27887/link_icon.svg);
  margin: auto;
  top: 0;
  bottom: 0;
  right: 0;
}
#menu_1 .menu_1_item .inner .in_right a:hover {
  background: #74c7c0;
  transition: 0.4s;
}

/*--------------------------------------------------
SALON(salon.php)
----------------------------------------------------*/
#salon_1 .read {
  text-align: center;
  font-family: "Cormorant", serif;
  font-weight: 300;
  letter-spacing: 0.05em;
  line-height: 1em;
  font-size: 53px;
  font-size: 5.3rem;
  letter-spacing: 0.05em;
  line-height: 1em;
  color: #1d201f;
  font-weight: 500;
}
@media all and (max-width: 639px) {
  #salon_1 .read {
    font-family: "Cormorant", serif;
    font-weight: 300;
    letter-spacing: 0.05em;
    line-height: 1em;
    font-size: 35px;
    font-size: 3.5rem;
    letter-spacing: 0.05em;
    line-height: 1em;
  }
}
#salon_1 table {
  max-width: 689px;
  width: 100%;
  margin: 70px auto 0;
  border-top: 1px solid #d8d8d8;
}
#salon_1 table th,
#salon_1 table td {
  background: none;
  border: none;
  text-align: left;
  font-family: YakuHaJP, "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 400;
  color: #1d201f;
  padding: 20px 15px;
  border-bottom: 1px solid #d8d8d8;
}
@media all and (max-width: 639px) {
  #salon_1 table th,
  #salon_1 table td {
    display: block;
  }
}
@media all and (max-width: 639px) {
  #salon_1 table th {
    background: #f9f8f4;
  }
}

#access .read {
  text-align: center;
  font-family: "Cormorant", serif;
  font-weight: 300;
  letter-spacing: 0.05em;
  line-height: 1em;
  font-size: 53px;
  font-size: 5.3rem;
  letter-spacing: 0.05em;
  line-height: 1em;
  color: #1d201f;
  font-weight: 500;
}
@media all and (max-width: 639px) {
  #access .read {
    font-family: "Cormorant", serif;
    font-weight: 300;
    letter-spacing: 0.05em;
    line-height: 1em;
    font-size: 35px;
    font-size: 3.5rem;
    letter-spacing: 0.05em;
    line-height: 1em;
  }
}
#access ul.gyara {
  display: flex;
  flex-wrap: wrap;
  margin-top: 50px;
}
@media all and (max-width: 639px) {
  #access ul.gyara {
    display: block;
  }
}
#access ul.gyara li {
  width: 32%;
  margin-right: 2%;
}
@media all and (max-width: 639px) {
  #access ul.gyara li {
    width: 100%;
    margin-right: 0;
    margin-bottom: 50px;
  }
}
#access ul.gyara li:nth-child(3n) {
  margin-right: 0;
}
#access ul.gyara li:nth-child(n+4) {
  margin-top: 60px;
}
@media all and (max-width: 639px) {
  #access ul.gyara li:nth-child(n+4) {
    margin-top: 0;
  }
}
@media all and (max-width: 639px) {
  #access ul.gyara li:nth-child(even) {
    margin-left: auto;
  }
}
#access ul.gyara li a {
  display: block;
  width: 100%;
}
#access ul.gyara li a img {
  width: 100%;
  height: auto;
}
#access ul.gyara li p {
  font-family: YakuHaJP, "Zen Kaku Gothic New", sans-serif;
  font-size: 15px;
  font-size: 1.5rem;
  font-weight: 400;
  color: #1d201f;
  margin-top: 12px;
}

/*--------------------------------------------------
RECRUIT(recruit.php)
----------------------------------------------------*/
#recruit_1 .read {
  text-align: center;
  font-family: "Cormorant", serif;
  font-weight: 300;
  letter-spacing: 0.05em;
  line-height: 1em;
  font-size: 53px;
  font-size: 5.3rem;
  letter-spacing: 0.05em;
  line-height: 1em;
  color: #1d201f;
  font-weight: 500;
}
@media all and (max-width: 639px) {
  #recruit_1 .read {
    font-family: "Cormorant", serif;
    font-weight: 300;
    letter-spacing: 0.05em;
    line-height: 1em;
    font-size: 35px;
    font-size: 3.5rem;
    letter-spacing: 0.05em;
    line-height: 1em;
  }
}
#recruit_1 table {
  margin: 50px auto;
  border-top: 1px solid #eee;
}
#recruit_1 table th,
#recruit_1 table td {
  background: none;
  border: none;
  text-align: left;
  font-family: YakuHaJP, "Zen Kaku Gothic New", sans-serif;
  font-size: 15px;
  font-size: 1.5rem;
  font-weight: 400;
  color: #1d201f;
  border-bottom: 1px solid #eee;
  padding: 20px;
}
@media all and (max-width: 639px) {
  #recruit_1 table th,
  #recruit_1 table td {
    display: block;
  }
}
@media all and (max-width: 639px) {
  #recruit_1 table th {
    background: rgba(238, 238, 238, 0.5);
  }
}

/*--------------------------------------------------
BLOG(blog.php)
----------------------------------------------------*/
#blog_1 .read {
  text-align: center;
  font-family: "Cormorant", serif;
  font-weight: 300;
  letter-spacing: 0.05em;
  line-height: 1em;
  font-size: 53px;
  font-size: 5.3rem;
  letter-spacing: 0.05em;
  line-height: 1em;
  color: #1d201f;
  font-weight: 500;
}
@media all and (max-width: 639px) {
  #blog_1 .read {
    font-family: "Cormorant", serif;
    font-weight: 300;
    letter-spacing: 0.05em;
    line-height: 1em;
    font-size: 35px;
    font-size: 3.5rem;
    letter-spacing: 0.05em;
    line-height: 1em;
  }
}
#blog_1 ul.post_list {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  margin-top: 50px;
}
@media all and (max-width: 639px) {
  #blog_1 ul.post_list {
    width: 100%;
    display: block;
  }
}
#blog_1 ul.post_list li {
  width: 32%;
  position: relative;
  padding: 0;
  margin-right: 2%;
  box-sizing: border-box;
}
#blog_1 ul.post_list li:nth-child(3n) {
  margin-left: auto;
  margin-right: 0;
}
#blog_1 ul.post_list li:nth-child(n+4) {
  margin-top: 40px;
}
@media all and (max-width: 639px) {
  #blog_1 ul.post_list li:nth-child(n+4) {
    margin-top: 0;
  }
}
@media all and (max-width: 639px) {
  #blog_1 ul.post_list li {
    width: 100%;
    float: none;
    margin-bottom: 20px;
  }
}
#blog_1 ul.post_list li .thams {
  display: block;
  width: 100%;
  height: 240px;
  overflow: hidden;
  position: relative;
}
@media all and (max-width: 821px) {
  #blog_1 ul.post_list li .thams {
    height: 207px;
    line-height: 198px;
  }
}
@media all and (max-width: 639px) {
  #blog_1 ul.post_list li .thams {
    margin: auto;
  }
}
#blog_1 ul.post_list li .thams img {
  width: 100%;
  height: auto;
  object-fit: cover;
  vertical-align: middle;
  min-width: 100%;
  min-height: 100%;
  font-family: "object-fit: contain;";
}
#blog_1 ul.post_list li .title {
  font-family: YakuHaMP, "Zen Old Mincho", serif;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 400;
  position: relative;
  display: block;
  color: #1d201f;
  line-height: 1.6em;
  margin-top: 15px;
}
#blog_1 ul.post_list li .title span {
  font-family: YakuHaMP, "Zen Old Mincho", serif;
  font-size: 13px;
  font-size: 1.3rem;
  font-weight: 400;
  display: table;
  font-weight: 400;
  color: #1d201f;
}
#blog_1 .pages {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 60px;
}
#blog_1 .pages a {
  display: block;
  padding: 0 20px;
  font-family: YakuHaMP, "Zen Old Mincho", serif;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 400;
  color: #1d201f;
}

/*--------------------------------------------------
新着情報(topics_list.php)
----------------------------------------------------*/
#topics_1 {
  padding-top: 60px;
  padding-bottom: 60px;
}
#topics_1 .single_new {
  background: #fff;
}
#topics_1 .inner {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
@media all and (max-width: 639px) {
  #topics_1 .inner {
    display: block;
  }
}
#topics_1 .inner .left {
  width: 67%;
}
@media all and (max-width: 639px) {
  #topics_1 .inner .left {
    width: 100%;
  }
}
#topics_1 .inner .right {
  width: 27%;
  margin-left: auto;
}
@media all and (max-width: 639px) {
  #topics_1 .inner .right {
    width: 100%;
    margin: 50px 0 0;
  }
}
#topics_1 .inner .right .side_titem {
  font-family: "Cormorant", serif;
  font-weight: 300;
  letter-spacing: 0.05em;
  line-height: 1em;
  font-size: 25px;
  font-size: 2.5rem;
  letter-spacing: 0.05em;
  line-height: 1em;
  color: #74c7c0;
}
#topics_1 .inner .right .side_titem.sec {
  margin-top: 80px;
}
#topics_1 .inner .right .side_titem span {
  font-family: YakuHaMP, "Zen Old Mincho", serif;
  font-size: 15px;
  font-size: 1.5rem;
  font-weight: 400;
  font-weight: 400;
  display: block;
}
#topics_1 .inner .right ul.post_list li {
  border-bottom: 1px solid rgba(238, 238, 238, 0.2);
}
#topics_1 .inner .right ul.post_list li a {
  display: block;
  font-family: "Cormorant", serif;
  font-weight: 300;
  letter-spacing: 0.05em;
  line-height: 1em;
  font-size: 18px;
  font-size: 1.8rem;
  letter-spacing: 0.05em;
  line-height: 1em;
  position: relative;
  padding: 15px 10px;
  transition: 0.4s;
}
#topics_1 .inner .right ul.post_list li a .data {
  font-family: "Cormorant", serif;
  font-weight: 300;
  letter-spacing: 0.05em;
  line-height: 1em;
  font-size: 13px;
  font-size: 1.3rem;
  letter-spacing: 0.05em;
  line-height: 1em;
  color: #74c7c0;
  opacity: 0.5;
  position: relative;
}
#topics_1 .inner .right ul.post_list li a .data span {
  background: #ccc;
  color: #fff;
  font-family: YakuHaJP, "Zen Kaku Gothic New", sans-serif;
  font-size: 9px;
  font-size: 0.9rem;
  font-weight: 400;
  font-weight: 500;
  border-radius: 100px;
  display: inline-block;
  padding: 0 1.8em;
  position: absolute;
  top: 2px;
  left: 80px;
}
#topics_1 .inner .right ul.post_list li a .title {
  font-family: YakuHaMP, "Zen Old Mincho", serif;
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 400;
  font-weight: 400;
  color: #1d201f;
  display: block;
  margin-top: 4px;
  line-height: 1.8em;
}
#topics_1 .inner .right ul.post_list li a:hover {
  background: rgba(238, 238, 238, 0.4);
  transition: 0.4s;
}
#topics_1 .entry .data {
  font-family: "Cormorant", serif;
  font-weight: 300;
  letter-spacing: 0.05em;
  line-height: 1em;
  font-size: 13px;
  font-size: 1.3rem;
  letter-spacing: 0.05em;
  line-height: 1em;
  color: #74c7c0;
}
#topics_1 .entry .title {
  font-family: YakuHaMP, "Zen Old Mincho", serif;
  font-size: 21px;
  font-size: 2.1rem;
  font-weight: 400;
  color: #1d201f;
}
#topics_1 .entry .main_cont {
  font-family: YakuHaMP, "Zen Old Mincho", serif;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 400;
  margin-top: 30px;
  color: #1d201f;
}
#topics_1 .entry .main_cont img {
  max-width: 100%;
  display: block;
}/*# sourceMappingURL=style.css.map */