@charset "UTF-8";
/* アニメーションベンダープレフィックス込み指定 */
/* アニメーションベンダープレフィックス込み指定 */
body {
  color: #4f4944;
  background: #fdfdfd;
  font-family: Lato, "YakuHanJP", "Noto Sans JP", "游ゴシック Medium",
    "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN",
    "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック",
    "MS PGothic", sans-serif;
  font-size: 1.5rem;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  font-weight: 400;
  position: relative;
  letter-spacing: 0.1rem;
}

a {
  color: #2f954a;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
}

#wrapper {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
}

.bold {
  font-weight: 700;
}

h2,
h3 {
  line-height: 1.4;
}

.mincho {
  font-family: "YakuHanMP", "游明朝 Medium", "Yu Mincho", YuMincho,
    "Hiragino Mincho ProN", HGS明朝E, serif;
}

.bigger {
  font-size: 1.8rem;
}
@media all and (max-width: 639px) {
  .bigger {
    font-size: 1.25rem;
  }
}

/* animation
----------------------------------*/
@-webkit-keyframes view-zoomin {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes view-zoomin {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@-webkit-keyframes view-slideup {
  0% {
    opacity: 0;
    -webkit-transform: translate(0, 35px);
    transform: translate(0, 35px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}
@keyframes view-slideup {
  0% {
    opacity: 0;
    -webkit-transform: translate(0, 35px);
    transform: translate(0, 35px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}
.animation {
  opacity: 0;
}

.slideup.on {
  opacity: 1;
  -webkit-animation: view-slideup 0.65s cubic-bezier(0.2, 1, 0.2, 1);
  animation: view-slideup 0.65s cubic-bezier(0.2, 1, 0.2, 1);
}

.zoomin.on {
  opacity: 1;
  -webkit-animation: view-zoomin 0.65s cubic-bezier(0.2, 1, 0.2, 1);
  animation: view-zoomin 0.65s cubic-bezier(0.2, 1, 0.2, 1);
}

.loader {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: #fdfdfd;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 9999;
}
.loader::after {
  -webkit-animation: loader 0.5s linear infinite;
  animation: loader 0.5s linear infinite;
  border: 1px solid #35a854;
  border-radius: 50%;
  border-right: 1px solid rgba(53, 168, 84, 0.2);
  border-top: 1px solid rgba(53, 168, 84, 0.2);
  content: "";
  height: 70px;
  width: 70px;
}
.loader.off {
  display: none;
}

@-webkit-keyframes loader {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes loader {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
/* header
----------------------------------*/
@-webkit-keyframes hd-scrolled {
  0% {
    opacity: 0;
    -webkit-transform: translate(0, -100%);
    transform: translate(0, -100%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}
@keyframes hd-scrolled {
  0% {
    opacity: 0;
    -webkit-transform: translate(0, -100%);
    transform: translate(0, -100%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}
#l-header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid #ddd;
}
#l-header.is-fixed {
  position: fixed;
  top: 0;
  z-index: 100;
  -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}
#l-header .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  max-width: 1900px;
  margin: 0 auto;
  padding: 15px 30px;
  background: transparent;
  border-radius: 0;
}
#l-header #logo {
  width: 200px;
}
#l-header #logo img {
  width: 100%;
  height: auto;
}
#l-header .head-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media all and (max-width: 896px) {
  #l-header .head-right {
    display: none;
  }
}
#l-header .head-right_contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
#l-header .head-right_contact .head-right_line {
  margin-left: 20px;
}
#l-header .head-right_contact .head-right_line a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #fff;
  background: #35a854;
  padding: 6px 16px 6px 36px;
  border-radius: 30px;
  font-size: 1.6rem;
  position: relative;
}
#l-header .head-right_contact .head-right_line a i {
  position: absolute;
  left: 12px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 1.4rem;
}
#l-header .head-right_contact .head-right_line a:hover {
  opacity: 0.8;
}
@media all and (max-width: 639px) {
  #l-header .inner {
    padding: 10px 15px;
  }
}

#header_nav {
  position: relative;
  width: auto;
}
#header_nav ul.globalNav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
#header_nav ul.globalNav li {
  position: relative;
}
#header_nav ul.globalNav li a {
  display: block;
  font-size: 1.5rem;
  font-weight: 600;
  color: #333;
  position: relative;
  padding: 6px 0;
}
#header_nav ul.globalNav li a span {
  display: block;
  font-size: 1.2rem;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  color: #35a854;
  text-transform: uppercase;
  display: none;
}
#header_nav ul.globalNav li a:after {
  content: "";
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  bottom: 0;
  width: 0;
  height: 2px;
  background: #ccc;
  -webkit-transition: 0.2s width ease-in;
  transition: 0.2s width ease-in;
}
#header_nav ul.globalNav li a:hover:after,
#header_nav ul.globalNav li a.active:after {
  width: 15px;
}
#header_nav ul.globalNav li ul.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 8px;
  -webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  padding: 15px 0;
  min-width: 180px;
  z-index: 999;
}
#header_nav ul.globalNav li ul.dropdown .dropdown-li a {
  display: block;
  padding: 10px 20px;
  color: #333;
  font-size: 1.4rem;
  text-align: left;
  white-space: nowrap;
}
#header_nav ul.globalNav li ul.dropdown .dropdown-li a:hover {
  background: rgba(53, 168, 84, 0.1);
}
#header_nav ul.globalNav li:hover > ul.dropdown {
  display: block;
}

/* page-top
----------------------------------*/
#page-top {
  position: fixed;
  bottom: 90px;
  right: 7px;
  z-index: 200;
}
#page-top a {
  display: block;
  background: #35a854;
  -webkit-box-shadow: rgba(0, 0, 0, 0.2) 2px 2px 2px;
  box-shadow: rgba(0, 0, 0, 0.2) 2px 2px 2px;
  color: #fff;
  width: 70px;
  height: 70px;
  line-height: 70px;
  border-radius: 50%;
  font-size: 1.4rem;
  text-align: center;
}
#page-top a:hover {
  opacity: 0.6;
}
@media all and (max-width: 639px) {
  #page-top {
    bottom: 95px;
  }
  #page-top a {
    width: 40px;
    height: 40px;
    line-height: 40px;
  }
}

/* swiper
----------------------------------*/
@-webkit-keyframes zoom-in {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.12);
    transform: scale(1.12);
  }
}
@keyframes zoom-in {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.12);
    transform: scale(1.12);
  }
}
.slide-img {
  overflow: hidden;
  width: 100%;
  height: 80vh;
}
.slide-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  font-family: "object-fit: cover;";
}
@media all and (max-width: 1100px) {
  .slide-img {
    height: 55vh;
  }
}
@media all and (max-width: 639px) {
  .slide-img {
    height: 60vh;
  }
}

/* slideshow
----------------------------------*/
#slideshow {
  position: relative;
}
#slideshow::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background-color: #4385f4;
}
#slideshow .inner {
  max-width: 64%;
  margin-left: auto;
}

.swiper-slide {
  overflow: hidden;
  position: relative;
}

.slide-img {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 80vh;
  /*
  &::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(#000, .3);
  }
    */
}
.slide-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  font-family: "object-fit: cover;";
}

#catch {
  position: absolute;
  top: 50%;
  left: 3.2%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 3;
}
@media all and (max-width: 639px) {
  #catch {
    width: 375px;
    top: 75%;
  }
}

.slide-catch-sub {
  position: absolute;
  right: 0%;
  bottom: -10%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 10;
}
.slide-catch-sub img {
  width: 100%;
  height: auto;
}
@media all and (max-width: 1100px) {
  .slide-catch-sub {
    width: 650px;
  }
}
@media all and (max-width: 896px) {
  .slide-catch-sub {
    width: 550px;
  }
}
@media all and (max-width: 639px) {
  .slide-catch-sub {
    right: 0%;
    bottom: 2%;
    -webkit-transform: none;
    transform: none;
    width: 330px;
  }
  .slide-catch-sub img {
    width: 100%;
    height: auto;
  }
}
@media all and (max-width: 320px) {
  .slide-catch-sub {
    width: 250px;
  }
}

#scrolldown {
  position: absolute;
  left: 2%;
  bottom: 0px;
  color: #fefefe;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  -webkit-font-feature-settings: "pkna";
  font-feature-settings: "pkna";
  font-size: 1.4rem;
  z-index: 100;
  height: 210px;
}
#scrolldown:before,
#scrolldown:after {
  position: absolute;
  content: "";
  z-index: 2;
  left: 50%;
}
#scrolldown:before {
  width: 1px;
  height: 100px;
  bottom: 0;
  background: #f0f0f0;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
#scrolldown:after {
  width: 8px;
  height: 8px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 100%;
  top: 100px;
  margin-left: -4px;
  -webkit-animation: scroll-point 2.3s ease-out infinite;
  animation: scroll-point 2.3s ease-out infinite;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
@media all and (max-width: 896px) {
  #scrolldown {
    display: none;
  }
}

@-webkit-keyframes scroll-point {
  0% {
    bottom: 0;
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  50% {
    top: 180px;
    opacity: 1;
  }
  80% {
    opacity: 0;
  }
  100% {
    top: 210px;
    opacity: 0;
  }
}

@keyframes scroll-point {
  0% {
    bottom: 0;
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  50% {
    top: 180px;
    opacity: 1;
  }
  80% {
    opacity: 0;
  }
  100% {
    top: 210px;
    opacity: 0;
  }
}
/* bg_contact
----------------------------------*/
.bg_contact {
  position: relative;
  overflow: hidden;
}

.contact_lead {
  font-size: 1.3em;
  color: #3a200c;
  text-align: center;
}
@media all and (max-width: 639px) {
  .contact_lead {
    font-size: 1em;
  }
}

.contact_bnr {
  margin: 15px auto 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  max-width: 1200px;
}
.contact_bnr > li {
  width: 48%;
}
@media all and (max-width: 896px) {
  .contact_bnr > li {
    width: 90%;
    margin: 0 auto 20px;
  }
}
.contact_bnr > li .bnr_tel {
  white-space: nowrap;
  position: relative;
  background: #fefefe;
}
.contact_bnr > li .bnr_tel:before {
  font-family: "Font Awesome 5 Free";
  content: "\f879";
  font-weight: 900;
  margin-right: 5px;
}
.contact_bnr > li .bnr_tel:hover {
  color: #e94337;
}
@media all and (max-width: 639px) {
  .contact_bnr > li .bnr_tel {
    font-size: 1.8rem;
  }
}
.contact_bnr > li .bnr_mobile {
  background: #fefefe;
  color: #1d65a7;
}
.contact_bnr > li .bnr_mobile:before {
  font-family: "Font Awesome 5 Free";
  content: "\f3cd";
  font-weight: 900;
}
.contact_bnr > li .bnr_fax {
  background: #fdfdfd;
  color: #35a854;
}
.contact_bnr > li .bnr_fax:before {
  font-family: "Font Awesome 5 Free";
  content: "\f1ac";
  font-weight: 900;
}
.contact_bnr > li .bnr_mail {
  background: #35a854;
  color: #fefefe;
}
.contact_bnr > li .bnr_mail:before {
  font-family: "Font Awesome 5 Free";
  content: "\f0e0";
  font-weight: 900;
}
.contact_bnr > li .bnr_mail:hover {
  background: #4ac66b;
}
.contact_bnr > li a,
.contact_bnr > li span {
  display: block;
  margin: 0 auto;
  color: #111;
  font-size: 2rem;
  font-weight: 600;
  text-align: center;
  letter-spacing: 0.2rem;
  padding: 15px 0;
  background: #fefefe;
}
.contact_bnr > li a:before,
.contact_bnr > li span:before {
  margin-right: 5px;
  font-size: 2rem;
  position: relative;
  display: inline-block;
}
@media all and (max-width: 639px) {
  .contact_bnr > li a,
  .contact_bnr > li span {
    font-size: 1.6rem;
    white-space: nowrap;
    padding: 10px 0;
  }
  .contact_bnr > li a:before,
  .contact_bnr > li span:before {
    font-size: 1.5rem;
    -webkit-transform: translateY(-2px);
    transform: translateY(-2px);
  }
}

.contact_bnr2 {
  background: #fff;
  border-radius: 10em;
  max-width: 95%;
  margin: 0 auto 60px;
  padding: 25px;
}
.contact_bnr2 .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 10px;
  text-align: center;
}
.contact_bnr2 .inner p {
  width: 25%;
}
.contact_bnr2 .inner p a {
  color: #fff;
  font-weight: bold;
  font-size: 1.8rem;
  border-radius: 60px;
  height: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  line-height: 1.4;
}
.contact_bnr2 .inner p a .big {
  font-size: 1.5em;
}
.contact_bnr2 .inner p a:hover {
  opacity: 0.6;
}
.contact_bnr2 .inner .tel_bnr {
  width: 37%;
}
.contact_bnr2 .inner .tel_bnr a {
  font-family: "Barlow Condensed", sans-serif;
  background: rgba(53, 168, 84, 0.2);
  border: 3px solid #35a854;
  color: #35a854;
  position: relative;
}
.contact_bnr2 .inner .tel_bnr a span {
  display: block;
  font-size: 1.3rem;
}
.contact_bnr2 .inner .tel_bnr a .ttl {
  position: absolute;
  top: -1em;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background: #35a854;
  border-radius: 20px;
  color: #fff;
  width: 12em;
  line-height: 2;
}
.contact_bnr2 .inner .tel_bnr a .num {
  font-size: 3rem;
}
.contact_bnr2 .inner .line_bnr a {
  background: #46c71c;
}
.contact_bnr2 .inner .mail_bnr a {
  background: #1799ea;
}
.contact_bnr2.type2 {
  margin: 0 auto;
  border-bottom: 10px solid #fbbc05;
}
@media all and (max-width: 1100px) {
  .contact_bnr2 {
    max-width: 100%;
  }
}
@media all and (max-width: 896px) {
  .contact_bnr2 {
    border-radius: 1em;
  }
  .contact_bnr2 .inner p a {
    border-radius: 20px;
    font-size: 1.5rem;
  }
  .contact_bnr2 .inner .tel_bnr {
    width: 48%;
  }
}
@media all and (max-width: 639px) {
  .contact_bnr2 {
    padding: 25px 15px 15px;
    margin: 0 auto 30px;
  }
  .contact_bnr2 .inner p {
    width: 100%;
  }
  .contact_bnr2 .inner p a {
    height: auto;
    padding: 10px;
    border-radius: 10px;
    font-size: 1.3rem;
  }
  .contact_bnr2 .inner .tel_bnr {
    width: 100%;
  }
}

/* footer
----------------------------------*/
footer {
  position: relative;
}

#l-footer {
  position: relative;
  background: #ffffff;
  font-size: 1.4rem;
  width: 100%;
  color: #4f4944;
  border-top: 2px solid #4385f4;
}
#l-footer.type1 {
  position: relative;
  background: #35a854;
  font-size: 1.4rem;
  width: 100%;
}
#l-footer .inner {
  padding: 60px 20px;
  position: relative;
  z-index: 3;
  max-width: 1200px;
  margin: 0 auto;
}
#l-footer .footer-column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-right: auto;
  margin-left: auto;
  position: relative;
  z-index: 2;
}
#l-footer .footer-column .footer-left {
  width: 42%;
}
#l-footer .footer-column .footer-right {
  width: 55%;
}
@media all and (max-width: 1100px) {
  #l-footer .footer-column {
    -ms-flex-pack: distribute;
    justify-content: space-around;
    max-width: 80%;
  }
  #l-footer .footer-column .footer-left {
    width: 100%;
    margin-bottom: 20px;
  }
  #l-footer .footer-column .footer-right {
    width: 100%;
  }
}
@media all and (max-width: 896px) {
  #l-footer .footer-column {
    max-width: 90%;
  }
}
@media all and (max-width: 639px) {
  #l-footer {
    font-size: 1.2rem;
  }
  #l-footer .inner {
    padding: 40px 15px;
  }
  #l-footer .footer-column {
    max-width: 100%;
  }
}
#l-footer .footer_type02 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  gap: 5% 5%;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
@media all and (max-width: 639px) {
  #l-footer .footer_type02.res_none {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  #l-footer .footer_type02.res_none figure {
    max-width: 30%;
  }
}
#l-footer .footer_type02.reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
#l-footer .footer_type02.j-center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
#l-footer .footer_type02.a-center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
#l-footer .footer_type02 .information {
  max-width: 30%;
  position: relative;
}
#l-footer .footer_type02 .information .logo {
  margin: 0 0 20px;
}
#l-footer .footer_type02 .information .logo img {
  max-width: 280px;
}
#l-footer .footer_type02 .information .address {
  font-size: 80%;
}
#l-footer .footer_type02 .guidance {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
@media all and (max-width: 896px) {
  #l-footer .footer_type02 {
    display: block;
  }
  #l-footer .footer_type02 .information {
    max-width: 100%;
    position: relative;
    text-align: center;
    margin: 0 0 30px;
  }
  #l-footer .footer_type02 .information .logo img {
    max-width: 200px;
  }
  #l-footer .footer_type02 .information .address {
    font-size: 100%;
  }
}
#l-footer .footer_type02.half {
  gap: 0% 0%;
}
#l-footer .footer_type02.half .figure,
#l-footer .footer_type02.half figure {
  max-width: 50%;
  width: 50%;
  height: 100%;
  max-height: 50vw;
}
#l-footer .footer_type02.half .txtarea {
  width: 50%;
  padding: 0px 100px;
}
@media all and (max-width: 1100px) {
  #l-footer .footer_type02.half .txtarea {
    padding: 0px 50px;
  }
}
@media all and (max-width: 896px) {
  #l-footer .footer_type02.half {
    display: block;
  }
  #l-footer .footer_type02.half .figure,
  #l-footer .footer_type02.half figure {
    max-width: 100%;
    width: 100%;
    height: 100%;
    max-height: 60vw;
  }
  #l-footer .footer_type02.half .txtarea {
    width: 100%;
    padding: 30px 10px;
  }
}

