@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Cormorant:ital@0;1&family=EB+Garamond:ital,wght@0,400..800;1,400..800&family=Zen+Old+Mincho:wght@400;500;600;700;900&display=swap");
/* @import "_vars.scss"; */
/* font */
/* width */
/* color */
/* mixin */
/* @include circle; */
/* @include absPosition(5px, 20px, 10px, 15px); */
/*
a{
     @include linkColor(#3cf);
}
*/
/* @include bg-gradient; */
/*サイトのメインカラー*/
:root {
  /* ① ピンク系 */
  --grad-pink: linear-gradient(to right, #eab6c0, #f1cdc1);
  /* ② ブルー・グリーン系 */
  --grad-blue: linear-gradient(to right, #a7dcb9, #7cc6df);
  /* ③ グリーン・シアン系 */
  --grad-green: linear-gradient(to right, #b9dfa4, #8fced0);
  /* ④ イエロー系 */
  --grad-yellow: linear-gradient(to right, #f4e56f, #f0cf57);
}

/**
  @fonts.scss fonts 
--------------------------------------------------------
@include sec-read(); 
@include base-text($size); 

in your CSS
--------------------------------------------------------- */
/*-------------------------------------------
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;
  }
}
/**

  @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 base-text_link(); 

in your CSS
--------------------------------------------------------- */
/**
  @align-height
--------------------------------------------------------
@include align-height(); in your CSS
--------------------------------------------------------- */
/*----------------------------------------------------
レイアウトのみ
-------------------------------------------------------*/
.innerB {
  display: table;
  width: 100%;
  table-layout: fixed;
}
@media all and (max-width: 639px) {
  .innerB {
    display: block;
  }
}
.innerB .left,
.innerB .right {
  width: 48%;
  float: left;
}
@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%;
  float: left;
}
@media all and (max-width: 639px) {
  .innerB .left_s {
    width: 100%;
    float: none;
  }
}
.innerB .right_l {
  width: 66%;
  float: left;
  margin-left: 4%;
}
@media all and (max-width: 639px) {
  .innerB .right_l {
    margin-left: 0;
    margin-top: 15px;
    width: 100%;
    float: none;
  }
}

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: YakuHanMP, "EB Garamond", "Zen Old Mincho", serif;
  font-size: 15px;
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  font-weight: 400;
}

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

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

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

.tbox {
  border: 2px solid #606060;
  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: 333;
  /*&.fixd {
       background: #fff;
       box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
       @include for-size(phone-only){

       }
    }*/
}
@media all and (max-width: 639px) {
  header {
    padding: 0;
  }
}
header #head {
  padding: 50px 30px;
  margin: auto;
  border-radius: 6px;
  /* dropdownmenu */
}
@media all and (max-width: 639px) {
  header #head {
    padding-left: 0;
    background: none;
    margin-top: 0;
    padding: 0;
    border: none;
    top: 11px;
  }
}
header #head .logo {
  width: 278px;
  transition: 0.4s;
  position: absolute;
  top: 39px;
  box-sizing: border-box;
}
@media all and (max-width: 913px) {
  header #head .logo {
    width: 215px;
  }
}
@media all and (max-width: 639px) {
  header #head .logo {
    width: auto;
    position: relative;
    top: auto;
    padding: 0;
    left: auto;
  }
}
header #head .logo a {
  display: block;
  width: 100%;
  position: relative;
}
@media all and (max-width: 639px) {
  header #head .logo a {
    width: 146px;
    margin-top: 15px;
    margin-left: 10px;
  }
}
header #head .logo img {
  width: 100%;
  display: block;
  margin: auto;
}
@media all and (max-width: 639px) {
  header #head .logo img {
    width: auto;
    margin-top: 0;
  }
}
header #head .head_nav {
  display: flex;
  flex-wrap: wrap;
  z-index: 2;
  justify-content: end;
  max-width: 870px;
  margin-left: auto;
  margin-top: 20px;
}
@media all and (max-width: 913px) {
  header #head .head_nav {
    display: none;
  }
}
header #head .head_nav li:nth-child(n+2) {
  margin-left: 30px;
}
header #head .head_nav li a {
  display: block;
  color: #191919;
  font-family: YakuHanMP, "EB Garamond", "Zen Old Mincho", serif;
  font-size: 16px;
  font-size: 1.6rem;
  letter-spacing: 0.1em;
  font-weight: 400;
  letter-spacing: 0;
  font-weight: 400;
  text-align: center;
  position: relative;
}
header #head .head_nav li a.bg_a span {
  display: block;
  position: relative;
  z-index: 2;
}
header #head .head_nav li a.bg_a:before {
  content: "";
  display: block;
  position: absolute;
  background-repeat: no-repeat;
  margin: auto;
  margin: auto;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 94px;
  height: 94px;
  filter: blur(20px);
  z-index: 0;
  border-radius: 50%;
  background: var(--grad-pink);
  opacity: 0.5;
}
header #head .head_nav li a.bg_a.blue_g:before {
  background: var(--grad-blue);
}
header #head .head_nav li a.bg_a.green_g:before {
  background: var(--grad-green);
}
header #head .head_nav li a.bg_a.yellow_g:before {
  background: var(--grad-yellow);
}
header #head .head_nav li a:hover, header #head .head_nav li a.active {
  color: #606060;
}
header #head .contact_link {
  position: absolute;
  width: 150px;
  display: block;
  background: #606060;
  color: #fff;
  font-family: "Cormorant", serif;
  font-weight: 500;
  font-size: 14px;
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  font-weight: 300;
  text-align: center;
  right: 2%;
  top: 25px;
  padding: 7px 0;
  border-radius: 5px;
}
@media all and (max-width: 639px) {
  header #head .contact_link {
    display: none;
  }
}
header #head .head_nav li ul {
  position: absolute;
  top: 80px;
  display: block !important;
  padding-top: 0;
}
header #head .head_nav li ul li {
  visibility: hidden;
  overflow: hidden;
  display: block !important;
  width: 100%;
  height: auto;
  border-right: 0px solid #ddd;
  border-left: 0px solid #ddd;
  padding: 0 0 !important;
  margin: 0 1px 1px !important;
  width: 190px !important;
}
header #head .head_nav li ul li a {
  background: #fff;
  padding: 10px 0 10px 20px !important;
  margin: 0 0px !important;
  display: block;
  width: 100%;
  text-align: left;
  position: relative;
  font-family: YakuHanMP, "Zen Old Mincho", serif;
  font-size: 15px;
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  font-weight: 600;
  font-size: 15px !important;
  color: #191919;
}
header #head .head_nav li ul li a:before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f0da";
  position: absolute;
  left: 5px;
  top: 10px;
  color: #606060;
}
header #head .head_nav li ul li a:hover {
  color: #606060;
}
header #head .head_nav li:hover ul li {
  visibility: visible;
  overflow: visible;
  height: 36px;
}

