@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&family=Quicksand:wght@300..700&family=Zen+Kaku+Gothic+New:wght@300;400;500;700;900&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: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
  font-size: 15px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: 0;
  font-weight: 400;
}

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

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

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

.tbox {
  border: 2px solid #76b433;
  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;
  /* dropdownmenu */
  /*&.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: 30px;
  margin: auto;
  border-radius: 6px;
}
@media all and (max-width: 639px) {
  header #head {
    padding-left: 0;
    background: none;
    margin-top: 0;
    padding: 0;
    border: none;
    top: 11px;
  }
}
header #head .inner {
  display: flex;
  flex-wrap: wrap;
}
header #head .inner .in_right {
  margin-left: auto;
}
@media all and (max-width: 639px) {
  header #head .inner .in_right {
    display: none;
  }
}
header #head .inner .in_right .uketukejikan {
  color: #6b6b6b;
  font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
  font-size: 12px;
  /*font-size: ($size / $base) + rem;*/
  font-weight: 500;
  margin-top: -7px;
  text-align: right;
}
header #head .inner .in_right .head_sub_nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: end;
  margin-top: 4px;
}
header #head .inner .in_right .head_sub_nav li:nth-child(n+2) {
  margin-left: 20px;
}
header #head .inner .in_right .head_sub_nav li:nth-child(n+3) {
  margin-left: 10px;
}
header #head .inner .in_right .head_sub_nav li .head_tel {
  font-family: "Outfit", sans-serif;
  font-weight: 500;
  font-size: 24px;
  /*font-size: ($size / $base) + rem;*/
  font-weight: 600;
  color: #76b433;
}
header #head .inner .in_right .head_sub_nav li a {
  display: block;
  font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
  font-size: 13px;
  /*font-size: ($size / $base) + rem;*/
  font-weight: 500;
  background: #7a6856;
  color: #fff;
  border-radius: 100px;
  padding: 9px 40px;
}
header #head .inner .in_right .head_sub_nav li a.link_botton_sns {
  display: block;
  background: none;
  border-radius: 0;
  padding: 0;
}
header #head .inner .in_right .head_sub_nav li a.link_botton_sns img {
  display: block;
  width: 41px;
}
header #head .logo {
  width: 370px;
  transition: 0.4s;
  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: 186px;
    padding: 15px 0;
    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 .single {
  padding: 10px 0 40px;
}
@media all and (max-width: 639px) {
  header .single {
    padding: 0;
  }
}
header .head_nav {
  display: flex;
  flex-wrap: wrap;
  z-index: 2;
}
@media all and (max-width: 913px) {
  header .head_nav {
    display: none;
  }
}
header .head_nav li {
  border-left: 1px solid #6b6b6b;
  width: 16.6666666%;
  box-sizing: border-box;
}
header .head_nav li:last-child {
  border-right: 1px solid #6b6b6b;
}
header .head_nav li a {
  display: block;
  color: #6b6b6b;
  font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
  font-size: 15px;
  /*font-size: ($size / $base) + rem;*/
  font-weight: 500;
  letter-spacing: 0;
  font-weight: 500;
  text-align: center;
  position: relative;
  padding: 7px 0;
  transition: 0.4s;
}
header .head_nav li a:hover, header .head_nav li a.active {
  color: #76b433;
  transition: 0.4s;
}
header .head_nav li ul {
  position: absolute;
  top: 60px;
  display: block !important;
  padding-top: 0;
  width: 200px;
  height: 10px;
}
header .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;
}
header .head_nav li ul li:last-child {
  border: none;
}
header .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: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
  font-size: 15px;
  /*font-size: ($size / $base) + rem;*/
  font-weight: 500;
  font-weight: 400;
  font-size: 15px !important;
  color: #6b6b6b;
  box-sizing: border-box;
}
header .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: #76b433;
}
header .head_nav li ul li a:hover {
  color: #76b433;
}
header .head_nav li:hover ul {
  height: auto;
}
header .head_nav li:hover ul li {
  visibility: visible;
  overflow: visible;
}

/* 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: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
  font-size: 14px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: 0;
  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: #fbf9f3;
  font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
  font-size: 20px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: 0;
  font-weight: 400;
  font-weight: bold;
}
#navi li a span {
  display: block;
  font-family: "Outfit", sans-serif;
  font-weight: 500;
  font-size: 17px;
  /*font-size: ($size / $base) + rem;*/
  font-weight: 300;
  color: #6b6b6b;
}
#navi li a img {
  display: block;
  width: auto;
  margin: 0 auto 10px;
  height: 32px;
}
#navi li a:hover {
  color: #76b433;
  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: #fbf9f3;
  padding: 80px 0 30px;
  position: relative;
}
@media all and (max-width: 639px) {
  #contentwrap.kasou {
    padding: 30px 0 10px;
  }
}
#contentwrap.kasou:before {
  content: "";
  display: block;
  position: absolute;
  background-repeat: no-repeat;
  margin: auto;
  width: 100%;
  height: 200px;
  background: #fbf9f3;
  bottom: -199px;
  left: 0;
  z-index: -1;
}

.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: #76b433;
  color: #fff;
}
table td {
  padding: 5px 10px;
  vertical-align: middle;
  border: #ddd 1px solid;
}
table td b {
  color: #76b433;
  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: #fbf9f3;
  font-weight: bold;
  border: 2px solid #fbf9f3;
}
#mailform button:before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f0e0";
  margin-right: 6px;
}
#mailform button:hover {
  background: #fff;
  color: #fbf9f3;
}
#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 #76b433;
  border-bottom: 3px solid #76b433;
  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;
  }
}
#top_main .top_main_vis {
  width: 96%;
  margin: auto;
  overflow: hidden;
  border-radius: 20px;
  position: relative;
}
#top_main .top_main_vis .top_main_vis_text {
  display: table;
  position: absolute;
  z-index: 22;
  top: 0;
  right: 40px;
}
@media all and (max-width: 639px) {
  #top_main .top_main_vis .top_main_vis_text {
    display: none;
  }
}
#top_main .top_main_vis .top_main_vis_text p {
  background: #fdad3c;
  border-radius: 0 0 7px 7px;
  position: relative;
  padding: 10px 30px;
  font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
  font-size: 15px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: 0;
  font-weight: 400;
  color: #fff;
}
#top_main .top_main_vis .top_main_vis_text p:before, #top_main .top_main_vis .top_main_vis_text p:after {
  content: "";
  display: block;
  position: absolute;
  background-repeat: no-repeat;
  margin: auto;
  width: 7px;
  height: 7px;
  top: 0;
}
#top_main .top_main_vis .top_main_vis_text p:before {
  background-image: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/27267/orenge_left.svg);
  left: -7px;
}
#top_main .top_main_vis .top_main_vis_text p:after {
  background-image: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/27267/orenge_right.svg);
  right: -7px;
}
#top_main .top_main_chachi {
  height: 151px;
  margin: -69px auto 0 0;
  z-index: 222;
}
@media all and (max-width: 639px) {
  #top_main .top_main_chachi {
    height: 56px;
    margin: -29px 0 0 10px;
  }
}
#top_main .top_main_chachi img {
  display: block;
  height: 100%;
  width: auto;
  position: relative;
  z-index: 22;
}
#top_main .single {
  padding: 0;
}
#top_main .single .main {
  margin-top: 60px;
  font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
  font-size: 17px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: 0;
  font-weight: 400;
  color: #6b6b6b;
  line-height: 2.3em;
}
@media all and (max-width: 639px) {
  #top_main .single .main {
    font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
    font-size: 15px;
    /*font-size: ($size / $base) + rem;*/
    letter-spacing: 0;
    font-weight: 400;
  }
}
#top_main.page_unde {
  position: relative;
}
#top_main.page_unde .page_title_about {
  background: #f7f3e8;
}
#top_main.page_unde .single {
  padding: 42px 0;
}
@media all and (max-width: 639px) {
  #top_main.page_unde .single {
    padding: 32px 0;
  }
}
#top_main.page_unde .in_cont {
  display: flex;
  flex-wrap: wrap;
}
@media all and (max-width: 639px) {
  #top_main.page_unde .in_cont {
    display: block;
  }
}
#top_main.page_unde .in_cont .in_right {
  margin-left: auto;
}
#top_main h2 {
  font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
  font-size: 27px;
  /*font-size: ($size / $base) + rem;*/
  font-weight: 500;
  font-weight: 600;
  color: #7a6856;
}
@media all and (max-width: 639px) {
  #top_main h2 {
    font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
    font-size: 18px;
    /*font-size: ($size / $base) + rem;*/
    font-weight: 500;
    font-weight: 600;
  }
}
#top_main .page_title_text {
  font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: 0;
  font-weight: 400;
  color: #7a6856;
}
@media all and (max-width: 639px) {
  #top_main .page_title_text {
    font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
    font-size: 15px;
    /*font-size: ($size / $base) + rem;*/
    letter-spacing: 0;
    font-weight: 400;
  }
}
#top_main .uncor {
  display: flex;
  flex-wrap: wrap;
  justify-content: end;
  margin-top: 21px;
}
@media all and (max-width: 639px) {
  #top_main .uncor {
    display: block;
  }
}
#top_main .uncor li:nth-child(n+2) {
  margin-left: 20px;
}
@media all and (max-width: 639px) {
  #top_main .uncor li:nth-child(n+2) {
    margin: 10px 0 0;
  }
}
#top_main .uncor li a {
  display: block;
  font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: 0;
  font-weight: 400;
  color: #6b6b6b;
}
#top_main .uncor li a span {
  display: block;
  position: relative;
  padding-right: 22px;
}
#top_main .uncor li a span:before {
  content: "";
  display: block;
  position: absolute;
  background-repeat: no-repeat;
  margin: auto;
  width: 17px;
  height: 17px;
  background-image: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/27267/page_uncor_icon.svg);
  margin: auto;
  top: 0;
  bottom: 0;
  right: 0;
}

#top_1 {
  position: relative;
  margin-top: 80px;
}
@media all and (max-width: 639px) {
  #top_1 {
    margin-top: 0;
  }
}
#top_1:before {
  content: "";
  display: block;
  position: absolute;
  background-repeat: no-repeat;
  margin: auto;
  width: 40%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/27267/top_1.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  border-radius: 0 20px 20px 0;
}
@media all and (max-width: 639px) {
  #top_1:before {
    display: none;
  }
}
#top_1 .top_1_item {
  width: 57%;
  margin-left: auto;
}
@media all and (max-width: 639px) {
  #top_1 .top_1_item {
    width: 100%;
  }
}
#top_1 .top_1_item img._sp {
  display: none;
}
@media all and (max-width: 639px) {
  #top_1 .top_1_item img._sp {
    display: block;
    width: 100%;
    border-radius: 15px;
    margin-bottom: 30px;
  }
}
#top_1 .main {
  font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
  font-size: 17px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: 0;
  font-weight: 400;
  color: #6b6b6b;
  line-height: 2.3em;
}
@media all and (max-width: 639px) {
  #top_1 .main {
    font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
    font-size: 15px;
    /*font-size: ($size / $base) + rem;*/
    letter-spacing: 0;
    font-weight: 400;
    color: #6b6b6b;
  }
}