/* fixed-btn
----------------------------------*/
.fixed-btn {
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 50;
  z-index: 100;
  width: 100%;
  background: #35a854;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 10px 7vw;
}
.fixed-btn .logo {
  width: 300px;
}
.fixed-btn ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
}
.fixed-btn ul li:nth-child(2) a {
  background: #1799ea;
  padding: 10px 25px;
}
.fixed-btn ul li:nth-child(3) a {
  background: #46c71c;
  padding: 10px 25px;
}
.fixed-btn ul li a {
  color: #fefefe;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  border-radius: 10px;
}
.fixed-btn ul li a:hover {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-transform: translateX(5px);
  transform: translateX(5px);
}
.fixed-btn ul li .tel_btn .cont {
  font-size: 4.5rem;
  font-family: "Barlow Condensed", sans-serif;
}
.fixed-btn ul li .tel_btn .cont span {
  font-size: 1.6rem;
}
.fixed-btn ul li .tel_btn .cont i {
  font-size: 3.5rem;
}
.fixed-btn ul li .cont {
  font-size: 1.8rem;
  text-align: center;
  line-height: 1.3;
  font-weight: bold;
}
.fixed-btn ul li .cont span {
  display: block;
}
.fixed-btn ul li .cont i {
  font-size: 2rem;
}
@media all and (max-width: 1320px) {
  .fixed-btn {
    padding: 10px 1vw;
  }
}
@media all and (max-width: 1100px) {
  .fixed-btn .logo {
    width: 220px;
  }
  .fixed-btn ul li .tel_btn .cont {
    font-size: 2.5rem;
  }
  .fixed-btn ul li .tel_btn .cont i {
    font-size: 2.5rem;
  }
}
@media all and (max-width: 896px) {
  .fixed-btn {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .fixed-btn .logo {
    display: none;
  }
}
@media all and (max-width: 639px) {
  .fixed-btn {
    top: auto;
    left: 50%;
    bottom: 0;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    width: calc(100% - 35px);
    width: 100%;
  }
  .fixed-btn ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 0;
    width: 95%;
  }
  .fixed-btn ul li {
    width: 27%;
    margin-bottom: 0;
  }
  .fixed-btn ul li:first-child {
    width: 43%;
  }
  .fixed-btn ul li:nth-child(2) a,
  .fixed-btn ul li:nth-child(3) a {
    padding: 10px;
  }
  .fixed-btn ul li:nth-child(2) a .cont .pc,
  .fixed-btn ul li:nth-child(3) a .cont .pc {
    display: none;
  }
  .fixed-btn ul li a {
    width: 100%;
    height: auto;
    -webkit-writing-mode: initial;
    -ms-writing-mode: initial;
    writing-mode: initial;
    border-radius: 0;
  }
  .fixed-btn ul li a:hover {
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  .fixed-btn ul li .cont {
    font-size: 1rem;
    padding: 0;
  }
  .fixed-btn ul li .cont img {
    margin: 0 auto;
    display: block;
  }
  .fixed-btn ul li .tel_btn .cont {
    font-size: 1.6rem;
  }
  .fixed-btn ul li .tel_btn .cont i {
    font-size: 1em;
  }
  .fixed-btn ul li .tel_btn .cont span {
    font-size: 0.7em;
  }
}

/* footer_navi
----------------------------------*/
.footer_navi {
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  margin: 35px auto 0;
}
@media all and (max-width: 896px) {
  .footer_navi {
    display: none;
  }
}
.footer_navi ul {
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.footer_navi ul li a {
  color: #4f4944;
  font-size: 1.2rem;
  font-family: Lato, "YakuHanJP", "Noto Sans JP", "游ゴシック Medium",
    "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN",
    "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック",
    "MS PGothic", sans-serif;
  font-weight: 700;
  letter-spacing: 0.18em;
  position: relative;
  padding: 2px 15px;
}
@media all and (max-width: 1100px) {
  .footer_navi ul li a {
    font-size: 1.1rem;
    padding: 2px 10px;
  }
}
.footer_navi ul li a:hover {
  color: #9e958e;
}
.footer_navi ul li a span {
  display: none;
}
.footer_navi ul li a:before {
  content: "";
  background: #eae4e2;
  width: 1px;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.footer_navi ul li:first-child a:before {
  display: none;
}
.footer_navi ul li .dropdown {
  display: none;
}

.flogo {
  position: relative;
  text-align: center;
  z-index: 5;
  margin: 0 auto 15px;
  width: 200px;
}
@media all and (max-width: 896px) {
  .flogo {
    margin: 0 auto 10px;
  }
}

.address {
  font-size: 1.2rem;
  letter-spacing: 0.1em;
  line-height: 1.8;
  text-align: center;
}
@media all and (max-width: 896px) {
  .address {
    font-size: 1rem;
    line-height: 1.6;
  }
}

.copyright {
  background: #4385f4;
  padding: 18px 0;
  font-size: 1.2rem;
  position: relative;
  z-index: 2;
  color: #fff;
}
@media all and (max-width: 896px) {
  .copyright {
    font-size: 1rem;
    padding: 18px 0 80px;
  }
}

/*----------------------------------
 list
----------------------------------*/
.list2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  max-width: 1500px;
  margin: 0 auto -20px;
}
@media all and (max-width: 639px) {
  .list2 {
    margin-bottom: -5px;
  }
}
.list2.type1 > li,
.list2.type1 .child {
  background: #fefefe;
  padding: 15px;
}
.list2 > li,
.list2 .child {
  width: 48%;
  margin-bottom: 50px;
}
.list2 > li:nth-child(2n),
.list2 .child:nth-child(2n) {
  margin-left: 4%;
}
@media all and (max-width: 639px) {
  .list2 > li:nth-child(2n),
  .list2 .child:nth-child(2n) {
    margin-left: auto;
  }
}
@media all and (max-width: 639px) {
  .list2 > li,
  .list2 .child {
    width: 100%;
    margin: 0 auto 20px;
  }
}

.list3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.list3.center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.list3 > li {
  width: 31%;
  position: relative;
  margin: 0 3.495% 20px 0;
}
.list3 > li:nth-child(3n) {
  margin-right: 0;
}
@media all and (max-width: 639px) {
  .list3 > li {
    width: 95%;
    margin: 0 auto 20px;
  }
  .list3 > li:nth-child(3n) {
    margin-right: auto;
  }
}

.list4 {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  text-align: center;
}
.list4.type1 {
  text-align: center;
}
.list4.type2 {
  margin-bottom: 100px;
}
.list4.type2 > li:nth-child(2n),
.list4.type2 .child:nth-child(2n) {
  -webkit-transform: translateY(80px);
  transform: translateY(80px);
}
.list4 figure {
  text-align: center;
  height: 250px;
  width: 250px;
  border-radius: 50%;
  margin: 0 auto;
  overflow: hidden;
}
.list4 figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
@media all and (max-width: 1320px) {
  .list4 {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .list4.type2 {
    margin-bottom: 80px;
  }
  .list4.type2 > li:nth-child(2n),
  .list4.type2 .child:nth-child(2n) {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  .list4 figure {
    width: 220px;
    height: 220px;
  }
}
@media all and (max-width: 896px) {
  .list4 {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  .list4 figure {
    width: 200px;
    height: 200px;
  }
}
@media all and (max-width: 639px) {
  .list4 {
    grid-template-columns: repeat(1, 1fr);
    gap: 25px;
  }
  .list4.type1 {
    max-width: 480px;
    width: 95%;
  }
}

/*----------------------------------
 top-contents
----------------------------------*/
.service_list {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.service_list li a {
  display: block;
  -webkit-box-shadow: 0 0 15px rgba(29, 101, 167, 0.1);
  box-shadow: 0 0 15px rgba(29, 101, 167, 0.1);
}
.service_list li a p {
  overflow: hidden;
  border-radius: 10px;
}
.service_list li a p img {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.service_list li a:hover img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
@media all and (max-width: 896px) {
  .service_list {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .service_list li {
    width: 48%;
    margin-right: 0;
  }
}

.service_list2 {
  padding: 0 15px;
}
.service_list2 > li a {
  display: block;
  border-radius: 10px;
  border: 3px solid #35a854;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
  padding: 15px;
  color: #4f4944;
  font-size: 1.8rem;
  font-weight: bold;
}
.service_list2 > li a:hover {
  background: rgba(53, 168, 84, 0.1);
}
.service_list2 > li a .icon {
  width: 20%;
}
.service_list2 > li a .ttl {
  width: 65%;
}
@media all and (max-width: 1100px) {
  .service_list2 > li a {
    font-size: 1.6rem;
    padding: 10px;
  }
}
@media all and (max-width: 896px) {
  .service_list2 {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .service_list2 > li {
    width: 48%;
    margin-right: 0;
  }
}
@media all and (max-width: 639px) {
  .service_list2 > li {
    width: 100%;
    margin: 0 auto 10px;
  }
  .service_list2 > li a {
    font-size: 1.4rem;
  }
}

.point_box {
  padding: 40px 0 0;
  row-gap: 40px;
  max-width: 95%;
  margin: 0 auto;
}
.point_box > li {
  border: 3px solid #35a854;
  padding: 70px 20px 20px;
  position: relative;
  background: #fff;
  border-radius: 20px;
}
.point_box > li .num {
  position: absolute;
  top: -1em;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background: #f89004;
  text-align: center;
  border-radius: 50%;
  color: #fff;
  width: 2.5em;
  height: 2.5em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 4rem;
  line-height: 1;
}
.point_box > li .num span {
  font-size: 1.5rem;
}
.point_box > li .ttl {
  text-align: center;
  color: #35a854;
  font-weight: bold;
  font-size: 2rem;
}
.point_box > li .icon {
  text-align: center;
}
.point_box > li .icon img {
  width: 50%;
}
.point_box > li .img img {
  border-radius: 20px;
}
.point_box.type2 {
  padding: 0;
}
.point_box.type2 > li {
  padding: 20px;
  border: 6px solid #df7a99;
}
.point_box.type3 {
  padding: 0;
}
.point_box.type3 > li {
  padding: 20px;
  border: 6px solid #df7a99;
  background: rgba(53, 168, 84, 0.2);
}
.point_box.type3 > li .ttl {
  background: #35a854;
  color: #fff;
  border-radius: 20px;
  position: relative;
  z-index: 10;
  width: 80%;
  margin: -1em auto 10px;
}
@media all and (max-width: 1100px) {
  .point_box.type3 > li .ttl {
    width: 90%;
    font-size: 2vw;
  }
}
@media all and (max-width: 896px) {
  .point_box.list4 > li {
    width: 48% !important;
  }
}
@media all and (max-width: 639px) {
  .point_box {
    max-width: 100%;
    row-gap: 20px;
  }
  .point_box > li {
    padding: 50px 10px 10px;
  }
  .point_box > li .num {
    font-size: 3rem;
  }
  .point_box > li .ttl {
    font-size: 1.2rem;
  }
  .point_box.type2 {
    gap: 0;
  }
  .point_box.type2 > li .icon img {
    width: 30%;
  }
  .point_box.type3 > li .ttl {
    font-size: 4vw;
  }
}

.onayami_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 30px 0 0;
  row-gap: 20px;
}
.onayami_box > li {
  width: 28%;
  text-align: center;
  font-weight: bold;
  font-size: 1.8rem;
  padding: 100px 0 110px;
  background-repeat: no-repeat;
  background-position: center top;
  background-size: contain;
}
.onayami_box > li:nth-child(2) {
  -webkit-transform: translateY(-40px);
  transform: translateY(-40px);
}
.onayami_box .bg01 {
  background-image: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/26168/fukidashi_03.png);
}
.onayami_box .bg02 {
  background-image: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/26168/fukidashi_01.png);
}
.onayami_box .bg03 {
  background-image: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/26168/fukidashi_02.png);
}
@media all and (max-width: 1100px) {
  .onayami_box > li {
    width: 31%;
  }
}
@media all and (max-width: 896px) {
  .onayami_box {
    padding: 60px 0 0;
  }
  .onayami_box > li {
    width: 46%;
  }
  .onayami_box > li:nth-child(2) {
    -webkit-transform: none;
    transform: none;
  }
}
@media all and (max-width: 639px) {
  .onayami_box {
    padding: 30px 0 0;
  }
  .onayami_box > li {
    width: 100%;
    font-size: 1.4rem;
    padding: 30px 0 55px;
  }
}

.people {
  max-width: 80%;
  margin: 0 auto;
}

.omakase_box {
  max-width: 90%;
  margin: 0 auto;
  border-radius: 60px;
  background: #fff;
  margin-top: -100px;
  position: relative;
  z-index: 10;
  padding: 0 20px;
}
@media all and (max-width: 896px) {
  .omakase_box {
    max-width: 95%;
  }
  .omakase_box .arrow {
    width: 150px;
    margin: 0 auto;
  }
}
@media all and (max-width: 639px) {
  .omakase_box {
    max-width: 100%;
    padding: 0 10px;
  }
  .omakase_box .arrow {
    width: 30px;
  }
}

.service_link_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.service_link_list > li {
  width: 25%;
  padding: 20px;
}
.service_link_list > li a {
  display: block;
}
.service_link_list > li a .img img {
  border-radius: 10px 10px 0 0;
  height: 150px;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.service_link_list > li a .service_ttl {
  border-radius: 0 0 10px 10px;
  border-right: solid 5px #35a854;
  border-left: solid 5px #35a854;
  border-bottom: solid 5px #35a854;
  text-align: center;
  padding: 2em;
  color: #222;
}
.service_link_list > li a .service_ttl .eng {
  font-size: 0.8em;
  color: #35a854;
  display: block;
}
.service_link_list > li a:hover {
  -webkit-transform: translateY(-10px);
  transform: translateY(-10px);
}
@media all and (max-width: 896px) {
  .service_link_list > li {
    width: 48%;
  }
}
@media all and (max-width: 639px) {
  .service_link_list > li {
    width: 100%;
    padding: 5px;
  }
  .service_link_list > li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .service_link_list > li a .img {
    width: 40%;
  }
  .service_link_list > li a .img img {
    border-radius: 10px 0 0 10px;
    height: 100px;
  }
  .service_link_list > li a .service_ttl {
    width: 60%;
    border-radius: 0 10px 10px 0;
    border-left: none;
    border-top: solid 5px #5392f0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 1em;
  }
}

.area_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 60px 0;
}
.area_box .img {
  width: 40%;
}
.area_box .txt {
  width: 55%;
  background: rgba(255, 255, 255, 0.8);
  padding: 40px;
}
@media all and (max-width: 896px) {
  .area_box {
    padding: 0;
  }
  .area_box .img,
  .area_box .txt {
    width: 100%;
  }
}
@media all and (max-width: 639px) {
  .area_box .txt {
    padding: 20px 10px;
  }
}

.flow_box {
  border: 3px solid #35a854;
  border-radius: 20px;
}
.flow_box .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 50px 30px;
}
.flow_box .inner .img_area {
  width: 45%;
}
.flow_box .inner .txt_area {
  width: 53%;
}
.flow_box .inner .txt_area .num {
  background: #35a854;
  color: #fff;
  border-radius: 20px;
  padding: 0 1em;
  display: inline-block;
}
.flow_box .inner .txt_area .ttl {
  font-size: 2.5rem;
  font-weight: bold;
  margin: 10px 0;
}
.flow_box .inner .txt_area .txt {
  text-align: left;
}
@media all and (max-width: 639px) {
  .flow_box {
    border-radius: 10px;
  }
  .flow_box .inner {
    padding: 15px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .flow_box .inner .img_area {
    width: 100%;
    margin-bottom: 10px;
  }
  .flow_box .inner .txt_area {
    width: 100%;
    text-align: center;
  }
  .flow_box .inner .txt_area .ttl {
    font-size: 1.6rem;
  }
}

.item_box {
  border: 3px solid #35a854;
  border-radius: 20px;
  overflow: hidden;
  background: #fefefe;
  max-width: 95%;
  margin: 0 auto 60px;
}
.item_box.last {
  margin-bottom: 0;
}
.item_box .ttl {
  background: #35a854;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
  font-size: 3.3rem;
  color: #fff;
  font-weight: bold;
  padding: 0 30px;
}
.item_box .inner {
  padding: 40px;
}
@media all and (max-width: 639px) {
  .item_box {
    margin: 0 auto 30px;
  }
  .item_box .inner {
    padding: 10px 20px;
  }
  .item_box .ttl {
    font-size: 1.6rem;
  }
  .item_box .ttl img {
    width: 50px;
  }
}

.top-lead {
  position: relative;
  margin: 40px 0;
}
.top-lead:after {
  position: absolute;
  content: "";
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: calc(100% - 60px);
  height: 60%;
  bottom: 0;
  background-image: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#35a854),
    to(#4bbbeb)
  );
  background-image: linear-gradient(to right, #35a854, #4bbbeb);
  opacity: 0.3;
  z-index: -2;
}
@media all and (max-width: 639px) {
  .top-lead:after {
    width: 100%;
    height: 70%;
  }
}

.title01 {
  color: #fff;
  background: #35a854;
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
  width: 90%;
  position: relative;
  z-index: 3;
  padding: 15px 5px;
  margin: -40px auto 20px;
}
@media all and (max-width: 639px) {
  .title01 {
    font-size: 1.3rem;
  }
}

.sec2 {
  position: relative;
  margin-bottom: 60px;
}
@media all and (max-width: 639px) {
  .sec2 {
    margin-bottom: 30px;
  }
}
.sec2:before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 70%;
  height: 100%;
  background: url(../img/top_greet.png) no-repeat center top/contain;
  border-radius: 0 15px 15px 0;
}
@media all and (max-width: 639px) {
  .sec2:before {
    display: none;
  }
}
.sec2 .half-box {
  width: 40%;
  margin-left: auto;
  margin-right: 5%;
  padding: 100px 0;
  position: relative;
  z-index: 2;
}
.sec2 .half-box .inner {
  padding: 80px 40px;
  background: #fefefe;
  font-weight: 700;
  border-radius: 20px;
}
@media all and (max-width: 896px) {
  .sec2 .half-box {
    padding: 60px 0;
    width: 60%;
    margin-right: 15px;
  }
  .sec2 .half-box .inner {
    padding: 60px 25px;
  }
}
@media all and (max-width: 639px) {
  .sec2 .half-box {
    width: 100%;
    margin-right: auto;
    padding: 0;
  }
  .sec2 .half-box .inner {
    padding: 30px 0;
  }
}
.sec2.type1 {
  margin-bottom: 0;
}
.sec2.type1:before {
  left: auto;
  right: 0;
}
.sec2.type1 .half-box {
  margin-left: 5%;
  margin-right: auto;
}
@media all and (max-width: 896px) {
  .sec2.type1 .half-box {
    margin-left: 15px;
  }
}
@media all and (max-width: 639px) {
  .sec2.type1 .half-box {
    margin-left: auto;
  }
}
.sec2.sec2-small .half-box {
  width: 50%;
  padding: 40px 0;
  margin-right: 2%;
}
@media all and (max-width: 896px) {
  .sec2.sec2-small .half-box {
    width: 60%;
    margin-right: 15px;
  }
  .sec2.sec2-small .half-box .inner {
    padding: 60px 25px;
  }
}
@media all and (max-width: 639px) {
  .sec2.sec2-small .half-box {
    width: 95%;
    margin-right: auto;
    padding: 0;
  }
  .sec2.sec2-small .half-box .inner {
    padding: 30px 15px;
  }
}
.sec2.bg-rental:before {
  background-image: url(../img/bg-rental.jpg);
}
.sec2.bg-used:before {
  background-image: url(../img/bg-used.jpg);
}
.sec2.bg-original:before {
  background-image: url(../img/bg-original.jpg);
}

.title50.heading,
.title40.heading,
.title32.heading,
.title28.heading,
.title24.heading,
.title22.heading,
.title20.heading,
.title18.heading,
.title16.heading {
  margin-bottom: 40px;
}
@media all and (max-width: 896px) {
  .title50.heading,
  .title40.heading,
  .title32.heading,
  .title28.heading,
  .title24.heading,
  .title22.heading,
  .title20.heading,
  .title18.heading,
  .title16.heading {
    margin-bottom: 30px;
    letter-spacing: 0.15em;
  }
}

.title40 {
  font-family: Lato, "YakuHanJP", "Noto Sans JP", "游ゴシック Medium",
    "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN",
    "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック",
    "MS PGothic", sans-serif;
  font-weight: 700;
  letter-spacing: 0.18em;
  font-size: 4rem;
}
@media all and (max-width: 896px) {
  .title40 {
    font-size: 3rem;
  }
}
@media all and (max-width: 639px) {
  .title40 {
    font-size: 2rem;
    letter-spacing: 0.15em;
  }
}
.title40 ruby {
  font-family: Lato, "YakuHanJP", "Noto Sans JP", "游ゴシック Medium",
    "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN",
    "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック",
    "MS PGothic", sans-serif;
  font-weight: 700;
  letter-spacing: 0.18em;
  font-size: 5rem;
  color: #e94337;
}
@media all and (max-width: 896px) {
  .title40 ruby {
    font-size: 4rem;
  }
}
@media all and (max-width: 639px) {
  .title40 ruby {
    font-size: 3.2rem;
  }
}

.title32 {
  font-family: Lato, "YakuHanJP", "Noto Sans JP", "游ゴシック Medium",
    "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN",
    "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック",
    "MS PGothic", sans-serif;
  font-weight: 700;
  letter-spacing: 0.18em;
  font-size: 3.2rem;
}
@media all and (max-width: 896px) {
  .title32 {
    font-size: 2.6rem;
  }
}
@media all and (max-width: 639px) {
  .title32 {
    font-size: 2rem;
  }
}
.title32 ruby {
  font-family: Lato, "YakuHanJP", "Noto Sans JP", "游ゴシック Medium",
    "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN",
    "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック",
    "MS PGothic", sans-serif;
  font-weight: 700;
  letter-spacing: 0.18em;
  font-size: 4rem;
  color: #fcc937;
  font-family: Lato, "YakuHanJP", "Noto Sans JP", "游ゴシック Medium",
    "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN",
    "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック",
    "MS PGothic", sans-serif;
  font-weight: 700;
  letter-spacing: 0.18em;
  font-size: 4rem;
  color: #4385f4;
}
.title32 ruby.type1 {
  color: #fbbc05;
}
@media all and (max-width: 896px) {
  .title32 ruby {
    font-size: 3rem;
  }
}
@media all and (max-width: 639px) {
  .title32 ruby {
    font-size: 2rem;
    letter-spacing: 0.15em;
  }
}
.title32 ruby.type2 {
  color: #4385f4;
}
@media all and (max-width: 896px) {
  .title32 ruby {
    font-size: 3rem;
  }
}
@media all and (max-width: 639px) {
  .title32 ruby {
    font-size: 2rem;
    letter-spacing: 0.15em;
  }
}

.title28 {
  font-family: Lato, "YakuHanJP", "Noto Sans JP", "游ゴシック Medium",
    "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN",
    "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック",
    "MS PGothic", sans-serif;
  font-weight: 700;
  letter-spacing: 0.18em;
  font-size: 2.8rem;
}
@media all and (max-width: 896px) {
  .title28 {
    font-size: 2.2rem;
    line-height: 1.6;
  }
}
@media all and (max-width: 639px) {
  .title28 {
    font-size: 1.8rem;
    letter-spacing: 0.15em;
  }
}

.title24 {
  font-family: Lato, "YakuHanJP", "Noto Sans JP", "游ゴシック Medium",
    "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN",
    "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック",
    "MS PGothic", sans-serif;
  font-weight: 700;
  letter-spacing: 0.18em;
  font-size: 2.4rem;
}
@media all and (max-width: 896px) {
  .title24 {
    font-size: 2rem;
  }
}
@media all and (max-width: 639px) {
  .title24 {
    font-size: 1.6rem;
    letter-spacing: 0.15em;
  }
}

.title22 {
  font-family: Lato, "YakuHanJP", "Noto Sans JP", "游ゴシック Medium",
    "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN",
    "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック",
    "MS PGothic", sans-serif;
  font-weight: 700;
  letter-spacing: 0.18em;
  font-size: 2.2rem;
}
@media all and (max-width: 896px) {
  .title22 {
    font-size: 1.8rem;
  }
}
@media all and (max-width: 639px) {
  .title22 {
    font-size: 1.5rem;
    letter-spacing: 0.15em;
  }
}

.title20 {
  font-family: Lato, "YakuHanJP", "Noto Sans JP", "游ゴシック Medium",
    "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN",
    "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック",
    "MS PGothic", sans-serif;
  font-weight: 700;
  letter-spacing: 0.18em;
  font-size: 2rem;
}
@media all and (max-width: 896px) {
  .title20 {
    font-size: 1.6rem;
  }
}
@media all and (max-width: 639px) {
  .title20 {
    font-size: 1.45rem;
  }
}

.title18 {
  font-family: Lato, "YakuHanJP", "Noto Sans JP", "游ゴシック Medium",
    "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN",
    "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック",
    "MS PGothic", sans-serif;
  font-weight: 700;
  letter-spacing: 0.18em;
  font-size: 1.8rem;
}
@media all and (max-width: 896px) {
  .title18 {
    font-size: 1.5rem;
  }
}
@media all and (max-width: 639px) {
  .title18 {
    font-size: 1.35rem;
    letter-spacing: 0.15em;
  }
}
.title18.eng {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
}

.title16 {
  font-family: Lato, "YakuHanJP", "Noto Sans JP", "游ゴシック Medium",
    "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN",
    "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック",
    "MS PGothic", sans-serif;
  font-weight: 700;
  letter-spacing: 0.18em;
  font-size: 1.6rem;
}
@media all and (max-width: 896px) {
  .title16 {
    font-size: 1.4rem;
  }
}
@media all and (max-width: 639px) {
  .title16 {
    font-size: 1.25rem;
    letter-spacing: 0.15em;
  }
}

.mtitle_check {
  color: #3a200c;
  font-family: Lato, "YakuHanJP", "Noto Sans JP", "游ゴシック Medium",
    "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN",
    "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック",
    "MS PGothic", sans-serif;
  font-weight: 700;
  letter-spacing: 0.18em;
  font-size: 1.6rem;
  margin-bottom: 10px;
}
@media all and (max-width: 896px) {
  .mtitle_check {
    font-size: 1.4rem;
  }
}
@media all and (max-width: 639px) {
  .mtitle_check {
    font-size: 1.25rem;
    letter-spacing: 0.15em;
  }
}
.mtitle_check:before {
  font-family: "Font Awesome 5 Free";
  content: "\f058";
  font-weight: 900;
  margin-right: 5px;
  color: #35a854;
}

/* --news--
----------------------------------*/
.news-box {
  position: relative;
  margin: 0 auto;
  z-index: 10;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media all and (max-width: 896px) {
  .news-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.news-title {
  position: relative;
  margin-right: 60px;
  text-align: center;
  min-width: 120px;
}
.news-title .eng {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  text-transform: uppercase;
  line-height: 1 !important;
  color: #4385f4;
}
.news-title .ja {
  color: #fbbc05;
  display: block;
  font-size: 2em;
}
.news-title a {
  padding: 4px 20px;
  border-radius: 30px;
  max-width: 85%;
  display: block;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  text-transform: uppercase;
  border: 1px solid #4385f4;
  background: #35a854;
  color: #4385f4;
  margin: 20px auto 0;
  font-size: 1.1rem;
}
.news-title a:hover {
  background: #4385f4;
  color: #35a854;
}
@media all and (max-width: 896px) {
  .news-title {
    width: calc(100% - 10px);
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 15px;
    min-width: auto;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .news-title span {
    position: relative;
  }
  .news-title .ja {
    margin-left: 10px;
  }
  .news-title a {
    position: absolute;
    top: 0;
    right: 0;
    padding: 2px 16px;
    font-size: 0.9rem;
    margin: 0;
  }
}

.news-right {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
@media all and (max-width: 639px) {
  .news-right {
    width: 100%;
  }
}

.note-side {
  position: relative;
}
.note-side.type1 {
  padding: 0 10px;
}
@media all and (max-width: 639px) {
  .note-side {
    padding: 0 5px;
  }
  .note-side.type1 {
    padding: 0 5px;
  }
}

/* news-wrapper
----------------------------------*/
#news-wrapper {
  height: 100%;
  padding-bottom: 40px;
}
@media all and (max-width: 896px) {
  #news-wrapper {
    padding-bottom: 20px;
  }
  #news-wrapper canvas {
    width: 100%;
    height: 40px;
  }
}

.news a {
  display: block;
  color: #3a200c;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 15px;
  border-top: 1px solid #eae4e2;
  -webkit-transition: all 0.6s ease;
  transition: all 0.6s ease;
}
.news a:hover {
  background: #e9eef2;
}
.news a:last-of-type {
  border-bottom: 1px solid #eae4e2;
}
@media all and (max-width: 896px) {
  .news a {
    padding: 10px;
  }
}
.news a dt {
  width: 100%;
  text-align: left;
  font-size: 1.3rem;
}
.news a dt:before {
  font-family: "Font Awesome 5 Free";
  content: "\f017";
  font-weight: 900;
  margin-right: 3px;
  color: #35a854;
}
@media all and (max-width: 639px) {
  .news a dt {
    font-size: 1.1rem;
  }
}
.news a dd {
  line-height: 1.5;
}

.news02 {
  border-top: 1px solid #eae4e2;
  max-width: 900px;
}
.news02 .inner {
  position: relative;
  border-bottom: 1px solid #eae4e2;
  padding: 30px 20px;
  -webkit-transition: 0.3s ease-in all;
  transition: 0.3s ease-in all;
}
.news02 .inner dt {
  float: left;
  width: 8em;
  color: #4385f4;
  border: 1px solid #4385f4;
  text-align: center;
  padding: 2px;
}
.news02 .inner dd {
  margin-left: 9em;
  color: #3a200c;
  line-height: 1.5;
}
.news02 .inner dd a {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  color: #3a200c;
  text-decoration: underline;
}
.news02 .inner dd a:hover {
  opacity: 0.6;
}
@media all and (max-width: 896px) {
  .news02 .inner {
    padding: 20px 10px;
  }
}
@media all and (max-width: 639px) {
  .news02 .inner {
    padding: 15px 5px;
  }
  .news02 .inner dt {
    float: none;
    width: auto;
    display: inline;
    padding: 4px 15px;
  }
  .news02 .inner dd {
    width: 100%;
    margin-left: 0;
    margin-top: 5px;
  }
}

.news-bl dt {
  float: left;
  width: 7em;
  text-align: center;
  font-size: 1.4rem;
  border: 1px solid #3a200c;
  color: #3a200c;
}
.news-bl dd {
  padding: 3px 0 10px 7.5em;
  line-height: 1.6;
  border-bottom: 1px dotted #eae4e2;
  margin: 0 0 10px;
  color: #3a200c;
}
.news-bl dd a {
  color: #3a200c;
}
.news-bl dd a:hover {
  opacity: 0.6;
}
.news-bl dd:last-child {
  margin: 0;
  border-bottom: none;
}
@media all and (max-width: 639px) {
  .news-bl dt {
    font-size: 1.15rem;
    float: none;
  }
  .news-bl dd {
    padding: 5px;
  }
}

.pick-dl {
  line-height: 2;
}
.pick-dl dt {
  float: left;
  width: 10.5em;
  text-align: center;
  background: transparent;
  border: 1px solid #4385f4;
  color: #3a200c;
}
.pick-dl dt.eng {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
}
.pick-dl dd {
  padding-left: 12em;
}
.pick-dl dd:not(:last-child) {
  margin-bottom: 20px;
}
@media all and (max-width: 896px) {
  .pick-dl dt {
    float: none;
    margin-bottom: 5px;
  }
  .pick-dl dd {
    padding: 0;
  }
  .pick-dl dd:not(:last-child) {
    margin-bottom: 15px;
  }
}

/* map-link
----------------------------------*/
.map-link {
  font-weight: 600;
  color: #35a854;
  border-bottom: 1px solid #35a854;
}
.map-link:before {
  font-family: "Font Awesome 5 Free";
  content: "\f3c5";
  font-weight: 900;
  margin-right: 5px;
}

.topic-dl .topic-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px dotted #ccc;
  position: relative;
  padding: 10px 0;
}
.topic-dl .topic-inner:before {
  width: 40px;
  border-bottom: 1px solid #35a854;
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
}
.topic-dl .topic-inner dt {
  width: 7em;
  font-size: 1.4rem;
  font-weight: 700;
  color: #35a854;
}
@media all and (max-width: 639px) {
  .topic-dl .topic-inner dt {
    font-size: 12px;
  }
}
.topic-dl .topic-inner dd {
  padding-left: 20px;
}
.topic-dl .topic-inner dd a {
  font-weight: 600;
}
.topic-dl .topic-inner dd a:hover {
  color: #1d65a7;
}

/* --top-bnr-list--
----------------------------------*/
.top-bnr-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  max-width: 1500px;
  margin: 0 auto;
}
.top-bnr-list > li {
  width: 24%;
  position: relative;
  background: #fefefe;
}
.top-bnr-list > li a {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 2;
}
.top-bnr-list > li a:hover {
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}
.top-bnr-list > li a:hover .btn-arrow {
  background: #222;
}
.top-bnr-list > li a:hover .btn-arrow i {
  border-bottom-color: #fefefe;
}
.top-bnr-list > li a:hover .btn-arrow i:before {
  border-right-color: #fefefe;
}
.top-bnr-list > li a:hover .top-bnr-img img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
@media all and (max-width: 1100px) {
  .top-bnr-list {
    width: 85%;
    margin: 0 auto;
  }
  .top-bnr-list > li {
    width: 48%;
    margin-bottom: 20px;
  }
}
@media all and (max-width: 639px) {
  .top-bnr-list {
    width: 95%;
  }
  .top-bnr-list > li {
    width: 100%;
  }
}
.top-bnr-list .top-bnr-img {
  position: relative;
  width: 100%;
  height: 240px;
  overflow: hidden;
  -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
}
.top-bnr-list .top-bnr-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  font-family: "object-fit: cover;";
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}
@media all and (max-width: 639px) {
  .top-bnr-list .top-bnr-img {
    height: 200px;
  }
}
.top-bnr-list .btn-arrow {
  width: 60px;
  height: 60px;
  position: absolute;
  right: 20px;
  top: 210px;
  text-align: center;
  line-height: 60px;
  background: #fefefe;
  border: 2px solid #222;
  border-radius: 100%;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}
@media all and (max-width: 639px) {
  .top-bnr-list .btn-arrow {
    top: 170px;
  }
}
.top-bnr-list .btn-arrow i {
  display: block;
  position: absolute;
  width: 30px;
  border-bottom: 2px solid #222;
  position: relative;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  height: 5px;
}
.top-bnr-list .btn-arrow i:before {
  position: absolute;
  width: 10px;
  height: 8px;
  content: "";
  right: 3px;
  bottom: -2px;
  border-right: 3px solid #222;
  -webkit-transform: skew(45deg);
  transform: skew(45deg);
}
.top-bnr-list .top-bnr-title {
  font-weight: 700;
  padding: 15px;
  line-height: 1.4;
  background: #111;
}
.top-bnr-list .top-bnr-title .eng {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 2.5rem;
  letter-spacing: 0.2em;
  color: #35a854;
  display: block;
}
.top-bnr-list .top-bnr-title .ja {
  font-size: 2rem;
  display: block;
  color: #fff;
}
@media all and (max-width: 639px) {
  .top-bnr-list .top-bnr-title .eng {
    font-size: 2.4rem;
  }
  .top-bnr-list .top-bnr-title .ja {
    font-size: 1.4rem;
  }
}
.top-bnr-list .top-bnr-txt {
  color: #222;
  padding: 10px;
}

.split-box {
  max-width: 1400px;
  margin: 0 auto;
  padding: 80px 0 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: distribute;
  justify-content: space-around;
}
.split-box .child {
  width: 48%;
  padding: 45px 30px;
  background: rgba(34, 34, 34, 0.5);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  color: #fefefe;
  border: 1px solid #fefefe;
  position: relative;
}
@media all and (max-width: 639px) {
  .split-box {
    padding: 60px 0 20px;
  }
  .split-box .child {
    width: 95%;
    padding: 25px 15px;
  }
}

.map-link {
  font-weight: 700;
  color: #1d65a7;
  border-bottom: 1px solid #1d65a7;
}
.map-link:before {
  font-family: "Font Awesome 5 Free";
  content: "\f3c5";
  font-weight: 900;
  margin-right: 5px;
}

/* contents
----------------------------------*/
.single {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 0;
  position: relative;
}
.single.type2 {
  padding: 0 0 80px;
}

.single02 {
  width: 100%;
  margin: 0 auto;
  padding: 80px 0;
}
.single02.type2 {
  padding: 0 0 80px;
}
.single02.type3 {
  padding: 80px 0 0;
}

.single03 {
  max-width: 1500px;
  margin: 0 auto;
  padding: 120px 0;
  position: relative;
}
@media all and (max-width: 1320px) {
  .single03 {
    padding: 120px 10px;
  }
}

.margin-top {
  margin-top: -80px;
}
@media all and (max-width: 639px) {
  .margin-top {
    margin-top: -30px;
  }
}

.lsingle,
.rsingle {
  width: 48.44%;
}

.lsingle {
  float: left;
}

.rsingle {
  float: right;
}

.mbox {
  background: #fefefe;
  padding: 30px;
  position: relative;
  z-index: 3;
  width: 1200px;
  max-width: 95%;
  margin-right: auto;
  margin-left: auto;
}
.mbox.transparent {
  background: transparent;
}
@media all and (max-width: 896px) {
  .mbox {
    width: 100%;
    max-width: 100%;
  }
}
@media all and (max-width: 639px) {
  .mbox {
    padding: 15px 10px;
  }
}

.mbox2 {
  border: 3px solid #ccc;
  background: #fefefe;
  padding: 30px;
}
@media all and (max-width: 639px) {
  .mbox2 {
    padding: 15px;
  }
}

.small-box {
  max-width: 900px;
  margin-right: auto;
  margin-left: auto;
}

.sentence p + p {
  margin-top: 20px;
}

.bg-grid {
  background: rgba(255, 255, 255, 0.9);
  /* border-top: 1px solid #555;
   border-bottom: 1px solid #555;*/
  background-image: -webkit-gradient(
      linear,
      left top,
      right top,
      color-stop(95%, transparent),
      color-stop(50%, rgba(204, 204, 204, 0.2)),
      to(rgba(204, 204, 204, 0.2))
    ),
    -webkit-gradient(linear, left bottom, left top, color-stop(95%, transparent), color-stop(50%, rgba(204, 204, 204, 0.2)), to(rgba(204, 204, 204, 0.2)));
  background-image: linear-gradient(
      90deg,
      transparent 95%,
      rgba(204, 204, 204, 0.2) 50%,
      rgba(204, 204, 204, 0.2)
    ),
    linear-gradient(
      0deg,
      transparent 95%,
      rgba(204, 204, 204, 0.2) 50%,
      rgba(204, 204, 204, 0.2)
    );
  background-size: 20px 20px;
  background-repeat: repeat;
}

.bg-map {
  background: url(../img/map.png) no-repeat right bottom;
}
@media all and (max-width: 639px) {
  .bg-map {
    background-size: auto 200px;
    background-position: right top;
  }
}

.bg-wall {
  background: url(../img/bg-wall.jpg);
}

#main {
  float: left;
  width: 76%;
}
#main .mbox {
  min-height: 300px;
}
@media all and (max-width: 896px) {
  #main .mbox {
    min-height: initial;
  }
}
@media all and (max-width: 896px) {
  #main {
    float: none;
    width: 100%;
  }
}