/* nav */
#navi {
  margin: auto;
  width: auto;
}
#navi ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: -4px;
}
#navi li {
  list-style: none;
  text-align: center;
  margin: 0;
  font-family: YakuHanMP, "EB Garamond", "Zen Old Mincho", serif;
  font-size: 14px;
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  font-weight: 400;
  padding: 16px 44px 17px;
  letter-spacing: 0.2rem;
}
#navi li a {
  width: 100%;
  height: 100%;
  line-height: 1.3;
  display: block;
  text-align: center;
  border: none;
  letter-spacing: 1px;
  position: relative;
  cursor: pointer;
  color: #f9f8f4;
  font-family: YakuHanMP, "EB Garamond", "Zen Old Mincho", serif;
  font-size: 20px;
  font-size: 2rem;
  letter-spacing: 0.1em;
  font-weight: 400;
  font-weight: bold;
}
#navi li a span {
  display: block;
  font-family: "Cormorant", serif;
  font-weight: 500;
  font-size: 17px;
  font-size: 1.7rem;
  letter-spacing: 0.1em;
  font-weight: 300;
  color: #191919;
}
#navi li a img {
  display: block;
  width: auto;
  margin: 0 auto 10px;
  height: 32px;
}
#navi li a:hover {
  color: #606060;
  opacity: 0.8;
}

/* /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;
  position: relative;
}
#contentwrap.kasou {
  background: #e4e8ea;
}

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

#page-top {
  position: fixed;
  bottom: 50px;
  right: 50px;
  z-index: 990;
  background: #fff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  text-align: center;
  line-height: 50px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
@media all and (max-width: 639px) {
  #page-top {
    bottom: 15px;
    right: 15px;
  }
}
#page-top a {
  display: block;
}
#page-top a img {
  display: block;
  width: 92px;
}
@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: #606060;
  color: #fff;
}
table td {
  padding: 5px 10px;
  vertical-align: middle;
  border: #ddd 1px solid;
}
table td b {
  color: #606060;
  font-size: 12px;
}

@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: #f9f8f4;
  font-weight: bold;
  border: 2px solid #f9f8f4;
}
#mailform button:before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f0e0";
  margin-right: 6px;
}
#mailform button:hover {
  background: #fff;
  color: #f9f8f4;
}
#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 #606060;
  border-bottom: 3px solid #606060;
  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: 96%;
  /* IE8以下とAndroid4.3以下用フォールバック */
  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%;
  }
}

#top_main {
  width: 100%;
  position: relative;
  height: auto;
}
@media all and (max-width: 639px) {
  #top_main {
    height: auto;
    margin-top: 26px;
    padding-top: 0;
  }
}
#top_main .top_main_vis {
  position: relative;
  width: 96%;
  margin: auto;
}
#top_main .top_main_vis:before, #top_main .top_main_vis:after {
  content: "";
  display: block;
  position: absolute;
  background-repeat: no-repeat;
  margin: auto;
  width: 100%;
  height: 35px;
  left: 0;
  z-index: 3;
  background-size: 100%;
}
#top_main .top_main_vis:before {
  background-image: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/27580/main_line_top.svg);
  top: 0;
}
#top_main .top_main_vis:after {
  background-image: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/27580/main_line_bottom.svg);
  bottom: 0;
}
@media all and (max-width: 639px) {
  #top_main .top_main_vis:after {
    background-position: bottom;
  }
}
@media all and (max-width: 639px) {
  #top_main .top_main_vis {
    width: 100%;
  }
}
#top_main .top_main_vis .top_main_nav {
  display: flex;
  flex-wrap: wrap;
}
#top_main .top_main_vis .top_main_nav .top_main_nav_item {
  width: 24.25%;
  height: 650px;
  margin-right: 1%;
  position: relative;
  overflow: hidden;
}
#top_main .top_main_vis .top_main_nav .top_main_nav_item:last-child {
  margin-right: 0;
}
@media all and (max-width: 639px) {
  #top_main .top_main_vis .top_main_nav .top_main_nav_item {
    width: 50%;
    height: 300px;
    margin-right: 0;
  }
}
#top_main .top_main_vis .top_main_nav .top_main_nav_item::after {
  content: "";
  display: block;
  position: absolute;
  background-repeat: no-repeat;
  margin: auto;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}
#top_main .top_main_vis .top_main_nav .top_main_nav_item a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 0 20px;
  text-decoration: none;
  position: relative;
  z-index: 2;
}
@media all and (max-width: 639px) {
  #top_main .top_main_vis .top_main_nav .top_main_nav_item a {
    box-sizing: border-box;
  }
}
#top_main .top_main_vis .top_main_nav .top_main_nav_item a::before {
  content: "";
  display: block;
  position: absolute;
  background-repeat: no-repeat;
  margin: auto;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: transform 0.8s ease;
  z-index: -1;
}
#top_main .top_main_vis .top_main_nav .top_main_nav_item a p {
  font-family: YakuHanMP, "Zen Old Mincho", serif;
  font-size: 25px;
  font-size: 2.5rem;
  letter-spacing: 0.1em;
  color: #fff;
  text-align: center;
  width: 100%;
  margin-bottom: 15px;
  line-height: 1.4;
  text-wrap: balance;
  word-break: auto-phrase;
}
@media all and (max-width: 639px) {
  #top_main .top_main_vis .top_main_nav .top_main_nav_item a p {
    font-family: YakuHanMP, "Zen Old Mincho", serif;
    font-size: 15px;
    font-size: 1.5rem;
    letter-spacing: 0.1em;
  }
}
#top_main .top_main_vis .top_main_nav .top_main_nav_item a img {
  display: block;
  width: 45px;
  margin: 0 auto;
}
#top_main .top_main_vis .top_main_nav .top_main_nav_item:hover a::before {
  transform: scale(1.1);
}
#top_main .top_main_vis .top_main_nav .top_main_nav_item.bg-nao a::before {
  background-image: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/27580/bg-nao.jpg);
}
#top_main .top_main_vis .top_main_nav .top_main_nav_item.bg-kanki a::before {
  background-image: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/27580/bg-kanki.jpg);
}
#top_main .top_main_vis .top_main_nav .top_main_nav_item.bg-toukyou a::before {
  background-image: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/27580/bg-toukyou.jpg);
}
#top_main .top_main_vis .top_main_nav .top_main_nav_item.bg-ex a::before {
  background-image: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/27580/bg-ex.jpg);
}
#top_main .top_main_vis .under_photo {
  display: block;
  width: 100%;
}
#top_main .top_main_read {
  text-align: center;
  font-family: YakuHanMP, "EB Garamond", "Zen Old Mincho", serif;
  font-size: 25px;
  font-size: 2.5rem;
  letter-spacing: 0.1em;
  font-weight: 400;
  color: #191919;
  margin-top: 40px;
}
#top_main .top_main_read span {
  display: block;
  font-family: "Cormorant", serif;
  font-weight: 500;
  font-size: 81px;
  font-size: 8.1rem;
  letter-spacing: 0.1em;
  letter-spacing: 0.03em;
  line-height: 1em;
  margin-top: 12px;
}
@media all and (max-width: 639px) {
  #top_main .top_main_read span {
    font-family: "Cormorant", serif;
    font-weight: 500;
    font-size: 41px;
    font-size: 4.1rem;
    letter-spacing: 0.1em;
    letter-spacing: 0.03em;
    line-height: 1em;
  }
}
#top_main .main {
  text-align: center;
  font-family: YakuHanMP, "EB Garamond", "Zen Old Mincho", serif;
  font-size: 19px;
  font-size: 1.9rem;
  letter-spacing: 0.1em;
  font-weight: 400;
  color: #606060;
  margin-top: 40px;
}
@media all and (max-width: 639px) {
  #top_main .main {
    font-family: YakuHanMP, "EB Garamond", "Zen Old Mincho", serif;
    font-size: 15px;
    font-size: 1.5rem;
    letter-spacing: 0.1em;
    font-weight: 400;
  }
}
#top_main.page_unde {
  background: linear-gradient(180deg, #ffffff 0%, #ffffff 50%, #f0f4f2 50%, #f0f4f2 100%);
}

