@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Outfit&family=Quicksand:wght@300..700&family=Zen+Maru+Gothic:wght@300;400;500;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; */
/*サイトのメインカラー*/
/**
  @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: YakuHanRP, "Quicksand", "Zen Maru Gothic", sans-serif;
  font-size: 15px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: 0;
}

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

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

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

.tbox {
  border: 2px solid #00733e;
  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;
  background: #edfcf3;
  position: fixed;
  /*&.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 0 10px;
  }
}
header #head {
  padding: 60px 30px 30px;
  margin: auto;
  border-radius: 6px;
  /* 親メニューの位置基準 */
  /* メガメニュー本体（最初は隠す） */
  /* SERVICE に hover すると表示 */
  /* 2×2 グリッド */
  /* dropdownmenu 

  .head_nav {
  	li {
  		ul {
  			position: absolute;
  			top: 80px;
  			display: block !important;
  			padding-top: 0;
  			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;
  				a {
  					background: #fff;
  					padding: 10px 0 10px 20px !important;
  					margin: 0 0px !important;
  					display: block;
  					width: 100%;
  					text-align: left;
  					position: relative;
  					@include base-text_2(15);
  					font-weight: 600;
  					font-size: 15px !important;
  					color: $text_color;
  					&:before {
  						font-family: "Font Awesome 5 Free";
  						font-weight: 900;
  						content: "\f0da";
  						position: absolute;
  						left: 5px;
  						top: 10px;
  						color: $base_color;
  					}

  					&:hover {
  						color: $base_color;
  					}
  				}
  			}
  		}

  		&:hover ul li {
  			visibility: visible;
  			overflow: visible;
  			height: 36px;
  		}
  	}
  }*/
}
@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: 28px;
  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: 206px;
    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 .foreng {
  display: block;
  position: absolute;
  top: 0;
  right: 2%;
  background: #cdcd2e;
  color: #fff;
  padding: 3px 30px;
  border-radius: 0 0 6px 6px;
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  font-size: 13px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: 0.05em;
}
@media all and (max-width: 639px) {
  header #head .foreng {
    display: none;
  }
}
header #head .head_nav {
  display: flex;
  flex-wrap: wrap;
  z-index: 2;
  justify-content: end;
  max-width: 810px;
  margin-left: auto;
}
@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: #555353;
  font-family: YakuHanRP, "Quicksand", "Zen Maru Gothic", sans-serif;
  font-size: 17px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: 0;
  letter-spacing: 0;
  font-weight: 500;
  text-align: center;
  position: relative;
}
header #head .head_nav li a span {
  display: block;
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  font-size: 14px;
  /*font-size: ($size / $base) + rem;*/
  color: #00733e;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1em;
  margin-bottom: 2px;
}
header #head .head_nav li a:before {
  content: "";
  display: block;
  position: absolute;
  background-repeat: no-repeat;
  margin: auto;
  width: 5px;
  height: 5px;
  background: #00733e;
  border-radius: 30px;
  margin: auto;
  left: 0;
  right: 0;
  top: -16px;
  opacity: 0;
  transition: 0.4s;
}
header #head .head_nav li a:hover, header #head .head_nav li a.active {
  color: #00733e;
}
header #head .head_nav li a:hover:before {
  opacity: 1;
  transition: 0.4s;
}
header #head .has-megamenu {
  position: relative;
}
header #head .megamenu {
  position: absolute;
  top: 100%;
  right: 0;
  width: 800px;
  background: #0f7c5f; /* 緑背景（お好みで変更） */
  padding: 20px;
  display: none;
  border-radius: 4px;
}
header #head .has-megamenu:hover .megamenu {
  display: block;
}
header #head .megamenu ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}
header #head .megamenu li:nth-child(n+2) {
  margin: 0;
}
header #head .megamenu li a {
  display: block;
  padding: 20px 16px;
  background: #0c6c52;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  text-align: left;
  position: relative;
  padding-left: 82px;
}
header #head .megamenu li a img {
  display: block;
  position: absolute;
  width: 49px;
  left: 16px;
  top: 0;
  bottom: 0;
  margin: auto;
}
header #head .megamenu li a:hover, header #head .megamenu li a.active {
  color: #fff;
}
header #head .megamenu li a span {
  color: #fff;
}
header #head .megamenu li a span.jp {
  display: block;
  font-family: YakuHanJP, "Outfit", "Noto Sans JP", sans-serif;
  font-size: 15px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: 0;
  font-weight: 500;
  letter-spacing: 0;
}
header #head .megamenu li a span.en {
  display: block;
  font-family: "Outfit", sans-serif;
  font-weight: 500;
  font-size: 13px;
  /*font-size: ($size / $base) + rem;*/
  font-weight: 300;
  letter-spacing: 0;
  opacity: 0.9;
  margin-top: 10px;
}