#side {
  float: right;
  position: sticky;
  right: 0;
  top: 0;
  width: 21%;
  padding-right: 10px;
}
@media all and (max-width: 896px) {
  #side {
    float: none;
    width: 100%;
    position: static;
    margin-top: 40px;
  }
}

/* mtitle
----------------------------------*/
.mtitle {
  font-weight: 700;
  margin: 0 auto 40px;
  text-align: center;
}
.mtitle .eng {
  font-size: 1.6rem;
  color: #4385f4;
  position: relative;
  display: block;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: -5px;
}
.mtitle .ja {
  font-size: 2.6rem;
  color: #4f4944;
  border-bottom: 2px solid #4385f4;
  padding-bottom: 5px;
}
.mtitle.white {
  color: #fff;
  text-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
}
.mtitle.white span {
  color: #fff;
  text-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
}
.mtitle.white span:after {
  background-color: #eee;
}
.mtitle.white span.ja {
  border-bottom-color: #fefefe;
}
.mtitle.black {
  color: #333;
}
.mtitle.black span {
  color: #555;
}
.mtitle.black span:after {
  background-color: #555;
}
.mtitle.mtitle_left {
  text-align: left;
  margin-left: 0;
}
.mtitle.mtitle_left span:after {
  left: 0;
  -webkit-transform: none;
  transform: none;
}
@media all and (max-width: 639px) {
  .mtitle {
    text-align: center;
    margin: 0 auto 20px;
  }
  .mtitle .eng {
    font-size: 2.7rem;
  }
  .mtitle .ja {
    font-size: 1.4rem;
  }
}

.mtitle2 {
  font-size: 2.2rem;
  margin-bottom: 30px;
  position: relative;
}
.mtitle2 span {
  font-size: 1.8rem;
  margin-right: 10px;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  color: #35a854;
  display: block;
}
.mtitle2 span.ja {
  font-size: 2rem;
  font-family: Lato, "YakuHanJP", "Noto Sans JP", "游ゴシック Medium",
    "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN",
    "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック",
    "MS PGothic", sans-serif;
}
@media all and (max-width: 639px) {
  .mtitle2 {
    font-size: 1.2rem;
  }
  .mtitle2 span {
    font-size: 2rem;
  }
  .mtitle2 span .ja {
    font-size: 1.6rem;
  }
}

.mtitle3 {
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  -webkit-font-feature-settings: "pkna";
  font-feature-settings: "pkna";
  position: absolute;
  min-height: 100px;
  top: 40px;
  left: 30px;
}
.mtitle3 .ja {
  display: block;
  font-size: 2.6rem;
  border-right: 2px solid #35a854;
  letter-spacing: 0.2em;
  padding-right: 5px;
  font-weight: 400;
}
.mtitle3 .eng {
  display: block;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 1.8rem;
  color: #1d65a7;
  padding-left: 3px;
}
@media all and (max-width: 639px) {
  .mtitle3 {
    left: 10px;
    top: 15px;
  }
  .mtitle3 .ja {
    font-size: 1.6rem;
  }
  .mtitle3 .eng {
    font-size: 1.3rem;
  }
}

.mtitle_line {
  font-size: 2rem;
  padding-bottom: 15px;
  background: url(../img/bg_mtitle_line.gif) repeat-x left bottom;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: 0.2rem;
  color: #3a200c;
}
@media all and (max-width: 639px) {
  .mtitle_line {
    font-size: 1.4rem;
  }
}