#top_1 {
  position: relative;
  padding-top: 50px;
}
#top_1 .single {
  position: relative;
}
#top_1 .single:before {
  content: "";
  display: block;
  position: absolute;
  background-repeat: no-repeat;
  margin: auto;
  width: 1220px;
  height: 893px;
  margin: auto;
  top: 0;
  bottom: 0;
  left: 0;
  bottom: 0;
  background-image: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/27580/top_1_bg.svg);
  background-size: cover;
}
#top_1 .read {
  color: #191919;
  font-family: YakuHanMP, "Zen Old Mincho", serif;
  font-size: 25px;
  font-size: 2.5rem;
  letter-spacing: 0.1em;
  text-align: center;
  position: relative;
  z-index: 2;
}
#top_1 .innerB {
  margin-top: 80px;
  position: relative;
  z-index: 2;
}
#top_1 .innerB img {
  display: block;
  width: 100%;
}
#top_1 .name {
  display: table;
  border-bottom: 1px solid #191919;
  font-family: YakuHanMP, "EB Garamond", "Zen Old Mincho", serif;
  font-size: 25px;
  font-size: 2.5rem;
  letter-spacing: 0.1em;
  font-weight: 400;
  padding: 0 30px 5px;
}
#top_1 .name span {
  font-family: YakuHanMP, "EB Garamond", "Zen Old Mincho", serif;
  font-size: 15px;
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  font-weight: 400;
  margin-right: 10px;
}
#top_1 .main {
  color: #191919;
  font-family: YakuHanMP, "EB Garamond", "Zen Old Mincho", serif;
  font-size: 15px;
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  font-weight: 400;
  line-height: 2.1em;
  margin-top: 30px;
}

#top_2,
#topics_list_page {
  padding-top: 60px;
  padding-bottom: 130px;
}
#top_2 .single_new,
#topics_list_page .single_new {
  background: #fff;
  padding: 40px 0;
  border-radius: 10px;
}
#top_2 .read,
#topics_list_page .read {
  color: #191919;
  font-family: YakuHanMP, "EB Garamond", "Zen Old Mincho", serif;
  font-size: 25px;
  font-size: 2.5rem;
  letter-spacing: 0.1em;
  font-weight: 400;
  text-align: center;
  position: relative;
  z-index: 2;
}
#top_2 ul,
#topics_list_page ul {
  max-width: 950px;
  width: 100%;
  margin: 60px auto 0;
  border-top: 1px solid #d8d8d8;
}
#top_2 ul li,
#topics_list_page ul li {
  height: 135px;
  position: relative;
  border-bottom: 1px solid #d8d8d8;
  padding: 34px 30px;
}
#top_2 ul li .inenr,
#topics_list_page ul li .inenr {
  display: flex;
  flex-wrap: wrap;
}
#top_2 ul li .inenr .in_text,
#topics_list_page ul li .inenr .in_text {
  width: 70%;
  margin-left: auto;
}
#top_2 ul li .inenr .in_photo,
#topics_list_page ul li .inenr .in_photo {
  width: 25%;
  height: 135px;
  overflow: hidden;
  position: relative;
}
#top_2 ul li .inenr .in_photo img,
#topics_list_page ul li .inenr .in_photo img {
  width: 100%;
  height: auto;
  object-fit: cover;
  vertical-align: middle;
  min-width: 100%;
  min-height: 100%;
  font-family: "object-fit: contain;";
}
#top_2 ul li a,
#topics_list_page ul li a {
  display: block;
}
#top_2 ul li .list_cont,
#topics_list_page ul li .list_cont {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  height: 100%;
  box-sizing: border-box;
}
#top_2 ul li .list_cont .data,
#topics_list_page ul li .list_cont .data {
  font-family: "EB Garamond", serif;
  font-weight: 500;
  font-size: 15px;
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  font-weight: 400;
  color: #606060;
  display: block;
}
#top_2 ul li .list_cont .title,
#topics_list_page ul li .list_cont .title {
  font-family: YakuHanMP, "EB Garamond", "Zen Old Mincho", serif;
  font-size: 19px;
  font-size: 1.9rem;
  letter-spacing: 0.1em;
  font-weight: 400;
  letter-spacing: 0;
  color: #191919;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media all and (max-width: 639px) {
  #top_2 ul li .list_cont .title,
  #topics_list_page ul li .list_cont .title {
    font-family: YakuHanMP, "EB Garamond", "Zen Old Mincho", serif;
    font-size: 15px;
    font-size: 1.5rem;
    letter-spacing: 0.1em;
    font-weight: 400;
  }
}
#top_2 .more,
#topics_list_page .more {
  display: block;
  margin: 80px auto 0;
}
#top_2 .more span,
#topics_list_page .more span {
  display: table;
  margin: auto;
  position: relative;
  padding-right: 55px;
  color: #191919;
  font-family: YakuHanMP, "EB Garamond", "Zen Old Mincho", serif;
  font-size: 19px;
  font-size: 1.9rem;
  letter-spacing: 0.1em;
  font-weight: 400;
}
@media all and (max-width: 639px) {
  #top_2 .more span,
  #topics_list_page .more span {
    font-family: YakuHanMP, "EB Garamond", "Zen Old Mincho", serif;
    font-size: 15px;
    font-size: 1.5rem;
    letter-spacing: 0.1em;
    font-weight: 400;
  }
}
#top_2 .more span:before,
#topics_list_page .more span:before {
  content: "";
  display: block;
  position: absolute;
  background-repeat: no-repeat;
  margin: auto;
  width: 45px;
  height: 21px;
  background-image: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/27580/linkicon_b.svg);
  margin: auto;
  top: 0;
  bottom: 0;
  right: 0;
}
#top_2 .links,
#topics_list_page .links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
@media all and (max-width: 639px) {
  #top_2 .links,
  #topics_list_page .links {
    display: block;
  }
}
#top_2 .links .links_item,
#topics_list_page .links .links_item {
  width: 371px;
  background: var(--grad-pink);
  padding: 6px;
}
@media all and (max-width: 639px) {
  #top_2 .links .links_item,
  #topics_list_page .links .links_item {
    width: 100%;
  }
}
#top_2 .links .links_item.green_g,
#topics_list_page .links .links_item.green_g {
  margin-left: 40px;
  background: var(--grad-green);
}
@media all and (max-width: 639px) {
  #top_2 .links .links_item.green_g,
  #topics_list_page .links .links_item.green_g {
    margin: 10px 0 0;
  }
}
#top_2 .links .links_item a,
#topics_list_page .links .links_item a {
  display: block;
  background: rgba(255, 255, 255, 0.8);
  padding: 20px;
}
#top_2 .links .links_item a span,
#topics_list_page .links .links_item a span {
  display: table;
  margin: auto;
  position: relative;
  padding-right: 55px;
  color: #191919;
  font-family: YakuHanMP, "EB Garamond", "Zen Old Mincho", serif;
  font-size: 16px;
  font-size: 1.6rem;
  letter-spacing: 0.1em;
  font-weight: 400;
}
#top_2 .links .links_item a span:before,
#topics_list_page .links .links_item a span:before {
  content: "";
  display: block;
  position: absolute;
  background-repeat: no-repeat;
  margin: auto;
  width: 45px;
  height: 21px;
  background-image: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/27580/linkicon_b.svg);
  margin: auto;
  top: 0;
  bottom: 0;
  right: 0;
}
#top_2 .pages,
#topics_list_page .pages {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 50px;
}
#top_2 .pages .page_next,
#top_2 .pages .page_prev,
#topics_list_page .pages .page_next,
#topics_list_page .pages .page_prev {
  width: 168px;
  text-align: center;
  color: #191919;
  font-family: YakuHanMP, "EB Garamond", "Zen Old Mincho", serif;
  font-size: 14px;
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  font-weight: 400;
  border: 1px solid #191919;
  padding: 10px 0;
  border-radius: 100px;
  margin: 0 5px;
}