/* /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: #fcf5e8;
}

.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: 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: #00733e;
  color: #fff;
}
table td {
  padding: 5px 10px;
  vertical-align: middle;
  border: #ddd 1px solid;
}
table td b {
  color: #00733e;
  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: #fefbf5;
  font-weight: bold;
  border: 2px solid #fefbf5;
}
#mailform button:before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f0e0";
  margin-right: 6px;
}
#mailform button:hover {
  background: #fff;
  color: #fefbf5;
}
#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 #00733e;
  border-bottom: 3px solid #00733e;
  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%;
  }
}

@keyframes floatUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
#top_main {
  width: 100%;
  position: relative;
  height: auto;
  background: linear-gradient(180deg, #edfcf3 0%, #edfcf3 50%, #fefbf5 50%, #fefbf5 100%);
  margin-top: 136px;
  padding-top: 10px;
}
@media all and (max-width: 639px) {
  #top_main {
    height: auto;
    margin-top: 56px;
    padding-top: 20px;
  }
}
#top_main .inner {
  display: flex;
  flex-wrap: wrap;
}
@media all and (max-width: 639px) {
  #top_main .inner {
    display: block;
  }
}
#top_main .top_main_vis {
  width: 62%;
  border-radius: 0 30px 30px 0;
  overflow: hidden;
}
@media all and (max-width: 639px) {
  #top_main .top_main_vis {
    width: 95%;
  }
}
#top_main .top_main_vis img.top_main_vis {
  display: block;
  width: 100%;
}
#top_main .top_main_chachi {
  width: 20%;
  margin-left: auto;
  opacity: 0;
  animation: floatUp 1.2s ease-out forwards;
  animation-delay: 0.5s;
  margin-right: 7%;
}
@media all and (max-width: 639px) {
  #top_main .top_main_chachi {
    width: 50%;
    margin: 30px auto 0;
  }
}
#top_main .top_main_chachi img {
  display: block;
  max-width: 322px;
  width: 100%;
}
#top_main .top_main_chachi_ani {
  width: 20%;
  margin-left: auto;
  margin-right: 7%;
}
@media all and (max-width: 639px) {
  #top_main .top_main_chachi_ani {
    width: 50%;
    margin: 30px auto 0;
  }
}
#top_main .top_main_chachi_ani img {
  display: inline-block;
}
#top_main .top_main_chachi_ani img.top_main_chachi_ani-1 {
  width: 67%;
  opacity: 0;
  animation: floatUp 1.2s ease-out forwards;
  animation-delay: 0.5s;
}
#top_main .top_main_chachi_ani img.top_main_chachi_ani-2 {
  width: 30%;
  opacity: 0;
  animation: floatUp 1.2s ease-out forwards;
  animation-delay: 1.7s;
}
#top_main .top_main_list {
  margin-left: auto;
  /*position: absolute;
  	bottom: 0;
  right: 140px;
  */
  right: -50px;
  position: relative;
  z-index: 22;
  width: 380px;
  margin-top: -100px;
}
@media all and (max-width: 639px) {
  #top_main .top_main_list {
    width: 90%;
    margin: 30px auto 0;
    right: auto;
  }
}
#top_main .top_main_list .top_main_list_illust {
  display: block;
  width: 240px;
  position: absolute;
  bottom: -60px;
  left: -160px;
  z-index: 33;
}
@media all and (max-width: 639px) {
  #top_main .top_main_list .top_main_list_illust {
    width: 150px;
    bottom: -90px;
    left: -40px;
  }
}
#top_main .top_main_list .in {
  position: relative;
}
#top_main .top_main_list .in:before {
  content: "";
  display: block;
  position: absolute;
  background-repeat: no-repeat;
  margin: auto;
  width: 100%;
  height: 100%;
  background: #cdcd2e;
  top: 10px;
  left: 10px;
  border-radius: 10px;
}
#top_main .top_main_list .in .in_bg {
  background: #fff;
  border: 2px solid #cdcd2e;
  border-radius: 10px;
  padding: 40px;
  position: relative;
}
@media all and (max-width: 639px) {
  #top_main .top_main_list .in .in_bg {
    padding: 40px 0;
  }
}
#top_main .top_main_list .in .in_bg ul {
  display: table;
  margin: auto;
}
#top_main .top_main_list .in .in_bg ul li {
  font-family: YakuHanJP, "Outfit", "Noto Sans JP", sans-serif;
  font-size: 16px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: 0;
  color: #555353;
  letter-spacing: 0;
}
@media all and (max-width: 639px) {
  #top_main .top_main_list .in .in_bg ul li {
    font-family: YakuHanJP, "Outfit", "Noto Sans JP", sans-serif;
    font-size: 14px;
    /*font-size: ($size / $base) + rem;*/
    letter-spacing: 0;
  }
}
#top_main .top_main_list .in .in_bg ul li:before {
  content: "・";
}
#top_main .top_main_list .in .top_main_list_bottom_text {
  display: block;
  height: 60px;
  position: absolute;
  z-index: 44;
  bottom: -50px;
}
@media all and (max-width: 639px) {
  #top_main .top_main_list .in .top_main_list_bottom_text {
    width: 80%;
    height: auto;
    position: relative;
    bottom: auto;
    margin: 20px auto 0;
  }
}
#top_main .single {
  position: relative;
}
#top_main.page_unde {
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 100px 0;
  margin: 106px auto 0;
  background-image: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/27445/page_unde.jpg);
}
@media all and (max-width: 639px) {
  #top_main.page_unde {
    padding: 30px 0;
    margin-top: 56px;
  }
}
#top_main .single {
  padding: 0;
}
#top_main h2 {
  font-family: YakuHanRP, "Quicksand", "Zen Maru Gothic", sans-serif;
  font-size: 26px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: 0;
  font-weight: 500;
  color: #555353;
  text-align: center;
}
@media all and (max-width: 639px) {
  #top_main h2 {
    font-family: YakuHanRP, "Quicksand", "Zen Maru Gothic", sans-serif;
    font-size: 22px;
    /*font-size: ($size / $base) + rem;*/
    letter-spacing: 0;
  }
}
#top_main h2 span {
  display: block;
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  font-size: 39px;
  /*font-size: ($size / $base) + rem;*/
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #00733e;
  line-height: 1em;
}
@media all and (max-width: 639px) {
  #top_main h2 span {
    font-family: "Outfit", sans-serif;
    font-weight: 500;
    font-size: 14px;
    /*font-size: ($size / $base) + rem;*/
  }
}
#top_1 {
  padding: 60px 0;
}
@media all and (max-width: 639px) {
  #top_1 {
    padding-top: 80px;
  }
}
#top_1 .single_new {
  background: #fcf5e8;
}
@media all and (max-width: 639px) {
  #top_1 .single_new {
    padding: 40px 0;
  }
}
#top_1 .inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
@media all and (max-width: 639px) {
  #top_1 .inner {
    display: block;
  }
}
#top_1 .inner .in_right {
  width: 60%;
  margin-left: 50px;
}
@media all and (max-width: 639px) {
  #top_1 .inner .in_right {
    width: 100%;
    margin: 40px 0 0;
  }
}
#top_1 .inner .in_right .topics_list {
  margin-top: 30px;
}
@media all and (max-width: 639px) {
  #top_1 .inner .in_right .topics_list {
    margin-top: 0;
  }
}
#top_1 .inner .in_right .topics_list li {
  background: #fefbf5;
  border-radius: 6px;
  background: #fff;
}
#top_1 .inner .in_right .topics_list li:nth-child(n+2) {
  margin-top: 10px;
}
#top_1 .inner .in_right .topics_list li a {
  display: block;
  padding: 23px 30px;
}
#top_1 .inner .in_right .topics_list li .data {
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  font-size: 13px;
  /*font-size: ($size / $base) + rem;*/
  color: #555353;
  letter-spacing: 0;
  font-weight: 400;
}
#top_1 .inner .in_right .topics_list li .post_title {
  font-family: YakuHanJP, "Outfit", "Noto Sans JP", sans-serif;
  font-size: 16px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: 0;
  font-weight: 400;
  color: #555353;
  letter-spacing: 0;
}
@media all and (max-width: 639px) {
  #top_1 .inner .in_right .topics_list li .post_title {
    font-family: YakuHanJP, "Outfit", "Noto Sans JP", sans-serif;
    font-size: 15px;
    /*font-size: ($size / $base) + rem;*/
    letter-spacing: 0;
    font-weight: 400;
  }
}
#top_1 .read {
  text-align: center;
  font-family: YakuHanRP, "Quicksand", "Zen Maru Gothic", sans-serif;
  font-size: 22px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: 0;
  font-weight: 500;
  color: #555353;
  line-height: 1em;
  text-align: left;
}
@media all and (max-width: 639px) {
  #top_1 .read {
    font-family: YakuHanRP, "Quicksand", "Zen Maru Gothic", sans-serif;
    font-size: 17px;
    /*font-size: ($size / $base) + rem;*/
    letter-spacing: 0;
  }
}
#top_1 .read span {
  display: block;
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  font-size: 47px;
  /*font-size: ($size / $base) + rem;*/
  font-weight: 500;
  position: relative;
  padding-top: 20px;
  margin-bottom: 11px;
}
@media all and (max-width: 639px) {
  #top_1 .read span {
    font-family: "Quicksand", sans-serif;
    font-weight: 500;
    font-size: 34px;
    /*font-size: ($size / $base) + rem;*/
    font-weight: 500;
  }
}
#top_1 .main {
  margin-top: 50px;
  font-family: YakuHanRP, "Quicksand", "Zen Maru Gothic", sans-serif;
  font-size: 17px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: 0;
  font-weight: 500;
  color: #555353;
  letter-spacing: 0;
}
@media all and (max-width: 639px) {
  #top_1 .main {
    font-family: YakuHanRP, "Quicksand", "Zen Maru Gothic", sans-serif;
    font-size: 15px;
    /*font-size: ($size / $base) + rem;*/
    letter-spacing: 0;
    font-weight: 500;
  }
}