#top_2 {
  margin-top: 120px;
}
@media all and (max-width: 639px) {
  #top_2 {
    margin-top: 30px;
  }
}
#top_2 .single {
  background: #fff;
  border-radius: 30px;
  padding: 60px 80px;
}
@media all and (max-width: 639px) {
  #top_2 .single {
    padding: 50px 20px;
  }
}
#top_2 .inner {
  display: flex;
  flex-wrap: wrap;
}
@media all and (max-width: 639px) {
  #top_2 .inner {
    display: block;
  }
}
#top_2 .inner .in_left {
  width: 30%;
}
@media all and (max-width: 639px) {
  #top_2 .inner .in_left {
    width: 100%;
  }
}
#top_2 .inner .in_right {
  margin-left: auto;
  width: 66%;
}
@media all and (max-width: 639px) {
  #top_2 .inner .in_right {
    width: 100%;
    margin-top: 30px;
  }
}
#top_2 .read {
  text-align: center;
  position: relative;
  font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
  font-size: 29px;
  /*font-size: ($size / $base) + rem;*/
  font-weight: 500;
  font-weight: 400;
  color: #6b6b6b;
  line-height: 1.6em;
  text-wrap: balance;
  word-break: auto-phrase;
  text-align: left;
}
@media all and (max-width: 639px) {
  #top_2 .read {
    font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
    font-size: 26px;
    /*font-size: ($size / $base) + rem;*/
    font-weight: 500;
    font-weight: 600;
  }
}
#top_2 .read span {
  display: block;
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  font-size: 19px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: 0.1em;
  font-weight: 500;
  color: #7a6856;
  margin-bottom: 11px;
  line-height: 1em;
}
#top_2 .more_line {
  display: block;
  background: #76b433;
  border-radius: 100px;
  padding: 10px 0;
  color: #fff;
  font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
  font-size: 13px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: 0;
  font-weight: 400;
  margin-top: 40px;
  text-align: center;
  max-width: 200px;
  width: 100%;
}
#top_2 .scc {
  height: 300px;
  overflow: auto;
  padding-right: 20px;
}
#top_2 .news_list li {
  padding: 20px 10px;
  border-bottom: 1px solid #d8d8d8;
}
#top_2 .news_list li span {
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  font-size: 13px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: 0.1em;
  color: #475950;
}
#top_2 .news_list li p {
  font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: 0;
  font-weight: 400;
  color: #6b6b6b;
}

#top_3 {
  margin-top: 120px;
}
#top_3 .read {
  text-align: center;
  position: relative;
  font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
  font-size: 29px;
  /*font-size: ($size / $base) + rem;*/
  font-weight: 500;
  font-weight: 400;
  color: #6b6b6b;
  line-height: 1.6em;
  text-wrap: balance;
  word-break: auto-phrase;
}
@media all and (max-width: 639px) {
  #top_3 .read {
    font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
    font-size: 26px;
    /*font-size: ($size / $base) + rem;*/
    font-weight: 500;
    font-weight: 600;
  }
}
#top_3 .read span {
  display: block;
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  font-size: 19px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: 0.1em;
  font-weight: 500;
  color: #7a6856;
  margin-bottom: 11px;
  line-height: 1em;
}
#top_3 .single_new {
  background: #f7f3e8;
  border-radius: 30px;
}
@media all and (max-width: 639px) {
  #top_3 .single_new {
    padding: 40px 0;
  }
}
#top_3 .main {
  font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
  font-size: 17px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: 0;
  font-weight: 400;
  color: #6b6b6b;
  margin-top: 30px;
  text-align: center;
}
@media all and (max-width: 639px) {
  #top_3 .main {
    font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
    font-size: 15px;
    /*font-size: ($size / $base) + rem;*/
    letter-spacing: 0;
    font-weight: 400;
    text-wrap: balance;
    word-break: auto-phrase;
  }
}
#top_3 .soudannaiyou {
  background: #fff;
  border-radius: 30px;
  margin-top: 60px;
  position: relative;
  padding: 60px 60px 70px;
}
@media all and (max-width: 639px) {
  #top_3 .soudannaiyou {
    padding: 60px 20px 40px;
  }
}
#top_3 .soudannaiyou .soudannaiyou_read {
  display: table;
  position: absolute;
  z-index: 22;
  top: 0;
  left: 40px;
}
#top_3 .soudannaiyou .soudannaiyou_read p {
  background: #fdad3c;
  border-radius: 0 0 7px 7px;
  position: relative;
  padding: 10px 30px;
  font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
  font-size: 15px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: 0;
  font-weight: 400;
  color: #fff;
}
#top_3 .soudannaiyou .soudannaiyou_read p:before, #top_3 .soudannaiyou .soudannaiyou_read p:after {
  content: "";
  display: block;
  position: absolute;
  background-repeat: no-repeat;
  margin: auto;
  width: 7px;
  height: 7px;
  top: 0;
}
#top_3 .soudannaiyou .soudannaiyou_read p:before {
  background-image: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/27267/orenge_left.svg);
  left: -7px;
}
#top_3 .soudannaiyou .soudannaiyou_read p:after {
  background-image: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/27267/orenge_right.svg);
  right: -7px;
}
#top_3 .soudannaiyou .list_soudan {
  display: flex;
  flex-wrap: wrap;
  margin-top: 30px;
}
@media all and (max-width: 639px) {
  #top_3 .soudannaiyou .list_soudan {
    display: block;
  }
}
#top_3 .soudannaiyou .list_soudan li {
  width: 20%;
}
@media all and (max-width: 639px) {
  #top_3 .soudannaiyou .list_soudan li {
    width: 90%;
    margin: 0 auto 30px;
  }
}
#top_3 .soudannaiyou .list_soudan li a {
  display: block;
}
#top_3 .soudannaiyou .list_soudan li a:hover img {
  border: 2px solid #fdad3c;
  transition: 0.4s;
}
#top_3 .soudannaiyou .list_soudan li img {
  display: block;
  width: 50%;
  margin: auto;
  border: 2px solid #fff;
  transition: 0.4s;
  border-radius: 50%;
}
#top_3 .soudannaiyou .list_soudan li p {
  text-align: center;
  font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
  font-size: 17px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: 0;
  font-weight: 400;
  color: #6b6b6b;
  margin-top: 10px;
  line-height: 1.6em;
}
#top_3 a.botton_link {
  display: block;
  background: #76b433;
  border-radius: 100px;
  max-width: 307px;
  width: 100%;
  text-align: center;
  margin: 40px auto 0;
  text-align: center;
  font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: 0;
  font-weight: 400;
  color: #fff;
  text-align: center;
  padding: 15px 0;
}

#top_4 .read {
  text-align: center;
  position: relative;
  font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
  font-size: 29px;
  /*font-size: ($size / $base) + rem;*/
  font-weight: 500;
  font-weight: 400;
  color: #6b6b6b;
  line-height: 1.6em;
  text-wrap: balance;
  word-break: auto-phrase;
}
@media all and (max-width: 639px) {
  #top_4 .read {
    font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
    font-size: 26px;
    /*font-size: ($size / $base) + rem;*/
    font-weight: 500;
    font-weight: 600;
  }
}
#top_4 .read span {
  display: block;
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  font-size: 19px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: 0.1em;
  font-weight: 500;
  color: #7a6856;
  margin-bottom: 11px;
  line-height: 1em;
}
#top_4 .main {
  font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
  font-size: 17px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: 0;
  font-weight: 400;
  color: #6b6b6b;
  margin-top: 30px;
  text-align: center;
}
@media all and (max-width: 639px) {
  #top_4 .main {
    font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
    font-size: 15px;
    /*font-size: ($size / $base) + rem;*/
    letter-spacing: 0;
    font-weight: 400;
    text-wrap: balance;
    word-break: auto-phrase;
  }
}
#top_4 .list {
  display: flex;
  flex-wrap: wrap;
  margin-top: 60px;
  justify-content: center;
}
@media all and (max-width: 639px) {
  #top_4 .list {
    display: block;
  }
}
#top_4 .list li {
  width: 20%;
}
@media all and (max-width: 639px) {
  #top_4 .list li {
    width: 90%;
    margin: 0 auto 30px;
  }
}
#top_4 .list li a {
  display: block;
}
#top_4 .list li a:hover img {
  border: 2px solid #76b433;
  transition: 0.4s;
}
#top_4 .list li img {
  display: block;
  width: 50%;
  margin: auto;
  border: 2px solid #fff;
  border-radius: 50%;
  transition: 0.4s;
}
#top_4 .list li p {
  text-align: center;
  font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
  font-size: 17px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: 0;
  font-weight: 400;
  color: #6b6b6b;
  margin-top: 10px;
  line-height: 1.6em;
}
#top_4 .bottom {
  margin-top: 80px;
  background: #f7f3e8;
  border-radius: 30px;
  padding: 60px 80px;
}
@media all and (max-width: 639px) {
  #top_4 .bottom {
    padding: 60px 20px;
  }
}
#top_4 .bottom .inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
@media all and (max-width: 639px) {
  #top_4 .bottom .inner {
    display: block;
  }
}
#top_4 .bottom .inner .in_left .bottom_read {
  font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
  font-size: 24px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: 0;
  font-weight: 400;
  color: #6b6b6b;
  line-height: 1.6em;
}
#top_4 .bottom .inner .in_left .bottom_read span {
  display: block;
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  font-size: 13px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: 0.1em;
  color: #fdad3c;
  margin-bottom: 10px;
  line-height: 1em;
}
#top_4 .bottom .inner .in_right {
  margin-left: 40px;
}
@media all and (max-width: 639px) {
  #top_4 .bottom .inner .in_right {
    margin: 30px 0 0;
  }
}
#top_4 .bottom .inner .in_right .bottom_main {
  font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: 0;
  font-weight: 400;
  color: #6b6b6b;
}
#top_4 .bottom .inner .in_right a.botton_link {
  display: block;
  background: #76b433;
  border-radius: 100px;
  max-width: 350px;
  width: 100%;
  text-align: center;
  margin: 20px 0 0;
  text-align: center;
  font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
  font-size: 13px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: 0;
  font-weight: 400;
  color: #fff;
  text-align: center;
  padding: 13px 0;
}