.mtitle_balloon {
  font-size: 2.4rem;
  margin-bottom: 15px;
  font-weight: 700;
}
.mtitle_balloon span {
  position: relative;
  display: inline-block;
  padding-bottom: 18px;
  line-height: 1.3em;
  overflow: hidden;
}
.mtitle_balloon span.eng {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 5rem;
}
.mtitle_balloon span:before,
.mtitle_balloon span:after {
  content: "";
  display: block;
  border-bottom: 3px solid #333;
  position: absolute;
  width: 50%;
  bottom: 6px;
}
.mtitle_balloon span:before {
  left: -5px;
}
.mtitle_balloon span:after {
  right: -5px;
}
.mtitle_balloon span i {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-top: 3px solid #333;
  border-right: 3px solid #333;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
  position: absolute;
  left: 50%;
  margin-left: -5px;
  bottom: 2px;
}
.mtitle_balloon.center {
  text-align: center;
}
.mtitle_balloon.white span:before,
.mtitle_balloon.white span:after {
  border-bottom-color: #fefefe;
}
.mtitle_balloon.white span i {
  border-color: #fefefe;
}
@media all and (max-width: 639px) {
  .mtitle_balloon {
    font-size: 1.7rem;
  }
  .mtitle_balloon span.eng {
    font-size: 2.4rem;
  }
}

.mtitle-bll {
  font-size: 1.7rem;
  font-weight: 700;
  border-bottom: 2px solid #eeeeee;
  position: relative;
  margin-bottom: 10px;
  line-height: 1.5;
}
.mtitle-bll:before {
  font-family: "Font Awesome 5 Free";
  content: "\f105";
  font-weight: 900;
  margin-right: 5px;
  color: #35a854;
}
.mtitle-bll:after {
  position: absolute;
  content: "";
  display: block;
  bottom: -2px;
  width: 100px;
  height: 2px;
  background: #35a854;
}
@media all and (max-width: 639px) {
  .mtitle-bll {
    font-size: 1.6rem;
  }
}

.mtitle4 {
  font-weight: normal;
  text-align: center;
  font-size: 2.6rem;
  line-height: 1.5;
  letter-spacing: 0.1rem;
}
.mtitle4 span {
  position: relative;
  display: inline-block;
  min-width: 10%;
}
.mtitle4 span:before,
.mtitle4 span:after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 1px;
  height: 2rem;
  background-color: #35a854;
}
.mtitle4 span:before {
  left: -11px;
  -webkit-transform: rotate(-20deg);
  transform: rotate(-20deg);
}
.mtitle4 span:after {
  right: -11px;
  -webkit-transform: rotate(20deg);
  transform: rotate(20deg);
}
.mtitle4.white span:before,
.mtitle4.white span:after {
  background-color: #fbbc05;
}
@media all and (max-width: 639px) {
  .mtitle4 {
    font-size: 2rem;
  }
}
@media all and (max-width: 320px) {
  .mtitle4 span:before {
    left: -3px;
  }
  .mtitle4 span:after {
    right: -3px;
  }
}

.mtitles {
  font-family: Lato, "YakuHanJP", "Noto Sans JP", "游ゴシック Medium",
    "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN",
    "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック",
    "MS PGothic", sans-serif;
  font-weight: 700;
  letter-spacing: 0.18em;
  font-size: 2.2rem;
  margin-bottom: 40px;
  text-align: center;
}
@media all and (max-width: 896px) {
  .mtitles {
    font-size: 1.8rem;
  }
}
@media all and (max-width: 639px) {
  .mtitles {
    font-size: 1.5rem;
    letter-spacing: 0.15em;
  }
}
.mtitles span {
  position: relative;
  display: inline-block;
  min-width: 10%;
  padding: 0 34px 2px;
  color: #3a200c;
}
.mtitles span:before,
.mtitles span:after {
  content: "";
  display: inline-block;
  position: absolute;
  bottom: 0;
  width: 24px;
  height: 32px;
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/26168/mtitles.png);
  background-size: contain;
  background-repeat: no-repeat;
}
.mtitles span:before {
  left: 0;
}
.mtitles span:after {
  right: 0;
  -webkit-transform: scale(-1, 1);
  transform: scale(-1, 1);
}
@media all and (max-width: 896px) {
  .mtitles {
    margin-bottom: 25px;
    line-height: 1.3;
    font-size: 1.6rem;
  }
  .mtitles span {
    padding: 0 36px 2px;
  }
  .mtitles span:before,
  .mtitles span:after {
    width: 29px;
    height: 29px;
  }
}

.mtitle_sub {
  padding-left: 0.5em;
  font-weight: 700;
  position: relative;
  border-left: 6px solid #35a854;
  margin: 8px 0 15px;
  font-size: 1.1em;
  line-height: 1.4;
  text-align: left;
}
.mtitle_sub .hissu {
  color: #fff;
  background: #4ac66b;
  padding: 5px 8px;
  margin-right: 5px;
  font-size: 11px;
  border-radius: 20px;
}
.mtitle_sub:before {
  position: absolute;
  left: -6px;
  bottom: 0;
  content: "";
  width: 6px;
  height: 50%;
  background-color: #4385f4;
}

.mtitle_box {
  background: #eeead9;
  color: #3a200c;
  font-size: 2rem;
  position: relative;
  padding: 10px;
  margin-bottom: 25px;
  font-weight: 700;
}
.mtitle_box span {
  font-weight: normal;
  font-size: 14px;
  padding-left: 10px;
}
.mtitle_box:before {
  position: absolute;
  font-family: "Font Awesome 5 Free";
  content: "\f30a";
  font-weight: 900;
  display: block;
  right: -1px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  color: #fff;
}
@media all and (max-width: 639px) {
  .mtitle_box {
    font-size: 1.5rem;
  }
}

.mtitle_box2 {
  background: #35a854;
  font-size: 2.2rem;
  color: #fff;
  position: relative;
  font-weight: 700;
  overflow: hidden;
  letter-spacing: 0.1rem;
  -webkit-box-shadow: 0 8px 8px rgba(53, 168, 84, 0.2);
  box-shadow: 0 8px 8px rgba(53, 168, 84, 0.2);
  padding: 15px 10px 15px 20px;
  margin-bottom: 25px;
}
.mtitle_box2 .small-cap {
  font-weight: normal;
  font-size: 14px;
}
.mtitle_box2:before {
  background-color: #fff;
  content: "";
  display: block;
  -webkit-transform: rotate(60deg);
  transform: rotate(60deg);
  position: absolute;
  bottom: -10px;
  right: -150px;
  width: 300px;
  height: 280px;
}
@media all and (max-width: 639px) {
  .mtitle_box2 {
    font-size: 15px;
    line-height: 1.5;
    padding: 10px 10px 10px 15px;
    padding-right: 40px;
  }
  .mtitle_box2 span {
    font-size: 12px;
  }
  .mtitle_box2:before {
    width: 215px;
    right: -170px;
  }
}

.mtext1 {
  font-size: 2.2rem;
  line-height: 1.4;
  font-weight: 700;
}
@media all and (max-width: 639px) {
  .mtext1 {
    font-size: 1.5rem;
  }
}

.mtext2 {
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 0.1rem;
  line-height: 1.4;
}
.mtext2 .big {
  font-size: 1.3em;
  padding: 0 0.2em;
}
@media all and (max-width: 896px) {
  .mtext2 {
    font-size: 3vw;
  }
}
@media all and (max-width: 639px) {
  .mtext2 {
    font-size: 1.6rem;
  }
  .mtext2 .big {
    font-size: 1.2em;
  }
}

.mtitle_category {
  margin-bottom: 15px;
  font-size: 1.8rem;
  font-weight: normal;
}
.mtitle_category:before {
  font-family: "Font Awesome 5 Free";
  content: "\f0ca";
  font-weight: 900;
  margin-right: 5px;
  color: #35a854;
}

/* btn
----------------------------------*/
.morebtn {
  position: relative;
  display: inline-block;
  cursor: pointer;
  outline: none;
  border: 0;
  vertical-align: middle;
  text-decoration: none;
  background: #fff;
  border-radius: 40px;
  padding: 6px;
  width: 240px;
  border: 1px solid #eae4e2;
}
.morebtn .circle {
  -webkit-transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  position: relative;
  display: block;
  margin: 0;
  width: 44px;
  height: 44px;
  background: #4385f4;
  margin-left: -1px;
  border-radius: 22px;
}
.morebtn .circle .icon {
  -webkit-transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  background: #fff;
}
.morebtn .circle .icon.arrow {
  -webkit-transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  left: 4px;
  width: 2rem;
  height: 0.125rem;
  background: none;
}
.morebtn .circle .icon.arrow:before {
  position: absolute;
  content: "";
  top: -0.25rem;
  right: 0.0625rem;
  width: 0.625rem;
  height: 0.625rem;
  border-top: 0.125rem solid #fff;
  border-right: 0.125rem solid #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.morebtn .button-text {
  -webkit-transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 16px 0;
  margin: 0 0 0 1.85rem;
  color: #222;
  line-height: 1.6;
  text-align: center;
  text-transform: uppercase;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  font-family: Lato, "YakuHanJP", "Noto Sans JP", "游ゴシック Medium",
    "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN",
    "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック",
    "MS PGothic", sans-serif;
  font-size: 1.5rem;
}
.morebtn.type1 {
  display: table;
  margin-left: auto;
  margin-right: auto;
}
@media all and (max-width: 896px) {
  .morebtn {
    width: 200px;
  }
  .morebtn .circle {
    width: 36px;
    height: 36px;
  }
  .morebtn .circle .icon.arrow {
    -webkit-transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    left: 0;
  }
  .morebtn .button-text {
    padding: 15px 0;
    font-size: 1.25rem;
    line-height: 1.2;
  }
}
.morebtn:hover .circle {
  width: 101%;
  background: #4385f4;
}
.morebtn:hover .circle .icon.arrow {
  background: #fff;
  -webkit-transform: translate(1rem, 0);
  transform: translate(1rem, 0);
}
.morebtn:hover .button-text {
  color: #fff;
}
.morebtn.type1 .circle {
  background: #4385f4;
}
.morebtn.type1:hover .circle {
  background: #4385f4;
}
.morebtn.type2 .circle {
  background: #e94337;
}
.morebtn.type2:hover .circle {
  background: #e94337;
}

.morebtn-wrap {
  margin-top: 45px;
}
.morebtn-wrap.right {
  text-align: right;
}
.morebtn-wrap.left {
  text-align: left;
}
@media all and (max-width: 639px) {
  .morebtn-wrap {
    margin-top: 30px;
    text-align: center;
  }
}

.btn-arr.white a {
  border: 1px solid #ffffff;
  background: transparent;
  color: #ffffff;
}
.btn-arr.white a:hover {
  background: rgba(255, 255, 255, 0.3);
}
.btn-arr.white a:before,
.btn-arr.white a:after {
  background: #ffffff;
}
.btn-arr a {
  position: relative;
  border: 1px solid #3a200c;
  padding: 8px;
  max-width: 170px;
  width: 50%;
  text-align: center;
  color: #3a200c;
  outline: none;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
  margin-left: auto;
  margin-right: auto;
  display: table;
}
.btn-arr a span {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3em;
}
.btn-arr a:hover {
  background: #3a200c;
  color: #ffffff;
}
.btn-arr a:hover:before {
  right: -30px;
}
.btn-arr a:hover:after {
  right: -25px;
}
.btn-arr a:before {
  content: "";
  position: absolute;
  top: 50%;
  right: -26px;
  width: 40px;
  height: 1px;
  background: #3a200c;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.btn-arr a:after {
  content: "";
  position: absolute;
  top: 21%;
  right: -20px;
  width: 1px;
  height: 12px;
  background: #3a200c;
  -webkit-transform: skewX(45deg);
  transform: skewX(45deg);
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

.btn-fuchi.btn-r a {
  margin-right: 3px;
}
@media all and (max-width: 896px) {
  .btn-fuchi.btn-r a {
    margin-right: auto;
  }
}
.btn-fuchi a {
  position: relative;
  text-align: center;
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 90%;
  max-width: 200px;
  padding: 13px;
  background: transparent;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  font-weight: 500;
  font-size: 1.3rem;
  letter-spacing: 0.1em;
  letter-spacing: 0.3em;
  color: #3a200c;
}
@media all and (max-width: 896px) {
  .btn-fuchi a {
    font-size: 1.15rem;
  }
}
@media all and (max-width: 639px) {
  .btn-fuchi a {
    font-size: 1.1rem;
  }
}
@media all and (max-width: 896px) {
  .btn-fuchi a {
    padding: 10px;
    max-width: 160px;
  }
}
.btn-fuchi a:before {
  position: absolute;
  z-index: -2;
  bottom: -3px;
  right: -3px;
  display: block;
  width: 100%;
  height: 100%;
  content: "";
  background-color: #fbbc05;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: -1;
}
.btn-fuchi a:after {
  position: absolute;
  border: 1px solid #eae4e2;
  z-index: -1;
  top: -3px;
  left: -3px;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.btn-fuchi a:hover:before {
  bottom: 0;
  right: 0;
}
.btn-fuchi a:hover:after {
  top: 0;
  left: 0;
}

.btn_wk a {
  letter-spacing: 0.2em;
  text-align: center;
  position: relative;
  color: #3a200c;
  background: transparent;
  border: 1px solid #3a200c;
  padding: 8px 10px;
  max-width: 180px;
  width: 80%;
  margin-top: 40px;
  margin-bottom: 5px;
  margin-left: auto;
  margin-right: auto;
  display: table;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  text-shadow: none;
  font-size: 1.3rem;
}
@media all and (max-width: 639px) {
  .btn_wk a {
    margin-top: 30px;
    font-size: 1.1rem;
    max-width: 160px;
    padding: 6px 10px;
  }
}
.btn_wk a span {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 1.15rem;
}
@media all and (max-width: 639px) {
  .btn_wk a span {
    font-size: 1rem;
  }
}
.btn_wk a i {
  margin-right: 8px;
}
.btn_wk a:before,
.btn_wk a:after {
  content: "";
  position: absolute;
  border: solid #3a200c;
  width: 10px;
  height: 10px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.btn_wk a:before {
  top: -6px;
  left: -6px;
  border-width: 1px 0 0 1px;
}
.btn_wk a:after {
  bottom: -6px;
  right: -6px;
  border-width: 0 1px 1px 0;
}
.btn_wk a:hover {
  color: #ffffff;
  background: #e94337;
  border-color: transparent;
}
.btn_wk a:hover:before,
.btn_wk a:hover:after {
  width: calc(100% + 11px);
  height: calc(100% + 11px);
  border-color: #e94337;
}
.btn_wk.btn-r a {
  margin-right: 5px;
}

@media all and (max-width: 639px) {
  .btns a {
    margin-left: auto;
  }
}
.btns a {
  display: table;
  width: auto;
  margin-right: auto;
  background: #3a200c;
  color: #ffffff;
  border: 1px solid #3a200c;
  padding: 3px 20px;
  font-size: 1.3rem;
  letter-spacing: 0.1em;
  border-radius: 30px;
}
@media all and (max-width: 896px) {
  .btns a {
    font-size: 1.15rem;
  }
}
@media all and (max-width: 639px) {
  .btns a {
    font-size: 1.1rem;
  }
}
.btns a:after {
  font-family: "Font Awesome 5 Free";
  content: "\f105";
  font-weight: 900;
  margin-left: 5px;
}
.btns a:hover {
  color: #3a200c;
  background: transparent;
}

.btns2 {
  margin-top: 20px;
}
.btns2 a {
  display: table;
  width: auto;
  margin-left: auto;
  margin-right: auto;
  font-family: Lato, "YakuHanJP", "Noto Sans JP", "游ゴシック Medium",
    "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN",
    "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック",
    "MS PGothic", sans-serif;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: #35a854;
  background: #ffffff;
  border: 2px solid #35a854;
  padding: 5px 20px;
  border-radius: 20px;
  font-size: 85%;
  letter-spacing: 0.3em;
  line-height: 1.5;
}
.btns2 a:after {
  font-family: "Font Awesome 5 Free";
  content: "\f105";
  font-weight: 900;
  margin-left: 10px;
}
.btns2 a span {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
}
.btns2 a:hover {
  background: #35a854;
  color: #ffffff;
}

.btn01 {
  margin-top: 40px;
}
.btn01 a {
  position: relative;
  max-width: 220px;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  display: block;
  padding: 10px 30px;
  border-radius: 40px;
  font-family: Lato, "YakuHanJP", "Noto Sans JP", "游ゴシック Medium",
    "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN",
    "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック",
    "MS PGothic", sans-serif;
  font-weight: 700;
  letter-spacing: 0.18em;
  border: 2px solid #4385f4;
  color: #35a854;
  background: #4385f4;
}
.btn01 a.eng {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  text-transform: uppercase;
}
.btn01 a::after {
  content: "●";
  position: absolute;
  right: 30px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 0.5em;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  color: #35a854;
}
.btn01 a:hover {
  background: #35a854;
  color: #4385f4;
}
.btn01 a:hover::after {
  right: 20px;
  color: #4385f4;
}
.btn01.left a {
  margin-left: 0;
}
.btn01.right a {
  margin-right: 0;
}
.btn01.white a {
  background: #35a854;
  border: 2px solid #ffffff;
  color: #ffffff;
}
.btn01.white a::after {
  color: #ffffff;
}
.btn01.white a:hover {
  background: #ffffff;
  color: #35a854;
}
.btn01.white a:hover::after {
  color: #35a854;
}
@media all and (max-width: 896px) {
  .btn01 {
    margin-top: 30px;
  }
  .btn01 a {
    max-width: 180px;
  }
  .btn01.left a {
    margin-left: auto;
  }
  .btn01.right a {
    margin-right: auto;
  }
}

.btn02 {
  max-width: 300px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.btn02 a {
  display: block;
  position: relative;
  padding: 15px 5px;
  background: #35a854;
  border: 1px solid #35a854;
  text-align: center;
  color: #ffffff;
  font-family: Lato, "YakuHanJP", "Noto Sans JP", "游ゴシック Medium",
    "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN",
    "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック",
    "MS PGothic", sans-serif;
  font-weight: 700;
  letter-spacing: 0.18em;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media all and (max-width: 896px) {
  .btn02 a {
    padding: 10px 5px;
  }
}
.btn02 a:after {
  font-family: "Font Awesome 5 Free";
  content: "\f105";
  font-weight: 900;
  margin-left: 10px;
}
.btn02 a:hover {
  background: #ffffff;
  color: #3a200c;
}
.btn02.type1 a {
  background: #4385f4;
  border: 1px solid #4385f4;
}
.btn02.type1 a:hover {
  background: #ffffff;
}

.button-40 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  width: 350px;
  margin: 0 auto;
  padding: 1.3em 2em;
  border: none;
  border-radius: 50px;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(#ffd94a),
    to(#ffa726)
  );
  background: linear-gradient(to bottom, #ffd94a 0%, #ffa726 100%);
  color: #fff;
  font-size: 1.3em;
  font-weight: bold;
  -webkit-box-shadow: 0 4px 0 #cc7a00, 0 7px 10px rgba(0, 0, 0, 0.1);
  box-shadow: 0 4px 0 #cc7a00, 0 7px 10px rgba(0, 0, 0, 0.1);
  -webkit-transition: -webkit-transform 0.3s, -webkit-box-shadow 0.3s;
  transition: -webkit-transform 0.3s, -webkit-box-shadow 0.3s;
  transition: transform 0.3s, box-shadow 0.3s;
  transition: transform 0.3s, box-shadow 0.3s, -webkit-transform 0.3s,
    -webkit-box-shadow 0.3s;
  text-align: center;
  cursor: pointer;
}

.button-40:hover {
  -webkit-transform: translateY(-2px);
  transform: translateY(-2px);
  -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.button-40::after {
  content: "";
  display: inline-block;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  width: 6px;
  height: 6px;
  margin-left: 10px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}

.button-41 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  width: 350px;
  margin: 0 auto;
  padding: 1.1em 2em;
  border: none;
  border-radius: 50px;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(#4cc96f),
    to(#35a854)
  );
  background: linear-gradient(to bottom, #4cc96f 0%, #35a854 100%);
  color: #fff;
  font-size: 1.5em;
  font-weight: bold;
  -webkit-box-shadow: 0 4px 0 #2b7a43, 0 7px 10px rgba(0, 0, 0, 0.1);
  box-shadow: 0 4px 0 #2b7a43, 0 7px 10px rgba(0, 0, 0, 0.1);
  -webkit-transition: -webkit-transform 0.3s, -webkit-box-shadow 0.3s;
  transition: -webkit-transform 0.3s, -webkit-box-shadow 0.3s;
  transition: transform 0.3s, box-shadow 0.3s;
  transition: transform 0.3s, box-shadow 0.3s, -webkit-transform 0.3s,
    -webkit-box-shadow 0.3s;
  text-align: center;
  cursor: pointer;
}

.button-41:hover {
  -webkit-transform: translateY(-2px);
  transform: translateY(-2px);
  -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

/* news
----------------------------------*/
.news {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 10px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  letter-spacing: 0;
  line-height: 1.7;
}
.news dt {
  width: 7em;
  padding: 3px 5px;
  background: #f0f0f0;
  text-align: center;
  color: #3a200c;
}
.news dd {
  padding: 5px;
  background: #fff;
  width: calc(100% - 8.5em);
  margin-left: 8px;
}
.news dt:not(:last-child),
.news dd:not(:last-child) {
  margin-bottom: 7px;
}

.news-bl {
  overflow: hidden;
}
.news-bl dt {
  float: left;
  width: 8em;
  padding: 5px;
  line-height: 1.3;
  color: #35a854;
  text-align: center;
  border: 1px solid #35a854;
  border-radius: 30px;
  font-size: 1.3rem;
}
@media all and (max-width: 639px) {
  .news-bl dt {
    font-size: 1.2rem;
  }
}
.news-bl dd {
  padding: 0 0 12px 9.2em;
  line-height: 1.6;
  border-bottom: 1px dotted #dddddd;
  margin: 0 0 10px;
}
.news-bl dd a {
  color: #3a200c;
  background-image: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#35a854),
    to(#1d65a7)
  );
  background-image: linear-gradient(to right, #35a854, #1d65a7);
  padding-bottom: 0.25em;
  background-position: 100% 100%;
  background-size: 0% 1px;
  background-repeat: no-repeat;
  -webkit-transition: background-size 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: background-size 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  font-weight: 700;
}
.news-bl dd a:hover {
  background-position: 0 100%;
  background-size: 100% 1px;
}
.news-bl dd:last-child {
  margin: 0;
  border-bottom: none;
}
@media all and (max-width: 639px) {
  .news-bl dt {
    float: none;
  }
  .news-bl dd {
    padding: 8px 5px;
  }
}

/* page-title
----------------------------------*/
.page-title {
  margin: 0 auto 0;
  position: relative;
  z-index: 1;
}
.page-title::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: 60%;
  opacity: 0.6;
  z-index: -1;
}
.page-title:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: -2;
}
.page-title .inner {
  margin: 0 auto;
  padding: 180px 0 40px;
  max-width: 1200px;
}
.page-title .inner > .ptitle {
  text-align: center;
  color: #4385f4;
  letter-spacing: 0.1em;
}
.page-title .inner > .ptitle span {
  display: block;
}
.page-title .inner > .ptitle .ja {
  font-size: 4rem;
  font-weight: 600;
  margin-bottom: 10px;
}
.page-title .inner > .ptitle .eng {
  font-size: 1.6rem;
  color: #666;
  font-family: "Barlow Condensed", sans-serif;
}
@media all and (max-width: 639px) {
  .page-title .inner > .ptitle .ja {
    font-size: 2rem;
  }
  .page-title .inner > .ptitle .eng {
    font-size: 1.2rem;
  }
}
.page-title .inner.type2 {
  text-align: center;
  padding: 150px 0 40px;
}
.page-title .inner.type2 img {
  max-width: 75%;
}
@media all and (max-width: 896px) {
  .page-title .inner {
    padding: 110px 0 20px;
  }
  .page-title .inner.type2 {
    padding: 100px 0 40px;
  }
}
@media all and (max-width: 639px) {
  .page-title .inner.type2 img {
    max-width: 95%;
  }
}

.bg-01 {
  position: relative;
  overflow: hidden;
}
.bg-01::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 500px;
  height: 700px;
  background: url(../img/bg-01.png) no-repeat center/contain;
  z-index: -1;
}

.bg-02 {
  position: relative;
}
.bg-02:before,
.bg-02:after {
  position: absolute;
  content: "";
}
.bg-02:before {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #4385f4;
}
.bg-02:after {
  top: 100%;
  left: 50%;
  margin-left: -60px;
  border: 60px solid transparent;
  border-top: 60px solid #4385f4;
}
@media all and (max-width: 896px) {
  .bg-02:after {
    margin-left: -30px;
    border: 30px solid transparent;
    border-top: 30px solid #4385f4;
  }
}

.bg-03 {
  position: relative;
}
.bg-03::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../img/bg-03.jpg) no-repeat center/cover;
  z-index: -1;
  opacity: 0.8;
}

.bg-04 {
  position: relative;
}
.bg-04::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../img/bg-04.png) no-repeat center top/cover;
  z-index: -1;
  opacity: 0.2;
}
.bg-04::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fdfaea;
  z-index: -2;
}

.ttl_bg {
  width: 97%;
  margin-right: auto;
  background: #4385f4;
  border-radius: 0 30px 30px 0;
  padding: 100px 0;
  position: relative;
}
.ttl_bg::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../img/bg-02.png);
  background-size: 50%;
  opacity: 0.25;
}
.ttl_bg.type2 {
  border-radius: 30px;
  margin: 0 auto;
  padding: 40px 0;
}
@media all and (max-width: 1100px) {
  .ttl_bg {
    padding: 50px 0;
  }
}
@media all and (max-width: 639px) {
  .ttl_bg {
    padding: 20px 0;
  }
  .ttl_bg.type2 {
    padding: 20px 0;
  }
}