#top_2 {
  background-image: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/27445/top_2_bg.svg);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: 327px;
}
#top_2 .read {
  text-align: center;
  font-family: YakuHanRP, "Quicksand", "Zen Maru Gothic", sans-serif;
  font-size: 22px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: 0;
  font-weight: 500;
  color: #555353;
  line-height: 1em;
}
@media all and (max-width: 639px) {
  #top_2 .read {
    font-family: YakuHanRP, "Quicksand", "Zen Maru Gothic", sans-serif;
    font-size: 17px;
    /*font-size: ($size / $base) + rem;*/
    letter-spacing: 0;
  }
}
#top_2 .read span {
  display: block;
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  font-size: 47px;
  /*font-size: ($size / $base) + rem;*/
  font-weight: 500;
  position: relative;
  padding-top: 20px;
  margin-bottom: 11px;
}
@media all and (max-width: 639px) {
  #top_2 .read span {
    font-family: "Quicksand", sans-serif;
    font-weight: 500;
    font-size: 34px;
    /*font-size: ($size / $base) + rem;*/
    font-weight: 500;
  }
}
#top_2 .main {
  margin-top: 50px;
  text-align: center;
  color: #555353;
  font-family: YakuHanJP, "Outfit", "Noto Sans JP", sans-serif;
  font-size: 17px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: 0;
  font-weight: 400;
  line-height: 2.1em;
  text-wrap: balance;
  word-break: auto-phrase;
}
@media all and (max-width: 639px) {
  #top_2 .main {
    font-family: YakuHanJP, "Outfit", "Noto Sans JP", sans-serif;
    font-size: 15px;
    /*font-size: ($size / $base) + rem;*/
    letter-spacing: 0;
  }
}
#top_2 .col-2 {
  margin-top: 50px;
  display: flex;
  flex-wrap: wrap;
}
@media all and (max-width: 639px) {
  #top_2 .col-2 {
    display: block;
  }
}
#top_2 .col-2 .col-2-item {
  width: 48%;
}
@media all and (max-width: 639px) {
  #top_2 .col-2 .col-2-item {
    width: 100%;
  }
}
#top_2 .col-2 .col-2-item:nth-child(n+2) {
  margin-left: auto;
}
@media all and (max-width: 639px) {
  #top_2 .col-2 .col-2-item:nth-child(n+2) {
    margin-top: 60px;
  }
}
#top_2 .col-2 .col-2-item .in_photo {
  position: relative;
}
#top_2 .col-2 .col-2-item .in_photo img {
  display: block;
  width: 100%;
  border-radius: 10px;
}
#top_2 .col-2 .col-2-item .in_photo .item_name {
  position: absolute;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  right: 22px;
  top: -20px;
}
#top_2 .col-2 .col-2-item .in_photo .item_name .yakshoku {
  background: #00733e;
  color: #fff;
  font-family: YakuHanRP, "Quicksand", "Zen Maru Gothic", sans-serif;
  font-size: 17px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: 0;
  padding: 14px 8px 14px 6px;
  display: table;
  border-radius: 5px;
  line-height: 1em;
}
@media all and (max-width: 639px) {
  #top_2 .col-2 .col-2-item .in_photo .item_name .yakshoku {
    font-family: YakuHanRP, "Quicksand", "Zen Maru Gothic", sans-serif;
    font-size: 14px;
    /*font-size: ($size / $base) + rem;*/
    letter-spacing: 0;
  }
}
#top_2 .col-2 .col-2-item .in_photo .item_name .text_name {
  color: #fff;
  font-family: YakuHanRP, "Quicksand", "Zen Maru Gothic", sans-serif;
  font-size: 33px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: 0;
  margin-top: 50px;
  margin-right: 7px;
}
@media all and (max-width: 639px) {
  #top_2 .col-2 .col-2-item .in_photo .item_name .text_name {
    font-family: YakuHanRP, "Quicksand", "Zen Maru Gothic", sans-serif;
    font-size: 23px;
    /*font-size: ($size / $base) + rem;*/
    letter-spacing: 0;
    margin-right: 9px;
    line-height: 1em;
  }
}
#top_2 .col-2 .col-2-item .in_photo .item_name .text_name span {
  display: block;
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  font-size: 16px;
  /*font-size: ($size / $base) + rem;*/
  line-height: 1em;
  margin-top: 20px;
}
@media all and (max-width: 639px) {
  #top_2 .col-2 .col-2-item .in_photo .item_name .text_name span {
    font-family: "Quicksand", sans-serif;
    font-weight: 500;
    font-size: 12px;
    /*font-size: ($size / $base) + rem;*/
    line-height: 1em;
    margin-right: 5px;
  }
}
#top_2 .col-2 .col-2-item .in_text {
  width: 90%;
  background: #fefbf5;
  border-radius: 10px 10px 0 0;
  position: relative;
  margin: -50px auto 0;
  padding: 30px;
}
#top_2 .col-2 .col-2-item .in_text:before, #top_2 .col-2 .col-2-item .in_text:after {
  content: "";
  display: block;
  position: absolute;
  background-repeat: no-repeat;
  margin: auto;
  width: 10px;
  height: 10px;
  top: 40px;
}
#top_2 .col-2 .col-2-item .in_text:before {
  background-image: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/27445/huki_left.svg);
  left: -10px;
}
#top_2 .col-2 .col-2-item .in_text:after {
  background-image: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/27445/huki_right.svg);
  right: -10px;
}
#top_2 .col-2 .col-2-item .in_text .top_2_item_main {
  color: #555353;
  font-family: YakuHanJP, "Outfit", "Noto Sans JP", sans-serif;
  font-size: 16px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: 0;
}
@media all and (max-width: 639px) {
  #top_2 .col-2 .col-2-item .in_text .top_2_item_main {
    font-family: YakuHanJP, "Outfit", "Noto Sans JP", sans-serif;
    font-size: 15px;
    /*font-size: ($size / $base) + rem;*/
    letter-spacing: 0;
  }
}
#top_2 a {
  display: block;
  max-width: 445px;
  width: 100%;
  margin: 50px auto 0;
  text-align: center;
  border-radius: 100px;
  color: #fefbf5;
  font-family: YakuHanJP, "Outfit", "Noto Sans JP", sans-serif;
  font-size: 16px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: 0;
  font-weight: 400;
  background: #00733e;
  padding: 20px 0;
}

#top_3 {
  background: #fcf5e8;
  margin-top: 50px;
  padding: 50px 0;
}
#top_3 .read {
  text-align: center;
  font-family: YakuHanRP, "Quicksand", "Zen Maru Gothic", sans-serif;
  font-size: 22px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: 0;
  font-weight: 500;
  color: #555353;
  line-height: 1em;
}
@media all and (max-width: 639px) {
  #top_3 .read {
    font-family: YakuHanRP, "Quicksand", "Zen Maru Gothic", sans-serif;
    font-size: 17px;
    /*font-size: ($size / $base) + rem;*/
    letter-spacing: 0;
  }
}
#top_3 .read span {
  display: block;
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  font-size: 47px;
  /*font-size: ($size / $base) + rem;*/
  font-weight: 500;
  position: relative;
  padding-top: 20px;
  margin-bottom: 11px;
}
@media all and (max-width: 639px) {
  #top_3 .read span {
    font-family: "Quicksand", sans-serif;
    font-weight: 500;
    font-size: 34px;
    /*font-size: ($size / $base) + rem;*/
    font-weight: 500;
  }
}
@media all and (max-width: 639px) {
  #top_3 .read {
    line-height: 1.7em;
    text-wrap: balance;
    word-break: auto-phrase;
  }
}
#top_3 ul {
  margin-top: 60px;
}
#top_3 ul li {
  position: relative;
  padding: 40px 0;
}
#top_3 ul li:before {
  content: "";
  display: block;
  position: absolute;
  background-repeat: no-repeat;
  margin: auto;
  width: 70%;
  height: 100%;
  background: #fefbf5;
  border-radius: 10px;
  top: 0;
  right: 0;
}
@media all and (max-width: 639px) {
  #top_3 ul li:before {
    display: none;
  }
}
#top_3 ul li:nth-child(n+2) {
  margin-top: 80px;
}
#top_3 ul li:nth-child(even):before {
  right: auto;
  left: 0;
}
#top_3 .inner {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}
@media all and (max-width: 639px) {
  #top_3 .inner {
    display: block;
  }
}
#top_3 .inner .in_photo {
  width: 35%;
}
#top_3 .inner .in_text {
  width: 65%;
}
#top_3 .inner .in_photo,
#top_3 .inner .in_text {
  /*width: 50%;*/
}
@media all and (max-width: 639px) {
  #top_3 .inner .in_photo,
  #top_3 .inner .in_text {
    width: 100%;
  }
}
#top_3 .inner .in_right {
  margin-left: auto;
}
@media all and (max-width: 639px) {
  #top_3 .inner .in_photo {
    display: none;
  }
}
#top_3 .inner .in_photo img {
  display: block;
  width: 100%;
  border-radius: 10px;
}
#top_3 .inner .in_text {
  position: relative;
  padding: 0 60px;
}
@media all and (max-width: 639px) {
  #top_3 .inner .in_text {
    padding: 0;
  }
}
#top_3 .inner .in_text img._sp {
  display: none;
}
@media all and (max-width: 639px) {
  #top_3 .inner .in_text img._sp {
    display: block;
    width: 100%;
    border-radius: 10px;
  }
}
#top_3 .inner .in_text .top_3_item_no {
  display: block;
  position: absolute;
  color: #dcc900;
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  font-size: 124px;
  /*font-size: ($size / $base) + rem;*/
  font-weight: 600;
  line-height: 1em;
  opacity: 0.4;
  right: 60px;
  top: -90px;
}
@media all and (max-width: 639px) {
  #top_3 .inner .in_text .top_3_item_no {
    right: 10px;
    top: -60px;
  }
}
#top_3 .inner .in_text .top_3_item_no.ll {
  right: auto;
  left: 60px;
}
@media all and (max-width: 639px) {
  #top_3 .inner .in_text .top_3_item_no.ll {
    right: 10px;
    left: auto;
  }
}
#top_3 .inner .in_text .top_3_item_read {
  font-family: YakuHanRP, "Quicksand", "Zen Maru Gothic", sans-serif;
  font-size: 26px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: 0;
  font-weight: 500;
  color: #555353;
  margin-top: 30px;
}
@media all and (max-width: 639px) {
  #top_3 .inner .in_text .top_3_item_read {
    font-family: YakuHanRP, "Quicksand", "Zen Maru Gothic", sans-serif;
    font-size: 22px;
    /*font-size: ($size / $base) + rem;*/
    letter-spacing: 0;
    font-weight: 500;
  }
}
#top_3 .inner .in_text .top_3_item_read span {
  display: block;
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  font-size: 13px;
  /*font-size: ($size / $base) + rem;*/
  font-weight: 500;
  line-height: 1em;
  color: #00733e;
}
#top_3 .inner .in_text .top_3_item_main {
  font-family: YakuHanJP, "Outfit", "Noto Sans JP", sans-serif;
  font-size: 16px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: 0;
  font-weight: 400;
  color: #555353;
  margin-top: 20px;
  position: relative;
}
@media all and (max-width: 639px) {
  #top_3 .inner .in_text .top_3_item_main {
    font-family: YakuHanJP, "Outfit", "Noto Sans JP", sans-serif;
    font-size: 15px;
    /*font-size: ($size / $base) + rem;*/
    letter-spacing: 0;
    font-weight: 400;
  }
}