#top_5 {
  background: #fff;
  padding: 40px 0;
  margin-top: 40px;
}
#top_5 .inner {
  display: flex;
  flex-wrap: wrap;
}
@media all and (max-width: 639px) {
  #top_5 .inner {
    display: block;
  }
}
#top_5 .inner .in_text {
  width: 66%;
  padding-top: 40px;
}
@media all and (max-width: 639px) {
  #top_5 .inner .in_text {
    width: 100%;
  }
}
#top_5 .inner .in_text .top_5_cont {
  display: flex;
  flex-wrap: wrap;
}
@media all and (max-width: 639px) {
  #top_5 .inner .in_text .top_5_cont {
    display: block;
  }
}
#top_5 .inner .in_text .top_5_cont .in_top_5_con_left {
  width: 40%;
}
@media all and (max-width: 639px) {
  #top_5 .inner .in_text .top_5_cont .in_top_5_con_left {
    width: 100%;
  }
}
#top_5 .inner .in_text .top_5_cont .in_top_5_con_left .read {
  text-align: center;
  position: relative;
  font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
  font-size: 29px;
  /*font-size: ($size / $base) + rem;*/
  font-weight: 500;
  font-weight: 400;
  color: #6b6b6b;
  line-height: 1.6em;
  text-wrap: balance;
  word-break: auto-phrase;
  text-align: left;
}
@media all and (max-width: 639px) {
  #top_5 .inner .in_text .top_5_cont .in_top_5_con_left .read {
    font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
    font-size: 26px;
    /*font-size: ($size / $base) + rem;*/
    font-weight: 500;
    font-weight: 600;
  }
}
#top_5 .inner .in_text .top_5_cont .in_top_5_con_left .read span {
  display: block;
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  font-size: 19px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: 0.1em;
  font-weight: 500;
  color: #7a6856;
  margin-bottom: 11px;
  line-height: 1em;
}
#top_5 .inner .in_text .top_5_cont .in_top_5_con_left .read span {
  line-height: 1em;
}
#top_5 .inner .in_text .top_5_cont .in_top_5_con_right {
  width: 50%;
  margin-top: auto;
}
@media all and (max-width: 639px) {
  #top_5 .inner .in_text .top_5_cont .in_top_5_con_right {
    width: 100%;
    margin-top: 30px;
  }
}
#top_5 .inner .in_text .top_5_cont .in_top_5_con_right .links li {
  border-bottom: 1px solid #d8d8d8;
}
#top_5 .inner .in_text .top_5_cont .in_top_5_con_right .links li:first-child {
  border-top: 1px solid #d8d8d8;
}
#top_5 .inner .in_text .top_5_cont .in_top_5_con_right .links li a {
  display: block;
  position: relative;
  padding: 18px 10px;
  font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
  font-size: 17px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: 0;
  font-weight: 400;
  color: #6b6b6b;
}
#top_5 .inner .in_text .top_5_cont .in_top_5_con_right .links li a i {
  color: #76b433;
  position: absolute;
  margin: auto;
  top: 0;
  bottom: 0;
  line-height: 1em;
  height: 1em;
  right: 10px;
}
#top_5 .inner .in_text .online {
  margin-top: 60px;
}
#top_5 .inner .in_text .online .online_read {
  display: table;
  font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
  font-size: 20px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: 0;
  font-weight: 400;
  color: #7a6856;
  border-bottom: 2px solid #7a6856;
}
#top_5 .inner .in_text .online .online_text {
  font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: 0;
  font-weight: 400;
  color: #6b6b6b;
  margin-top: 20px;
  line-height: 2em;
}
@media all and (max-width: 639px) {
  #top_5 .inner .in_text .online .online_text {
    font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
    font-size: 15px;
    /*font-size: ($size / $base) + rem;*/
    letter-spacing: 0;
    font-weight: 400;
  }
}
#top_5 .inner .in_photo {
  width: 30%;
  margin-left: auto;
}
@media all and (max-width: 639px) {
  #top_5 .inner .in_photo {
    width: 100%;
    margin-top: 40px;
  }
}
#top_5 .inner .in_photo img {
  display: block;
  width: 100%;
  border-radius: 20px;
}

#top_6 {
  padding: 40px 0 0;
}
#top_6 .read {
  text-align: center;
  position: relative;
  font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
  font-size: 29px;
  /*font-size: ($size / $base) + rem;*/
  font-weight: 500;
  font-weight: 400;
  color: #6b6b6b;
  line-height: 1.6em;
  text-wrap: balance;
  word-break: auto-phrase;
  text-align: left;
}
@media all and (max-width: 639px) {
  #top_6 .read {
    font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
    font-size: 26px;
    /*font-size: ($size / $base) + rem;*/
    font-weight: 500;
    font-weight: 600;
  }
}
#top_6 .read span {
  display: block;
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  font-size: 19px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: 0.1em;
  font-weight: 500;
  color: #7a6856;
  margin-bottom: 11px;
  line-height: 1em;
}
#top_6 .read span {
  line-height: 1em;
}
#top_6 .inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
@media all and (max-width: 639px) {
  #top_6 .inner {
    display: block;
  }
}
@media all and (max-width: 639px) {
  #top_6 .inner .in_left {
    width: 100%;
  }
}
#top_6 .inner .in_right {
  width: 56%;
  margin-left: 50px;
  padding: 10px 0 0;
  position: relative;
}
@media all and (max-width: 639px) {
  #top_6 .inner .in_right {
    width: 100%;
    margin-top: 30px;
    margin-left: 0;
  }
}
@media all and (max-width: 639px) {
  #top_6 .topics_list {
    margin-top: 0;
  }
}
#top_6 .topics_list li {
  background: #fbf9f3;
  border-radius: 6px;
  background: #fff;
  position: relative;
}
#top_6 .topics_list li:nth-child(n+2) {
  margin-top: 20px;
}
#top_6 .topics_list li a {
  display: block;
  padding: 23px 33px;
}
@media all and (max-width: 639px) {
  #top_6 .topics_list li a {
    padding: 15px;
  }
}
#top_6 .topics_list li .data {
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  font-size: 13px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: 0.1em;
  color: #475950;
  opacity: 0.8;
}
#top_6 .topics_list li .post_title {
  font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: 0;
  font-weight: 400;
  color: #6b6b6b;
}
@media all and (max-width: 639px) {
  #top_6 .topics_list li .post_title {
    font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
    font-size: 15px;
    /*font-size: ($size / $base) + rem;*/
    letter-spacing: 0;
    font-weight: 400;
  }
}
#top_6 .topics_list li i {
  position: absolute;
  line-height: 1em;
  height: 1em;
  margin: auto;
  top: 0;
  bottom: 0;
  right: 33px;
  color: #76b433;
}

footer {
  position: relative;
  z-index: 2;
}
@media all and (max-width: 639px) {
  footer {
    padding-top: 30px;
  }
}
footer #foot_cont {
  background: #f7f3e8;
  padding: 40px 0 0;
}
footer #foot_cont .single {
  padding-top: 40px;
}
footer #foot_cont .foot_logo {
  display: block;
  width: 370px;
  margin: auto;
}
@media all and (max-width: 639px) {
  footer #foot_cont .foot_logo {
    display: block;
  }
}
footer #foot_cont .foot_text {
  font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
  font-size: 15px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: 0;
  font-weight: 400;
  color: #6b6b6b;
  margin-bottom: 10px;
  text-align: center;
  margin-top: 20px;
}
@media all and (max-width: 639px) {
  footer #foot_cont .foot_text {
    font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
    font-size: 15px;
    /*font-size: ($size / $base) + rem;*/
    letter-spacing: 0;
    font-weight: 400;
    font-weight: 500;
    text-wrap: balance;
    word-break: auto-phrase;
  }
}
footer #foot_cont .inner {
  display: flex;
  flex-wrap: wrap;
  margin-top: 60px;
}
@media all and (max-width: 639px) {
  footer #foot_cont .inner {
    display: block;
  }
}
footer #foot_cont .inner .in_left {
  width: 32%;
}
@media all and (max-width: 639px) {
  footer #foot_cont .inner .in_left {
    width: 100%;
  }
}
footer #foot_cont .inner .in_left .info {
  color: #6b6b6b;
}
footer #foot_cont .inner .in_right {
  width: 61%;
  margin-left: auto;
}
@media all and (max-width: 639px) {
  footer #foot_cont .inner .in_right {
    width: 100%;
  }
}
footer #foot_cont .inner .in_right .foot_contact {
  background: #fff;
  position: relative;
  padding: 40px;
  border-radius: 10px;
}
@media all and (max-width: 639px) {
  footer #foot_cont .inner .in_right .foot_contact {
    padding: 40px 20px;
    margin-top: 40px;
  }
}
footer #foot_cont .inner .in_right .foot_contact .link_foot {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
@media all and (max-width: 639px) {
  footer #foot_cont .inner .in_right .foot_contact .link_foot {
    display: block;
  }
}
footer #foot_cont .inner .in_right .foot_contact .link_foot li:nth-child(2) {
  margin-left: 20px;
}
@media all and (max-width: 639px) {
  footer #foot_cont .inner .in_right .foot_contact .link_foot li:nth-child(2) {
    margin: 20px 0 0;
  }
}
footer #foot_cont .inner .in_right .foot_contact .link_foot li .tel_ue {
  font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
  font-size: 15px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: 0;
  font-weight: 400;
  color: #6b6b6b;
}
footer #foot_cont .inner .in_right .foot_contact .link_foot li a {
  display: block;
}
footer #foot_cont .inner .in_right .foot_contact .link_foot li a.foot_link_tel {
  font-family: "Outfit", sans-serif;
  font-weight: 500;
  font-size: 35px;
  /*font-size: ($size / $base) + rem;*/
  font-weight: 400;
  letter-spacing: 0;
  color: #76b433;
  line-height: 1em;
}
@media all and (max-width: 639px) {
  footer #foot_cont .inner .in_right .foot_contact .link_foot li a.foot_link_tel {
    font-family: "Outfit", sans-serif;
    font-weight: 500;
    font-size: 36px;
    /*font-size: ($size / $base) + rem;*/
    font-weight: 600;
    letter-spacing: 0;
  }
}
footer #foot_cont .inner .in_right .foot_contact .link_foot li a.foot_link_mail {
  background: #7a6856;
  padding: 10px 50px;
  border-radius: 5px;
  font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
  font-size: 15px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: 0;
  font-weight: 400;
  color: #fff;
  margin-top: 20px;
}
footer #foot_cont .inner .in_right .foot_contact_tyui {
  font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
  font-size: 13px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: 0;
  font-weight: 400;
  letter-spacing: 0;
  color: #6b6b6b;
  line-height: 1.6em;
  margin-top: 20px;
  text-align: right;
}
@media all and (max-width: 639px) {
  footer #foot_cont .inner .in_right .foot_contact_tyui {
    text-align: left;
  }
}
footer .copy {
  text-align: center;
  font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
  font-size: 13px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: 0;
  font-weight: 400;
  letter-spacing: 0;
  z-index: 2;
  color: #6b6b6b;
  padding: 0 0 20px;
}