.bg-gradient {
  position: relative;
  background: rgba(251, 188, 5, 0.3);
  overflow: hidden;
}
.bg-gradient:before {
  content: "";
  position: absolute;
  bottom: -160px;
  left: 0;
  width: 100%;
  height: 320px;
  background: #fbbc05;
  -webkit-transform: skewY(4deg);
  transform: skewY(4deg);
  opacity: 0.6;
}
.bg-gradient:after {
  content: "";
  position: absolute;
  bottom: -160px;
  left: 0;
  width: 100%;
  height: 260px;
  background: #35a854;
  -webkit-transform: skewY(-3deg);
  transform: skewY(-3deg);
  opacity: 0.6;
}

.bg-pattern {
  background: url(../img/back01.gif);
  background-size: 400px;
}

.bg-base {
  position: relative;
}
.bg-base::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #35a854;
  z-index: -2;
}
.bg-base::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 10px,
    rgb(222, 111, 145) 10px,
    rgb(222, 111, 145) 20px
  );
  z-index: -1;
}
.bg-base.bg-half {
  background: transparent;
  background-image: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(transparent),
    color-stop(50%, transparent),
    color-stop(50.1%, rgba(53, 168, 84, 0.3)),
    to(rgba(53, 168, 84, 0.2))
  );
  background-image: linear-gradient(
    to bottom,
    transparent 0%,
    transparent 50%,
    rgba(53, 168, 84, 0.3) 50.1%,
    rgba(53, 168, 84, 0.2) 100%
  );
}

.bg-base2 {
  position: relative;
}
.bg-base2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #35a854;
  opacity: 0.2;
  z-index: -2;
}
.bg-base2.type2::after {
  height: calc(100% - 200px);
}

.bg-yellow {
  background: rgba(251, 188, 5, 0.1);
  padding-bottom: 80px;
}
.bg-yellow.type2 {
  padding-bottom: 0;
}
@media all and (max-width: 639px) {
  .bg-yellow {
    padding-bottom: 40px;
  }
}

.bg-green {
  background: #35a854;
}

.bg-gray {
  position: relative;
  background: #e9eef2;
}
.bg-gray.bg-half {
  background: transparent;
  background-image: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(transparent),
    color-stop(50%, transparent),
    color-stop(50.1%, #e9eef2),
    to(#e9eef2)
  );
  background-image: linear-gradient(
    to bottom,
    transparent 0%,
    transparent 50%,
    #e9eef2 50.1%,
    #e9eef2 100%
  );
}

.bg-gray2 {
  position: relative;
  margin: 60px 0;
}
.bg-gray2:before {
  position: absolute;
  content: "";
  right: 0;
  bottom: 0;
  width: 75%;
  height: 100%;
  z-index: -1;
  background: #eee;
  opacity: 0.7;
}

.bg-999 {
  background: #888;
}

.bg-blue {
  background: rgba(75, 187, 235, 0.2);
}
.bg-blue.bg-half {
  background: transparent;
  background-image: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(transparent),
    color-stop(50%, transparent),
    color-stop(50.1%, #73a4f7),
    to(#73a4f7)
  );
  background-image: linear-gradient(
    to bottom,
    transparent 0%,
    transparent 50%,
    #73a4f7 50.1%,
    #73a4f7 100%
  );
}

.bg-beige {
  background: rgba(246, 244, 235, 0.9);
}

/* tbl
----------------------------------*/
.tbl {
  width: 100%;
  border-radius: 30px;
  overflow: hidden;
}
.tbl th,
.tbl td {
  padding: 20px 30px;
  vertical-align: middle;
  background: #fff;
  text-align: left;
}
.tbl th {
  color: #fff;
  background: #35a854;
  border-bottom: 2px solid #fff;
}
.tbl th span {
  font-size: 1.4rem;
}
.tbl td {
  border-bottom: 2px solid #ddd;
}
.tbl .th-1 {
  width: 45%;
}
@media all and (max-width: 639px) {
  .tbl {
    border-radius: 10px;
  }
  .tbl th {
    width: 35%;
    text-align: left;
  }
  .tbl th,
  .tbl td {
    padding: 10px;
  }
}

.tbl_new {
  width: 100%;
}
.tbl_new tr th,
.tbl_new tr td {
  vertical-align: middle;
  padding: 15px 10px;
}
.tbl_new tr th {
  font-weight: 700;
  width: 35%;
  color: #3a200c;
  text-align: left;
  padding-left: 30px;
  letter-spacing: 0;
}
@media all and (max-width: 639px) {
  .tbl_new tr th {
    width: 25%;
    padding-left: 10px;
  }
}
.tbl_new tr:nth-child(odd) th,
.tbl_new tr:nth-child(odd) td {
  background: #fdfdfd;
}

.tbl-border {
  width: 100%;
}
.tbl-border th,
.tbl-border td {
  padding: 15px;
  border-bottom: 2px solid #ccc;
  vertical-align: middle;
}
@media all and (max-width: 639px) {
  .tbl-border th,
  .tbl-border td {
    padding: 10px;
    font-size: 1.2rem;
  }
}
.tbl-border th {
  width: 20%;
  color: #1d65a7;
  text-align: left;
  border-bottom-color: #35a854;
}
.tbl-border th.th-1 {
  width: 45%;
}
@media all and (max-width: 639px) {
  .tbl-border th {
    width: 30%;
  }
}

.price {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 2rem;
  color: #35a854;
}
@media all and (max-width: 639px) {
  .price {
    font-size: 1.4rem;
  }
}

.company {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 5px;
}
.company th,
.company td {
  padding: 10px 10px;
  vertical-align: middle;
}
.company th {
  text-align: left;
  width: 25%;
  position: relative;
  background: #35a854;
  color: #fff;
  font-weight: 700;
}
.company th::after {
  left: 100%;
  top: 50%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-color: #f9f9f9;
  border-width: 10px;
  border-left-color: #35a854;
  margin-top: -10px;
}
.company td {
  background: #f9f9f9;
  padding-left: 20px;
}

.tbl0 {
  width: 100%;
}
.tbl0 th,
.tbl0 td {
  padding: 3px 5px;
  border: 0;
}
.tbl0 th {
  padding-left: 0;
  font-weight: normal;
  background: none;
  width: 25%;
  color: #111;
}
.tbl0 th:after,
.tbl0 th:before {
  display: none;
}
@media all and (max-width: 639px) {
  .tbl0 th {
    width: 40%;
  }
}

/* ggmap
----------------------------------*/
.ggmap {
  position: relative;
  padding-bottom: 36.25%;
  height: 0;
  overflow: hidden;
}
.ggmap iframe,
.ggmap object,
.ggmap embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* list
----------------------------------*/
.list_common > li:not(:last-of-type) {
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #eae4e2;
}
.list_common.type1 > li:not(:last-of-type) {
  margin-bottom: 15px;
  border-bottom: 0px solid #eae4e2;
}
.list_common.type2 > li:not(:last-of-type) {
  margin-bottom: 10px;
  border-bottom: 1px solid #c1e3ff;
}
.list_common.type3 > li {
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #eae4e2;
}
.list_common.type4 > li {
  font-family: Lato, "YakuHanJP", "Noto Sans JP", "游ゴシック Medium",
    "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN",
    "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック",
    "MS PGothic", sans-serif;
  font-weight: 700;
  letter-spacing: 0.18em;
  font-size: 2rem;
  letter-spacing: 0.15em;
  color: #4f4944;
}
@media all and (max-width: 896px) {
  .list_common.type4 > li {
    font-size: 1.6rem;
  }
}
@media all and (max-width: 639px) {
  .list_common.type4 > li {
    font-size: 1.45rem;
  }
}
.list_common.type4 > li i {
  color: #ee6e65;
  margin-right: 0.5em;
}
.list_common.type4 > li:not(:last-of-type) {
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #ffffff;
}
@media all and (max-width: 896px) {
  .list_common.type4 > li:not(:last-of-type) {
    margin-bottom: 10px;
    padding-bottom: 10px;
  }
}
.list_common.type5 > li {
  font-family: Lato, "YakuHanJP", "Noto Sans JP", "游ゴシック Medium",
    "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN",
    "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック",
    "MS PGothic", sans-serif;
  font-weight: 700;
  letter-spacing: 0.18em;
  font-size: 2rem;
  letter-spacing: 0.15em;
}
@media all and (max-width: 896px) {
  .list_common.type5 > li {
    font-size: 1.6rem;
  }
}
@media all and (max-width: 639px) {
  .list_common.type5 > li {
    font-size: 1.45rem;
  }
}
.list_common.type5 > li i {
  color: #35a854;
  margin-right: 0.5em;
}
.list_common.type5 > li span {
  font-family: Lato, "YakuHanJP", "Noto Sans JP", "游ゴシック Medium",
    "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN",
    "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック",
    "MS PGothic", sans-serif;
  font-weight: 700;
  letter-spacing: 0.18em;
  font-size: 1.6rem;
  letter-spacing: 0.15em;
}
@media all and (max-width: 896px) {
  .list_common.type5 > li span {
    font-size: 1.4rem;
  }
}
@media all and (max-width: 639px) {
  .list_common.type5 > li span {
    font-size: 1.25rem;
    letter-spacing: 0.15em;
  }
}
.list_common.type5 > li:not(:last-of-type) {
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #3a200c;
}
@media all and (max-width: 896px) {
  .list_common.type5 > li:not(:last-of-type) {
    margin-bottom: 10px;
    padding-bottom: 10px;
  }
}

.list-policy {
  background: rgba(255, 255, 255, 0.7);
  padding: 25px;
  margin-bottom: 40px;
}
.list-policy li {
  font-family: "YakuHanMP", "游明朝 Medium", "Yu Mincho", YuMincho,
    "Hiragino Mincho ProN", HGS明朝E, serif;
  font-size: 2rem;
  padding-bottom: 5px;
  margin-bottom: 6px;
  font-weight: 700;
}
.list-policy li:before {
  content: "一、";
  margin-right: 7px;
  color: #1d65a7;
}
@media all and (max-width: 639px) {
  .list-policy {
    padding: 15px;
  }
  .list-policy li {
    font-size: 1.4rem;
  }
}

.list_check.type1 li {
  background: #777;
  padding: 12px 8px;
}
.list_check li {
  padding: 8px;
  font-weight: 700;
  margin-bottom: 5px;
}
.list_check li span {
  font-weight: normal;
  font-size: 0.9em;
  display: block;
  padding: 10px;
  background: rgba(246, 244, 235, 0.2);
  margin-top: 10px;
}
.list_check li a {
  color: #35a854;
  border-bottom: 1px dotted #35a854;
}
.list_check li:before {
  font-family: "Font Awesome 5 Free";
  content: "\f054";
  font-weight: 900;
  margin-right: 10px;
  color: #35a854;
}
@media all and (max-width: 639px) {
  .list_check li {
    width: 98%;
    margin: 0 auto 10px;
    font-size: 1.3rem;
  }
}

.list_check2 li {
  padding: 10px;
  background: #f6f4eb;
  border-radius: 5px;
  font-weight: 700;
}
.list_check2 li:before {
  font-family: "Font Awesome 5 Free";
  content: "\f00c";
  font-weight: 900;
  margin-right: 5px;
  color: #35a854;
}
.list_check2 li:not(:last-child) {
  margin-bottom: 7px;
}

.list-inline2 {
  text-align: center;
}
.list-inline2 li {
  display: inline-block;
  padding: 4px 15px;
  background: #fefefe;
  border: 1px solid #4bbbeb;
  font-weight: 700;
  border-radius: 30px;
}
.list-inline2 li:not(:last-child) {
  margin-right: 8px;
}

.list-inline li {
  display: inline-block;
  padding: 3px;
}
.list-inline li:not(:last-of-type):after {
  content: "/";
  margin: 0 5px;
  color: #35a854;
  font-weight: normal;
}
@media all and (max-width: 639px) {
  .list-inline li {
    display: block;
    padding: 0;
  }
  .list-inline li:before {
    content: "-";
    color: #35a854;
  }
  .list-inline li:not(:last-of-type):after {
    display: none;
  }
}

.ol-list {
  counter-reset: number;
  list-style: none;
  padding: 5px;
}
.ol-list.type1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.ol-list.type1 > li {
  width: 48%;
}
.ol-list.type1 > li:nth-child(2n) {
  margin-left: 4%;
}
.ol-list li {
  line-height: 2;
  color: #3a200c;
  margin-bottom: 10px;
  padding-bottom: 10px;
  font-weight: 700;
  font-size: 1.7rem;
}
.ol-list li span {
  font-weight: normal;
  display: block;
  padding: 10px;
  line-height: 1.6;
}
.ol-list li:before {
  counter-increment: number;
  content: counter(number);
  background: rgba(53, 168, 84, 0.6);
  display: inline-block;
  width: 2em;
  height: 2em;
  text-align: center;
  font-family: "YakuHanMP", "游明朝 Medium", "Yu Mincho", YuMincho,
    "Hiragino Mincho ProN", HGS明朝E, serif;
  font-size: 2rem;
  color: #222;
  margin-right: 10px;
  border-radius: 100%;
}
@media all and (max-width: 639px) {
  .ol-list li {
    font-size: 1.3rem;
  }
  .ol-list li span {
    font-size: 0.9em;
  }
  .ol-list li:before {
    font-size: 1.8rem;
  }
}

.list_disc li {
  padding: 5px 0;
  border-bottom: 1px dashed #ccc;
  margin-bottom: 5px;
}
.list_disc li:before {
  content: "●";
  margin-right: 8px;
  color: #4385f4;
  font-size: 0.6em;
}
.list_disc.type2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.list_disc.type2 > li {
  width: 48%;
}

.list-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.list-btn li {
  width: 32%;
  margin: 0 1.995% 10px 0;
}
.list-btn li a {
  display: block;
  background: #f6f4eb;
  color: #3a200c;
  font-weight: 700;
  padding: 10px 3px;
  text-align: center;
  width: 100%;
  height: 100%;
  line-height: 1.5;
  font-size: 1.5rem;
  letter-spacing: 0;
}
.list-btn li:nth-child(3n) {
  margin-right: 0;
}
@media all and (max-width: 639px) {
  .list-btn li {
    width: 90%;
    margin: 0 auto 10px;
  }
  .list-btn li a {
    font-size: 1.2rem;
  }
  .list-btn li:nth-child(3n) {
    margin-right: auto;
  }
}
.list-btn.type1 {
  max-width: 1000px;
  margin: 0 auto 20px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.list-btn.type1 li a {
  background: #35a854;
  border: 1px solid #298141;
}
.list-btn.type1 li a:hover {
  background: #4ac66b;
}
.list-btn.type1 li a:before {
  font-family: "Font Awesome 5 Free";
  content: "\f13a";
  font-weight: 900;
  margin-right: 5px;
}

/* blog
----------------------------------*/
#top-blog .pages {
  display: none;
}
#top-blog .blog-img {
  height: 200px;
}
@media all and (max-width: 1100px) {
  #top-blog .blog-img {
    height: 160px;
  }
}
@media all and (max-width: 896px) {
  #top-blog .blog-img {
    height: 130px;
  }
}