#top_4 {
  padding: 50px 0 0;
}
#top_4 .read {
  text-align: center;
  font-family: YakuHanRP, "Quicksand", "Zen Maru Gothic", sans-serif;
  font-size: 22px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: 0;
  font-weight: 500;
  color: #555353;
  line-height: 1em;
}
@media all and (max-width: 639px) {
  #top_4 .read {
    font-family: YakuHanRP, "Quicksand", "Zen Maru Gothic", sans-serif;
    font-size: 17px;
    /*font-size: ($size / $base) + rem;*/
    letter-spacing: 0;
  }
}
#top_4 .read span {
  display: block;
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  font-size: 47px;
  /*font-size: ($size / $base) + rem;*/
  font-weight: 500;
  position: relative;
  padding-top: 20px;
  margin-bottom: 11px;
}
@media all and (max-width: 639px) {
  #top_4 .read span {
    font-family: "Quicksand", sans-serif;
    font-weight: 500;
    font-size: 34px;
    /*font-size: ($size / $base) + rem;*/
    font-weight: 500;
  }
}
#top_4 .top_4_link {
  display: flex;
  flex-wrap: wrap;
  margin-top: 60px;
}
#top_4 .top_4_link li {
  width: 23.5%;
  margin-right: 2%;
  background: #fff;
  border-radius: 10px;
  padding: 20px 5px 30px;
  box-sizing: border-box;
}
@media all and (max-width: 639px) {
  #top_4 .top_4_link li {
    width: 48%;
    margin-right: 0;
    margin-bottom: 20px;
  }
}
#top_4 .top_4_link li:nth-child(4) {
  margin-right: 0;
}
@media all and (max-width: 639px) {
  #top_4 .top_4_link li:nth-child(even) {
    margin-left: auto;
  }
}
#top_4 .top_4_link li img {
  display: block;
  width: 50%;
  margin: 0 auto 20px;
}
#top_4 .top_4_link li a {
  display: block;
}
#top_4 .top_4_link li a .top_4_item_text {
  display: block;
  text-align: center;
  font-family: YakuHanJP, "Outfit", "Noto Sans JP", sans-serif;
  font-size: 16px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: 0;
  font-weight: 400;
  color: #555353;
  line-height: 1.6em;
}
@media all and (max-width: 639px) {
  #top_4 .top_4_link li a .top_4_item_text {
    font-family: YakuHanJP, "Outfit", "Noto Sans JP", sans-serif;
    font-size: 14px;
    /*font-size: ($size / $base) + rem;*/
    letter-spacing: 0;
    font-weight: 400;
  }
}
#top_4 .page_link {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
@media all and (max-width: 639px) {
  #top_4 .page_link {
    display: block;
  }
}
#top_4 .page_link .page_link_item {
  max-width: 400px;
  width: 100%;
}
#top_4 .page_link .page_link_item:nth-child(2) {
  margin-left: 20px;
}
@media all and (max-width: 639px) {
  #top_4 .page_link .page_link_item:nth-child(2) {
    margin: 10px 0 0;
  }
}
#top_4 .page_link .page_link_item a {
  display: block;
  margin: 50px auto 0;
  text-align: center;
  border-radius: 100px;
  color: #fefbf5;
  font-family: YakuHanJP, "Outfit", "Noto Sans JP", sans-serif;
  font-size: 16px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: 0;
  font-weight: 400;
  background: #00733e;
  padding: 20px 0;
}
@media all and (max-width: 639px) {
  #top_4 .page_link .page_link_item a {
    margin: 0;
  }
}

#top_5 {
  position: relative;
  margin-bottom: 100px;
  /*&:before {
  	@include before();
  	width: 70%;
  	height: 100%;
  	background: #fff;
  	border-radius: 0 30px 30px 0;
  	left: 0;
  	@include for-size(phone-only) {
  		display: none;
  	}
  }*/
}
@media all and (max-width: 639px) {
  #top_5 {
    margin-top: 0;
    margin-bottom: 60px;
  }
}
#top_5 .read {
  text-align: center;
  font-family: YakuHanRP, "Quicksand", "Zen Maru Gothic", sans-serif;
  font-size: 22px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: 0;
  font-weight: 500;
  color: #555353;
  line-height: 1em;
}
@media all and (max-width: 639px) {
  #top_5 .read {
    font-family: YakuHanRP, "Quicksand", "Zen Maru Gothic", sans-serif;
    font-size: 17px;
    /*font-size: ($size / $base) + rem;*/
    letter-spacing: 0;
  }
}
#top_5 .read span {
  display: block;
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  font-size: 47px;
  /*font-size: ($size / $base) + rem;*/
  font-weight: 500;
  position: relative;
  padding-top: 20px;
  margin-bottom: 11px;
}
@media all and (max-width: 639px) {
  #top_5 .read span {
    font-family: "Quicksand", sans-serif;
    font-weight: 500;
    font-size: 34px;
    /*font-size: ($size / $base) + rem;*/
    font-weight: 500;
  }
}
@media all and (max-width: 639px) {
  #top_5 .read {
    text-align: center;
  }
}
#top_5 table {
  max-width: 550px;
  margin: 60px auto 0;
  border-top: 1px solid #ccc;
  width: 100%;
}
#top_5 table th,
#top_5 table td {
  background: none;
  border: none;
  text-align: left;
  font-family: YakuHanJP, "Outfit", "Noto Sans JP", sans-serif;
  font-size: 16px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: 0;
  font-weight: 400;
  color: #555353;
  vertical-align: baseline;
  padding: 20px;
  border-bottom: 1px solid #ccc;
}

footer {
  position: relative;
}
footer #foot_cont {
  background-image: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/27445/foot_bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
@media all and (max-width: 639px) {
  footer #foot_cont {
    padding: 40px 0;
  }
}
footer #foot_cont .inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
footer #foot_cont .inner .in_right {
  margin-left: 10px;
}
footer #foot_cont .inner .in_right img {
  display: block;
  width: 150px;
}
footer #foot_cont .foot_logo {
  display: block;
  max-width: 322px;
}
footer #foot_cont .jusho {
  font-family: YakuHanJP, "Outfit", "Noto Sans JP", sans-serif;
  font-size: 16px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: 0;
  font-weight: 500;
  color: #555353;
  margin-top: 30px;
  text-wrap: balance;
  word-break: auto-phrase;
}
footer #foot_cont .ggmap {
  max-width: 980px;
  width: 100%;
  margin: 30px auto;
}
footer #foot_cont .foot_nav {
  margin-top: 50px;
  border-bottom: 1px solid #555353;
  border-top: 1px solid #555353;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 20px 0;
}
@media all and (max-width: 639px) {
  footer #foot_cont .foot_nav {
    display: none;
  }
}
footer #foot_cont .foot_nav li:nth-child(n+2) {
  margin-left: 30px;
}
footer #foot_cont .foot_nav li a {
  display: block;
  font-family: YakuHanJP, "Outfit", "Noto Sans JP", sans-serif;
  font-size: 16px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: 0;
  font-weight: 500;
  color: #555353;
  text-align: center;
}
footer #foot_cont .foot_nav li a span {
  display: block;
  font-family: "Outfit", sans-serif;
  font-weight: 500;
  font-size: 13px;
  /*font-size: ($size / $base) + rem;*/
  font-weight: 500;
  line-height: 1em;
}
footer .copy {
  font-family: YakuHanJP, "Outfit", "Noto Sans JP", sans-serif;
  font-size: 13px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: 0;
  letter-spacing: 0;
  font-weight: 500;
  z-index: 2;
  color: #555353;
  display: block;
  width: 100%;
  text-align: center;
  padding-bottom: 15px;
}
@media all and (max-width: 639px) {
  footer .copy {
    text-align: center;
  }
}

#nav_right {
  position: fixed;
  padding: 20px 15px 25px;
  background: #00733e;
  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: YakuHanRP, "Quicksand", "Zen Maru Gothic", sans-serif;
  font-size: 13px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: 0;
  line-height: 1em;
  color: #7f7e7e;
}
@media all and (max-width: 639px) {
  #nav_right a {
    font-family: YakuHanRP, "Quicksand", "Zen Maru Gothic", sans-serif;
    font-size: 10px;
    /*font-size: ($size / $base) + rem;*/
    letter-spacing: 0;
  }
}
#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: #555353;
  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: #00733e;
}
@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: YakuHanRP, "Quicksand", "Zen Maru Gothic", sans-serif;
  font-size: 16px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: 0;
  font-weight: 500;
  padding: 0;
  display: block;
  letter-spacing: 0;
  line-height: 1.2em;
  padding: 15px 0;
}
.gnav__menu .gnav__menu__item .item_read span {
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  font-size: 13px;
  /*font-size: ($size / $base) + rem;*/
  font-weight: 500;
  padding: 0;
  opacity: 0.8;
}
.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: #fcf5e8;
}
.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: YakuHanJP, "Outfit", "Noto Sans JP", sans-serif;
  font-size: 15px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: 0;
  color: #555353;
  font-weight: 500;
  text-align: left;
}

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