#nav_right {
  position: fixed;
  padding: 20px 15px 25px;
  background: #76b433;
  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: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
  font-size: 13px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: 0;
  font-weight: 400;
  line-height: 1em;
  color: #fdad3c;
}
@media all and (max-width: 639px) {
  #nav_right a {
    font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
    font-size: 10px;
    /*font-size: ($size / $base) + rem;*/
    letter-spacing: 0;
    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: #6b6b6b;
  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: #76b433;
}
@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: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: 0;
  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: #f7f3e8;
}
.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", "Zen Kaku Gothic New", sans-serif;
  font-size: 15px;
  /*font-size: ($size / $base) + rem;*/
  font-weight: 500;
  color: #6b6b6b;
  font-weight: 500;
  text-align: left;
}

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

#kasou_content {
  background: #fff;
  border-radius: 20px;
}

/*--------------------------------------------------
ご相談内容・対応分野(service.php)
----------------------------------------------------*/
@media all and (max-width: 639px) {
  #service_1 {
    padding-top: 50px;
  }
}
#service_1 .read {
  text-align: center;
  font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
  font-size: 26px;
  /*font-size: ($size / $base) + rem;*/
  font-weight: 500;
  font-weight: 500;
  color: #6b6b6b;
  position: relative;
  padding-bottom: 10px;
}
#service_1 .read:before {
  content: "";
  display: block;
  position: absolute;
  background-repeat: no-repeat;
  margin: auto;
  width: 63px;
  height: 6px;
  background: #76b433;
  border-radius: 10px;
  margin: auto;
  left: 0;
  right: 0;
  bottom: 0;
}
#service_1 .list_soudan {
  display: flex;
  flex-wrap: wrap;
  margin-top: 60px;
}
@media all and (max-width: 639px) {
  #service_1 .list_soudan {
    display: block;
  }
}
#service_1 .list_soudan li {
  width: 20%;
}
@media all and (max-width: 639px) {
  #service_1 .list_soudan li {
    width: 90%;
    margin: 0 auto 30px;
  }
}
#service_1 .list_soudan li a {
  display: block;
}
#service_1 .list_soudan li a:hover img {
  border: 2px solid #fdad3c;
  transition: 0.4s;
}
#service_1 .list_soudan li img {
  display: block;
  width: 50%;
  margin: auto;
  border: 2px solid #fff;
  transition: 0.4s;
  border-radius: 50%;
}
#service_1 .list_soudan li p {
  text-align: center;
  font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
  font-size: 17px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: 0;
  font-weight: 400;
  color: #6b6b6b;
  margin-top: 10px;
  line-height: 1.6em;
}

#service_2 .service_item_read,
#service_3 .service_item_read,
#service_4 .service_item_read,
#service_5 .service_item_read,
#service_6 .service_item_read {
  background: #fff;
  border-radius: 7px;
  padding: 10px 15px;
}
#service_2 .service_item_read span,
#service_3 .service_item_read span,
#service_4 .service_item_read span,
#service_5 .service_item_read span,
#service_6 .service_item_read span {
  position: relative;
  padding-left: 36px;
  font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
  font-size: 20px;
  /*font-size: ($size / $base) + rem;*/
  font-weight: 500;
  font-weight: 500;
  color: #6b6b6b;
}
#service_2 .service_item_read span:before,
#service_3 .service_item_read span:before,
#service_4 .service_item_read span:before,
#service_5 .service_item_read span:before,
#service_6 .service_item_read span:before {
  content: "";
  display: block;
  position: absolute;
  background-repeat: no-repeat;
  margin: auto;
  width: 29px;
  height: 21px;
  background-image: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/27267/service_item_read_icon.svg);
  margin: auto;
  left: 0;
  top: 0;
  bottom: 0;
}
@media all and (max-width: 639px) {
  #service_2 .service_item_read span:before,
  #service_3 .service_item_read span:before,
  #service_4 .service_item_read span:before,
  #service_5 .service_item_read span:before,
  #service_6 .service_item_read span:before {
    bottom: auto;
  }
}
#service_2 .main,
#service_3 .main,
#service_4 .main,
#service_5 .main,
#service_6 .main {
  font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
  font-size: 17px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: 0;
  font-weight: 400;
  margin-top: 20px;
  color: #6b6b6b;
  line-height: 2.3em;
}
@media all and (max-width: 639px) {
  #service_2 .main,
  #service_3 .main,
  #service_4 .main,
  #service_5 .main,
  #service_6 .main {
    font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
    font-size: 15px;
    /*font-size: ($size / $base) + rem;*/
    letter-spacing: 0;
    font-weight: 400;
  }
}
#service_2 .service_item_read_sub,
#service_3 .service_item_read_sub,
#service_4 .service_item_read_sub,
#service_5 .service_item_read_sub,
#service_6 .service_item_read_sub {
  margin-top: 40px;
  display: table;
  font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
  font-size: 20px;
  /*font-size: ($size / $base) + rem;*/
  font-weight: 500;
  font-weight: 500;
  color: #fdad3c;
  border-bottom: 2px solid #fdad3c;
}
#service_2 table,
#service_3 table,
#service_4 table,
#service_5 table,
#service_6 table {
  width: 100%;
  border-top: 1px dashed #6b6b6b;
  margin-top: 20px;
}
#service_2 table th,
#service_2 table td,
#service_3 table th,
#service_3 table td,
#service_4 table th,
#service_4 table td,
#service_5 table th,
#service_5 table td,
#service_6 table th,
#service_6 table td {
  background: none;
  border: none;
  text-align: left;
  border-bottom: 1px dashed #6b6b6b;
  padding: 20px;
  font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: 0;
  font-weight: 400;
  color: #6b6b6b;
}
@media all and (max-width: 639px) {
  #service_2 table th,
  #service_2 table td,
  #service_3 table th,
  #service_3 table td,
  #service_4 table th,
  #service_4 table td,
  #service_5 table th,
  #service_5 table td,
  #service_6 table th,
  #service_6 table td {
    display: block;
    font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
    font-size: 15px;
    /*font-size: ($size / $base) + rem;*/
    letter-spacing: 0;
    font-weight: 400;
  }
}
#service_2 table th,
#service_3 table th,
#service_4 table th,
#service_5 table th,
#service_6 table th {
  font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
  font-size: 17px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: 0;
  font-weight: 400;
  white-space: nowrap;
  color: #7a6856;
}
@media all and (max-width: 639px) {
  #service_2 table th,
  #service_3 table th,
  #service_4 table th,
  #service_5 table th,
  #service_6 table th {
    border-bottom: none;
    padding-bottom: 0;
    white-space: inherit;
  }
}
@media all and (max-width: 639px) {
  #service_2 table td,
  #service_3 table td,
  #service_4 table td,
  #service_5 table td,
  #service_6 table td {
    padding-top: 5px;
  }
}
#service_2 img.service_2item_sakura,
#service_3 img.service_2item_sakura,
#service_4 img.service_2item_sakura,
#service_5 img.service_2item_sakura,
#service_6 img.service_2item_sakura {
  display: block;
  margin: 40px auto 0;
}
#service_2 .service_3_item_family,
#service_3 .service_3_item_family,
#service_4 .service_3_item_family,
#service_5 .service_3_item_family,
#service_6 .service_3_item_family {
  display: block;
  max-width: 250px;
  width: 50%;
  margin: 40px auto 0;
}

#flow_1 .read {
  text-align: center;
  font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
  font-size: 26px;
  /*font-size: ($size / $base) + rem;*/
  font-weight: 500;
  font-weight: 500;
  color: #6b6b6b;
  position: relative;
  padding-bottom: 10px;
}
#flow_1 .read:before {
  content: "";
  display: block;
  position: absolute;
  background-repeat: no-repeat;
  margin: auto;
  width: 63px;
  height: 6px;
  background: #76b433;
  border-radius: 10px;
  margin: auto;
  left: 0;
  right: 0;
  bottom: 0;
}
#flow_1 .flow_1_item {
  padding: 40px 0 0;
  position: relative;
  margin-top: 60px;
  border-top: 2px solid #fdad3c;
}
@media all and (max-width: 639px) {
  #flow_1 .flow_1_item {
    padding: 40px 20px 0;
  }
}
#flow_1 .flow_1_item:nth-child(n+2) {
  margin-top: 80px;
}
@media all and (max-width: 639px) {
  #flow_1 .flow_1_item:nth-child(n+2) {
    margin-top: 40px;
  }
}
#flow_1 .flow_1_item .soudannaiyou_read {
  display: table;
  position: absolute;
  z-index: 22;
  top: 0;
  left: 40px;
}
#flow_1 .flow_1_item .soudannaiyou_read p {
  background: #fdad3c;
  border-radius: 0 0 7px 7px;
  position: relative;
  padding: 10px 30px;
  font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
  font-size: 15px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: 0;
  font-weight: 400;
  color: #fff;
}
#flow_1 .flow_1_item .soudannaiyou_read p:before, #flow_1 .flow_1_item .soudannaiyou_read p:after {
  content: "";
  display: block;
  position: absolute;
  background-repeat: no-repeat;
  margin: auto;
  width: 7px;
  height: 7px;
  top: 0;
}
#flow_1 .flow_1_item .soudannaiyou_read p:before {
  background-image: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/27267/orenge_left.svg);
  left: -7px;
}
#flow_1 .flow_1_item .soudannaiyou_read p:after {
  background-image: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/27267/orenge_right.svg);
  right: -7px;
}
#flow_1 .flow_1_item .flow_1_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 60px;
}
#flow_1 .flow_1_item .flow_1_list li {
  width: 18.4%;
  background: #fff;
  margin-right: 2%;
  position: relative;
  padding: 0 20px 20px;
  box-sizing: border-box;
  border-radius: 7px;
}
@media all and (max-width: 639px) {
  #flow_1 .flow_1_item .flow_1_list li {
    width: 100%;
    margin-bottom: 60px;
  }
}
#flow_1 .flow_1_item .flow_1_list li:before {
  content: "";
  display: block;
  position: absolute;
  background-repeat: no-repeat;
  margin: auto;
  width: 68px;
  height: 33px;
  background-image: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/27267/flow_1_list_no_bg.svg);
  margin: auto;
  left: 0;
  right: 0;
  top: -32px;
}
#flow_1 .flow_1_item .flow_1_list li:after {
  content: "";
  display: block;
  position: absolute;
  background-repeat: no-repeat;
  margin: auto;
  width: 8px;
  height: 15px;
  background-image: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/27267/flow_1_item_right_icon.svg);
  margin: auto;
  top: 0;
  bottom: 0;
  right: -17px;
}
@media all and (max-width: 639px) {
  #flow_1 .flow_1_item .flow_1_list li:after {
    background-image: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/27267/flow_1_item_right_down.svg);
    width: 15px;
    height: 8px;
    left: 0;
    right: 0;
    top: auto;
    bottom: -16px;
  }
}
#flow_1 .flow_1_item .flow_1_list li:nth-child(5), #flow_1 .flow_1_item .flow_1_list li:last-child {
  margin-right: 0;
}
#flow_1 .flow_1_item .flow_1_list li .flow_1_list_no {
  position: absolute;
  display: table;
  margin: auto;
  left: 0;
  right: 0;
  top: -23px;
  color: #fdad3c;
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  font-size: 15px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: 0.1em;
}
#flow_1 .flow_1_item .flow_1_list li .flow_1_list_main {
  font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
  font-size: 15px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: 0;
  font-weight: 400;
  color: #6b6b6b;
  text-align: center;
  padding-top: 35px;
  text-wrap: balance;
  word-break: auto-phrase;
}
#flow_1 .flow_1_item .flow_1_list li .flow_1_list_main.yui_p {
  padding-top: 20px;
}
@media all and (max-width: 639px) {
  #flow_1 .flow_1_item .flow_1_list li .flow_1_list_main {
    padding-top: 20px;
  }
}
#flow_1 .cancel_item {
  margin-top: 60px;
}
#flow_1 .cancel_item .cancel_item_read {
  font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
  font-size: 19px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: 0;
  font-weight: 400;
  color: #6b6b6b;
}
#flow_1 .cancel_item .cancel_item_main {
  font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: 0;
  font-weight: 400;
  color: #6b6b6b;
  margin-top: 20px;
}