#top_2 .pages {
  display: none;
}

footer {
  position: relative;
}
footer #foot_cont {
  background-image: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/27580/foot_bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 40px 0 20px;
}
footer #foot_cont .foot_logo {
  display: block;
  margin: auto;
  max-width: 400px;
  width: 70%;
  margin: auto;
}
footer #foot_cont .info {
  text-align: center;
  margin-top: 50px;
  font-family: YakuHanMP, "EB Garamond", "Zen Old Mincho", serif;
  font-size: 15px;
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  font-weight: 400;
  color: #191919;
  text-wrap: balance;
  word-break: auto-phrase;
}
footer #foot_cont .foot_tel {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px auto 0;
  font-family: "EB Garamond", serif;
  font-weight: 500;
  font-size: 42px;
  font-size: 4.2rem;
  letter-spacing: 0.1em;
  font-weight: 300;
  color: #606060;
  line-height: 1;
}
@media all and (max-width: 639px) {
  footer #foot_cont .foot_tel {
    display: block;
  }
}
footer #foot_cont .foot_tel span {
  display: inline-block;
  font-family: YakuHanMP, "EB Garamond", "Zen Old Mincho", serif;
  font-size: 13px;
  font-size: 1.3rem;
  letter-spacing: 0.1em;
  font-weight: 400;
  line-height: 1em;
  border: 1px solid #606060;
  padding: 5px 20px;
  border-radius: 100px;
  margin-right: 5px;
}
@media all and (max-width: 639px) {
  footer #foot_cont .foot_tel span {
    display: table;
    margin: auto;
  }
}
footer #foot_cont .tel_bottom {
  font-family: YakuHanMP, "EB Garamond", "Zen Old Mincho", serif;
  font-size: 15px;
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  font-weight: 400;
  color: #606060;
  text-align: center;
  margin-top: 8px;
  text-wrap: balance;
  word-break: auto-phrase;
}
footer .foot_nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 50px;
}
@media all and (max-width: 639px) {
  footer .foot_nav {
    display: none;
  }
}
footer .foot_nav li:nth-child(n+2) {
  margin-left: 20px;
}
footer .foot_nav li a {
  display: block;
  color: #191919;
  font-family: YakuHanMP, "EB Garamond", "Zen Old Mincho", serif;
  font-size: 15px;
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  font-weight: 400;
}
footer .copy {
  font-family: YakuHanMP, "EB Garamond", "Zen Old Mincho", serif;
  font-size: 13px;
  font-size: 1.3rem;
  letter-spacing: 0.1em;
  font-weight: 400;
  letter-spacing: 0;
  font-weight: 400;
  z-index: 2;
  color: #fff;
  display: block;
  text-align: center;
  width: 100%;
}
@media all and (max-width: 639px) {
  footer .copy {
    text-align: center;
  }
}

#nav_right {
  position: fixed;
  padding: 20px 15px 25px;
  background: #606060;
  right: 0;
  width: 96px;
  height: 82px;
  z-index: 99999;
  top: 82px;
}
@media all and (max-width: 639px) {
  #nav_right {
    width: 76px;
    height: 62px;
    padding: 14px 15px 25px;
    top: auto;
    bottom: 62px;
    display: none;
  }
}
#nav_right a {
  display: block;
  text-align: center;
  font-family: YakuHanMP, "EB Garamond", "Zen Old Mincho", serif;
  font-size: 13px;
  font-size: 1.3rem;
  letter-spacing: 0.1em;
  font-weight: 400;
  line-height: 1em;
  color: #475950;
}
@media all and (max-width: 639px) {
  #nav_right a {
    font-family: YakuHanMP, "EB Garamond", "Zen Old Mincho", serif;
    font-size: 10px;
    font-size: 1rem;
    letter-spacing: 0.1em;
    font-weight: 400;
  }
}
#nav_right a i {
  display: block;
  font-size: 23px;
  margin-bottom: 10px;
}
@media all and (max-width: 639px) {
  #nav_right a i {
    font-weight: 17px;
  }
}

#hanb_nav {
  position: fixed;
  padding: 15px 15px 40px;
  right: 0;
  width: 96px;
  height: 82px;
  z-index: 99999;
  display: none;
  opacity: 0;
  transition: 0.8s;
  border-radius: 100px 0 0 100px;
}
@media all and (max-width: 913px) {
  #hanb_nav {
    display: block;
    opacity: 1;
  }
}
@media all and (max-width: 639px) {
  #hanb_nav {
    width: 76px;
    height: 62px;
    right: 0;
    transition: 0.8s;
  }
}
#hanb_nav.fixd {
  transition: 0.8s;
}

.menu {
  position: fixed;
  height: 20px;
  right: 35px;
  top: 32px;
  width: 30px;
  cursor: pointer;
  cursor: hand;
}
@media all and (max-width: 639px) {
  .menu {
    right: 23px;
    top: 18px;
  }
}

.menu__line {
  background: #191919;
  display: block;
  height: 2px;
  position: absolute;
  transition: transform 0.3s;
  width: 100%;
}

.menu__line--center {
  top: 9px;
}

.menu__line--bottom {
  bottom: 0;
}

.menu__line--top.active {
  top: 8px;
  transform: rotate(45deg);
}

.menu__line--center.active {
  transform: scaleX(0);
}

.menu__line--bottom.active {
  bottom: 10px;
  transform: rotate(135deg);
}

/*gnav*/
.gnav {
  opacity: 0;
  height: 100%;
  position: fixed;
  width: 100%;
  z-index: 999;
  top: 0;
  left: 0;
  transform: translateY(-200%);
  transition: 0.4s cubic-bezier(0.26, 0.06, 0, 1) all;
}
.gnav.is-active {
  transform: translateY(0);
  opacity: 1;
  z-index: 2222;
}
.gnav .gnav__wrap {
  padding: 70px 0;
  display: flex;
  height: 100%;
  justify-content: center;
  position: fixed;
  flex-direction: column;
  width: 100%;
  background: #606060;
}
@media all and (max-width: 639px) {
  .gnav .gnav__wrap {
    justify-content: flex-start;
    padding: 40px 0 40px;
  }
}
.gnav .gnav__wrap .sp-logo {
  max-width: 160px;
  margin: 0 auto 50px;
}
.gnav .gnav__wrap .sp-logo img {
  max-width: 100%;
}
@media all and (max-width: 639px) {
  .gnav .gnav__wrap .sp-logo {
    max-width: 120px;
  }
}