/*--------------------------------------------------
メンバー(member.php)
----------------------------------------------------*/
#member_1,
#member_2,
#member_3 {
  padding-top: 50px;
}
#member_1 .member_1_info .inne,
#member_2 .member_1_info .inne,
#member_3 .member_1_info .inne {
  display: flex;
  flex-wrap: wrap;
}
@media all and (max-width: 639px) {
  #member_1 .member_1_info .inne,
  #member_2 .member_1_info .inne,
  #member_3 .member_1_info .inne {
    display: block;
  }
}
#member_1 .member_1_info .inne .in_phto,
#member_2 .member_1_info .inne .in_phto,
#member_3 .member_1_info .inne .in_phto {
  width: 54%;
}
@media all and (max-width: 639px) {
  #member_1 .member_1_info .inne .in_phto,
  #member_2 .member_1_info .inne .in_phto,
  #member_3 .member_1_info .inne .in_phto {
    width: 100%;
  }
}
#member_1 .member_1_info .inne .in_phto img,
#member_2 .member_1_info .inne .in_phto img,
#member_3 .member_1_info .inne .in_phto img {
  display: block;
  width: 115%;
  border-radius: 10px;
}
@media all and (max-width: 639px) {
  #member_1 .member_1_info .inne .in_phto img,
  #member_2 .member_1_info .inne .in_phto img,
  #member_3 .member_1_info .inne .in_phto img {
    width: 100%;
  }
}
#member_1 .member_1_info .inne .in_text,
#member_2 .member_1_info .inne .in_text,
#member_3 .member_1_info .inne .in_text {
  width: 46%;
  padding-top: 60px;
  box-sizing: border-box;
}
@media all and (max-width: 639px) {
  #member_1 .member_1_info .inne .in_text,
  #member_2 .member_1_info .inne .in_text,
  #member_3 .member_1_info .inne .in_text {
    width: 100%;
    padding: 0;
  }
}
#member_1 .member_1_info .inne .in_text .in_bg,
#member_2 .member_1_info .inne .in_text .in_bg,
#member_3 .member_1_info .inne .in_text .in_bg {
  background: #fff;
  border-radius: 10px;
  padding: 70px 50px;
}
@media all and (max-width: 639px) {
  #member_1 .member_1_info .inne .in_text .in_bg,
  #member_2 .member_1_info .inne .in_text .in_bg,
  #member_3 .member_1_info .inne .in_text .in_bg {
    padding: 40px 20px;
  }
}
#member_1 .member_1_info .inne .in_text .in_bg .yalushoku,
#member_2 .member_1_info .inne .in_text .in_bg .yalushoku,
#member_3 .member_1_info .inne .in_text .in_bg .yalushoku {
  color: #00733e;
  font-family: YakuHanRP, "Quicksand", "Zen Maru Gothic", sans-serif;
  font-size: 17px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: 0;
  font-weight: 500;
  line-height: 1em;
}
@media all and (max-width: 639px) {
  #member_1 .member_1_info .inne .in_text .in_bg .yalushoku,
  #member_2 .member_1_info .inne .in_text .in_bg .yalushoku,
  #member_3 .member_1_info .inne .in_text .in_bg .yalushoku {
    font-family: YakuHanRP, "Quicksand", "Zen Maru Gothic", sans-serif;
    font-size: 15px;
    /*font-size: ($size / $base) + rem;*/
    letter-spacing: 0;
    font-weight: 500;
    line-height: 1em;
  }
}
#member_1 .member_1_info .inne .in_text .in_bg .name,
#member_2 .member_1_info .inne .in_text .in_bg .name,
#member_3 .member_1_info .inne .in_text .in_bg .name {
  color: #555353;
  font-family: YakuHanRP, "Quicksand", "Zen Maru Gothic", sans-serif;
  font-size: 33px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: 0;
  font-weight: 500;
}
@media all and (max-width: 639px) {
  #member_1 .member_1_info .inne .in_text .in_bg .name,
  #member_2 .member_1_info .inne .in_text .in_bg .name,
  #member_3 .member_1_info .inne .in_text .in_bg .name {
    font-family: YakuHanRP, "Quicksand", "Zen Maru Gothic", sans-serif;
    font-size: 28px;
    /*font-size: ($size / $base) + rem;*/
    letter-spacing: 0;
    font-weight: 500;
  }
}
#member_1 .member_1_info .inne .in_text .in_bg .name span,
#member_2 .member_1_info .inne .in_text .in_bg .name span,
#member_3 .member_1_info .inne .in_text .in_bg .name span {
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  font-size: 16px;
  /*font-size: ($size / $base) + rem;*/
  font-weight: 500;
  margin-left: 15px;
}
@media all and (max-width: 639px) {
  #member_1 .member_1_info .inne .in_text .in_bg .name span,
  #member_2 .member_1_info .inne .in_text .in_bg .name span,
  #member_3 .member_1_info .inne .in_text .in_bg .name span {
    font-family: "Quicksand", sans-serif;
    font-weight: 500;
    font-size: 14px;
    /*font-size: ($size / $base) + rem;*/
    font-weight: 500;
  }
}
#member_1 .member_1_info .inne .in_text .in_bg .bangou,
#member_2 .member_1_info .inne .in_text .in_bg .bangou,
#member_3 .member_1_info .inne .in_text .in_bg .bangou {
  color: #7f7e7e;
  font-family: YakuHanRP, "Quicksand", "Zen Maru Gothic", sans-serif;
  font-size: 16px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: 0;
  font-weight: 500;
  line-height: 1em;
}
@media all and (max-width: 639px) {
  #member_1 .member_1_info .inne .in_text .in_bg .bangou,
  #member_2 .member_1_info .inne .in_text .in_bg .bangou,
  #member_3 .member_1_info .inne .in_text .in_bg .bangou {
    font-family: YakuHanRP, "Quicksand", "Zen Maru Gothic", sans-serif;
    font-size: 14px;
    /*font-size: ($size / $base) + rem;*/
    letter-spacing: 0;
    font-weight: 500;
    line-height: 1em;
  }
}
#member_1 .member_1_info .inne .in_text .in_bg .info_text,
#member_2 .member_1_info .inne .in_text .in_bg .info_text,
#member_3 .member_1_info .inne .in_text .in_bg .info_text {
  font-family: YakuHanJP, "Outfit", "Noto Sans JP", sans-serif;
  font-size: 16px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: 0;
  font-weight: 400;
  color: #555353;
  margin-top: 20px;
}
@media all and (max-width: 639px) {
  #member_1 .member_1_info .inne .in_text .in_bg .info_text,
  #member_2 .member_1_info .inne .in_text .in_bg .info_text,
  #member_3 .member_1_info .inne .in_text .in_bg .info_text {
    font-family: YakuHanJP, "Outfit", "Noto Sans JP", sans-serif;
    font-size: 15px;
    /*font-size: ($size / $base) + rem;*/
    letter-spacing: 0;
    font-weight: 400;
  }
}
#member_1 .greeting,
#member_2 .greeting,
#member_3 .greeting {
  max-width: 1032px;
  width: 100%;
  margin: 60px auto 0;
  color: #555353;
  font-family: YakuHanJP, "Outfit", "Noto Sans JP", sans-serif;
  font-size: 16px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: 0;
  font-weight: 400;
}
@media all and (max-width: 639px) {
  #member_1 .greeting,
  #member_2 .greeting,
  #member_3 .greeting {
    font-family: YakuHanJP, "Outfit", "Noto Sans JP", sans-serif;
    font-size: 15px;
    /*font-size: ($size / $base) + rem;*/
    letter-spacing: 0;
    font-weight: 400;
  }
}
#member_1 .greeting strong,
#member_2 .greeting strong,
#member_3 .greeting strong {
  border-bottom: 1px solid;
}