#faq_1 {
  padding-bottom: 60px;
}
@media all and (max-width: 639px) {
  #faq_1 {
    padding-bottom: 0;
  }
}
#faq_1 .read {
  text-align: center;
  font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
  font-size: 26px;
  /*font-size: ($size / $base) + rem;*/
  font-weight: 500;
  font-weight: 500;
  color: #6b6b6b;
  position: relative;
  padding-bottom: 10px;
  margin-bottom: 60px;
}
#faq_1 .read:before {
  content: "";
  display: block;
  position: absolute;
  background-repeat: no-repeat;
  margin: auto;
  width: 63px;
  height: 6px;
  background: #76b433;
  border-radius: 10px;
  margin: auto;
  left: 0;
  right: 0;
  bottom: 0;
}
#faq_1 details {
  background: #fff;
  padding: 20px 40px;
  width: 85%;
  margin: auto;
  position: relative;
  box-sizing: border-box;
}
@media all and (max-width: 639px) {
  #faq_1 details {
    padding: 20px 10px;
    width: 100%;
    padding-right: 40px;
  }
}
#faq_1 details:nth-child(n+2) {
  margin-top: 10px;
}
#faq_1 details summary {
  font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: 0;
  font-weight: 400;
  color: #6b6b6b;
  cursor: pointer;
  transition: 0.4s;
}
#faq_1 details summary:hover {
  color: #7a6856;
  transition: 0.4s;
}
#faq_1 details summary::-webkit-details-marker {
  display: none;
}
#faq_1 details summary::marker {
  content: "";
}
#faq_1 details summary:before {
  content: "+";
  position: absolute;
  right: 20px;
  color: #ff9900; /* ← ここで色変更 */
  transition: transform 0.2s ease;
}
#faq_1 details[open] summary::before {
  content: "-";
  color: #ff9900;
}
#faq_1 details p {
  font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
  font-size: 15px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: 0;
  font-weight: 400;
  color: #6b6b6b;
  padding-top: 15px;
  border-top: 1px dashed #eee;
  margin-top: 15px;
}

/*--------------------------------------------------
相談室の特長・専門性(features.php)
----------------------------------------------------*/
#features_1 .read {
  text-align: center;
  font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
  font-size: 26px;
  /*font-size: ($size / $base) + rem;*/
  font-weight: 500;
  font-weight: 500;
  color: #6b6b6b;
  position: relative;
  padding-bottom: 10px;
}
#features_1 .read:before {
  content: "";
  display: block;
  position: absolute;
  background-repeat: no-repeat;
  margin: auto;
  width: 63px;
  height: 6px;
  background: #76b433;
  border-radius: 10px;
  margin: auto;
  left: 0;
  right: 0;
  bottom: 0;
}
#features_1 .features_item {
  margin-top: 70px;
}
#features_1 .features_item img {
  display: block;
  width: 100%;
}
@media all and (max-width: 639px) {
  #features_1 .features_item img {
    width: 50%;
    margin: auto;
  }
}
#features_1 .features_item .innerB {
  margin-bottom: 50px;
}
#features_1 .features_item .features_item_read {
  text-align: center;
  font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
  font-size: 25px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: 0;
  font-weight: 400;
  color: #6b6b6b;
  margin-bottom: 40px;
}
#features_1 .features_item .main {
  font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: 0;
  font-weight: 400;
  color: #6b6b6b;
  line-height: 2.2em;
}
@media all and (max-width: 639px) {
  #features_1 .features_item .main {
    font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
    font-size: 15px;
    /*font-size: ($size / $base) + rem;*/
    letter-spacing: 0;
    font-weight: 400;
  }
}
#features_1 .features_item .main span {
  display: block;
  text-align: right;
  margin-top: 20px;
}

#features_2 .read {
  text-align: center;
  font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
  font-size: 26px;
  /*font-size: ($size / $base) + rem;*/
  font-weight: 500;
  font-weight: 500;
  color: #6b6b6b;
  position: relative;
  padding-bottom: 10px;
}
#features_2 .read:before {
  content: "";
  display: block;
  position: absolute;
  background-repeat: no-repeat;
  margin: auto;
  width: 63px;
  height: 6px;
  background: #76b433;
  border-radius: 10px;
  margin: auto;
  left: 0;
  right: 0;
  bottom: 0;
}
#features_2 .col-2 {
  display: flex;
  flex-wrap: wrap;
  margin-top: 60px;
}
@media all and (max-width: 639px) {
  #features_2 .col-2 {
    display: block;
  }
}
#features_2 .col-2 .col-2-item {
  width: 32%;
  margin-right: 2%;
}
@media all and (max-width: 639px) {
  #features_2 .col-2 .col-2-item {
    width: 100%;
    margin: 0 0 40px;
  }
}
#features_2 .col-2 .col-2-item:nth-child(3n) {
  margin-right: 0;
}
#features_2 .col-2 .col-2-item:nth-child(n+4) {
  margin-top: 50px;
}
@media all and (max-width: 639px) {
  #features_2 .col-2 .col-2-item:nth-child(n+4) {
    margin-top: 0;
  }
}
#features_2 .col-2 .col-2-item img {
  display: block;
  width: 100%;
  border-radius: 8px;
}
#features_2 .col-2 .col-2-item .features_2_list_read {
  font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
  font-size: 18px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: 0;
  font-weight: 400;
  color: #6b6b6b;
  position: relative;
  text-align: center;
  padding-top: 30px;
}
#features_2 .col-2 .col-2-item .features_2_list_read span {
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  font-size: 20px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: 0.1em;
  color: #fff;
  line-height: 50px;
  display: block;
  position: absolute;
  width: 50px;
  text-align: center;
  height: 50px;
  background: #fdad3c;
  border-radius: 50%;
  margin: auto;
  left: 0;
  right: 0;
  top: -30px;
}
#features_2 .col-2 .col-2-item .features_2_list_text {
  font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
  font-size: 15px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: 0;
  font-weight: 400;
  margin-top: 15px;
  color: #6b6b6b;
  line-height: 1.7em;
}

#features_3 {
  padding-bottom: 60px;
}
@media all and (max-width: 639px) {
  #features_3 {
    padding-bottom: 0;
  }
}
#features_3 .read {
  text-align: center;
  font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
  font-size: 26px;
  /*font-size: ($size / $base) + rem;*/
  font-weight: 500;
  font-weight: 500;
  color: #6b6b6b;
  position: relative;
  padding-bottom: 10px;
}
#features_3 .read:before {
  content: "";
  display: block;
  position: absolute;
  background-repeat: no-repeat;
  margin: auto;
  width: 63px;
  height: 6px;
  background: #76b433;
  border-radius: 10px;
  margin: auto;
  left: 0;
  right: 0;
  bottom: 0;
}
#features_3 .main {
  margin-top: 30px;
  font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: 0;
  font-weight: 400;
  color: #6b6b6b;
  text-align: center;
}
#features_3 .kounyuu_read {
  border-bottom: 2px solid #76b433;
  color: #76b433;
  font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
  font-size: 20px;
  /*font-size: ($size / $base) + rem;*/
  font-weight: 500;
  font-weight: 500;
  margin-bottom: 30px;
}
#features_3 .features_3_item_read {
  display: table;
  border-bottom: 2px solid #fdad3c;
  font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
  font-size: 20px;
  /*font-size: ($size / $base) + rem;*/
  font-weight: 500;
  font-weight: 500;
  color: #fdad3c;
}
#features_3 .features_3_item_main {
  font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: 0;
  font-weight: 400;
  color: #6b6b6b;
  margin-top: 13px;
}
#features_3 .kounyuu img {
  display: block;
  width: 100%;
  border-radius: 20px;
}
#features_3 .kounyuu a {
  display: block;
  width: 80%;
  text-align: center;
  background: #76b433;
  color: #fff;
  font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  /*font-size: ($size / $base) + rem;*/
  font-weight: 500;
  font-weight: 500;
  margin-top: 40px;
  padding: 10px 0;
  border-radius: 100px;
}
#features_3 ul.list {
  margin-top: 30px;
  border-top: 1px dashed #eee;
}
#features_3 ul.list li {
  font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
  font-size: 15px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: 0;
  font-weight: 400;
  color: #6b6b6b;
  border-bottom: 1px dashed #eee;
  padding: 10px;
}
#features_3 .features_3_item {
  background: #fff;
  border-radius: 30px;
  padding: 70px 70px;
  margin-top: 60px;
}
@media all and (max-width: 639px) {
  #features_3 .features_3_item {
    padding: 50px 20px;
  }
}
#features_3 .features_3_item .nedan {
  width: 80%;
  margin: 50px auto 90px;
  background: #f7f3e8;
  text-align: center;
  font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: 0;
  font-weight: 400;
  padding: 20px;
  color: #6b6b6b;
}
#features_3 .features_3_item_2 {
  margin-top: 80px;
}
#features_3 .features_3_item_2 .features_3_item_read {
  display: table;
  border-bottom: 2px solid #fdad3c;
  font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
  font-size: 20px;
  /*font-size: ($size / $base) + rem;*/
  font-weight: 500;
  font-weight: 500;
  color: #fdad3c;
}
#features_3 .features_3_item_2 .features_3_item_2_main {
  font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: 0;
  font-weight: 400;
  color: #6b6b6b;
  margin-top: 13px;
}
#features_3 .book_cms {
  margin-top: 120px;
}
#features_3 .book_cms .inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
@media all and (max-width: 639px) {
  #features_3 .book_cms .inner {
    display: block;
  }
}
@media all and (max-width: 639px) {
  #features_3 .book_cms .inner .in_left {
    width: 100%;
  }
}
#features_3 .book_cms .inner .in_left .read {
  text-align: left;
}
#features_3 .book_cms .inner .in_left .read:before {
  right: auto;
}
#features_3 .book_cms .inner .in_left .book_cms_main {
  margin-top: 30px;
  font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: 0;
  font-weight: 400;
  color: #7a6856;
}
#features_3 .book_cms .inner .in_right {
  width: 56%;
  margin-left: 50px;
  padding: 10px 0 0;
  position: relative;
}
@media all and (max-width: 639px) {
  #features_3 .book_cms .inner .in_right {
    width: 100%;
    margin-top: 30px;
    margin-left: 0;
  }
}
@media all and (max-width: 639px) {
  #features_3 .book_cms .topics_list {
    margin-top: 0;
  }
}
#features_3 .book_cms .topics_list li {
  background: #fbf9f3;
  border-radius: 6px;
  background: #fff;
  position: relative;
}
#features_3 .book_cms .topics_list li:nth-child(n+2) {
  margin-top: 20px;
}
#features_3 .book_cms .topics_list li a {
  display: block;
  padding: 23px 33px;
}
#features_3 .book_cms .topics_list li .data {
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  font-size: 13px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: 0.1em;
  color: #475950;
  opacity: 0.8;
}
#features_3 .book_cms .topics_list li .post_title {
  font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: 0;
  font-weight: 400;
  color: #6b6b6b;
}
@media all and (max-width: 639px) {
  #features_3 .book_cms .topics_list li .post_title {
    font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
    font-size: 15px;
    /*font-size: ($size / $base) + rem;*/
    letter-spacing: 0;
    font-weight: 400;
  }
}
#features_3 .book_cms .topics_list li i {
  position: absolute;
  line-height: 1em;
  height: 1em;
  margin: auto;
  top: 0;
  bottom: 0;
  right: 33px;
  color: #76b433;
}