.blog-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 2%;
}
.blog-wrap * {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.blog-wrap > li {
  width: 32%;
  border: 1px solid #eae4e2;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 20px;
  border-radius: 10px;
  background-color: #ffffff;
}
.blog-wrap > li > a {
  width: 100%;
  height: 100%;
  z-index: 10;
}
.blog-wrap > li > a:hover ~ .blog-img img {
  opacity: 1;
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}
@media all and (max-width: 896px) {
  .blog-wrap > li {
    width: 48%;
  }
}
@media all and (max-width: 639px) {
  .blog-wrap > li {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 0 auto;
  }
  .blog-wrap > li:not(:last-child) {
    margin: 0 auto 20px;
  }
  .blog-wrap > li .blog-detail {
    width: 100%;
    padding: 10px 10px 10px 20px;
  }
}

@media all and (max-width: 639px) {
  .blog-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 10px;
  }
  .blog-wrap > li {
    width: 100%;
    margin: 0 auto;
  }
  .news-box {
    display: block;
  }
  .news-right {
    width: 100%;
  }
}
.blog-month > ul > li a {
  background: #4385f4;
  color: white;
  text-align: center;
  display: block;
  width: 100%;
  padding: 5px;
  border-radius: 10px;
  font-weight: bold;
}
.blog-month > ul > li a:hover {
  opacity: 0.6;
}

.blog-img {
  width: 100%;
  height: 200px;
  overflow: hidden;
  border: 1px solid #eae4e2;
  border-radius: 10px;
  margin: 0 auto;
  text-align: center;
}
@media all and (max-width: 639px) {
  .blog-img {
    height: 180px;
  }
}
.blog-img img {
  height: 100%;
  width: auto;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  font-family: "object-fit: cover;";
}
.blog2_2 .blog-img2 {
  width: 220px;
  height: 100px; /* 任意の高さに調整してください */
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog2_2 .blog-img2 img {
  height: 100%;
  width: auto;
  object-fit: cover; /* トリミングで中身を切り取り */
  display: block;
}

.blog-img:hover img {
  opacity: 1 !important;
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}

.blog-detail {
  padding-bottom: 15px;
}

.blog-date {
  text-align: center;
  display: inline-block;
  color: #35a854;
  padding: 1px 10px;
  font-size: 1.4rem;
}
@media all and (max-width: 639px) {
  .blog-date {
    font-size: 1.15rem;
  }
}

.blog-date2 {
  color: #4f4944;
  font-size: 1.3rem;
  margin-bottom: 10px;
}
.blog-date2:before {
  font-family: "Font Awesome 5 Free";
  content: "\f017";
  font-weight: 900;
  margin-right: 2px;
  color: #35a854;
}
@media all and (max-width: 639px) {
  .blog-date2 {
    font-size: 1.1rem;
  }
}
.blog-date2 .category {
  font-size: 15px;
  margin-left: 15px;
  border: 1px solid #fbbc05;
  background-color: #fbbc05;
  border-radius: 20px;
  padding: 2px 10px;
  color: #fff;
}

.blog-title {
  line-height: 1.3;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  margin-top: 10px;
  color: #4f4944;
}
@media all and (max-width: 639px) {
  .blog-title {
    margin-top: 5px;
  }
}

.blog-txt {
  line-height: 1.5;
  color: #35a854;
  padding: 10px;
}
@media all and (max-width: 639px) {
  .blog-txt {
    font-size: 12px;
  }
}

.pages {
  text-align: center;
  margin-top: 30px;
}
.pages .page_next,
.pages .page_prev {
  display: inline-block;
  margin: 0 20px;
}
.pages .page_next a,
.pages .page_prev a {
  color: #35a854;
  padding: 4px 5px;
  font-size: 17px;
  font-weight: 600;
}

.blog_topics {
  width: 100%;
}
.blog_topics li a {
  display: block;
  color: #3a200c;
  padding: 15px;
  -webkit-transition: 0.3s ease-in all;
  transition: 0.3s ease-in all;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
}
.blog_topics li a:hover {
  background-color: rgba(246, 244, 235, 0.5);
}
.blog_topics li a .topics_detail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.blog_topics li a .topics_detail .imgbox {
  overflow: hidden;
  width: 25%;
  height: 140px;
  border-radius: 5px;
}
.blog_topics li a .topics_detail .imgbox img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: 0.3s ease-in all;
  transition: 0.3s ease-in all;
}
.blog_topics li a .topics_detail .textbox {
  width: 75%;
  padding-left: 20px;
  line-height: 1.5;
}
.blog_topics li a .topics_detail .textbox h3 {
  margin: 5px 0;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}
.blog_topics li a .topics_detail .textbox p {
  font-size: 1.3rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}
.blog_topics li a .time_date {
  display: inline-block;
  font-size: 1.4rem;
  color: #3a200c;
}
.blog_topics li a .time_date:before {
  font-family: "Font Awesome 5 Free";
  content: "\f017";
  font-weight: 900;
  margin-right: 3px;
}
@media all and (max-width: 896px) {
  .blog_topics li a .topics_detail .imgbox {
    height: 120px;
  }
}
@media all and (max-width: 639px) {
  .blog_topics li a {
    padding: 10px 5px;
  }
  .blog_topics li a .topics_detail .imgbox {
    width: 30%;
    height: 90px;
  }
  .blog_topics li a .topics_detail .textbox {
    width: 70%;
    padding-left: 10px;
    line-height: 1.5;
  }
  .blog_topics li a .topics_detail .textbox p {
    font-size: 1rem;
  }
  .blog_topics li a .time_date {
    font-size: 1.15rem;
  }
}

#main .blog-wrap2 > li,
.news-right .blog-wrap2 > li {
  width: 32%;
}
@media all and (max-width: 1320px) {
  #main .blog-wrap2 > li,
  .news-right .blog-wrap2 > li {
    width: 49%;
  }
}
@media all and (max-width: 639px) {
  #main .blog-wrap2 > li,
  .news-right .blog-wrap2 > li {
    width: 90%;
  }
}

.blog2 .blog-wrap2 > li {
  background: #fff;
  width: 100% !important;
}
.blog2 .blog-wrap2 > li .blog-date {
  color: #4385f4;
}

.blog-wrap2 * {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.blog-wrap2 > li {
  width: 100%;
  position: relative;
  padding: 1em;
  border-radius: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}
.blog-wrap2 > li:not(:last-child) {
  border-bottom: 1px solid #eae4e2;
}
.blog-wrap2 > li > a {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 10;
}
.blog-wrap2 > li > a:hover ~ .blog-img img {
  opacity: 1;
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}
@media all and (max-width: 639px) {
  .blog-wrap2 > li {
    width: 90%;
    margin: 0 auto 10px;
  }
}
@media all and (max-width: 639px) {
  .blog-wrap2 {
    width: 100%;
  }
  .blog-wrap2 > li {
    padding: 1em 0;
  }
}

.blog-img2 {
  overflow: hidden;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 10px;
  width: 200px;
  height: 100px;
  border: 1px solid #eae4e2;
}
.blog-img2 img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  font-family: "object-fit: cover;";
  /*IE対策*/
}
.blog-img2:hover img {
  opacity: 1 !important;
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}

.blog-date2 {
  line-height: 1.3;
  text-align: center;
  display: inline-block;
  color: #35a854;
  font-size: 1.3em;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  font-weight: 700;
}

.blog-title2 {
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 20px;
  color: #4f4944;
}

@media all and (max-width: 639px) {
  .blog-wrap2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
  }
  .blog-wrap2 > li {
    width: 100% !important;
    margin-bottom: 20px;
    padding: 1em 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .blog-wrap2 > li .blog-img2 {
    width: 100%;
    height: auto;
    margin-bottom: 10px;
  }
}
.blog_new {
  margin-bottom: 30px;
}
.blog_new a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  background-color: #fff;
  border-bottom: 1px solid #ddd;
  padding: 5px 0;
}
.blog_new a .image {
  width: 35%;
  height: 74px;
  overflow: hidden;
}
.blog_new a .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  font-family: "object-fit: cover;";
}
.blog_new a .detail {
  width: 60%;
}
.blog_new a .detail .entry_title {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  color: #3a200c;
  font-size: 1.3rem;
}
.blog_new a .date_new {
  font-size: 1.2rem;
  color: #35a854;
}
.blog_new a .date_new:before {
  font-family: "Font Awesome 5 Free";
  content: "\f017";
  font-weight: 900;
  margin-right: 5px;
}
@media all and (max-width: 639px) {
  .blog_new a .detail {
    font-size: 1.2rem;
  }
  .blog_new a .date_new {
    font-size: 1.1rem;
  }
}

.category_nav li:not(:last-child) {
  margin-bottom: 5px;
}
.category_nav li a {
  display: block;
  padding: 10px;
  font-size: 13px;
  text-align: center;
  background: #e9eef2;
  color: #3a200c;
}
.category_nav li a:before {
  font-family: "Font Awesome 5 Free";
  content: "\f0a9";
  font-weight: 900;
  margin-right: 5px;
  color: #4385f4;
}
.category_nav li a:hover {
  opacity: 0.5;
}
.category_nav li:last-child a {
  border-bottom: none;
}

.blog_box {
  max-width: 95%;
  margin: 0 auto;
}
.blog_box .child {
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  background-color: hsla(0, 0%, 100%, 0.8);
  padding: 2em;
  border-radius: 10px;
  border: 1px solid #e8e8e8;
}
@media all and (max-width: 639px) {
  .blog_box {
    max-width: 100%;
  }
  .blog_box .child {
    padding: 1em;
  }
}

/* etc
----------------------------------*/
.cut {
  overflow: hidden;
  zoom: 1;
}

.w300 {
  width: 300px;
}

.spbr {
  display: none;
}

.color1 {
  color: #35a854;
}

.color2 {
  color: #f89004;
}

.color3 {
  color: #4bbbeb;
}

.relative {
  position: relative;
}

.img-r {
  border-radius: 20px;
}
@media all and (max-width: 639px) {
  .img-r {
    border-radius: 10px;
  }
}

@media all and (max-width: 639px) {
  .pc_img {
    display: none;
  }
}

.sp_img {
  display: none;
}
@media all and (max-width: 639px) {
  .sp_img {
    display: block;
  }
}

.bnr_img {
  max-width: 95%;
  margin: 0 auto;
}
@media all and (max-width: 896px) {
  .bnr_img {
    max-width: 100%;
  }
}

.ttl_img {
  margin: 0 auto 50px;
  max-width: 90%;
  text-align: center;
}
.ttl_img.type2 {
  max-width: 100%;
}
@media all and (max-width: 639px) {
  .ttl_img {
    margin: 0 auto 20px;
  }
  .ttl_img.small img {
    height: 70px;
  }
}

.num {
  font-weight: 700;
}
.num a {
  color: #35a854;
  font-size: 2.8rem;
  text-align: center;
  margin-left: 5px;
}
@media all and (max-width: 639px) {
  .num a {
    font-size: 2rem;
  }
}
.num a:before {
  font-family: "Font Awesome 5 Free";
  content: "\f879";
  font-weight: 900;
  margin-right: 5px;
}
.num a:hover {
  color: #f89004;
}

.telbox {
  max-width: 600px;
  margin: 0 auto 20px;
  padding: 20px;
  background: #333;
  text-align: center;
}
.telbox .inner {
  background: #fff;
  padding: 10px;
}

.txt-link {
  font-weight: 700;
  text-decoration: underline;
}
.txt-link:hover {
  text-decoration: none;
}

.telbnr {
  max-width: 800px;
  margin: 60px auto 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.telbnr li {
  width: 100%;
  padding: 40px 10px;
  text-align: center;
  background: #e9eef2;
}
.telbnr li a {
  display: block;
  font-size: 4rem;
  font-weight: 700;
  color: #1d65a7;
  padding-top: 20px;
}
.telbnr li a .txt {
  display: block;
  color: #222;
  font-size: 1.3rem;
}
.telbnr li a:before {
  font-family: "Font Awesome 5 Free";
  content: "\f879";
  font-weight: 900;
  margin-right: 5px;
}
.telbnr li a:hover {
  color: #35a854;
}
@media all and (max-width: 639px) {
  .telbnr {
    max-width: 100%;
    margin: 40px auto 0;
  }
  .telbnr li {
    width: 100%;
    margin: 0 auto;
  }
  .telbnr li:last-of-type {
    margin-left: auto;
  }
  .telbnr li a {
    font-size: 2rem;
  }
}

.telbnr-ttl {
  font-weight: 700;
  font-size: 1.8rem;
  color: #3a200c;
}
.telbnr-ttl span {
  background: #fefefe;
  padding: 0 20px;
}
@media all and (max-width: 639px) {
  .telbnr-ttl {
    font-size: 1.5rem;
  }
}

.img-clip {
  -webkit-clip-path: polygon(15% 0%, 100% 0, 100% 85%, 85% 100%, 0 100%, 0 15%);
  clip-path: polygon(15% 0%, 100% 0, 100% 85%, 85% 100%, 0 100%, 0 15%);
}
@media all and (max-width: 639px) {
  .img-clip {
    -webkit-clip-path: polygon(
      10% 0%,
      100% 0,
      100% 90%,
      90% 100%,
      0 100%,
      0 10%
    );
    clip-path: polygon(10% 0%, 100% 0, 100% 90%, 90% 100%, 0 100%, 0 10%);
  }
}

.name {
  width: 170px;
  margin: -40px auto 0;
  position: relative;
  z-index: 2;
  background: #fefefe;
  color: #3a200c;
  text-align: center;
  padding: 15px 10px;
  line-height: 1.6;
  font-family: Lato, "YakuHanJP", "Noto Sans JP", "游ゴシック Medium",
    "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN",
    "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック",
    "MS PGothic", sans-serif;
  font-weight: 700;
  letter-spacing: 0.18em;
  font-size: 1.6rem;
}
@media all and (max-width: 896px) {
  .name {
    font-size: 1.4rem;
  }
}
@media all and (max-width: 639px) {
  .name {
    font-size: 1.25rem;
    letter-spacing: 0.15em;
  }
}
.name span {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 1.1rem;
  display: block;
}
@media all and (max-width: 639px) {
  .name {
    width: 120px;
    margin: -20px auto 0;
    padding: 10px 5px;
  }
  .name .span {
    font-size: 0.9rem;
    letter-spacing: 0.05em;
  }
}

.kiritori {
  height: 1px;
  border-top: 1px solid #4f4944;
  margin: 80px auto;
  width: 100%;
  display: block;
}
@media all and (max-width: 896px) {
  .kiritori {
    margin: 40px auto;
  }
}
.kiritori.type1 {
  margin: 40px auto;
  border-top: 1px dashed #4f4944;
}
@media all and (max-width: 896px) {
  .kiritori.type1 {
    margin: 20px auto;
  }
}
.kiritori.type2 {
  margin: 20px auto;
  border-top: 1px dashed #4f4944;
}
@media all and (max-width: 896px) {
  .kiritori.type2 {
    margin: 10px auto;
  }
}

/* breadcrumb
----------------------------------*/
.breadcrumb {
  max-width: 1200px;
  margin: 20px auto 20px;
  font-size: 1.2rem;
}
.breadcrumb li {
  display: inline;
  color: #aaa;
}
.breadcrumb li a {
  color: #1d65a7;
}
.breadcrumb li + li:before {
  margin: 0 10px;
  content: ">";
}
@media all and (max-width: 639px) {
  .breadcrumb {
    font-size: 12px;
  }
}

/* form
----------------------------------*/
.form {
  margin: 0 auto;
  width: 90%;
}
.form dl dt {
  float: left;
  width: 280px;
  padding-top: 20px;
  font-weight: 700;
}
.form dl dt span {
  color: #fff;
  background: #35a854;
  padding: 5px 8px;
  margin-right: 5px;
  font-size: 11px;
  border-radius: 20px;
  position: relative;
  top: -2px;
}
.form dl dt span.nini {
  background: #fbbc05;
  color: #3a200c;
}
.form dl dd {
  padding-left: 280px;
  padding-bottom: 20px;
  padding-top: 23px;
  line-height: 1.5;
  border-bottom: 1px dotted #cccccc;
}
.form dl dd:last-child {
  border-bottom: none;
}
.form .textarea,
.form textarea {
  border: 1px solid #ddd;
  padding: 15px;
  width: 100%;
  border-radius: 0;
  -webkit-appearance: none;
}
.form .textarea {
  height: 30px;
}
.form .textarea02 {
  width: 48.5%;
  margin-right: 3%;
}
.form .textarea02:last-child {
  margin-right: 0;
}
.form .textarea03 {
  width: 20%;
  margin-right: 1%;
}
.form button {
  cursor: pointer;
  display: block;
  color: #fff;
  text-align: center;
  -webkit-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
  border: 1px solid #1d65a7;
  font-weight: 700;
  padding: 12px 5px;
  margin: 0 auto;
  width: 250px;
  background: #1d65a7;
  border-radius: 25px;
}
.form button:hover {
  background: #fff;
  color: #35a854;
}
.form button:before {
  font-weight: normal;
  font-family: "Font Awesome 5 Free";
  content: "\f0e0";
  font-weight: 900;
  margin-right: 10px;
}
.form .select-wrap {
  position: relative;
  overflow: hidden;
  display: inline-block;
  min-width: 192px;
  min-width: 12em;
  background-color: #ffffff;
  border: 1px solid #dddddd;
  color: #333;
}
.form .select-wrap select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  position: relative;
  z-index: 2;
  display: block;
  width: 200%;
  width: -webkit-calc(100% + 5em);
  margin: 0;
  padding: 11px 35px 11px 11px;
  padding: 0.6875rem 2.1875rem 0.6875rem 0.6875rem;
  background: transparent;
  border: 0;
  outline: none;
  line-height: 1.5;
}
.form .entypo-down-open-mini:before {
  font-family: "FontAwesome";
  content: "\f0ab";
  position: absolute;
  z-index: 1;
  top: 50%;
  right: 12px;
  right: 0.75rem;
  margin-top: -8px;
  margin-top: -0.5rem;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1;
  color: #35a854;
}
.form label.radio_text {
  cursor: pointer;
  position: relative;
  margin-right: 20px;
  overflow: hidden;
  padding-left: 20px;
  display: inline-block;
}
.form 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;
}
.form label.radio_text:after {
  content: "";
  position: absolute;
  width: 11px;
  height: 11px;
  border-radius: 100%;
  left: 3px;
  top: 5px;
  background-color: #35a854;
  z-index: 1;
}
.form 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;
  -webkit-box-shadow: 20px -1px #fff;
  box-shadow: 20px -1px #fff;
}
.form label.radio_text input[type="radio"]:checked {
  -webkit-box-shadow: none;
  box-shadow: none;
}
.form label.radio_text input[type="radio"]:focus {
  opacity: 0.2;
  -webkit-box-shadow: 20px -1px #eeebda;
  box-shadow: 20px -1px #eeebda;
}
.form label.checkbox_text {
  cursor: pointer;
  position: relative;
  padding-left: 25px;
  margin: 0 20px 5px 0;
  overflow: hidden;
  display: inline-block;
}
.form label.checkbox_text:before {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  left: 0px;
  top: 0;
  border: 1px solid #ccc;
  z-index: 3;
  padding: 1px;
}
.form label.checkbox_text:after {
  content: "";
  position: absolute;
  top: 40%;
  left: 5px;
  display: block;
  margin-top: -9px;
  width: 8px;
  height: 12px;
  border-right: 3px solid #35a854;
  border-bottom: 3px solid #35a854;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  z-index: 1;
}
@media all and (max-width: 639px) {
  .form label.checkbox_text:after {
    margin-top: -18px;
  }
}
.form label.checkbox_text input[type="checkbox"] {
  -moz-appearance: none;
  -webkit-appearance: none;
  position: absolute;
  left: -40px;
  width: 20px;
  height: 20px;
  display: block;
  -webkit-box-shadow: 41px 0px #fff;
  box-shadow: 41px 0px #fff;
  z-index: 2;
  margin: 0px;
  padding: 0px;
}
.form label.checkbox_text input[type="checkbox"]:checked {
  -webkit-box-shadow: none;
  box-shadow: none;
}
.form label.checkbox_text input[type="checkbox"]:checked:focus {
  -webkit-box-shadow: 40px 0px #666;
  box-shadow: 40px 0px #666;
  opacity: 0.1;
}
.form label.checkbox_text input[type="checkbox"]:focus {
  -webkit-box-shadow: 41px 0px #eee;
  box-shadow: 41px 0px #eee;
}
.form input[type="text"],
.form textarea {
  font-size: 16px;
}
@media all and (max-width: 639px) {
  .form input[type="text"],
  .form textarea {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
    margin-left: -5px;
  }
}