#member_3 {
  padding-bottom: 160px;
}
#member_3 .innerB {
  max-width: 1032px;
  width: 100%;
  margin: auto;
}
#member_3 img {
  display: block;
  width: 100%;
}
#member_3 .in_bg {
  background: #fff;
  border-radius: 10px;
  padding: 30px;
}
@media all and (max-width: 639px) {
  #member_3 .in_bg {
    padding: 40px 20px;
  }
}
#member_3 .in_bg .yalushoku {
  color: #00733e;
  font-family: YakuHanRP, "Quicksand", "Zen Maru Gothic", sans-serif;
  font-size: 17px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: 0;
  font-weight: 500;
  line-height: 1em;
}
@media all and (max-width: 639px) {
  #member_3 .in_bg .yalushoku {
    font-family: YakuHanRP, "Quicksand", "Zen Maru Gothic", sans-serif;
    font-size: 15px;
    /*font-size: ($size / $base) + rem;*/
    letter-spacing: 0;
    font-weight: 500;
    line-height: 1em;
  }
}
#member_3 .in_bg .name {
  color: #555353;
  font-family: YakuHanRP, "Quicksand", "Zen Maru Gothic", sans-serif;
  font-size: 26px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: 0;
  font-weight: 500;
}
#member_3 .in_bg .name span {
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  font-size: 16px;
  /*font-size: ($size / $base) + rem;*/
  font-weight: 500;
  margin-left: 15px;
}
@media all and (max-width: 639px) {
  #member_3 .in_bg .name span {
    font-family: "Quicksand", sans-serif;
    font-weight: 500;
    font-size: 14px;
    /*font-size: ($size / $base) + rem;*/
    font-weight: 500;
  }
}
#member_3 .in_bg .bangou {
  color: #7f7e7e;
  font-family: YakuHanRP, "Quicksand", "Zen Maru Gothic", sans-serif;
  font-size: 15px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: 0;
  font-weight: 500;
  line-height: 1em;
}
@media all and (max-width: 639px) {
  #member_3 .in_bg .bangou {
    font-family: YakuHanRP, "Quicksand", "Zen Maru Gothic", sans-serif;
    font-size: 14px;
    /*font-size: ($size / $base) + rem;*/
    letter-spacing: 0;
    font-weight: 500;
    line-height: 1em;
  }
}
#member_3 .in_bg .info_text {
  font-family: YakuHanJP, "Outfit", "Noto Sans JP", sans-serif;
  font-size: 15px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: 0;
  font-weight: 400;
  color: #555353;
  margin-top: 20px;
}
@media all and (max-width: 639px) {
  #member_3 .in_bg .info_text {
    font-family: YakuHanJP, "Outfit", "Noto Sans JP", sans-serif;
    font-size: 15px;
    /*font-size: ($size / $base) + rem;*/
    letter-spacing: 0;
    font-weight: 400;
  }
}
#member_3 .greeting {
  font-family: YakuHanJP, "Outfit", "Noto Sans JP", sans-serif;
  font-size: 15px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: 0;
  font-weight: 400;
}
#member_3 .link_bott {
  display: block;
  width: 300px;
  text-align: center;
  background: #cdcd2e;
  color: #fff;
  border-radius: 100px;
  margin: 40px auto 0;
  padding: 10px 0;
  font-family: YakuHanJP, "Outfit", "Noto Sans JP", sans-serif;
  font-size: 15px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: 0;
  font-weight: 400;
}

/*--------------------------------------------------
サービス(service.php)
----------------------------------------------------*/
#service_1 .service_1_item {
  margin-bottom: 100px;
  padding-bottom: 140px;
  border-bottom: 1px dashed #555353;
}
#service_1 .service_1_item:last-child {
  padding-bottom: 0;
  border-bottom: none;
}
#service_1 .section_title_icon {
  display: block;
  width: 92px;
  margin: auto;
}
#service_1 .read {
  position: relative;
  font-family: YakuHanRP, "Quicksand", "Zen Maru Gothic", sans-serif;
  font-size: 30px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: 0;
  font-weight: 500;
  color: #555353;
  text-align: center;
  margin-bottom: 60px;
}
@media all and (max-width: 639px) {
  #service_1 .read {
    font-family: YakuHanRP, "Quicksand", "Zen Maru Gothic", sans-serif;
    font-size: 23px;
    /*font-size: ($size / $base) + rem;*/
    letter-spacing: 0;
    font-weight: 500;
  }
}
#service_1 .read span {
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  font-size: 22px;
  /*font-size: ($size / $base) + rem;*/
  font-weight: 600;
  color: #00733e;
  display: block;
  line-height: 1em;
}
@media all and (max-width: 639px) {
  #service_1 .read span {
    font-family: "Quicksand", sans-serif;
    font-weight: 500;
    font-size: 18px;
    /*font-size: ($size / $base) + rem;*/
    font-weight: 600;
    line-height: 1em;
  }
}
#service_1 .service_1_item_read {
  background: #fff;
  border-radius: 5px;
  padding: 10px 20px;
}
#service_1 .service_1_item_read span {
  position: relative;
  font-family: YakuHanRP, "Quicksand", "Zen Maru Gothic", sans-serif;
  font-size: 20px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: 0;
  font-weight: 500;
  color: #555353;
  padding-left: 15px;
}
@media all and (max-width: 639px) {
  #service_1 .service_1_item_read span {
    font-family: YakuHanRP, "Quicksand", "Zen Maru Gothic", sans-serif;
    font-size: 17px;
    /*font-size: ($size / $base) + rem;*/
    letter-spacing: 0;
    font-weight: 500;
  }
}
#service_1 .service_1_item_read span:before {
  content: "";
  display: block;
  position: absolute;
  background-repeat: no-repeat;
  margin: auto;
  width: 7px;
  height: 25px;
  background-image: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/27445/service_1_item_read_icon.svg);
  margin: auto;
  top: 0;
  bottom: 0;
  left: 0;
}
#service_1 .service_1_item_main {
  font-family: YakuHanJP, "Outfit", "Noto Sans JP", sans-serif;
  font-size: 16px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: 0;
  font-weight: 400;
  color: #555353;
  margin-top: 15px;
}
@media all and (max-width: 639px) {
  #service_1 .service_1_item_main {
    font-family: YakuHanJP, "Outfit", "Noto Sans JP", sans-serif;
    font-size: 15px;
    /*font-size: ($size / $base) + rem;*/
    letter-spacing: 0;
    font-weight: 400;
  }
}
#service_1 a {
  display: block;
  max-width: 301px;
  width: 100%;
  background: #00733e;
  font-family: YakuHanJP, "Outfit", "Noto Sans JP", sans-serif;
  font-size: 15px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: 0;
  font-weight: 400;
  color: #fefbf5;
  padding: 10px 0;
  border-radius: 100px;
  text-align: center;
  margin-top: 20px;
}
#service_1 .inner {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
}
@media all and (max-width: 639px) {
  #service_1 .inner {
    display: block;
  }
}
#service_1 .inner .in_photo {
  width: 35%;
}
@media all and (max-width: 639px) {
  #service_1 .inner .in_photo {
    width: 100%;
  }
}
#service_1 .inner .in_photo img {
  display: block;
  width: 100%;
  border-radius: 10px;
}
#service_1 .inner .in_text {
  width: 60%;
  margin-left: auto;
}
@media all and (max-width: 639px) {
  #service_1 .inner .in_text {
    width: 100%;
  }
}
#service_1 .innerB {
  margin-top: 60px;
}
#service_1 .innerB img {
  display: block;
  width: 100%;
  border-radius: 10px;
  margin-top: 20px;
}
#service_1 .main {
  text-align: center;
  color: #555353;
  font-family: YakuHanJP, "Outfit", "Noto Sans JP", sans-serif;
  font-size: 17px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: 0;
  font-weight: 400;
}
@media all and (max-width: 639px) {
  #service_1 .main {
    font-family: YakuHanJP, "Outfit", "Noto Sans JP", sans-serif;
    font-size: 15px;
    /*font-size: ($size / $base) + rem;*/
    letter-spacing: 0;
    font-weight: 400;
  }
}
#service_1 .main.bott_40 {
  margin-bottom: 60px;
}