/*--------------------------------------------------
専門プログラム(programs.php)
----------------------------------------------------*/
@media all and (max-width: 639px) {
  #programs_1 {
    padding-top: 50px;
  }
}
#programs_1 .read {
  text-align: center;
  font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
  font-size: 26px;
  /*font-size: ($size / $base) + rem;*/
  font-weight: 500;
  font-weight: 500;
  color: #6b6b6b;
  position: relative;
  padding-bottom: 10px;
}
#programs_1 .read:before {
  content: "";
  display: block;
  position: absolute;
  background-repeat: no-repeat;
  margin: auto;
  width: 63px;
  height: 6px;
  background: #76b433;
  border-radius: 10px;
  margin: auto;
  left: 0;
  right: 0;
  bottom: 0;
}
#programs_1 .main {
  text-align: center;
  font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
  font-size: 17px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: 0;
  font-weight: 400;
  margin-top: 20px;
  color: #6b6b6b;
  line-height: 2.3em;
}
@media all and (max-width: 639px) {
  #programs_1 .main {
    font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
    font-size: 15px;
    /*font-size: ($size / $base) + rem;*/
    letter-spacing: 0;
    font-weight: 400;
    text-wrap: balance;
    word-break: auto-phrase;
  }
}
#programs_1 .programs_1_item {
  position: relative;
  padding: 40px 0;
  margin-top: 70px;
}
#programs_1 .programs_1_item:before {
  content: "";
  display: block;
  position: absolute;
  background-repeat: no-repeat;
  margin: auto;
  width: 80%;
  height: 100%;
  background: #fff;
  border-radius: 20px;
  right: 0;
  top: 0;
}
#programs_1 .programs_1_item .innerB {
  position: relative;
  z-index: 22;
}
#programs_1 .programs_1_item img {
  display: block;
  width: 100%;
  border-radius: 20px;
}
#programs_1 .programs_1_item .programs_1_item_list {
  display: flex;
  flex-wrap: wrap;
  width: 90%;
}
@media all and (max-width: 639px) {
  #programs_1 .programs_1_item .programs_1_item_list {
    display: block;
    width: 100%;
  }
}
#programs_1 .programs_1_item .programs_1_item_list li {
  width: 48%;
  font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: 0;
  font-weight: 400;
  color: #6b6b6b;
  border-bottom: 1px solid #eee;
  padding: 10px;
  box-sizing: border-box;
}
@media all and (max-width: 639px) {
  #programs_1 .programs_1_item .programs_1_item_list li {
    width: 100%;
  }
}
#programs_1 .programs_1_item .programs_1_item_list li:nth-child(2n) {
  margin-left: auto;
}

#programs_2 .read {
  text-align: center;
  font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
  font-size: 26px;
  /*font-size: ($size / $base) + rem;*/
  font-weight: 500;
  font-weight: 500;
  color: #6b6b6b;
  position: relative;
  padding-bottom: 10px;
}
#programs_2 .read:before {
  content: "";
  display: block;
  position: absolute;
  background-repeat: no-repeat;
  margin: auto;
  width: 63px;
  height: 6px;
  background: #76b433;
  border-radius: 10px;
  margin: auto;
  left: 0;
  right: 0;
  bottom: 0;
}
#programs_2 .main {
  text-align: center;
  font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
  font-size: 17px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: 0;
  font-weight: 400;
  margin-top: 20px;
  color: #6b6b6b;
  line-height: 2.3em;
}
@media all and (max-width: 639px) {
  #programs_2 .main {
    font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
    font-size: 15px;
    /*font-size: ($size / $base) + rem;*/
    letter-spacing: 0;
    font-weight: 400;
    text-wrap: balance;
    word-break: auto-phrase;
  }
}
#programs_2 .programs_2_item {
  margin-top: 70px;
}
#programs_2 .programs_2_item .programs_2_item_read {
  background: #fff;
  border-radius: 7px;
  padding: 10px 15px;
  font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
  font-size: 18px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: 0;
  font-weight: 400;
  color: #6b6b6b;
}
#programs_2 .programs_2_item .programs_2_item_read span {
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  font-size: 20px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: 0.1em;
  color: #fdad3c;
  margin-right: 5px;
  line-height: 1em;
}
#programs_2 .programs_2_item .programs_2_item_text {
  font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: 0;
  font-weight: 400;
  margin-top: 15px;
  color: #6b6b6b;
}
#programs_2 .programs_2_item .programs_2_item_sei {
  display: flex;
  flex-wrap: wrap;
  margin-top: 40px;
}
#programs_2 .programs_2_item .programs_2_item_sei li {
  width: 15%;
  margin-right: 2%;
  background: #fff;
  padding: 30px;
  box-sizing: border-box;
  border-radius: 8px;
}
@media all and (max-width: 639px) {
  #programs_2 .programs_2_item .programs_2_item_sei li {
    width: 48%;
    margin: 0 0 30px;
  }
}
#programs_2 .programs_2_item .programs_2_item_sei li:nth-child(6) {
  margin-right: 0;
}
@media all and (max-width: 639px) {
  #programs_2 .programs_2_item .programs_2_item_sei li:nth-child(even) {
    margin-left: auto;
  }
}
#programs_2 .programs_2_item .programs_2_item_sei li img {
  display: block;
  width: 70%;
  margin: auto;
}
#programs_2 .programs_2_item .programs_2_item_sei li p {
  text-align: center;
  font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: 0;
  font-weight: 400;
  color: #6b6b6b;
  margin-top: 10px;
}
#programs_2 .book_cms {
  margin-top: 120px;
  background: #f7f3e8;
  border-radius: 30px;
  padding: 70px 50px;
}
@media all and (max-width: 639px) {
  #programs_2 .book_cms {
    padding: 40px 20px;
  }
}
#programs_2 .book_cms .inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
@media all and (max-width: 639px) {
  #programs_2 .book_cms .inner {
    display: block;
  }
}
@media all and (max-width: 639px) {
  #programs_2 .book_cms .inner .in_left {
    width: 100%;
  }
}
#programs_2 .book_cms .inner .in_left .read {
  text-align: left;
}
#programs_2 .book_cms .inner .in_left .read:before {
  right: auto;
}
#programs_2 .book_cms .inner .in_left .book_cms_main {
  margin-top: 30px;
  font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: 0;
  font-weight: 400;
  color: #7a6856;
}
#programs_2 .book_cms .inner .in_right {
  width: 56%;
  margin-left: 50px;
  padding: 10px 0 0;
  position: relative;
}
@media all and (max-width: 639px) {
  #programs_2 .book_cms .inner .in_right {
    width: 100%;
    margin-top: 30px;
    margin-left: 0;
  }
}
@media all and (max-width: 639px) {
  #programs_2 .book_cms .topics_list {
    margin-top: 0;
  }
}
#programs_2 .book_cms .topics_list li {
  background: #fbf9f3;
  border-radius: 6px;
  background: #fff;
  position: relative;
}
#programs_2 .book_cms .topics_list li:nth-child(n+2) {
  margin-top: 20px;
}
#programs_2 .book_cms .topics_list li a {
  display: block;
  padding: 23px 33px;
}
#programs_2 .book_cms .topics_list li .data {
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  font-size: 13px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: 0.1em;
  color: #475950;
  opacity: 0.8;
}
#programs_2 .book_cms .topics_list li .post_title {
  font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: 0;
  font-weight: 400;
  color: #6b6b6b;
}
@media all and (max-width: 639px) {
  #programs_2 .book_cms .topics_list li .post_title {
    font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
    font-size: 15px;
    /*font-size: ($size / $base) + rem;*/
    letter-spacing: 0;
    font-weight: 400;
  }
}
#programs_2 .book_cms .topics_list li i {
  position: absolute;
  line-height: 1em;
  height: 1em;
  margin: auto;
  top: 0;
  bottom: 0;
  right: 33px;
  color: #76b433;
}

#programs_3 .read {
  text-align: center;
  font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
  font-size: 26px;
  /*font-size: ($size / $base) + rem;*/
  font-weight: 500;
  font-weight: 500;
  color: #6b6b6b;
  position: relative;
  padding-bottom: 10px;
}
#programs_3 .read:before {
  content: "";
  display: block;
  position: absolute;
  background-repeat: no-repeat;
  margin: auto;
  width: 63px;
  height: 6px;
  background: #76b433;
  border-radius: 10px;
  margin: auto;
  left: 0;
  right: 0;
  bottom: 0;
}
#programs_3 .main {
  text-align: center;
  font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
  font-size: 17px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: 0;
  font-weight: 400;
  margin-top: 20px;
  color: #6b6b6b;
  line-height: 2.3em;
}
#programs_3 .programs_3_item {
  margin-top: 60px;
}
#programs_3 .programs_3_item .programs_3_item_read {
  background: #fff;
  border-radius: 7px;
  padding: 10px 15px;
}
#programs_3 .programs_3_item .programs_3_item_read span {
  position: relative;
  padding-left: 36px;
  font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
  font-size: 20px;
  /*font-size: ($size / $base) + rem;*/
  font-weight: 500;
  color: #6b6b6b;
}
#programs_3 .programs_3_item .programs_3_item_read span:before {
  content: "";
  display: block;
  position: absolute;
  background-repeat: no-repeat;
  margin: auto;
  width: 29px;
  height: 21px;
  background-image: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/27267/service_item_read_icon.svg);
  margin: auto;
  left: 0;
  top: 0;
  bottom: 0;
}
@media all and (max-width: 639px) {
  #programs_3 .programs_3_item .programs_3_item_read span:before {
    bottom: auto;
  }
}
#programs_3 .programs_3_item .programs_3_item_text {
  margin-top: 20px;
  font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: 0;
  font-weight: 400;
  color: #6b6b6b;
}
@media all and (max-width: 639px) {
  #programs_3 .programs_3_item .programs_3_item_text {
    font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
    font-size: 15px;
    /*font-size: ($size / $base) + rem;*/
    letter-spacing: 0;
    font-weight: 400;
  }
}
#programs_3 .programs_3_item .programs_3_item_text span {
  display: block;
  color: #7a6856;
  margin-bottom: 10px;
}