.gnav__menu {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  max-width: 1000px;
  padding: 0 20px;
  margin: 0 auto;
  box-sizing: border-box;
}
@media all and (max-width: 639px) {
  .gnav__menu {
    display: block;
  }
}
.gnav__menu .gnav__menu__item {
  width: 30%;
  margin-right: 5%;
}
.gnav__menu .gnav__menu__item:nth-child(3n) {
  margin-right: 0;
}
.gnav__menu .gnav__menu__item:nth-child(n+4) {
  margin-top: 60px;
}
@media all and (max-width: 639px) {
  .gnav__menu .gnav__menu__item:nth-child(n+4) {
    margin-top: 0;
  }
}
@media all and (max-width: 639px) {
  .gnav__menu .gnav__menu__item {
    display: block;
    width: 100%;
    margin-right: 0;
  }
}
.gnav__menu .gnav__menu__item .item_read {
  color: #fff;
  text-decoration: none;
  transition: 0.5s;
  font-family: YakuHanMP, "EB Garamond", "Zen Old Mincho", serif;
  font-size: 16px;
  font-size: 1.6rem;
  letter-spacing: 0.1em;
  font-weight: 400;
  font-weight: 500;
  padding: 0;
  display: block;
  letter-spacing: 0;
  line-height: 1.2em;
  padding: 15px 0;
}
.gnav__menu .gnav__menu__item .item_read.js-sp-parent {
  position: relative;
  display: block;
  cursor: pointer;
}
.gnav__menu .gnav__menu__item .item_read.js-sp-parent:after {
  font-family: "Font Awesome 5 Free";
  content: "\f067";
  font-weight: 900;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: #e4e8ea;
}
.gnav__menu .gnav__menu__item .item_read.js-sp-parent.is-open:after {
  content: "\f068";
}
.gnav__menu .gnav__menu__item .gnav__menu_sub {
  display: none;
}
.gnav__menu .gnav__menu__item .gnav__menu_sub li {
  margin-top: 8px;
}
.gnav__menu .gnav__menu__item .gnav__menu_sub li:first-child {
  margin-top: 0;
}
.gnav__menu .gnav__menu__item .gnav__menu_sub li a {
  display: block;
  font-family: YakuHanMP, "Zen Old Mincho", serif;
  font-size: 15px;
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  color: #191919;
  font-weight: 500;
  text-align: left;
}

.gnav__menu__item a:hover {
  color: #000;
}

/*--------------------------------------------------
下層ページ共通部分
----------------------------------------------------*/
.page_title {
  position: relative;
  margin-top: 50px;
}
.page_title:before {
  content: "";
  display: block;
  position: absolute;
  background-repeat: no-repeat;
  margin: auto;
  margin: auto;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 266px;
  height: 266px;
  filter: blur(20px);
  z-index: 0;
  border-radius: 50%;
  background: var(--grad-pink);
  opacity: 0.5;
  z-index: 4;
}
.page_title.blue_g:before {
  background: var(--grad-blue);
}
.page_title.green_g:before {
  background: var(--grad-green);
}
.page_title.yellow_g:before {
  background: var(--grad-yellow);
}
.page_title .page_title_text {
  text-align: center;
  font-family: YakuHanMP, "EB Garamond", "Zen Old Mincho", serif;
  font-size: 29px;
  font-size: 2.9rem;
  letter-spacing: 0.1em;
  font-weight: 400;
  color: #191919;
  margin-top: 40px;
  position: relative;
  z-index: 4;
}
@media all and (max-width: 639px) {
  .page_title .page_title_text {
    font-family: YakuHanMP, "EB Garamond", "Zen Old Mincho", serif;
    font-size: 18px;
    font-size: 1.8rem;
    letter-spacing: 0.1em;
    font-weight: 400;
  }
}
.page_title .page_title_text span {
  display: block;
  font-family: "Cormorant", serif;
  font-weight: 500;
  font-size: 62px;
  font-size: 6.2rem;
  letter-spacing: 0.1em;
  letter-spacing: 0.03em;
  line-height: 1em;
  margin-top: 12px;
}
@media all and (max-width: 639px) {
  .page_title .page_title_text span {
    font-family: "Cormorant", serif;
    font-weight: 500;
    font-size: 32px;
    font-size: 3.2rem;
    letter-spacing: 0.1em;
  }
}

/*--------------------------------------------------
NAOコーラスグループ(nao-chorus.php)
----------------------------------------------------*/
#nao-chorus_1 {
  margin-top: 30px;
}
#nao-chorus_1 .read {
  text-align: center;
  font-family: YakuHanMP, "EB Garamond", "Zen Old Mincho", serif;
  font-size: 26px;
  font-size: 2.6rem;
  letter-spacing: 0.1em;
  font-weight: 400;
  color: #191919;
}
@media all and (max-width: 639px) {
  #nao-chorus_1 .read {
    font-family: YakuHanMP, "EB Garamond", "Zen Old Mincho", serif;
    font-size: 18px;
    font-size: 1.8rem;
    letter-spacing: 0.1em;
    font-weight: 400;
    position: relative;
    z-index: 9;
  }
}
#nao-chorus_1 .main {
  text-align: center;
  font-family: YakuHanMP, "EB Garamond", "Zen Old Mincho", serif;
  font-size: 16px;
  font-size: 1.6rem;
  letter-spacing: 0.1em;
  font-weight: 400;
  color: #191919;
  line-height: 3.3em;
  margin-top: 50px;
  text-wrap: balance;
  word-break: auto-phrase;
}
@media all and (max-width: 639px) {
  #nao-chorus_1 .main {
    font-family: YakuHanMP, "EB Garamond", "Zen Old Mincho", serif;
    font-size: 15px;
    font-size: 1.5rem;
    letter-spacing: 0.1em;
    font-weight: 400;
    line-height: 2em;
  }
}