/*--------------------------------------------------
利用料金(price.php)
----------------------------------------------------*/
#price_1 {
  padding-bottom: 140px;
}
#price_1 .read {
  position: relative;
  font-family: YakuHanRP, "Quicksand", "Zen Maru Gothic", sans-serif;
  font-size: 30px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: 0;
  font-weight: 500;
  color: #555353;
  text-align: center;
  margin-bottom: 30px;
  margin-top: 100px;
}
@media all and (max-width: 639px) {
  #price_1 .read {
    font-family: YakuHanRP, "Quicksand", "Zen Maru Gothic", sans-serif;
    font-size: 23px;
    /*font-size: ($size / $base) + rem;*/
    letter-spacing: 0;
    font-weight: 500;
  }
}
#price_1 .read span {
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  font-size: 22px;
  /*font-size: ($size / $base) + rem;*/
  font-weight: 600;
  color: #00733e;
  display: block;
  line-height: 1em;
}
@media all and (max-width: 639px) {
  #price_1 .read span {
    font-family: "Quicksand", sans-serif;
    font-weight: 500;
    font-size: 18px;
    /*font-size: ($size / $base) + rem;*/
    font-weight: 600;
    line-height: 1em;
  }
}
#price_1 .price_1_item_read {
  background: #fff;
  border-radius: 5px;
  padding: 10px 20px;
  margin-top: 80px;
  margin-bottom: 40px;
}
#price_1 .price_1_item_read span {
  position: relative;
  font-family: YakuHanRP, "Quicksand", "Zen Maru Gothic", sans-serif;
  font-size: 20px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: 0;
  font-weight: 500;
  color: #555353;
  padding-left: 15px;
}
@media all and (max-width: 639px) {
  #price_1 .price_1_item_read span {
    font-family: YakuHanRP, "Quicksand", "Zen Maru Gothic", sans-serif;
    font-size: 18px;
    /*font-size: ($size / $base) + rem;*/
    letter-spacing: 0;
  }
}
#price_1 .price_1_item_read span:before {
  content: "";
  display: block;
  position: absolute;
  background-repeat: no-repeat;
  margin: auto;
  width: 7px;
  height: 25px;
  background-image: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/27445/service_1_item_read_icon.svg);
  margin: auto;
  top: 0;
  bottom: 0;
  left: 0;
}
#price_1 .main {
  text-align: center;
  color: #555353;
  font-family: YakuHanJP, "Outfit", "Noto Sans JP", sans-serif;
  font-size: 17px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: 0;
  font-weight: 400;
}
@media all and (max-width: 639px) {
  #price_1 .main {
    font-family: YakuHanJP, "Outfit", "Noto Sans JP", sans-serif;
    font-size: 15px;
    /*font-size: ($size / $base) + rem;*/
    letter-spacing: 0;
    font-weight: 400;
    text-wrap: balance;
    word-break: auto-phrase;
  }
}
#price_1 ._spsc {
  width: 100%;
}
@media all and (max-width: 639px) {
  #price_1 ._spsc {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
#price_1 table {
  width: 100%;
  border-top: 1px solid #ccc;
}
@media all and (max-width: 639px) {
  #price_1 table {
    min-width: 700px;
  }
}
#price_1 table th,
#price_1 table td {
  background: none;
  border: none;
  color: #555353;
  font-family: YakuHanJP, "Outfit", "Noto Sans JP", sans-serif;
  font-size: 16px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: 0;
  font-weight: 400;
  text-align: center;
  border-bottom: 1px solid #ccc;
  padding: 20px;
}
@media all and (max-width: 639px) {
  #price_1 table th,
  #price_1 table td {
    font-family: YakuHanJP, "Outfit", "Noto Sans JP", sans-serif;
    font-size: 12px;
    /*font-size: ($size / $base) + rem;*/
    letter-spacing: 0;
    font-weight: 400;
    padding: 10px 6px;
  }
}
#price_1 table th {
  background: #fcf5e8;
}
#price_1 .table_bottom {
  margin-top: 20px;
  color: #555353;
  font-family: YakuHanJP, "Outfit", "Noto Sans JP", sans-serif;
  font-size: 16px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: 0;
  font-weight: 400;
}
@media all and (max-width: 639px) {
  #price_1 .table_bottom {
    font-family: YakuHanJP, "Outfit", "Noto Sans JP", sans-serif;
    font-size: 15px;
    /*font-size: ($size / $base) + rem;*/
    letter-spacing: 0;
    font-weight: 400;
  }
}
#price_1 .table_read {
  color: #555353;
  font-family: YakuHanRP, "Quicksand", "Zen Maru Gothic", sans-serif;
  font-size: 20px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: 0;
  font-weight: 500;
}
@media all and (max-width: 639px) {
  #price_1 .table_read {
    font-family: YakuHanRP, "Quicksand", "Zen Maru Gothic", sans-serif;
    font-size: 17px;
    /*font-size: ($size / $base) + rem;*/
    letter-spacing: 0;
    font-weight: 500;
  }
}
#price_1 .table_read.sec {
  margin-top: 50px;
}

/*--------------------------------------------------
お知らせ(news.php)
----------------------------------------------------*/
#news_1 {
  padding: 50px 0;
}
#news_1 .read {
  position: relative;
  font-family: YakuHanRP, "Quicksand", "Zen Maru Gothic", sans-serif;
  font-size: 30px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: 0;
  font-weight: 500;
  color: #555353;
  text-align: center;
}
@media all and (max-width: 639px) {
  #news_1 .read {
    font-family: YakuHanRP, "Quicksand", "Zen Maru Gothic", sans-serif;
    font-size: 23px;
    /*font-size: ($size / $base) + rem;*/
    letter-spacing: 0;
    font-weight: 500;
  }
}
#news_1 .read span {
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  font-size: 22px;
  /*font-size: ($size / $base) + rem;*/
  font-weight: 600;
  color: #00733e;
  display: block;
  line-height: 1em;
}
@media all and (max-width: 639px) {
  #news_1 .read span {
    font-family: "Quicksand", sans-serif;
    font-weight: 500;
    font-size: 18px;
    /*font-size: ($size / $base) + rem;*/
    font-weight: 600;
    line-height: 1em;
  }
}
#news_1 .read.sec {
  margin-top: 100px;
}
#news_1 .news_1_list {
  max-width: 951px;
  width: 100%;
  margin: 50px auto 0;
  box-sizing: border-box;
}
#news_1 .news_1_list li {
  background: #fff;
  border-radius: 10px;
}
#news_1 .news_1_list li:nth-child(n+2) {
  margin-top: 30px;
}
#news_1 .news_1_list li a {
  display: block;
  padding: 40px;
}
@media all and (max-width: 639px) {
  #news_1 .news_1_list li a {
    padding: 30px 20px;
  }
}
#news_1 .news_1_list li a .inner {
  display: flex;
  flex-wrap: wrap;
}
@media all and (max-width: 639px) {
  #news_1 .news_1_list li a .inner {
    display: block;
  }
}
#news_1 .news_1_list li a .inner .in_left {
  width: 32%;
}
@media all and (max-width: 639px) {
  #news_1 .news_1_list li a .inner .in_left {
    width: 100%;
  }
}
#news_1 .news_1_list li a .inner .in_left .thams {
  display: block;
  width: 100%;
  height: 154px;
  overflow: hidden;
  position: relative;
  border-radius: 7px;
}
@media all and (max-width: 913px) {
  #news_1 .news_1_list li a .inner .in_left .thams {
    height: 207px;
  }
}
@media all and (max-width: 639px) {
  #news_1 .news_1_list li a .inner .in_left .thams {
    margin: auto;
  }
}
#news_1 .news_1_list li a .inner .in_left .thams img {
  width: 100%;
  height: auto;
  object-fit: cover;
  vertical-align: middle;
  min-width: 100%;
  min-height: 100%;
  font-family: "object-fit: contain;";
}
#news_1 .news_1_list li a .inner .in_text {
  width: 63%;
  margin-left: auto;
}
@media all and (max-width: 639px) {
  #news_1 .news_1_list li a .inner .in_text {
    width: 100%;
    margin-top: 15px;
  }
}
#news_1 .news_1_list li a .inner .in_text .data {
  color: #555353;
  font-family: YakuHanJP, "Outfit", "Noto Sans JP", sans-serif;
  font-size: 17px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: 0;
  font-weight: 400;
}
@media all and (max-width: 639px) {
  #news_1 .news_1_list li a .inner .in_text .data {
    font-family: YakuHanJP, "Outfit", "Noto Sans JP", sans-serif;
    font-size: 15px;
    /*font-size: ($size / $base) + rem;*/
    letter-spacing: 0;
    font-weight: 400;
  }
}
#news_1 .news_1_list li a .inner .in_text .data span {
  display: block;
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  font-size: 13px;
  /*font-size: ($size / $base) + rem;*/
  font-weight: 500;
}
#news_1 .news_1_list li a .inner .in_text .news_1_list_text {
  color: #555353;
  font-family: YakuHanJP, "Outfit", "Noto Sans JP", sans-serif;
  font-size: 15px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: 0;
  font-weight: 400;
  margin-top: 15px;
  display: -webkit-box; /* 必須 */
  -webkit-box-orient: vertical; /* 必須 */
  -webkit-line-clamp: 2; /* 行数を制限 */
  overflow: hidden; /* はみ出た部分を非表示 */
}
@media all and (max-width: 639px) {
  #news_1 .news_1_list li a .inner .in_text .news_1_list_text {
    display: none;
  }
}
#news_1 .pages {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 200px;
  margin: 80px auto 0;
}
#news_1 .pages .page_next {
  margin-left: auto;
}
#news_1 .pages a {
  display: block;
  font-family: YakuHanRP, "Quicksand", "Zen Maru Gothic", sans-serif;
  font-size: 16px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: 0;
  font-weight: 500;
  color: #555353;
}
@media all and (max-width: 639px) {
  #news_1 .pages a {
    font-family: YakuHanRP, "Quicksand", "Zen Maru Gothic", sans-serif;
    font-size: 15px;
    /*font-size: ($size / $base) + rem;*/
    letter-spacing: 0;
    font-weight: 400;
  }
}