#programs_4 .read {
  text-align: center;
  font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
  font-size: 26px;
  /*font-size: ($size / $base) + rem;*/
  font-weight: 500;
  font-weight: 500;
  color: #6b6b6b;
  position: relative;
  padding-bottom: 10px;
}
#programs_4 .read:before {
  content: "";
  display: block;
  position: absolute;
  background-repeat: no-repeat;
  margin: auto;
  width: 63px;
  height: 6px;
  background: #76b433;
  border-radius: 10px;
  margin: auto;
  left: 0;
  right: 0;
  bottom: 0;
}
#programs_4 .main {
  text-align: center;
  font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
  font-size: 17px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: 0;
  font-weight: 400;
  margin-top: 20px;
  color: #6b6b6b;
  line-height: 2.3em;
}
#programs_4 .programs_3_item {
  margin-top: 60px;
}
#programs_4 .programs_3_item .programs_3_item_read {
  background: #fff;
  border-radius: 7px;
  padding: 10px 15px;
}
#programs_4 .programs_3_item .programs_3_item_read span {
  position: relative;
  padding-left: 36px;
  font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
  font-size: 20px;
  /*font-size: ($size / $base) + rem;*/
  font-weight: 500;
  color: #6b6b6b;
}
#programs_4 .programs_3_item .programs_3_item_read span:before {
  content: "";
  display: block;
  position: absolute;
  background-repeat: no-repeat;
  margin: auto;
  width: 29px;
  height: 21px;
  background-image: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/27267/service_item_read_icon.svg);
  margin: auto;
  left: 0;
  top: 0;
  bottom: 0;
}
@media all and (max-width: 639px) {
  #programs_4 .programs_3_item .programs_3_item_read span:before {
    bottom: auto;
  }
}
#programs_4 .programs_3_item .programs_3_item_text {
  margin-top: 20px;
  font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: 0;
  font-weight: 400;
  color: #6b6b6b;
}
@media all and (max-width: 639px) {
  #programs_4 .programs_3_item .programs_3_item_text {
    font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
    font-size: 15px;
    /*font-size: ($size / $base) + rem;*/
    letter-spacing: 0;
    font-weight: 400;
  }
}
#programs_4 .programs_3_item table {
  width: 100%;
  border-top: 1px dashed #6b6b6b;
  margin-top: 20px;
}
#programs_4 .programs_3_item table th,
#programs_4 .programs_3_item table td {
  background: none;
  border: none;
  text-align: left;
  border-bottom: 1px dashed #6b6b6b;
  padding: 20px;
  font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: 0;
  font-weight: 400;
  color: #6b6b6b;
}
@media all and (max-width: 639px) {
  #programs_4 .programs_3_item table th,
  #programs_4 .programs_3_item table td {
    display: block;
    font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
    font-size: 15px;
    /*font-size: ($size / $base) + rem;*/
    letter-spacing: 0;
    font-weight: 400;
  }
}
#programs_4 .programs_3_item table th {
  font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
  font-size: 17px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: 0;
  font-weight: 400;
  white-space: nowrap;
  color: #7a6856;
}
@media all and (max-width: 639px) {
  #programs_4 .programs_3_item table th {
    border-bottom: none;
    padding-bottom: 0;
    white-space: inherit;
  }
}
@media all and (max-width: 639px) {
  #programs_4 .programs_3_item table td {
    padding-top: 0;
  }
}
#programs_4 .programs_3_item table td .links_list {
  display: flex;
  flex-wrap: wrap;
  margin-top: 10px;
}
#programs_4 .programs_3_item table td .links_list li {
  width: 48%;
}
#programs_4 .programs_3_item table td .links_list li:nth-child(even) {
  margin-left: auto;
}
#programs_4 .programs_3_item table td .links_list li a {
  display: block;
  text-align: center;
  border: 1px solid #76b433;
  border-radius: 100px;
  color: #76b433;
  font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
  font-size: 15px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: 0;
  font-weight: 400;
  padding: 10px 0;
  transition: 0.4s;
}
#programs_4 .programs_3_item table td .links_list li a:hover {
  background: #fff;
  transition: 0.4s;
}
#programs_4 .book_cms {
  margin-top: 120px;
  background: #f7f3e8;
  border-radius: 30px;
  padding: 70px 50px;
}
@media all and (max-width: 639px) {
  #programs_4 .book_cms {
    padding: 40px 20px;
  }
}
#programs_4 .book_cms .inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
@media all and (max-width: 639px) {
  #programs_4 .book_cms .inner {
    display: block;
  }
}
@media all and (max-width: 639px) {
  #programs_4 .book_cms .inner .in_left {
    width: 100%;
  }
}
#programs_4 .book_cms .inner .in_left .read {
  text-align: left;
}
#programs_4 .book_cms .inner .in_left .read:before {
  right: auto;
}
#programs_4 .book_cms .inner .in_left .book_cms_main {
  margin-top: 30px;
  font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: 0;
  font-weight: 400;
  color: #7a6856;
}
#programs_4 .book_cms .inner .in_right {
  width: 56%;
  margin-left: 50px;
  padding: 10px 0 0;
  position: relative;
}
@media all and (max-width: 639px) {
  #programs_4 .book_cms .inner .in_right {
    width: 100%;
    margin-top: 30px;
    margin-left: 0;
  }
}
@media all and (max-width: 639px) {
  #programs_4 .book_cms .topics_list {
    margin-top: 0;
  }
}
#programs_4 .book_cms .topics_list li {
  background: #fbf9f3;
  border-radius: 6px;
  background: #fff;
  position: relative;
}
#programs_4 .book_cms .topics_list li:nth-child(n+2) {
  margin-top: 20px;
}
#programs_4 .book_cms .topics_list li a {
  display: block;
  padding: 23px 33px;
}
#programs_4 .book_cms .topics_list li .data {
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  font-size: 13px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: 0.1em;
  color: #475950;
  opacity: 0.8;
}
#programs_4 .book_cms .topics_list li .post_title {
  font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: 0;
  font-weight: 400;
  color: #6b6b6b;
}
@media all and (max-width: 639px) {
  #programs_4 .book_cms .topics_list li .post_title {
    font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
    font-size: 15px;
    /*font-size: ($size / $base) + rem;*/
    letter-spacing: 0;
    font-weight: 400;
  }
}
#programs_4 .book_cms .topics_list li i {
  position: absolute;
  line-height: 1em;
  height: 1em;
  margin: auto;
  top: 0;
  bottom: 0;
  right: 33px;
  color: #76b433;
}

/*--------------------------------------------------
カウンセラー紹介(counselors.php)
----------------------------------------------------*/
#counselors_1 .read {
  text-align: center;
  font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
  font-size: 26px;
  /*font-size: ($size / $base) + rem;*/
  font-weight: 500;
  font-weight: 500;
  color: #6b6b6b;
  position: relative;
  padding-bottom: 10px;
}
#counselors_1 .read:before {
  content: "";
  display: block;
  position: absolute;
  background-repeat: no-repeat;
  margin: auto;
  width: 63px;
  height: 6px;
  background: #76b433;
  border-radius: 10px;
  margin: auto;
  left: 0;
  right: 0;
  bottom: 0;
}
#counselors_1 .counselors_list {
  max-width: 1037px;
  width: 100%;
  margin: 60px auto 0;
}
#counselors_1 .counselors_list li {
  border-radius: 8px;
  background: #fff;
  padding: 33px 50px;
}
@media all and (max-width: 639px) {
  #counselors_1 .counselors_list li {
    padding: 30px 20px;
  }
}
#counselors_1 .counselors_list li:nth-child(n+2) {
  margin-top: 40px;
}
#counselors_1 .counselors_list li .name {
  border-bottom: 1px dashed #d8d8d8;
  padding-bottom: 5px;
  margin-bottom: 20px;
  position: relative;
}
#counselors_1 .counselors_list li .name .counselors_list_name {
  font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
  font-size: 25px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: 0;
  font-weight: 400;
  color: #6b6b6b;
}
@media all and (max-width: 639px) {
  #counselors_1 .counselors_list li .name .counselors_list_name {
    font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
    font-size: 22px;
    /*font-size: ($size / $base) + rem;*/
    letter-spacing: 0;
    font-weight: 400;
  }
}
#counselors_1 .counselors_list li .name .counselors_list_name span {
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  font-size: 19px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: 0.1em;
  color: #7a6856;
  margin-left: 10px;
}
@media all and (max-width: 639px) {
  #counselors_1 .counselors_list li .name .counselors_list_name span {
    display: block;
    margin-left: 0;
    font-family: "Quicksand", sans-serif;
    font-weight: 500;
    font-size: 17px;
    /*font-size: ($size / $base) + rem;*/
    letter-spacing: 0.1em;
  }
}
#counselors_1 .counselors_list li .name .yakushoku {
  position: absolute;
  font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: 0;
  font-weight: 400;
  color: #fdad3c;
  right: 0;
  margin: auto;
  top: 0;
  line-height: 1em;
  height: 1em;
  bottom: 0;
}
#counselors_1 .counselors_list li .comen {
  font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: 0;
  font-weight: 400;
  color: #6b6b6b;
}
@media all and (max-width: 639px) {
  #counselors_1 .counselors_list li .comen {
    font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
    font-size: 15px;
    /*font-size: ($size / $base) + rem;*/
    letter-spacing: 0;
    font-weight: 400;
  }
}
#counselors_1 .counselors_list li .comen:nth-child(n+2) {
  margin-top: 15px;
}