#nao-chorus_2 .in_info {
  max-width: 1032px;
  background: #fff;
  padding: 6px;
  border-radius: 10px;
}
#nao-chorus_2 .in_info.pink_g {
  background: var(--grad-pink);
}
#nao-chorus_2 .in_info.blue_g {
  background: var(--grad-blue);
}
#nao-chorus_2 .in_info.green_g {
  background: var(--grad-green);
}
#nao-chorus_2 .in_info .inner {
  background: rgba(255, 255, 255, 0.85);
  border-radius: 8px;
  padding: 80px 60px;
  display: flex;
  flex-wrap: wrap;
}
@media all and (max-width: 639px) {
  #nao-chorus_2 .in_info .inner {
    display: block;
    padding: 50px 20px;
    display: block;
  }
}
#nao-chorus_2 .in_info .inner .in_left {
  width: 35%;
}
@media all and (max-width: 639px) {
  #nao-chorus_2 .in_info .inner .in_left {
    width: 100%;
  }
}
#nao-chorus_2 .in_info .inner .in_left .read {
  text-align: center;
  font-family: YakuHanMP, "Zen Old Mincho", serif;
  font-size: 22px;
  font-size: 2.2rem;
  letter-spacing: 0.1em;
  font-weight: 400;
  color: #191919;
  line-height: 1em;
  letter-spacing: 0.1em;
  text-align: left;
}
@media all and (max-width: 639px) {
  #nao-chorus_2 .in_info .inner .in_left .read {
    font-family: YakuHanMP, "EB Garamond", "Zen Old Mincho", serif;
    font-size: 18px;
    font-size: 1.8rem;
    letter-spacing: 0.1em;
    font-weight: 400;
    font-weight: 400;
  }
}
#nao-chorus_2 .in_info .inner .in_left .read span {
  display: block;
  font-family: "Cormorant", serif;
  font-weight: 500;
  font-size: 50px;
  font-size: 5rem;
  letter-spacing: 0.1em;
  position: relative;
  line-height: 1.6em;
  letter-spacing: 0.03em;
}
@media all and (max-width: 639px) {
  #nao-chorus_2 .in_info .inner .in_left .read span {
    font-family: "Cormorant", serif;
    font-weight: 500;
    font-size: 14px;
    font-size: 1.4rem;
    letter-spacing: 0.1em;
  }
}
@media all and (max-width: 639px) {
  #nao-chorus_2 .in_info .inner .in_left .read {
    text-align: center;
  }
}
#nao-chorus_2 .in_info .inner .in_right {
  width: 60%;
  margin-left: auto;
}
@media all and (max-width: 639px) {
  #nao-chorus_2 .in_info .inner .in_right {
    width: 100%;
  }
}
#nao-chorus_2 .in_info .inner .in_right table {
  width: 100%;
}
#nao-chorus_2 .in_info .inner .in_right table th,
#nao-chorus_2 .in_info .inner .in_right table td {
  background: none;
  border: none;
  text-align: left;
  font-family: YakuHanMP, "EB Garamond", "Zen Old Mincho", serif;
  font-size: 16px;
  font-size: 1.6rem;
  letter-spacing: 0.1em;
  font-weight: 400;
  color: #191919;
  padding: 6px 20px;
}
@media all and (max-width: 639px) {
  #nao-chorus_2 .in_info .inner .in_right table th,
  #nao-chorus_2 .in_info .inner .in_right table td {
    font-family: YakuHanMP, "EB Garamond", "Zen Old Mincho", serif;
    font-size: 15px;
    font-size: 1.5rem;
    letter-spacing: 0.1em;
    font-weight: 400;
    display: block;
    padding: 10px;
  }
}
#nao-chorus_2 .in_info .inner .in_right table th {
  white-space: nowrap;
  padding-left: 0;
}
@media all and (max-width: 639px) {
  #nao-chorus_2 .in_info .inner .in_right table th {
    background: #fff;
    padding: 10px;
  }
}

#nao-chorus_3 .read {
  text-align: center;
  font-family: YakuHanMP, "Zen Old Mincho", serif;
  font-size: 22px;
  font-size: 2.2rem;
  letter-spacing: 0.1em;
  font-weight: 400;
  color: #191919;
  line-height: 1em;
  letter-spacing: 0.1em;
}
@media all and (max-width: 639px) {
  #nao-chorus_3 .read {
    font-family: YakuHanMP, "EB Garamond", "Zen Old Mincho", serif;
    font-size: 18px;
    font-size: 1.8rem;
    letter-spacing: 0.1em;
    font-weight: 400;
    font-weight: 400;
  }
}
#nao-chorus_3 .read span {
  display: block;
  font-family: "Cormorant", serif;
  font-weight: 500;
  font-size: 50px;
  font-size: 5rem;
  letter-spacing: 0.1em;
  position: relative;
  line-height: 1.6em;
  letter-spacing: 0.03em;
}
@media all and (max-width: 639px) {
  #nao-chorus_3 .read span {
    font-family: "Cormorant", serif;
    font-weight: 500;
    font-size: 14px;
    font-size: 1.4rem;
    letter-spacing: 0.1em;
  }
}
#nao-chorus_3 .no {
  text-align: center;
  font-family: YakuHanMP, "EB Garamond", "Zen Old Mincho", serif;
  font-size: 16px;
  font-size: 1.6rem;
  letter-spacing: 0.1em;
  font-weight: 400;
  color: #191919;
  margin-top: 40px;
}
#nao-chorus_3 .updata {
  width: 80%;
  margin: 50px auto 0;
}
@media all and (max-width: 639px) {
  #nao-chorus_3 .updata {
    width: 100%;
  }
}
#nao-chorus_3 .updata .data_item:nth-child(2) {
  margin-top: 30px;
}
#nao-chorus_3 .updata .data_item .data {
  text-align: right;
  font-family: YakuHanMP, "EB Garamond", "Zen Old Mincho", serif;
  font-size: 16px;
  font-size: 1.6rem;
  letter-spacing: 0.1em;
  font-weight: 400;
}
#nao-chorus_3 .updata .data_item .main {
  font-family: YakuHanMP, "EB Garamond", "Zen Old Mincho", serif;
  font-size: 15px;
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  font-weight: 400;
  line-height: 2em;
  letter-spacing: 0;
  margin-top: 40px;
}
#nao-chorus_3 .updata .data_item a {
  display: block;
  max-width: 500px;
  width: 100%;
  padding: 20px 40px;
  margin: 20px auto 0;
  background: #fff;
  box-sizing: border-box;
}
@media all and (max-width: 639px) {
  #nao-chorus_3 .updata .data_item a {
    padding: 20px;
  }
}
#nao-chorus_3 .updata .data_item a img {
  display: block;
  width: 100%;
}