.fm-txt {
  font-size: 1.4rem;
  background: rgba(255, 255, 255, 0.5);
  padding: 5px;
}

.thanks {
  padding: 40px;
  border: 3px solid #35a854;
  -webkit-box-shadow: 0 0 0 8px rgba(53, 168, 84, 0.2);
  box-shadow: 0 0 0 8px rgba(53, 168, 84, 0.2);
  max-width: 700px;
  margin: 0 auto;
}
@media all and (max-width: 639px) {
  .thanks {
    max-width: 90%;
    padding: 30px 20px;
  }
}

.shadow {
  -webkit-box-shadow: 0 0 30px rgba(58, 32, 12, 0.1);
  box-shadow: 0 0 30px rgba(58, 32, 12, 0.1);
}

.policy {
  padding: 30px;
  background: rgba(75, 187, 235, 0.1);
}

.mtitle_small {
  position: relative;
  font-size: 2rem;
  margin-bottom: 20px;
  color: #35a854;
  font-weight: 700;
  padding: 10px;
  border-bottom: 1px solid #ccc;
}
.mtitle_small:before {
  content: "";
  width: 50px;
  height: 1px;
  background-color: #1d65a7;
  position: absolute;
  left: 0;
  bottom: -1px;
}
@media all and (max-width: 639px) {
  .mtitle_small {
    font-size: 1.4rem;
    line-height: 1.5;
  }
}

.mtitle_small2 {
  position: relative;
  margin-bottom: 10px;
  padding-left: 20px;
}
.mtitle_small2:before {
  content: "";
  background-color: #35a854;
  width: 10px;
  height: 4px;
  position: absolute;
  top: 0.6em;
  left: 0;
}

/* slick
----------------------------------*/
.thumb-item li {
  width: 100%;
}
.thumb-item-nav li {
  overflow: hidden;
  height: 100px;
}
.thumb-item-nav li img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  font-family: "object-fit: cover;";
}
@media all and (max-width: 639px) {
  .thumb-item-nav li {
    height: 80px;
  }
}

/*photoギャラリー*/
.gallery {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.gallery li {
  width: 24%;
  margin: 0 1.3333333333% 25px 0;
}
.gallery li:nth-child(4n) {
  margin-right: 0;
}
.gallery li a {
  background: rgba(246, 244, 235, 0.2);
  display: block;
  text-align: center;
  padding: 0px;
  height: 200px;
}
.gallery li a img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  font-family: "object-fit: cover;";
  /*IE対策*/
}
.gallery li p {
  font-size: 14px;
  margin: 3px 0 10px;
}

@media all and (max-width: 896px) {
  .gallery li {
    width: 48%;
    margin: 0 1% 20px;
  }
  .gallery li:nth-child(2n) {
    margin-right: 0;
  }
  .gallery li a {
    height: 120px;
  }
  .gallery li p {
    font-size: 12px;
  }
}
.prv dt {
  color: #35a854;
  border-bottom: 1px solid #ccc;
  margin: 10px 0;
}

#works:before {
  content: "";
  height: 80px;
  margin-top: -80px;
  display: block;
  visibility: hidden;
}

.note {
  padding: 15px;
  margin-top: 10px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.8);
}

.flow-dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  padding: 10px 0;
}
.flow-dl dt {
  background: #35a854;
  font-size: 3rem;
  color: #fff;
  width: 50px;
  text-align: center;
  margin-right: 20px;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
}
.flow-dl dt span {
  font-size: 1.5rem;
  display: block;
  margin-bottom: -10px;
}
.flow-dl dd {
  width: calc(100% - 80px);
}
.flow-dl dt:not(:last-child),
.flow-dl dd:not(:last-child) {
  margin-bottom: 20px;
}
@media all and (max-width: 639px) {
  .flow-dl dt {
    font-size: 2rem;
  }
  .flow-dl dt span {
    font-size: 1.3rem;
  }
}

.txt1 {
  padding-left: 10px;
}

.fee-box {
  margin: 10px 0 20px;
  font-weight: 700;
  background: lemonchiffon;
  padding: 5px;
}
.fee-box span {
  display: block;
  font-weight: normal;
}

.blog-month {
  margin-bottom: 10px;
}
.blog-month ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.blog-month ul li {
  width: 49%;
  padding: 5px 0;
  margin-bottom: 5px;
  text-align: center;
  letter-spacing: 0;
  background: #333;
}
.blog-month ul li:nth-child(2n) {
  margin-left: 2%;
}
.blog-month ul li a {
  color: #fff;
  font-size: 12px;
}

#a01,
#a02,
#a03,
#a04,
#a05,
#a06,
#a07,
#a08 {
  display: block;
  padding-top: 100px;
  margin-top: -100px;
}
@media all and (max-width: 639px) {
  #a01,
  #a02,
  #a03,
  #a04,
  #a05,
  #a06,
  #a07,
  #a08 {
    padding-top: 30px;
    margin-top: -30px;
  }
}

.list-center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.list-center li {
  width: 50%;
}
@media all and (max-width: 639px) {
  .list-center {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .list-center li {
    width: 100%;
  }
}

.point-title {
  position: relative;
  font-size: 2.5rem;
  letter-spacing: 0.2rem;
  border-bottom: 1px solid #f89004;
  line-height: 1.3;
  margin-bottom: 15px;
}
.point-title span {
  color: #f89004;
  font-size: 4rem;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
}
@media all and (max-width: 639px) {
  .point-title {
    font-size: 1.6rem;
  }
  .point-title span {
    font-size: 2.2rem;
  }
}

.works-list > li {
  padding: 15px 20px;
  border-top: 2px solid #333;
  font-weight: 700;
}
.works-list > li:before {
  content: "●";
  margin-right: 5px;
  color: #4385f4;
}
.works-list > li:last-child {
  border-bottom: 2px solid #222;
}

.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
  left: 30px !important;
  right: auto;
  background: rgba(53, 168, 84, 0.7);
}
@media all and (max-width: 639px) {
  .swiper-button-prev,
  .swiper-container-rtl .swiper-button-next {
    left: 10px !important;
  }
}

.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
  right: 30px !important;
  left: auto;
  background: rgba(53, 168, 84, 0.7);
}
@media all and (max-width: 639px) {
  .swiper-button-next,
  .swiper-container-rtl .swiper-button-prev {
    right: 10px !important;
  }
}

@media all and (max-width: 639px) {
  .swiper-button-next,
  .swiper-button-prev {
    width: 17px !important;
    height: 28px !important;
    background-size: 17px 28px !important;
  }
}

.point-num {
  position: relative;
  z-index: 2;
  width: 60px;
  height: 60px;
  background: #4385f4;
  color: #222;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 3.5rem;
  border-radius: 100%;
  text-align: center;
  margin: 0 0 -50px;
  line-height: 60px;
  -webkit-box-shadow: 0 0 0 4px rgba(254, 254, 254, 0.6);
  box-shadow: 0 0 0 4px rgba(254, 254, 254, 0.6);
}

.bnr-list {
  text-align: center;
}
@media all and (max-width: 896px) {
  .bnr-list li {
    width: 48%;
    margin-right: 4%;
  }
  .bnr-list li:nth-child(2n) {
    margin-right: 0;
  }
}
.bnr-list a {
  display: block;
  text-align: center;
  background: #fefefe;
  padding: 8px 5px;
  font-size: 1.3rem;
  height: 100%;
}
.bnr-list a img {
  width: auto;
  max-width: 100%;
  margin: 0 auto;
  height: 45px;
}
@media all and (max-width: 639px) {
  .bnr-list a {
    font-size: 12px;
    line-height: 1.5;
  }
  .bnr-list a img {
    height: 30px;
  }
}
.bnr-list li.bnr-txt {
  font-size: 2rem;
  font-weight: 600;
  line-height: 60px;
  background: #fefefe;
}
@media all and (max-width: 639px) {
  .bnr-list li.bnr-txt {
    font-size: 1.5rem;
  }
}

.sns-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.sns-list.type1 {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.sns-list.type1 li a {
  width: 38px;
  height: 38px;
  line-height: 38px;
  border: none;
  -webkit-filter: none;
  filter: none;
}
.sns-list.type1 li a img {
  top: -2px;
  width: 18px;
}
.sns-list.type1 li a.btn-online {
  background: #35a854 !important;
}
.sns-list.type1 li a.btn-instagram {
  background: #4385f4 !important;
}
.sns-list.type1 li a.btn-instagram:before {
  display: block;
  left: -15px;
  width: 54px;
  height: 54px;
}
.sns-list.type2 {
  margin-left: 10px;
}
.sns-list.type2 li a {
  width: 42px;
  height: 42px;
  line-height: 42px;
  background: transparent !important;
  border: 2px solid #fff;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-filter: drop-shadow(0px 0px 3px rgba(67, 133, 244, 0.5));
  filter: drop-shadow(0px 0px 3px rgba(67, 133, 244, 0.5));
}
.sns-list.type2 li a img {
  top: -4px;
  width: 22px;
}
.sns-list.type2 li a::before {
  display: none;
}
.is-fixed .sns-list.type2 li a {
  width: 38px;
  height: 38px;
  line-height: 38px;
  border: none;
  -webkit-filter: none;
  filter: none;
}
.is-fixed .sns-list.type2 li a img {
  top: -2px;
  width: 18px;
}
.is-fixed .sns-list.type2 li a.btn-online {
  background: #35a854 !important;
}
.is-fixed .sns-list.type2 li a.btn-instagram {
  background: #4385f4 !important;
}
.is-fixed .sns-list.type2 li a.btn-instagram:before {
  display: block;
  left: -15px;
  width: 54px;
  height: 54px;
}
@media all and (max-width: 896px) {
  .sns-list.type2 {
    display: none;
  }
}
.sns-list.type3 {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.sns-list.type3 li a {
  width: 42px;
  height: 42px;
  line-height: 42px;
  background: transparent !important;
  border: 2px solid #fff;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-filter: drop-shadow(0px 0px 3px rgba(67, 133, 244, 0.5));
  filter: drop-shadow(0px 0px 3px rgba(67, 133, 244, 0.5));
}
.sns-list.type3 li a img {
  top: -4px;
  width: 22px;
}
.sns-list.type3 li a::before {
  display: none;
}
@media all and (max-width: 896px) {
  .sns-list.type3 {
    display: none;
  }
}
.sns-list li:not(:last-child) {
  margin-right: 10px;
}
.sns-list li a {
  width: 46px;
  height: 46px;
  line-height: 46px;
  display: block;
  text-align: center;
  position: relative;
  border-radius: 50%;
}
.sns-list li a img {
  position: relative;
  vertical-align: middle;
  width: 28px;
  z-index: 3;
  top: -2px;
}
.sns-list li a:hover img {
  -webkit-transition: all 1s;
  transition: all 1s;
  -webkit-transform: rotate(360deg);
  transform: rotate(360deg);
}
.sns-list li a.btn-facebook {
  background: #1877f2;
}
.sns-list li a.btn-twitter {
  background: #1da1f2;
}
.sns-list li a.btn-line {
  background: #00b900;
}
.sns-list li a.btn-rakuten {
  background: #bf0000;
}
.sns-list li a.btn-yahoo {
  background: #df0f16;
}
.sns-list li a.btn-ameba {
  background: #2c883a;
}
.sns-list li a.btn-online {
  background: #35a854;
}
.sns-list li a.btn-gray {
  background: #383636;
}

/*----------------------------------
contact-form
----------------------------------*/
.form-contents {
  width: 100% !important;
  height: auto !important;
  padding: 35px 30px !important;
  border-radius: 15px 15px 0 0 !important;
  background: rgba(255, 255, 255, 0.8) !important;
}
@media all and (max-width: 1100px) {
  .form-contents {
    padding: 15px !important;
  }
}
.form-contents form dl dt .nini {
  background: #4385f4 !important;
  margin-right: 5px !important;
  font-size: 11px !important;
  border-radius: 20px !important;
  color: #fff !important;
  padding: 5px 10px !important;
}
.form-contents button {
  border: 1px solid #4385f4 !important;
}
.form-contents .required::before {
  background: transparent !important;
  padding: 5px 10px !important;
  color: #e94337 !important;
  content: "＊" !important;
  font-size: 1.2rem !important;
}
.form-contents .textarea {
  background-color: transparent !important;
  border: none !important;
  padding: 20px 15px !important;
  border: 1px solid #ddd !important;
  border-radius: 10px !important;
}
.form-contents input[type="radio"] {
  margin: 0 5px 3px;
}
.form-contents input[type="text"],
.form-contents textarea {
  font-size: 16px;
}
.form-contents input[type="text"] {
  height: 50px !important;
}
.form-contents .submit-btn {
  background: #35a854 !important;
  border: none !important;
  color: #fefefe !important;
}
.form-contents .submit-btn::before {
  background: #fff !important;
}
.form-contents .submit-btn:hover {
  opacity: 0.6;
}
.form-contents .custom-area p {
  padding: 10px 0;
}

@media all and (max-width: 639px) {
  .form-contents {
    padding: 0 10px 10px !important;
  }
  .form-contents dl {
    margin: 10px 0 !important;
  }
  .form-contents dl dt {
    float: none !important;
    padding-top: 15px !important;
  }
  .form-contents dl dd {
    padding-left: 0 !important;
    padding-bottom: 15px !important;
    padding-top: 10px !important;
    line-height: 20px !important;
  }
  .form-contents .submit-btn {
    width: 250px !important;
  }
}
/* accordion
----------------------------------*/
.accordion dt,
.accordion dd {
  position: relative;
  padding: 1em;
}
.accordion dt {
  background: #fefefe;
  border: 1px solid #ddd;
  cursor: pointer;
  font-size: 1.7rem;
  color: #222;
  border-radius: 5px;
}
.accordion dt:after {
  position: absolute;
  font-family: "Font Awesome 5 Free";
  content: "\f067";
  font-weight: 900;
  right: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 1.7rem;
}
.accordion dt.on:after {
  font-family: "Font Awesome 5 Free";
  content: "\f068";
  font-weight: 900;
}
.accordion dd {
  display: none;
  padding: 25px;
  background: #fefefe;
}
@media all and (max-width: 639px) {
  .accordion dt {
    font-size: 1.3rem;
  }
  .accordion dd {
    padding: 15px;
  }
}

/* category_tab
----------------------------------*/
.innerB {
  width: 100%;
  margin: auto;
  background: #fff;
  padding: 20px;
  -webkit-box-shadow: 0 6px 15px rgba(36, 37, 38, 0.04);
  box-shadow: 0 6px 15px rgba(36, 37, 38, 0.04);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border: 1px solid #eee;
}
.innerB.innerB_news {
  border-top: none;
  border-radius: 0 0 8px 8px;
}
.innerB.innerB_news .category_contents {
  height: auto;
}
.innerB.innerB_news .category_contents::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 5, 56, 0.3);
  border-radius: 10px;
  background-color: #f5f5f5;
}
.innerB.innerB_news .category_contents::-webkit-scrollbar {
  width: 6px;
  background-color: #f5f5f5;
}
.innerB.innerB_news .category_contents::-webkit-scrollbar-thumb {
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 5, 56, 0.3);
  background-color: #35a854;
}
@media all and (max-width: 639px) {
  .innerB {
    padding: 15px;
  }
}

.category_tab {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: space-between;
  text-align: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 15px;
}
.category_tab li {
  position: relative;
  width: 24%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: #4f4944;
  padding: 15px 30px;
  cursor: pointer;
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  background: rgba(53, 168, 84, 0.2);
  border-radius: 3px;
  font-size: 2rem;
}
.category_tab li .num {
  background: #fff;
  color: #4385f4;
  border-radius: 20px;
  font-size: 1.3rem;
  padding: 0 1em;
  font-family: "Barlow Condensed", sans-serif;
  display: inline-block;
  margin-bottom: 5px;
  font-weight: bold;
}
.category_tab li.active {
  background: #35a854;
  color: #fff;
}
.category_tab li.active::after {
  position: absolute;
  content: "";
  bottom: -8px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 8px 0 8px;
  border-color: #35a854 transparent transparent transparent;
}
.category_tab li:hover {
  opacity: 0.6;
}
@media all and (max-width: 1100px) {
  .category_tab li {
    padding: 10px 20px;
  }
}
@media all and (max-width: 896px) {
  .category_tab li {
    border-radius: 5px;
  }
  .category_tab li:first-child {
    border-top-left-radius: 5px;
  }
  .category_tab li:last-child {
    border-top-right-radius: 5px;
  }
}
@media all and (max-width: 1100px) {
  .category_tab li {
    font-size: 2vw;
  }
}
@media all and (max-width: 896px) {
  .category_tab {
    gap: 5px;
  }
}
@media all and (max-width: 639px) {
  .category_tab {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .category_tab li {
    margin-left: 2px;
    width: 48%;
    padding: 5px;
    font-size: 13px;
  }
}

.panel {
  display: none;
}

/* menu_list
----------------------------------*/
.menu_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  row-gap: 35px;
  width: 90%;
  margin: 0 auto;
}
.menu_list > li {
  width: 48%;
  background: #fff;
  padding: 2em;
  -webkit-box-shadow: 0 6px 25px rgba(91, 38, 20, 0.05);
  box-shadow: 0 6px 25px rgba(91, 38, 20, 0.05);
}
.menu_list > li .img {
  margin-bottom: 20px;
}
.menu_list > li .img img {
  width: 100%;
  height: 300px;
  -o-object-fit: cover;
  object-fit: cover;
}
.menu_list > li .ttl {
  text-align: center;
  margin-bottom: 20px;
}
.menu_list > li .ttl .badge {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 6px;
  font-size: 1.3rem;
  color: #333;
  padding: 5px 14px;
  border: 1px solid #ccc;
  border-radius: 999px;
  background: #fff;
  margin-bottom: 10px;
}
.menu_list > li .ttl i {
  font-size: 1.5rem;
  color: #666;
}
.menu_list > li .ttl .ja {
  display: block;
  font-size: 2.5rem;
  font-weight: bold;
  color: #222;
}
.menu_list > li .btn03 {
  text-align: center;
}
@media all and (max-width: 896px) {
  .menu_list > li {
    width: 100%;
  }
}