/*--------------------------------------------------
料金・アクセス(contact.php)
----------------------------------------------------*/
#fee_1 .read {
  text-align: center;
  font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
  font-size: 26px;
  /*font-size: ($size / $base) + rem;*/
  font-weight: 500;
  font-weight: 500;
  color: #6b6b6b;
  position: relative;
  padding-bottom: 10px;
}
#fee_1 .read:before {
  content: "";
  display: block;
  position: absolute;
  background-repeat: no-repeat;
  margin: auto;
  width: 63px;
  height: 6px;
  background: #76b433;
  border-radius: 10px;
  margin: auto;
  left: 0;
  right: 0;
  bottom: 0;
}
#fee_1 .col-2 {
  margin-top: 60px;
  display: flex;
  flex-wrap: wrap;
}
@media all and (max-width: 639px) {
  #fee_1 .col-2 {
    display: block;
  }
}
#fee_1 .col-2 .col-2-item {
  width: 48%;
  background: #fff;
  border-radius: 20px;
  padding: 40px 50px;
  box-sizing: border-box;
}
@media all and (max-width: 639px) {
  #fee_1 .col-2 .col-2-item {
    width: 100%;
    padding: 30px 20px;
  }
}
#fee_1 .col-2 .col-2-item:nth-child(2n) {
  margin-left: auto;
}
@media all and (max-width: 639px) {
  #fee_1 .col-2 .col-2-item:nth-child(2n) {
    margin-top: 30px;
  }
}
#fee_1 .col-2 .col-2-item .fee_1_read {
  display: table;
  font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
  font-size: 20px;
  /*font-size: ($size / $base) + rem;*/
  font-weight: 500;
  font-weight: 600;
  color: #fdad3c;
  border-bottom: 2px solid #fdad3c;
}
#fee_1 .col-2 .col-2-item table {
  width: 100%;
  margin-top: 20px;
}
#fee_1 .col-2 .col-2-item table th,
#fee_1 .col-2 .col-2-item table td {
  background: none;
  text-align: center;
  font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: 0;
  font-weight: 400;
  color: #6b6b6b;
  border: none;
  border-bottom: 1px dashed #eee;
  padding: 10px;
}
@media all and (max-width: 639px) {
  #fee_1 .col-2 .col-2-item table th,
  #fee_1 .col-2 .col-2-item table td {
    font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
    font-size: 14px;
    /*font-size: ($size / $base) + rem;*/
    letter-spacing: 0;
    font-weight: 400;
  }
}
#fee_1 .col-2 .col-2-item table th {
  background: rgba(238, 238, 238, 0.5);
  padding: 15px;
}
#fee_1 .col-2 .col-2-item .last {
  font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
  font-size: 14px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: 0;
  font-weight: 400;
  color: #6b6b6b;
  text-align: right;
}

#access_1 .read {
  text-align: center;
  font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
  font-size: 26px;
  /*font-size: ($size / $base) + rem;*/
  font-weight: 500;
  font-weight: 500;
  color: #6b6b6b;
  position: relative;
  padding-bottom: 10px;
}
#access_1 .read:before {
  content: "";
  display: block;
  position: absolute;
  background-repeat: no-repeat;
  margin: auto;
  width: 63px;
  height: 6px;
  background: #76b433;
  border-radius: 10px;
  margin: auto;
  left: 0;
  right: 0;
  bottom: 0;
}
#access_1 .main {
  text-align: center;
  font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
  font-size: 17px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: 0;
  font-weight: 400;
  margin-top: 20px;
  color: #6b6b6b;
}
@media all and (max-width: 639px) {
  #access_1 .main {
    font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
    font-size: 15px;
    /*font-size: ($size / $base) + rem;*/
    letter-spacing: 0;
    font-weight: 400;
    text-wrap: balance;
    word-break: auto-phrase;
  }
}
#access_1 .jusho {
  max-width: 800px;
  width: 100%;
  text-align: center;
  background: #f7f3e8;
  margin: 30px auto;
  padding: 20px 0;
  font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
  font-size: 17px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: 0;
  font-weight: 400;
  color: #6b6b6b;
}
@media all and (max-width: 639px) {
  #access_1 .jusho {
    font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
    font-size: 15px;
    /*font-size: ($size / $base) + rem;*/
    letter-spacing: 0;
    font-weight: 400;
  }
}
#access_1 .ggmap {
  max-width: 1028px;
  width: 100%;
  margin: 50px auto 0;
}
#access_1 .ggmap_bottom {
  max-width: 597px;
  background: #fff;
  border-radius: 20px;
  padding: 40px 30px;
  margin: -60px auto 0;
  position: relative;
}
@media all and (max-width: 639px) {
  #access_1 .ggmap_bottom {
    padding: 40px 20px;
  }
}
#access_1 .ggmap_bottom .inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
@media all and (max-width: 639px) {
  #access_1 .ggmap_bottom .inner {
    display: block;
  }
}
#access_1 .ggmap_bottom .inner .in_right {
  margin-left: 50px;
}
@media all and (max-width: 639px) {
  #access_1 .ggmap_bottom .inner .in_right {
    margin: 20px 0 0;
  }
}
#access_1 .ggmap_bottom .ggmap_bottom_text {
  font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: 0;
  font-weight: 400;
  color: #6b6b6b;
}

#yoyaku_1 .read {
  text-align: center;
  font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
  font-size: 26px;
  /*font-size: ($size / $base) + rem;*/
  font-weight: 500;
  font-weight: 500;
  color: #6b6b6b;
  position: relative;
  padding-bottom: 10px;
}
#yoyaku_1 .read:before {
  content: "";
  display: block;
  position: absolute;
  background-repeat: no-repeat;
  margin: auto;
  width: 63px;
  height: 6px;
  background: #76b433;
  border-radius: 10px;
  margin: auto;
  left: 0;
  right: 0;
  bottom: 0;
}
#yoyaku_1 .main {
  text-align: center;
  font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
  font-size: 17px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: 0;
  font-weight: 400;
  margin-top: 20px;
  color: #6b6b6b;
}
@media all and (max-width: 639px) {
  #yoyaku_1 .main {
    font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
    font-size: 15px;
    /*font-size: ($size / $base) + rem;*/
    letter-spacing: 0;
    font-weight: 400;
  }
}
#yoyaku_1 a {
  max-width: 400px;
  width: 100%;
  display: block;
  font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
  font-size: 15px;
  /*font-size: ($size / $base) + rem;*/
  font-weight: 500;
  background: #7a6856;
  color: #fff;
  border-radius: 100px;
  padding: 18px 0;
  text-align: center;
  margin: 50px auto 0;
}

#contact_1 {
  padding-bottom: 60px;
}
#contact_1 .read {
  text-align: center;
  font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
  font-size: 26px;
  /*font-size: ($size / $base) + rem;*/
  font-weight: 500;
  font-weight: 500;
  color: #6b6b6b;
  position: relative;
  padding-bottom: 10px;
}
#contact_1 .read:before {
  content: "";
  display: block;
  position: absolute;
  background-repeat: no-repeat;
  margin: auto;
  width: 63px;
  height: 6px;
  background: #76b433;
  border-radius: 10px;
  margin: auto;
  left: 0;
  right: 0;
  bottom: 0;
}
#contact_1 .main {
  text-align: center;
  font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
  font-size: 17px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: 0;
  font-weight: 400;
  margin-top: 20px;
  color: #6b6b6b;
}
@media all and (max-width: 639px) {
  #contact_1 .main {
    font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
    font-size: 15px;
    /*font-size: ($size / $base) + rem;*/
    letter-spacing: 0;
    font-weight: 400;
    text-wrap: balance;
    word-break: auto-phrase;
  }
}
#contact_1 .item_tel {
  max-width: 769px;
  width: 100%;
  margin: 60px auto 0;
  padding: 40px;
  background: #fff;
  border-radius: 20px;
}
@media all and (max-width: 639px) {
  #contact_1 .item_tel {
    padding: 40px 20px;
  }
}
#contact_1 .item_tel .item_tel_read {
  text-align: center;
  font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
  font-size: 17px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: 0;
  font-weight: 400;
  color: #6b6b6b;
}
#contact_1 .item_tel .item_tel_text {
  text-align: center;
  font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
  font-size: 15px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: 0;
  font-weight: 400;
  color: #6b6b6b;
}
#contact_1 .item_tel .item_tel_text a {
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  font-size: 40px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: 0.1em;
  color: #76b433;
  letter-spacing: 0;
  margin-right: 10px;
}
@media all and (max-width: 639px) {
  #contact_1 .item_tel .item_tel_text a {
    display: block;
    margin: 0 0 10px 0;
    line-height: 1em;
  }
}
#contact_1 .item_tel .tyuui {
  text-align: center;
  font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
  font-size: 14px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: 0;
  font-weight: 400;
  color: #6b6b6b;
  line-height: 1.6em;
  margin-top: 10px;
  text-wrap: balance;
  word-break: auto-phrase;
}
#contact_1 .company_1__main .form-pattern-1 {
  background: none;
}
@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 #76b433;
  border-bottom: 1px solid #76b433;
  font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
  font-size: 18px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: 0;
  font-weight: 400;
  font-weight: 400;
  color: #76b433;
  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: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
  font-size: 18px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: 0;
  font-weight: 400;
  font-weight: 600;
}
#contact_1 .accbox label:hover .more {
  background: #76b433;
  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: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
  font-size: 14px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: 0;
  font-weight: 400;
  font-weight: 500;
  color: #6b6b6b;
  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: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: 0;
  font-weight: 400;
  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;
}

/*--------------------------------------------------
お知らせ一覧(news.php)
----------------------------------------------------*/
#news_1 .read {
  text-align: center;
  font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
  font-size: 26px;
  /*font-size: ($size / $base) + rem;*/
  font-weight: 500;
  font-weight: 500;
  color: #6b6b6b;
  position: relative;
  padding-bottom: 10px;
}
#news_1 .read:before {
  content: "";
  display: block;
  position: absolute;
  background-repeat: no-repeat;
  margin: auto;
  width: 63px;
  height: 6px;
  background: #76b433;
  border-radius: 10px;
  margin: auto;
  left: 0;
  right: 0;
  bottom: 0;
}
#news_1 .news_eria {
  margin: 40px auto 0;
  padding: 80px 100px;
  background: #fff;
  border-radius: 10px;
}
#news_1 .news_eria .news_list li {
  padding: 20px 10px;
  border-bottom: 1px solid #d8d8d8;
}
#news_1 .news_eria .news_list li span {
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  font-size: 13px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: 0.1em;
  color: #475950;
}
#news_1 .news_eria .news_list li p {
  font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: 0;
  font-weight: 400;
  color: #6b6b6b;
}

/*--------------------------------------------------
新着情報(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: #76b433;
}
#topics_1 .inner .right .side_titem.sec {
  margin-top: 80px;
}
#topics_1 .inner .right .side_titem span {
  font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
  font-size: 15px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: 0;
  font-weight: 400;
  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: #76b433;
  opacity: 0.5;
  position: relative;
  letter-spacing: 0;
}
#topics_1 .inner .right ul.post_list li a .title {
  font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
  font-size: 15px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: 0;
  font-weight: 400;
  font-weight: 500;
  color: #6b6b6b;
  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: #76b433;
}
#topics_1 .entry .title {
  font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
  font-size: 21px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: 0;
  font-weight: 400;
  font-weight: 600;
  color: #6b6b6b;
  border-bottom: 1px solid #ccc;
}
#topics_1 .entry .main_cont {
  font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  /*font-size: ($size / $base) + rem;*/
  letter-spacing: 0;
  font-weight: 400;
  margin-top: 30px;
  font-weight: 500;
  color: #6b6b6b;
}
#topics_1 .entry .main_cont img {
  max-width: 100%;
  display: block;
}/*# sourceMappingURL=style.css.map */