#nao-chorus_4 .read {
  text-align: center;
  font-family: YakuHanMP, "Zen Old Mincho", serif;
  font-size: 22px;
  font-size: 2.2rem;
  letter-spacing: 0.1em;
  font-weight: 400;
  color: #191919;
  line-height: 1em;
  letter-spacing: 0.1em;
}
@media all and (max-width: 639px) {
  #nao-chorus_4 .read {
    font-family: YakuHanMP, "EB Garamond", "Zen Old Mincho", serif;
    font-size: 18px;
    font-size: 1.8rem;
    letter-spacing: 0.1em;
    font-weight: 400;
    font-weight: 400;
  }
}
#nao-chorus_4 .read span {
  display: block;
  font-family: "Cormorant", serif;
  font-weight: 500;
  font-size: 50px;
  font-size: 5rem;
  letter-spacing: 0.1em;
  position: relative;
  line-height: 1.6em;
  letter-spacing: 0.03em;
}
@media all and (max-width: 639px) {
  #nao-chorus_4 .read span {
    font-family: "Cormorant", serif;
    font-weight: 500;
    font-size: 14px;
    font-size: 1.4rem;
    letter-spacing: 0.1em;
  }
}
#nao-chorus_4 .gidanc_item {
  border-top: 1px solid #191919;
  margin-top: 60px;
}
#nao-chorus_4 .gidanc_item .inne {
  border-bottom: 1px dashed #191919;
  display: flex;
  flex-wrap: wrap;
  padding: 60px;
}
@media all and (max-width: 639px) {
  #nao-chorus_4 .gidanc_item .inne {
    display: block;
    padding: 40px 20px;
  }
}
#nao-chorus_4 .gidanc_item .inne:last-child {
  border-bottom: 1px solid #191919;
}
#nao-chorus_4 .gidanc_item .inne .in_left {
  width: 40%;
}
@media all and (max-width: 639px) {
  #nao-chorus_4 .gidanc_item .inne .in_left {
    width: 100%;
  }
}
#nao-chorus_4 .gidanc_item .inne .in_right {
  width: 60%;
}
@media all and (max-width: 639px) {
  #nao-chorus_4 .gidanc_item .inne .in_right {
    width: 100%;
  }
}
#nao-chorus_4 .gidanc_item .gidanc_item_read {
  font-family: YakuHanMP, "EB Garamond", "Zen Old Mincho", serif;
  font-size: 22px;
  font-size: 2.2rem;
  letter-spacing: 0.1em;
  font-weight: 400;
  color: #191919;
}
#nao-chorus_4 .gidanc_item .gidanc_item_read span {
  display: block;
  font-family: YakuHanMP, "EB Garamond", "Zen Old Mincho", serif;
  font-size: 22px;
  font-size: 2.2rem;
  letter-spacing: 0.1em;
  font-weight: 400;
  color: #191919;
}
#nao-chorus_4 .gidanc_item .guid_item_text {
  font-family: YakuHanMP, "EB Garamond", "Zen Old Mincho", serif;
  font-size: 16px;
  font-size: 1.6rem;
  letter-spacing: 0.1em;
  font-weight: 400;
  color: #191919;
}
@media all and (max-width: 639px) {
  #nao-chorus_4 .gidanc_item .guid_item_text {
    font-family: YakuHanMP, "EB Garamond", "Zen Old Mincho", serif;
    font-size: 15px;
    font-size: 1.5rem;
    letter-spacing: 0.1em;
    font-weight: 400;
  }
}
#nao-chorus_4 .gidanc_item table {
  width: 100%;
}
#nao-chorus_4 .gidanc_item table th,
#nao-chorus_4 .gidanc_item table td {
  background: none;
  border: none;
  text-align: left;
  font-family: YakuHanMP, "EB Garamond", "Zen Old Mincho", serif;
  font-size: 15px;
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  font-weight: 400;
  color: #191919;
  padding: 8px 5px;
  vertical-align: text-top;
}
@media all and (max-width: 639px) {
  #nao-chorus_4 .gidanc_item table th,
  #nao-chorus_4 .gidanc_item table td {
    display: block;
    padding: 10px;
  }
}
#nao-chorus_4 .gidanc_item table th {
  white-space: nowrap;
  padding-right: 20px;
}
@media all and (max-width: 639px) {
  #nao-chorus_4 .gidanc_item table th {
    padding: 10px;
    background: #fff;
  }
}

#nao-chorus_5 {
  margin-top: 60px;
  padding-bottom: 100px;
}
#nao-chorus_5 .single_new {
  background: #fff;
  border-radius: 10px;
  padding: 40px 0;
}
#nao-chorus_5 .read {
  text-align: center;
  font-family: YakuHanMP, "Zen Old Mincho", serif;
  font-size: 22px;
  font-size: 2.2rem;
  letter-spacing: 0.1em;
  font-weight: 400;
  color: #191919;
  line-height: 1em;
  letter-spacing: 0.1em;
}
@media all and (max-width: 639px) {
  #nao-chorus_5 .read {
    font-family: YakuHanMP, "EB Garamond", "Zen Old Mincho", serif;
    font-size: 18px;
    font-size: 1.8rem;
    letter-spacing: 0.1em;
    font-weight: 400;
    font-weight: 400;
  }
}
#nao-chorus_5 .read span {
  display: block;
  font-family: "Cormorant", serif;
  font-weight: 500;
  font-size: 50px;
  font-size: 5rem;
  letter-spacing: 0.1em;
  position: relative;
  line-height: 1.6em;
  letter-spacing: 0.03em;
}
@media all and (max-width: 639px) {
  #nao-chorus_5 .read span {
    font-family: "Cormorant", serif;
    font-weight: 500;
    font-size: 14px;
    font-size: 1.4rem;
    letter-spacing: 0.1em;
  }
}
#nao-chorus_5 .main {
  text-align: center;
  font-family: YakuHanMP, "EB Garamond", "Zen Old Mincho", serif;
  font-size: 16px;
  font-size: 1.6rem;
  letter-spacing: 0.1em;
  font-weight: 400;
  color: #191919;
  line-height: 2em;
  margin-top: 50px;
}
#nao-chorus_5 .list-1 {
  display: flex;
  flex-wrap: wrap;
  margin-top: 40px;
}
@media all and (max-width: 639px) {
  #nao-chorus_5 .list-1 {
    display: block;
  }
}
#nao-chorus_5 .list-1 li {
  width: 23.5%;
  margin-right: 2%;
  border-bottom: 1px solid #eee;
}
@media all and (max-width: 639px) {
  #nao-chorus_5 .list-1 li {
    width: 100%;
  }
}
#nao-chorus_5 .list-1 li:nth-child(4n) {
  margin-right: 0;
}
#nao-chorus_5 .list-1 li a {
  display: block;
  padding: 20px;
  font-family: YakuHanMP, "EB Garamond", "Zen Old Mincho", serif;
  font-size: 16px;
  font-size: 1.6rem;
  letter-spacing: 0.1em;
  font-weight: 400;
  color: #191919;
  transition: 0.4s;
}
#nao-chorus_5 .list-1 li a:hover {
  background: rgba(238, 238, 238, 0.5);
  transition: 0.4s;
}