/*--------------------------------------------------
お問い合わせ(contact.php)
----------------------------------------------------*/
#flow_1 .read {
  position: relative;
  font-family: YakuHanRP, "Quicksand", "Zen Maru Gothic", sans-serif;
  font-size: 30px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: 0;
  font-weight: 500;
  color: #555353;
  text-align: center;
}
@media all and (max-width: 639px) {
  #flow_1 .read {
    font-family: YakuHanRP, "Quicksand", "Zen Maru Gothic", sans-serif;
    font-size: 23px;
    /*font-size: ($size / $base) + rem;*/
    letter-spacing: 0;
    font-weight: 500;
  }
}
#flow_1 .read span {
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  font-size: 22px;
  /*font-size: ($size / $base) + rem;*/
  font-weight: 600;
  color: #00733e;
  display: block;
  line-height: 1em;
}
@media all and (max-width: 639px) {
  #flow_1 .read span {
    font-family: "Quicksand", sans-serif;
    font-weight: 500;
    font-size: 18px;
    /*font-size: ($size / $base) + rem;*/
    font-weight: 600;
    line-height: 1em;
  }
}
#flow_1 table {
  max-width: 980px;
  width: 100%;
  margin: 50px auto 0;
}
#flow_1 table th,
#flow_1 table td {
  background: none;
  border: none;
  border-bottom: 1px dashed #d8d8d8;
  text-align: left;
  padding: 30px 20px;
  font-family: YakuHanJP, "Outfit", "Noto Sans JP", sans-serif;
  font-size: 16px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: 0;
  font-weight: 400;
  letter-spacing: 0;
  color: #555353;
}
@media all and (max-width: 639px) {
  #flow_1 table th,
  #flow_1 table td {
    display: block;
    font-family: YakuHanJP, "Outfit", "Noto Sans JP", sans-serif;
    font-size: 15px;
    /*font-size: ($size / $base) + rem;*/
    letter-spacing: 0;
    font-weight: 400;
  }
}
#flow_1 table th {
  white-space: nowrap;
}
@media all and (max-width: 639px) {
  #flow_1 table th {
    border-bottom: none;
    padding-bottom: 0;
  }
}
#flow_1 table th .flow_item_read {
  position: relative;
  padding-left: 59px;
  font-family: YakuHanJP, "Outfit", "Noto Sans JP", sans-serif;
  font-size: 20px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: 0;
  font-weight: 400;
  letter-spacing: 0;
  color: #555353;
}
@media all and (max-width: 639px) {
  #flow_1 table th .flow_item_read {
    font-family: YakuHanJP, "Outfit", "Noto Sans JP", sans-serif;
    font-size: 17px;
    /*font-size: ($size / $base) + rem;*/
    letter-spacing: 0;
    font-weight: 400;
  }
}
#flow_1 table th .flow_item_read img {
  display: block;
  position: absolute;
  width: 47px;
  left: 0;
  top: -10px;
}

#contact_1 {
  padding: 40px 0;
  margin-top: 50px;
  background: #fcf5e8;
}
#contact_1 .read {
  position: relative;
  font-family: YakuHanRP, "Quicksand", "Zen Maru Gothic", sans-serif;
  font-size: 30px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: 0;
  font-weight: 500;
  color: #555353;
  text-align: center;
}
@media all and (max-width: 639px) {
  #contact_1 .read {
    font-family: YakuHanRP, "Quicksand", "Zen Maru Gothic", sans-serif;
    font-size: 23px;
    /*font-size: ($size / $base) + rem;*/
    letter-spacing: 0;
    font-weight: 500;
  }
}
#contact_1 .read span {
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  font-size: 22px;
  /*font-size: ($size / $base) + rem;*/
  font-weight: 600;
  color: #00733e;
  display: block;
  line-height: 1em;
}
@media all and (max-width: 639px) {
  #contact_1 .read span {
    font-family: "Quicksand", sans-serif;
    font-weight: 500;
    font-size: 18px;
    /*font-size: ($size / $base) + rem;*/
    font-weight: 600;
    line-height: 1em;
  }
}
#contact_1 .company_1__main {
  margin-top: 60px;
}
@media all and (max-width: 639px) {
  #contact_1 .company_1__main .form-pattern-1 {
    padding: 40px 15px;
  }
}
#contact_1 .form-contents {
  padding: 55px 70px;
}
#contact_1 .form-contents form dl {
  font-weight: 400;
}
#contact_1 .accbox {
  margin-top: 40px;
}
#contact_1 .accbox label {
  display: block;
  cursor: pointer;
  transition: all 0.5s;
}
#contact_1 .accbox label .more {
  display: block;
  text-align: center;
  border-top: 1px solid #00733e;
  border-bottom: 1px solid #00733e;
  font-family: YakuHanRP, "Quicksand", "Zen Maru Gothic", sans-serif;
  font-size: 18px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: 0;
  font-weight: 400;
  color: #00733e;
  width: 100%;
  padding: 0.8em 0;
  margin: 15px auto 0;
  transition: 0.4s;
  margin-left: auto;
}
@media all and (max-width: 639px) {
  #contact_1 .accbox label .more {
    margin-left: 0;
  }
}
#contact_1 .accbox label .more span {
  font-family: YakuHanRP, "Quicksand", "Zen Maru Gothic", sans-serif;
  font-size: 18px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: 0;
  font-weight: 600;
}
#contact_1 .accbox label:hover .more {
  background: #00733e;
  color: #fff;
  transition: 0.4s;
}
#contact_1 .accbox label .single {
  padding: 0;
}
#contact_1 .accbox input {
  display: none;
  transition: 0.8s;
}
#contact_1 .accbox .accshow_1 {
  height: 0;
  padding: 0;
  overflow: hidden;
  opacity: 0;
  transition: 0.8s;
  position: relative;
}
#contact_1 .accbox .accshow_1 .main {
  font-family: YakuHanRP, "Quicksand", "Zen Maru Gothic", sans-serif;
  font-size: 14px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: 0;
  font-weight: 500;
  color: #555353;
  text-align: left;
  letter-spacing: 0;
  width: 85%;
  margin: auto;
}
@media all and (max-width: 639px) {
  #contact_1 .accbox .accshow_1 .main {
    line-height: 1.7em;
  }
}
#contact_1 .accbox .accshow_1 .main span {
  display: block;
  margin-top: 20px;
  font-family: YakuHanRP, "Quicksand", "Zen Maru Gothic", sans-serif;
  font-size: 16px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: 0;
  font-weight: 600;
  letter-spacing: 0;
  margin-bottom: 10px;
}
@media all and (max-width: 639px) {
  #contact_1 .accbox .accshow_1 .main span {
    margin-top: 35px;
  }
}
#contact_1 .cssacc_1:checked + .accshow_1 {
  height: auto;
  opacity: 1;
  transition: 0.8s;
}

/*--------------------------------------------------
新着情報(topics_list.php)
----------------------------------------------------*/
#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: "Outfit", sans-serif;
  font-weight: 500;
  font-size: 25px;
  /*font-size: ($size / $base) + rem;*/
  color: #00733e;
}
#topics_1 .inner .right .side_titem.sec {
  margin-top: 80px;
}
#topics_1 .inner .right .side_titem span {
  font-family: YakuHanRP, "Quicksand", "Zen Maru Gothic", sans-serif;
  font-size: 15px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: 0;
  font-weight: 500;
  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: "Outfit", sans-serif;
  font-weight: 500;
  font-size: 18px;
  /*font-size: ($size / $base) + rem;*/
  position: relative;
  padding: 15px 10px;
  transition: 0.4s;
}
#topics_1 .inner .right ul.post_list li a .data {
  font-family: "Outfit", sans-serif;
  font-weight: 500;
  font-size: 13px;
  /*font-size: ($size / $base) + rem;*/
  color: #00733e;
  opacity: 0.5;
  position: relative;
  letter-spacing: 0;
}
#topics_1 .inner .right ul.post_list li a .title {
  font-family: YakuHanRP, "Quicksand", "Zen Maru Gothic", sans-serif;
  font-size: 15px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: 0;
  font-weight: 500;
  color: #555353;
  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: "Outfit", sans-serif;
  font-weight: 500;
  font-size: 13px;
  /*font-size: ($size / $base) + rem;*/
  color: #00733e;
}
#topics_1 .entry .title {
  font-family: YakuHanRP, "Quicksand", "Zen Maru Gothic", sans-serif;
  font-size: 21px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: 0;
  font-weight: 600;
  color: #555353;
  border-bottom: 1px solid #ccc;
}
#topics_1 .entry .main_cont {
  font-family: YakuHanRP, "Quicksand", "Zen Maru Gothic", sans-serif;
  font-size: 16px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: 0;
  margin-top: 30px;
  font-weight: 500;
  color: #555353;
}
#topics_1 .entry .main_cont img {
  max-width: 100%;
  display: block;
}/*# sourceMappingURL=style.css.map */