/*column
----------------------------------*/
.column2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.column2.tp {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.column2.btm {
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}
.column2 .child {
  width: 48%;
}
.column2 .child01 {
  width: 40%;
}
.column2 .child02 {
  width: 56%;
}
.column2 .child03 {
  width: 32%;
}
.column2 .child04 {
  width: 65%;
}
.column2 .child-txt {
  width: 50%;
  padding: 0 50px;
}
.column2 .child-img {
  width: 50%;
}
@media all and (max-width: 896px) {
  .column2 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .column2 .child,
  .column2 .child01,
  .column2 .child02,
  .column2 .child03,
  .column2 .child04,
  .column2 .child-txt,
  .column2 .child-img {
    width: 100%;
  }
  .column2 .child.bm20,
  .column2 .child01.bm20,
  .column2 .child02.bm20,
  .column2 .child03.bm20,
  .column2 .child04.bm20,
  .column2 .child-txt.bm20,
  .column2 .child-img.bm20 {
    margin-bottom: 20px;
  }
  .column2 .child.bm10,
  .column2 .child01.bm10,
  .column2 .child02.bm10,
  .column2 .child03.bm10,
  .column2 .child04.bm10,
  .column2 .child-txt.bm10,
  .column2 .child-img.bm10 {
    margin-bottom: 10px;
  }
  .column2 .child.column2-img,
  .column2 .child01.column2-img,
  .column2 .child02.column2-img,
  .column2 .child03.column2-img,
  .column2 .child04.column2-img,
  .column2 .child-txt.column2-img,
  .column2 .child-img.column2-img {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
    margin-bottom: 30px;
  }
  .column2 .child.column2-img2,
  .column2 .child01.column2-img2,
  .column2 .child02.column2-img2,
  .column2 .child03.column2-img2,
  .column2 .child04.column2-img2,
  .column2 .child-txt.column2-img2,
  .column2 .child-img.column2-img2 {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
    margin-bottom: 20px;
  }
  .column2 .child-img {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
    margin-bottom: 30px;
  }
}

.column3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.column3.type1 {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.column3 .child {
  width: 32%;
}
@media all and (max-width: 896px) {
  .column3 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .column3 .child {
    width: 100%;
  }
  .column3 .child.bm20 {
    margin-bottom: 20px;
  }
  .column3 .child.bm30 {
    margin-bottom: 30px;
  }
}

/*tcenter_balance
----------------------------------*/
.tcenter_balance {
  text-align: center;
  text-wrap: balance;
  word-break: auto-phrase;
}

/*merit_list
----------------------------------*/
.merit_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding-top: 30px;
}
.merit_list > li {
  width: 31%;
  position: relative;
  background: #fff;
  padding: 24px 20px;
  border-radius: 8px;
  margin-bottom: 50px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-box-shadow: 0px 12px 18px 2px rgba(53, 168, 84, 0.1);
  box-shadow: 0px 12px 18px 2px rgba(53, 168, 84, 0.1);
}
.merit_list > li .num {
  position: absolute;
  top: -1em;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background: #fbbc05;
  -webkit-clip-path: polygon(
    25% 0%,
    75% 0%,
    100% 50%,
    75% 100%,
    25% 100%,
    0% 50%
  );
  clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
  width: 3em;
  height: 2.5em;
  line-height: 2.5em;
  text-align: center;
  font-size: 3rem;
  color: #fff;
}
.merit_list > li .img {
  width: 100%;
  height: auto;
  overflow: hidden;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin-bottom: 20px;
}
.merit_list > li .img img {
  height: auto;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.merit_list > li .ttl {
  margin-bottom: 10px;
  font-size: 2.4rem;
  font-weight: bold;
  text-align: center;
  color: #4f4944;
}
.merit_list > li .ttl:first-letter {
  color: #1d65a7;
}
.merit_list > li:hover {
  -webkit-transform: scale(1.08);
  transform: scale(1.08);
}
@media all and (max-width: 896px) {
  .merit_list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .merit_list > li {
    width: 100%;
    margin-bottom: 50px;
  }
}

/*flow-list
----------------------------------*/
.flow-list {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.flow-list.type1 {
  display: block;
}
.flow-list.type1 li {
  width: 100%;
}
.flow-list.type1 li .flow-title {
  margin-bottom: 10px;
}
.flow-list li {
  width: 48%;
  margin-right: 4%;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  background: #fefefe;
  border-radius: 10px;
  -webkit-box-shadow: 0 0 15px rgba(58, 32, 12, 0.05);
  box-shadow: 0 0 15px rgba(58, 32, 12, 0.05);
  margin-bottom: 35px;
}
.flow-list li.type100 {
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  margin-right: 0;
}
.flow-list li:nth-child(2n) {
  margin-right: 0;
}
@media all and (max-width: 639px) {
  .flow-list li {
    width: 90%;
    margin: 0 auto 30px;
  }
  .flow-list li:nth-child(2n) {
    margin-right: auto;
  }
}
.flow-list li .flow-num {
  color: #4385f4;
  font-size: 3.5rem;
  border-right: 1px solid #4385f4;
  padding-right: 15px;
  -ms-flex-item-align: center;
  align-self: center;
  line-height: 1.2;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0;
  text-transform: uppercase;
}
.flow-list li .flow-num span {
  font-size: 1.4rem;
  display: block;
  text-align: center;
  letter-spacing: 0.1em;
  font-weight: 900;
}
.flow-list li .txt {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  margin-left: 35px;
}
.flow-list li .flow-title {
  color: #3a200c;
  border-bottom: 1px solid #4385f4;
  padding-bottom: 4px;
  font-family: Lato, "YakuHanJP", "Noto Sans JP", "游ゴシック Medium",
    "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN",
    "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック",
    "MS PGothic", sans-serif;
  font-weight: 700;
  letter-spacing: 0.18em;
  font-size: 1.8rem;
}
@media all and (max-width: 639px) {
  .flow-list li {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: stretch;
    -ms-flex-pack: stretch;
    justify-content: stretch;
  }
  .flow-list li .flow-num {
    font-size: 2.2rem;
    text-align: center;
    border-right: 0;
    padding: 0 0 4px;
    border-bottom: 1px solid transparent;
  }
  .flow-list li .flow-title {
    font-size: 1.3rem;
  }
  .flow-list li .txt {
    margin: 20px auto 0;
    -webkit-box-flex: 0;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
    width: 100%;
  }
}

/*faq
----------------------------------*/
.faq dt {
  letter-spacing: 0.15em;
  background: #e9eef2;
  color: #3a200c;
  padding-top: 12px;
  padding-bottom: 12px;
  padding-right: 16px;
  padding-left: 42px;
  line-height: 1.6;
  position: relative;
  cursor: pointer;
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
  font-family: Lato, "YakuHanJP", "Noto Sans JP", "游ゴシック Medium",
    "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN",
    "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック",
    "MS PGothic", sans-serif;
  font-weight: 700;
  letter-spacing: 0.18em;
  font-size: 1.6rem;
}
@media all and (max-width: 896px) {
  .faq dt {
    font-size: 1.4rem;
  }
}
@media all and (max-width: 639px) {
  .faq dt {
    font-size: 1.25rem;
    letter-spacing: 0.15em;
  }
}
.faq dt:not(:last-of-type) {
  margin-bottom: 28px;
}
.faq dt:before {
  content: "Q";
  position: absolute;
  top: -6px;
  left: -6px;
  text-indent: 0px;
  line-height: 38px;
  color: #fefefe;
  background: #4385f4;
  width: 38px;
  height: 38px;
  text-align: center !important;
  border-radius: 100%;
}
.faq dt:hover {
  background: #f4faff;
}
.faq dd {
  display: none;
  position: relative;
  padding-top: 8px;
  padding-bottom: 8px;
  padding-right: 16px;
  padding-left: 42px;
  line-height: 2;
  position: relative;
  background: #fefefe;
}
.faq dd:not(:last-of-type) {
  margin-bottom: 36px;
}
.faq dd:before {
  content: "A";
  position: absolute;
  top: 0px;
  left: 0px;
  text-indent: 0px;
  font-size: 20px;
  line-height: 35px;
  color: #e94337;
  width: 35px;
  height: 35px;
  text-align: center !important;
}
.faq dt:before,
.faq dd:before {
  font-family: Lato, "YakuHanJP", "Noto Sans JP", "游ゴシック Medium",
    "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN",
    "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック",
    "MS PGothic", sans-serif;
  font-weight: 700;
  letter-spacing: 0.18em;
  font-size: 1.8rem;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
}
@media all and (max-width: 896px) {
  .faq dt:before,
  .faq dd:before {
    font-size: 1.5rem;
  }
}
@media all and (max-width: 639px) {
  .faq dt:before,
  .faq dd:before {
    font-size: 1.35rem;
    letter-spacing: 0.15em;
  }
}
@media all and (max-width: 639px) {
  .faq dt:not(:last-of-type) {
    margin-bottom: 22px;
  }
  .faq dd:not(:last-of-type) {
    margin-bottom: 30px;
  }
}

.faq-dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.faq-dl .faq-inner {
  margin-bottom: 20px;
  width: 48%;
  background: #fefefe;
}
@media all and (max-width: 639px) {
  .faq-dl .faq-inner {
    width: 90%;
    margin: 0 auto 20px;
  }
}
.faq-dl .faq-inner dt,
.faq-dl .faq-inner dd {
  position: relative;
}
.faq-dl .faq-inner dt:before,
.faq-dl .faq-inner dd:before {
  position: absolute;
  content: "";
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  left: 0;
  top: 0;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 3rem;
}
@media all and (max-width: 639px) {
  .faq-dl .faq-inner dt:before,
  .faq-dl .faq-inner dd:before {
    font-size: 2.2rem;
  }
}
.faq-dl .faq-inner dt {
  background-image: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#e94337),
    to(#e94337)
  );
  background-image: linear-gradient(to right, #e94337, #e94337);
  color: #fefefe;
  font-weight: 600;
  cursor: pointer;
  padding: 10px 10px 10px 55px;
}
.faq-dl .faq-inner dt:before {
  content: "Q";
  color: #fefefe;
}
.faq-dl .faq-inner dd {
  padding: 20px 20px 20px 55px;
}
.faq-dl .faq-inner dd:before {
  content: "A";
  color: #e94337;
}



/* ▼ カウンターを初期化 */
.faq,
.faq-dl {
  counter-reset: q-counter;
}

/* ▼ Qに番号を付与 */
.faq dt:before,
.faq-dl .faq-inner dt:before {
  counter-increment: q-counter; /* 1ずつカウントアップ */
  content: "Q" counter(q-counter); /* Q1, Q2... */
  position: absolute;
  top: -6px;
  left: -6px;
  line-height: 38px;
  color: #fefefe;
  background: #4385f4;
  width: 40px;
  height: 40px;
  text-align: center;
  border-radius: 100%;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 1.8rem;
}

/*faq
----------------------------------*/
.policy_item ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.policy_item ul li {
  border-bottom: 1px solid #000;
  padding: 25px 0;
}
.policy_item ul li:last-child {
  border-bottom: none;
}
.policy_item ul li .list_text_read {
  font-weight: 700;
  font-size: 1.8rem;
  margin-bottom: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.policy_item ul li .list_text_read span {
  font-size: 2rem;
  font-weight: 700;
  color: #f8b500;
  margin-right: 10px;
  min-width: 2.5em;
}
.policy_item ul li .list_text_main {
  font-size: 1.4rem;
  line-height: 1.8;
  color: #222;
}
@media all and (max-width: 639px) {
  .policy_item ul li .list_text_read {
    font-size: 1.6rem;
  }
  .policy_item ul li .list_text_read span {
    font-size: 1.8rem;
  }
  .policy_item ul li .list_text_main {
    font-size: 1.3rem;
  }
}

/*content-box
----------------------------------*/
.content-box + .content-box {
  margin-top: 40px;
}

.content-box {
  position: relative;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
}
.content-box:before {
  position: absolute;
  content: "";
  width: 0%;
  height: 100%;
  background-color: #f4faff;
  top: 0;
  left: 0;
  z-index: -1;
}
.content-box.type1:before {
  left: auto;
  right: 0;
}
.content-box.type1 .child-txt {
  margin-left: auto;
}
.content-box.type1 .photo:before {
  right: auto;
  left: 0;
}
.content-box .content-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.content-box .content-flex .child-txt {
  position: relative;
  width: 60%;
  padding: 60px;
}
.content-box .content-flex .child-txt .num {
  position: absolute;
  color: #fff;
  font-size: 10rem;
  font-family: "Barlow Semi Condensed", sans-serif;
  font-weight: 500;
  letter-spacing: 0.05em;
  top: 30px;
  left: 30px;
  line-height: 1;
}
.content-box .content-flex .child-txt .content-title {
  position: relative;
  font-family: Lato, "YakuHanJP", "Noto Sans JP", "游ゴシック Medium",
    "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN",
    "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック",
    "MS PGothic", sans-serif;
  font-weight: 700;
  letter-spacing: 0.18em;
  font-size: 2.5rem;
  color: #35a854;
  line-height: 1.6;
}
.content-box .content-flex .child-txt .content-title .eng {
  font-size: 4rem;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.content-box .content-flex .child-txt .content-title .small {
  display: block;
  font-size: 2rem;
  color: #3a200c;
  margin-top: 5px;
}
.content-box .content-flex .child-txt .txt {
  margin: 30px auto;
}
.content-box .content-flex .child-txt .txt p + p {
  margin-top: 15px;
}
.content-box .content-flex .child-txt .content-btn a {
  position: relative;
  overflow: hidden;
  color: #3a200c;
  width: 100%;
  font-family: Lato, "YakuHanJP", "Noto Sans JP", "游ゴシック Medium",
    "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN",
    "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック",
    "MS PGothic", sans-serif;
  font-weight: 700;
  letter-spacing: 0.18em;
  font-size: 1.6rem;
  padding: 10px;
  border: 1px solid #35a854;
  display: block;
  text-align: center;
  max-width: 220px;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}
@media all and (max-width: 896px) {
  .content-box .content-flex .child-txt .content-btn a {
    font-size: 1.4rem;
  }
}
@media all and (max-width: 639px) {
  .content-box .content-flex .child-txt .content-btn a {
    font-size: 1.25rem;
    letter-spacing: 0.15em;
  }
}
.content-box .content-flex .child-txt .content-btn a:before {
  position: absolute;
  content: "";
  width: 1px;
  height: 100%;
  background-color: #35a854;
  top: 0;
  left: 10px;
}
.content-box .content-flex .child-txt .content-btn a:after {
  position: absolute;
  content: "";
  width: 1px;
  height: 100%;
  background-color: #35a854;
  top: 0;
  right: 10px;
}
.content-box .content-flex .child-txt .content-btn a:hover {
  color: #fff;
  border: 1px solid #35a854;
  -webkit-box-shadow: #4385f4 0 80px 0px 2px inset;
  box-shadow: #4385f4 0 80px 0px 2px inset;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.content-box .content-flex .child-txt .content-btn a:hover:before {
  -webkit-transition: 0.4s;
  transition: 0.4s;
  left: -1px;
}
.content-box .content-flex .child-txt .content-btn a:hover:after {
  -webkit-transition: 0.4s;
  transition: 0.4s;
  right: -1px;
}
.content-box .content-flex .child-img .photo {
  height: 100%;
}
.content-box .content-flex .child-img .photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.content-box .content-flex .child-img .photo:before {
  position: absolute;
  content: "";
  width: 40%;
  height: 0%;
  top: 0;
  right: 0;
}
.content-box .content-flex .child-img .photo.type1:before {
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/26168/nophoto_640.jpg)
    no-repeat;
  background-size: cover;
  background-position: center;
}
.content-box .content-flex .child-img .photo.type2:before {
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/26168/nophoto_640.jpg)
    no-repeat;
  background-size: cover;
  background-position: center;
}
.content-box .content-flex .child-img .photo.type3:before {
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/26168/nophoto_640.jpg)
    no-repeat;
  background-size: cover;
  background-position: center;
}
.content-box .content-flex .child-img .photo.type4:before {
  background: url(../img/photo04.jpg) no-repeat;
  background-size: cover;
  background-position: center;
}
.content-box .content-flex .child-img .photo.type5:before {
  background: url(../img/photo05.jpg) no-repeat;
  background-size: cover;
  background-position: center;
}
.content-box .content-flex .child-img .photo.type6:before {
  background: url(../img/photo06.jpg) no-repeat;
  background-size: cover;
  background-position: center;
}
.content-box .content-flex .child-img .photo.type7:before {
  background: url(../img/photo07.jpg) no-repeat;
  background-size: cover;
  background-position: center;
}
.content-box .content-flex .child-img .photo.type8:before {
  background: url(../img/photo08.jpg) no-repeat;
  background-size: cover;
  background-position: center;
}
.content-box .content-flex .child-img .photo.type9:before {
  background: url(../img/photo09.jpg) no-repeat;
  background-size: cover;
  background-position: center;
}
.content-box .content-flex .child-img .photo.type10:before {
  background: url(../img/photo10.jpg) no-repeat;
  background-size: cover;
  background-position: center;
}
.content-box .content-flex .child-img .photo.type11:before {
  background: url(../img/photo11.jpg) no-repeat;
  background-size: cover;
  background-position: center;
}
.content-box .content-flex .child-img .photo.type12:before {
  background: url(../img/photo12.jpg) no-repeat;
  background-size: cover;
  background-position: center;
}
.content-box .content-flex .child-img .photo.type13:before {
  background: url(../img/photo13.jpg) no-repeat;
  background-size: cover;
  background-position: center;
}
.content-box .content-flex .child-img .photo.type14:before {
  background: url(../img/photo14.jpg) no-repeat;
  background-size: cover;
  background-position: center;
}
.content-box .content-flex .child-img .photo.type15:before {
  background: url(../img/photo15.jpg) no-repeat;
  background-size: cover;
  background-position: center;
}
.content-box .content-flex .child-img .photo.type16:before {
  background: url(../img/photo16.jpg) no-repeat;
  background-size: cover;
  background-position: center;
}
.content-box .content-flex .child-img .photo.type17:before {
  background: url(../img/photo17.jpg) no-repeat;
  background-size: cover;
  background-position: center;
}
.content-box .content-flex .child-img .photo.type18:before {
  background: url(../img/photo18.jpg) no-repeat;
  background-size: cover;
  background-position: center;
}
.content-box .content-flex .child-img .photo.type19:before {
  background: url(../img/photo19.jpg) no-repeat;
  background-size: cover;
  background-position: center;
}
.content-box .content-flex .child-img .photo.type20:before {
  background: url(../img/photo20.jpg) no-repeat;
  background-size: cover;
  background-position: center;
}
.content-box .content-flex .child-img .photo.type21:before {
  background: url(../img/photo21.jpg) no-repeat;
  background-size: cover;
  background-position: center;
}
@media all and (max-width: 896px) {
  .content-box {
    width: calc(100% - 40px);
  }
  .content-box .content-flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .content-box .content-flex .child-txt {
    width: 100%;
    padding: 30px;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .content-box .content-flex .child-txt .num {
    font-size: 8rem;
    top: 15px;
    left: 15px;
  }
  .content-box .content-flex .child-txt .content-title {
    font-size: 2.2rem;
  }
  .content-box .content-flex .child-txt .content-title .eng {
    font-size: 2.8rem;
  }
  .content-box .content-flex .child-txt .content-title .small {
    font-size: 1.5rem;
  }
  .content-box .content-flex .child-txt .txt {
    margin: 25px auto;
  }
  .content-box .content-flex .child-txt .txt p + p {
    margin-top: 10px;
  }
  .content-box .content-flex .child-img {
    width: 100%;
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
  }
  .content-box .content-flex .child-img .photo {
    position: relative;
    height: auto;
    padding-bottom: 56.25%;
  }
  .content-box .content-flex .child-img .photo.type1:before,
  .content-box .content-flex .child-img .photo.type2:before,
  .content-box .content-flex .child-img .photo.type3:before,
  .content-box .content-flex .child-img .photo.type4:before,
  .content-box .content-flex .child-img .photo.type5:before,
  .content-box .content-flex .child-img .photo.type6:before,
  .content-box .content-flex .child-img .photo.type7:before,
  .content-box .content-flex .child-img .photo.type8:before,
  .content-box .content-flex .child-img .photo.type9:before,
  .content-box .content-flex .child-img .photo.type10:before,
  .content-box .content-flex .child-img .photo.type11:before,
  .content-box .content-flex .child-img .photo.type12:before,
  .content-box .content-flex .child-img .photo.type13:before,
  .content-box .content-flex .child-img .photo.type14:before,
  .content-box .content-flex .child-img .photo.type15:before,
  .content-box .content-flex .child-img .photo.type16:before,
  .content-box .content-flex .child-img .photo.type17:before,
  .content-box .content-flex .child-img .photo.type18:before {
    width: 100%;
    background-size: cover;
  }
}
@media all and (max-width: 896px) {
  .content-box {
    width: calc(100% - 20px);
  }
  .content-box .content-flex .child-txt {
    padding: 20px;
  }
  .content-box .content-flex .child-txt .num {
    font-size: 6rem;
  }
  .content-box .content-flex .child-txt .content-title {
    font-size: 1.8rem;
  }
  .content-box .content-flex .child-txt .content-title .small {
    font-size: 1.3rem;
  }
  .content-box .content-flex .child-txt .txt {
    margin: 20px auto;
  }
}

.title-02 {
  position: relative;
  color: #fff;
  background: #4385f4;
  text-align: center;
  padding: 20px;
  margin-bottom: 80px;
  font-size: 2.5rem;
}
.title-02::before {
  position: absolute;
  content: "▼";
  bottom: -40px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  font-size: 5rem;
  color: #4385f4;
}
@media all and (max-width: 896px) {
  .title-02 {
    font-size: 1.5rem;
    margin-bottom: 30px;
  }
  .title-02::before {
    font-size: 2rem;
    bottom: -19px;
  }
}