/*--------------------------------------------------
エクササイズ(exercise.php)
----------------------------------------------------*/
#exercise_2 .read {
  text-align: center;
  font-family: YakuHanMP, "Zen Old Mincho", serif;
  font-size: 22px;
  font-size: 2.2rem;
  letter-spacing: 0.1em;
  font-weight: 400;
  color: #191919;
  line-height: 1em;
  letter-spacing: 0.1em;
}
@media all and (max-width: 639px) {
  #exercise_2 .read {
    font-family: YakuHanMP, "EB Garamond", "Zen Old Mincho", serif;
    font-size: 18px;
    font-size: 1.8rem;
    letter-spacing: 0.1em;
    font-weight: 400;
    font-weight: 400;
  }
}
#exercise_2 .read span {
  display: block;
  font-family: "Cormorant", serif;
  font-weight: 500;
  font-size: 50px;
  font-size: 5rem;
  letter-spacing: 0.1em;
  position: relative;
  line-height: 1.6em;
  letter-spacing: 0.03em;
}
@media all and (max-width: 639px) {
  #exercise_2 .read span {
    font-family: "Cormorant", serif;
    font-weight: 500;
    font-size: 14px;
    font-size: 1.4rem;
    letter-spacing: 0.1em;
  }
}
#exercise_2 .main {
  text-align: center;
  font-family: YakuHanMP, "EB Garamond", "Zen Old Mincho", serif;
  font-size: 16px;
  font-size: 1.6rem;
  letter-spacing: 0.1em;
  font-weight: 400;
  color: #191919;
  line-height: 2em;
  margin-top: 50px;
}
#exercise_2 ul {
  margin-top: 60px;
}
#exercise_2 ul li:nth-child(n+2) {
  margin-top: 80px;
}
#exercise_2 ul li img {
  display: block;
  width: 100%;
}
#exercise_2 ul li .exercise_2_item_read {
  font-family: YakuHanMP, "EB Garamond", "Zen Old Mincho", serif;
  font-size: 22px;
  font-size: 2.2rem;
  letter-spacing: 0.1em;
  font-weight: 400;
  color: #191919;
}
#exercise_2 ul li .exercise_2_item_read span {
  font-family: YakuHanMP, "EB Garamond", "Zen Old Mincho", serif;
  font-size: 16px;
  font-size: 1.6rem;
  letter-spacing: 0.1em;
  font-weight: 400;
}
#exercise_2 ul li table {
  margin-top: 20px;
}
#exercise_2 ul li table th,
#exercise_2 ul li table td {
  background: none;
  border: none;
  text-align: left;
  font-family: YakuHanMP, "EB Garamond", "Zen Old Mincho", serif;
  font-size: 15px;
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  font-weight: 400;
  color: #191919;
}
@media all and (max-width: 639px) {
  #exercise_2 ul li table th,
  #exercise_2 ul li table td {
    display: block;
    padding: 10px;
  }
}
#exercise_2 ul li table th {
  white-space: nowrap;
}
@media all and (max-width: 639px) {
  #exercise_2 ul li table th {
    background: #fff;
  }
}
#exercise_2 .bottom {
  background: #fff;
  border-radius: 10px;
  margin: 60px;
  padding: 50px;
}
@media all and (max-width: 639px) {
  #exercise_2 .bottom {
    margin: 60px 0;
    padding: 60px 30px;
  }
}
#exercise_2 .bottom .bottom_read {
  text-align: center;
  font-family: YakuHanMP, "EB Garamond", "Zen Old Mincho", serif;
  font-size: 22px;
  font-size: 2.2rem;
  letter-spacing: 0.1em;
  font-weight: 400;
  color: #191919;
}
@media all and (max-width: 639px) {
  #exercise_2 .bottom .bottom_read {
    font-family: YakuHanMP, "EB Garamond", "Zen Old Mincho", serif;
    font-size: 20px;
    font-size: 2rem;
    letter-spacing: 0.1em;
    font-weight: 400;
    color: #191919;
    text-wrap: balance;
    word-break: auto-phrase;
  }
}
#exercise_2 .bottom .bottom_contact {
  margin-top: 20px;
  text-align: center;
  font-family: YakuHanMP, "EB Garamond", "Zen Old Mincho", serif;
  font-size: 20px;
  font-size: 2rem;
  letter-spacing: 0.1em;
  font-weight: 400;
  color: #191919;
}
#exercise_2 .bottom .bottom_text {
  margin-top: 30px;
  text-align: center;
  font-family: YakuHanMP, "EB Garamond", "Zen Old Mincho", serif;
  font-size: 13px;
  font-size: 1.3rem;
  letter-spacing: 0.1em;
  font-weight: 400;
  color: #191919;
}

#exercise_member .read {
  text-align: center;
  font-family: YakuHanMP, "Zen Old Mincho", serif;
  font-size: 22px;
  font-size: 2.2rem;
  letter-spacing: 0.1em;
  font-weight: 400;
  color: #191919;
  line-height: 1em;
  letter-spacing: 0.1em;
}
@media all and (max-width: 639px) {
  #exercise_member .read {
    font-family: YakuHanMP, "EB Garamond", "Zen Old Mincho", serif;
    font-size: 18px;
    font-size: 1.8rem;
    letter-spacing: 0.1em;
    font-weight: 400;
    font-weight: 400;
  }
}
#exercise_member .read span {
  display: block;
  font-family: "Cormorant", serif;
  font-weight: 500;
  font-size: 50px;
  font-size: 5rem;
  letter-spacing: 0.1em;
  position: relative;
  line-height: 1.6em;
  letter-spacing: 0.03em;
}
@media all and (max-width: 639px) {
  #exercise_member .read span {
    font-family: "Cormorant", serif;
    font-weight: 500;
    font-size: 14px;
    font-size: 1.4rem;
    letter-spacing: 0.1em;
  }
}
#exercise_member .main {
  text-align: center;
  font-family: YakuHanMP, "EB Garamond", "Zen Old Mincho", serif;
  font-size: 16px;
  font-size: 1.6rem;
  letter-spacing: 0.1em;
  font-weight: 400;
  color: #191919;
  line-height: 2em;
  margin-top: 50px;
  text-wrap: balance;
  word-break: auto-phrase;
}
@media all and (max-width: 639px) {
  #exercise_member .main {
    font-family: YakuHanMP, "EB Garamond", "Zen Old Mincho", serif;
    font-size: 15px;
    font-size: 1.5rem;
    letter-spacing: 0.1em;
    font-weight: 400;
    line-height: 2em;
  }
}
#exercise_member a {
  display: block;
  width: 300px;
  margin: 50px auto 0;
  text-align: center;
  border: 1px solid #191919;
  font-family: YakuHanMP, "EB Garamond", "Zen Old Mincho", serif;
  font-size: 15px;
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  font-weight: 400;
  color: #191919;
  padding: 15px 0;
}

/*--------------------------------------------------
新着情報(topics_list.php)
----------------------------------------------------*/
#topics_1 {
  padding: 0 0 90px;
}
#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: 500;
  font-size: 25px;
  font-size: 2.5rem;
  letter-spacing: 0.1em;
  color: #606060;
}
#topics_1 .inner .right .side_titem.sec {
  margin-top: 80px;
}
#topics_1 .inner .right .side_titem span {
  font-family: YakuHanMP, "Zen Old Mincho", serif;
  font-size: 15px;
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  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: 500;
  font-size: 18px;
  font-size: 1.8rem;
  letter-spacing: 0.1em;
  position: relative;
  padding: 15px 10px;
  transition: 0.4s;
}
#topics_1 .inner .right ul.post_list li a .data {
  font-family: "EB Garamond", serif;
  font-weight: 500;
  font-size: 13px;
  font-size: 1.3rem;
  letter-spacing: 0.1em;
  color: #606060;
  opacity: 0.5;
  position: relative;
  letter-spacing: 0;
}
#topics_1 .inner .right ul.post_list li a .title {
  font-family: YakuHanMP, "Zen Old Mincho", serif;
  font-size: 15px;
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  font-weight: 400;
  color: #191919;
  display: block;
  margin-top: 4px;
}
#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: "EB Garamond", serif;
  font-weight: 500;
  font-size: 13px;
  font-size: 1.3rem;
  letter-spacing: 0.1em;
  color: #606060;
}
#topics_1 .entry .title {
  font-family: YakuHanMP, "Zen Old Mincho", serif;
  font-size: 21px;
  font-size: 2.1rem;
  letter-spacing: 0.1em;
  font-weight: 400;
  color: #191919;
  border-bottom: 1px solid #ccc;
}
#topics_1 .entry .main_cont {
  font-family: YakuHanMP, "EB Garamond", "Zen Old Mincho", serif;
  font-size: 15px;
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  font-weight: 400;
  letter-spacing: 0;
  margin-top: 30px;
  line-height: 2em;
  color: #191919;
}
#topics_1 .entry .main_cont img {
  max-width: 100%;
  display: block;
}
#topics_1 .back_link {
  display: block;
  margin: 50px auto 0;
  width: 200px;
  font-family: YakuHanMP, "EB Garamond", "Zen Old Mincho", serif;
  font-size: 15px;
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  font-weight: 400;
  color: #191919;
  border: 1px solid #191919;
  text-align: center;
  padding: 10px 0;
  border-radius: 100px;
}
#topics_1 .back_link:hover {
  background: #fff;
  transition: 0.4s;
}/*# sourceMappingURL=style.css.map */