@charset "UTF-8";
/* アニメーションベンダープレフィックス込み指定 */
/* アニメーションベンダープレフィックス込み指定 */
body {
  color: #3a200c;
  font-family: 'Zen Kaku Gothic New',"YakuHanJP","Varela Round","Noto Sans Japanese";
  font-size: 1.5rem;
  line-height: 1.8;
  background: url(../img/paper.png);
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  letter-spacing: 0.1rem;
}

a {
  color: #bb291d;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

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

.bold {
  font-weight: bold;
}

@-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: #fff;
  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 #e24e42;
  border-radius: 50%;
  border-right: 1px solid rgba(226, 78, 66, 0.2);
  border-top: 1px solid rgba(226, 78, 66, 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);
  }
}

.sectionarrow {
  display: block;
  width: 44px;
  height: 100px;
  position: relative;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}

.sectionarrow:after {
  content: "";
  display: block;
  position: absolute;
  width: 1px;
  height: 50px;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  background-color: #e24e42;
  -webkit-animation: topArrow 4s ease infinite;
  animation: topArrow 4s ease infinite;
}

.sectionarrow.white:after {
  background: #f0f0f0;
}

@media all and (max-width: 639px) {
  .sectionarrow {
    height: 44px;
  }
}

@media all and (max-width: 639px) {
  .sectionarrow:after {
    height: 35px;
    -webkit-animation: none;
    animation: none;
  }
}

@keyframes topArrow {
  0% {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
  }
  30% {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
  70% {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
  100% {
    -webkit-clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
    clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
  }
}

@-webkit-keyframes topArrow {
  0% {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
  }
  30% {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
  70% {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
  100% {
    -webkit-clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
    clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
  }
}

@-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);
  }
}

#header {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0 auto;
  z-index: 8888;
  width: 100%;
}

#header #head-txt {
  background: #ccc;
  padding: 2px 0;
}

#header #head-txt > p {
  color: #111;
  font-size: 1.2rem;
  text-align: center;
  font-weight: bold;
}

#header #head-contact .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto 0;
  padding: 10px 0;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

#header .head-logo {
  margin-right: auto;
}

#header .head-right {
  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: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

#header .head-comment {
  font-size: 1.3rem;
  color: #555;
}

#header .head-tel, #header .head-mobile, #header .head-fax {
  margin-right: 5px;
}

#header .head-tel a, #header .head-mobile a, #header .head-fax a {
  color: #fefefe;
  font-weight: bold;
  display: block;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 200px;
  padding: 5px 10px;
  text-align: center;
  background: #ff8c40;
  border-radius: 30px;
  font-size: 1.6rem;
}

#header .head-tel a:before, #header .head-mobile a:before, #header .head-fax a:before {
  font-weight: bold;
  font-family: "Font Awesome 5 Free";
  margin-right: 5px;
  content: "\f095";
}

#header .head-tel a:hover, #header .head-mobile a:hover {
  background: #a52419;
}

#header .head-fax a {
  background: #fefefe;
  color: #3a200c;
}

#header .head-fax a:hover {
  background: #a52419;
}

#header .head-mobile a {
  background: #fefefe;
  color: #3a200c;
}

#header .head-fax a:hover, #header .head-mobile a:hover {
  background: lemonchiffon;
}

#header .head-fax a:before {
  content: "\f1ac";
}

#header .head-mobile a:before {
  content: "\f3cd";
}

#header .head-mail {
  margin-left: 10px;
}

#header .head-mail a {
  display: block;
  width: 50px;
  height: 50px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
  padding-top: 27px;
  background: #546cac;
  line-height: 1.2;
  color: #fefefe;
  text-align: center;
  font-weight: bold;
}

#header .head-mail a:before {
  position: absolute;
  font-size: 2rem;
  content: "\f0e0";
  font-weight: bold;
  font-family: "Font Awesome 5 Free";
  top: 5px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

#header .head-mail a:hover {
  background: #746966;
  color: #fff;
}

#header .inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

#header .inner #head-right {
  margin-left: auto;
}

#header.scrolled {
  position: fixed;
  z-index: 9999;
  -webkit-animation: hd-scrolled 0.65s cubic-bezier(0.2, 1, 0.2, 1);
  animation: hd-scrolled 0.65s cubic-bezier(0.2, 1, 0.2, 1);
}

#header.scrolled .inner #logo {
  float: left;
}

@media all and (max-width: 800px) {
  #header #head-txt > p {
    text-align: left;
    padding-left: 3px;
  }
}

@media all and (max-width: 320px) {
  #header #head-txt {
    display: none;
  }
}

@media all and (max-width: 800px) {
  #header .head-right {
    display: none;
  }
}

@media all and (max-width: 639px) {
  #header .head-comment {
    font-size: 11px;
    width: 100%;
    text-align: center;
  }
}

@media all and (max-width: 639px) {
  #header .head-tel a, #header .head-mobile a, #header .head-fax a {
    font-size: 1.4rem;
    width: 130px;
  }
}

#navi {
  width: 100%;
}

#navi ul {
  margin: 0 auto 10px;
  max-width: 1200px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  text-align: 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;
}

#navi ul li {
  position: relative;
  -webkit-box-flex: 1;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
  text-align: center;
  border-left: 1px dashed rgba(58, 32, 12, 0.5);
}

#navi ul li:last-child {
  border-right: 1px dashed rgba(58, 32, 12, 0.5);
}

#navi ul li a {
  display: block;
  letter-spacing: 0.2rem;
  position: relative;
  line-height: 1.5;
  font-size: 1.7rem;
  padding: 8px 0 10px;
  color: #3a200c;
  font-weight: bold;
  text-align: center;
}

#navi ul li a span {
  display: block;
  font-size: 1.3rem;
  color: #546cac;
}

#navi ul li a:before {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  height: 3px;
  background: #f6cac7;
  content: "";
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
  z-index: 0;
}

#navi ul li a:hover:before, #navi ul li a.active:before {
  background: #ff9035;
  width: 40%;
}

#page-top {
  position: fixed;
  bottom: 10px;
  right: 10px;
  z-index: 9999;
}

#page-top a {
  display: block;
  background: #aaa;
  -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: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 50%;
  font-family: "FontAwesome";
  font-size: 1.2rem;
  text-align: center;
}

#page-top a:hover {
  opacity: 0.6;
}

.foot_navi {
  padding: 10px 0;
}

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

.foot_navi ul {
  margin: 0 auto;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.foot_navi ul li {
  width: 32%;
  margin-bottom: 4px;
  margin: 0 0.5% 4px;
}

.foot_navi ul li a {
  color: #fff;
  font-size: 1.4rem;
  position: relative;
  padding-left: 20px;
  font-weight: bold;
}

.foot_navi ul li a:before {
  content: "";
  background-color: #546cac;
  width: 10px;
  height: 4px;
  position: absolute;
  top: 0.45em;
  left: 0;
}

.foot_navi ul li a:hover {
  color: #3a200c;
}

#footer {
  font-size: 1.2rem;
}

#footer .inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 15px 0;
}

#footer .inner .address {
  margin-bottom: 10px;
  font-weight: 500;
}

.copyright {
  padding: 30px 0;
  background: rgba(84, 108, 172, 0.5);
  color: #fff;
}

@-webkit-keyframes zoom-out {
  0% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes zoom-out {
  0% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

#mainvisual {
  width: 100%;
  margin: auto;
  position: relative;
}

#mainvisual #main_catch {
  width: 50%;
  position: absolute;
  top: 55%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 10;
  font-size: 1.25rem;
  color: #fff;
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
  overflow: hidden;
}

@media all and (max-width: 639px) {
  #mainvisual #main_catch {
    width: 80%;
  }
}

@media all and (max-width: 800px) {
  #mainvisual #main_catch {
    font-size: 1rem;
  }
}

#mainvisual #main_catch .main_text {
  font-family: "Zen Kaku Gothic New", "YakuHanJP", "Varela Round", "M PLUS Rounded 1c", "Noto Sans Japanese";
  font-size: 1.5rem;
}

@media all and (max-width: 800px) {
  #mainvisual #main_catch .main_text {
    font-size: 1rem;
  }
}

#mainvisual #main_catch .main_text b {
  font-size: 2.5rem;
}

@media all and (max-width: 800px) {
  #mainvisual #main_catch .main_text b {
    font-size: 1.5rem;
  }
}

#mainvisual #main_catch .main_text2 {
  font-family: "Varela Round", sans-serif;
  letter-spacing: 0.1em;
  font-size: 4rem;
  font-weight: 700;
}

@media all and (max-width: 800px) {
  #mainvisual #main_catch .main_text2 {
    font-size: 1.25rem;
  }
}

#mainvisual #main_catch .main_text2 b {
  background: -webkit-gradient(linear, left top, right top, from(#546cac), to(#746966));
  background: linear-gradient(to right, #546cac, #746966);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

@media all and (max-width: 800px) {
  #mainvisual #main_catch .main_text2 {
    font-size: 2rem;
  }
}

#mainvisual #main_catch .main_logo {
  display: inline-block;
  width: 300px;
  margin-top: 1rem;
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}

@media all and (max-width: 639px) {
  #mainvisual #main_catch .main_logo {
    width: 240px;
  }
}

#mainvisual #mainvisual_img {
  position: relative;
  z-index: -1;
}

#mainvisual #mainvisual_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

#mainvisual #mainvisual_img::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}

#mainvisual .wave_mask {
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
}

#topSlider .swiper-slide {
  position: relative;
}

#topSlider .swiper-slide:before {
  position: absolute;
  width: 100%;
  height: 100%;
  content: "";
  right: 0;
  top: 0;
  opacity: 0;
  background-position: 50%;
  background-size: cover;
  z-index: -1;
}

#topSlider .swiper-slide .slide-img {
  overflow: hidden;
  margin: 0 auto;
  width: 120%;
  height: 85vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

@media all and (max-width: 639px) {
  #topSlider .swiper-slide .slide-img {
    height: 70vh;
  }
}

#topSlider .swiper-slide.swiper-slide-prev .slide-img, #topSlider .swiper-slide.swiper-slide-active .slide-img, #topSlider .swiper-slide.swiper-slide-duplicate-active .slide-img {
  -webkit-animation: showScale 20s infinite linear;
          animation: showScale 20s infinite linear;
}

#topSlider .swiper-slide.swiper-slide-active {
  -webkit-animation: showSlide linear;
          animation: showSlide linear;
}

#topSlider .swiper-slide.swiper-slide-prev {
  -webkit-animation: hideSlide linear;
          animation: hideSlide linear;
}

@-webkit-keyframes showSlide {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes showSlide {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes hideSlide {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes hideSlide {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@-webkit-keyframes showTranslate {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-15%);
            transform: translateX(-15%);
  }
}

@keyframes showTranslate {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-15%);
            transform: translateX(-15%);
  }
}

@-webkit-keyframes showScale {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
}

@keyframes showScale {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
}

#catch01 {
  z-index: 150;
  position: absolute;
  left: 0;
  top: 50%;
  opacity: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 32%;
  padding: 30px;
}

#catch01.on {
  opacity: 1;
  -webkit-transition: 2s;
  transition: 2s;
}

@media all and (max-width: 800px) {
  #catch01 {
    width: 90%;
    left: 50%;
    bottom: -1%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}

#flash {
  background: url(../bxslider/images/0.jpg) no-repeat center center;
  background-size: cover;
  overflow: hidden;
  position: relative;
}

.slide0 {
  background-image: url(../bxslider/images/0.jpg);
  background-position: center center;
}

.slide1 {
  background-image: url(../bxslider/images/1.jpg);
  background-position: center center;
}

.slide2 {
  background-image: url(../bxslider/images/2.jpg);
  background-position: center center;
}

.slide3 {
  background-image: url(../bxslider/images/3.jpg);
  background-position: center center;
}

.slide0, .slide1, .slide2, .slide3 {
  background-repeat: no-repeat;
  background-size: cover;
  -moz-background-size: cover;
  background-attachment: scroll;
  padding: 0px 0;
}

.slideimg {
  max-width: 1200px;
  height: auto;
  margin: 0 auto;
}

.bg_contact {
  margin-top: 180px;
  position: relative;
  background: url(../img/pattern-green.jpg);
}

.bg_contact .single {
  padding: 50px 0;
}

.bg_contact .news-bl {
  background: #fff;
  -webkit-box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
  padding: 10px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  max-width: 600px;
  margin: 10px auto 0;
  font-size: 1.4rem;
}

@media all and (max-width: 639px) {
  .bg_contact .single {
    padding: 30px 0;
  }
}

@media all and (max-width: 639px) {
  .bg_contact {
    margin-top: 80px;
  }
  .bg_contact:before {
    top: -80px;
    height: 80px;
    background-size: auto 80px;
  }
}

.contact-txt {
  text-align: center;
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.contact_bnr {
  text-align: center;
}

.contact_bnr li {
  display: inline-block;
  margin: 0 8px 10px;
}

.contact_bnr li .bnr_tel {
  color: #fff;
  letter-spacing: 0.1em;
  background: #ff8c40;
}

.contact_bnr li .bnr_tel:before {
  content: "\f095";
}

.contact_bnr li .bnr_tel:hover {
  background: #746966;
}

.contact_bnr li .bnr_mobile {
  background: #ffffff;
  color: #e24e42;
}

.contact_bnr li .bnr_mobile:before {
  content: "\f3cd";
}

.contact_bnr li .bnr_fax {
  background: #ffffff;
  color: #e24e42;
}

.contact_bnr li .bnr_fax:before {
  content: "\f1ac";
}

.contact_bnr li .bnr_mail {
  background: #746966;
  color: #fefefe;
}

.contact_bnr li .bnr_mail:before {
  content: "\f0e0";
}

.contact_bnr li .bnr_mail:hover {
  background: #ff8c40;
}

.contact_bnr li a, .contact_bnr li span {
  display: block;
  padding: 8px 5px;
  width: 260px;
  color: #ffffff;
  font-size: 1.7rem;
  font-weight: bold;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 25px;
}

.contact_bnr li a:before, .contact_bnr li span:before {
  font-family: "Font Awesome 5 Free";
  margin-right: 5px;
}

.single {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 0;
}

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

.single02 {
  margin: 0 auto;
  padding: 40px 0;
}

.margin-top {
  margin-top: -40px;
}

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

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

.lsingle {
  float: left;
}

.rsingle {
  float: right;
}

.mbox {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background: rgba(255, 255, 255, 0.9);
  padding: 25px;
}

.mbox.round {
  border-radius: 20px;
}

@media all and (max-width: 639px) {
  .mbox {
    padding: 15px;
  }
}

.mbox2 {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 1.7rem;
  font-weight: bold;
}

@media all and (max-width: 639px) {
  .mbox2 {
    font-size: 14px;
  }
}

.mbox3 {
  padding: 10px;
  background: rgba(255, 255, 255, 0.6);
}

.mbox4 {
  padding: 10px;
  border: 2px solid #546cac;
  background: rgba(255, 255, 255, 0.9);
  -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
  border-radius: 20px;
}

.mbox-b {
  -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
  padding: 10px;
}

.bg01 {
  background: url(../img/bg_body2.jpg);
}

.bg02 {
  background: rgba(226, 78, 66, 0.2);
  padding-bottom: 200px;
}

.bg-grid {
  background: url(../img/body_bg.png);
  background-image: -webkit-linear-gradient(transparent 95%, rgba(221, 221, 221, 0.2) 50%, rgba(221, 221, 221, 0.2)), -webkit-linear-gradient(0deg, transparent 95%, rgba(221, 221, 221, 0.2) 50%, rgba(221, 221, 221, 0.2));
  background-size: 20px 20px;
  background-repeat: repeat;
}

.bg-gray {
  background: #f7f7f7;
}

.bg-map {
  background: url(../img/map.png) no-repeat right bottom;
  min-height: 250px;
  background-size: contain;
}

@media all and (max-width: 639px) {
  .bg-map {
    background-size: auto 200px;
    background-position: right bottom;
  }
  .bg-map .lsingle {
    padding-bottom: 120px;
  }
}

#main {
  float: left;
  width: 70%;
}

@media all and (max-width: 639px) {
  #main {
    float: none;
    width: 100%;
    margin-bottom: 30px;
  }
}

#side {
  float: right;
  width: 26%;
}

#side > .pages {
  display: none;
}

@media all and (max-width: 639px) {
  #side {
    float: none;
    width: 100%;
  }
}

.mtitle {
  font-weight: bold;
  margin-bottom: 20px;
  text-align: center;
  line-height: 1.5;
  font-size: 2.2rem;
}

.mtitle span {
  font-size: 6rem;
  display: block;
  position: relative;
  font-family: "Varela Round",sans-serif;
  color: #546cac;
}

.mtitle span:after {
  content: "";
  height: 2px;
  width: 30px;
  border-radius: 10px;
  background: #546cac;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  bottom: 5px;
}

.mtitle.white {
  color: #fff;
  text-shadow: 0 0 3px rgba(0, 0, 0, 0.1);
}

.mtitle.white span {
  color: lemonchiffon;
}

.mtitle.white span:after {
  background-color: #eee;
}

.mtitle.mtitle_left {
  text-align: left;
}

.mtitle.mtitle_left span:after {
  left: 0;
  -webkit-transform: none;
  transform: none;
}

.mtitle2 {
  font-weight: bold;
  font-size: 2rem;
  text-align: center;
  color: #e24e42;
}

.mtitle3 {
  position: relative;
  z-index: 2;
  font-size: 3rem;
  color: #d12d20;
  margin: 20px 0 30px;
  text-shadow: 0 0 4px rgba(58, 32, 12, 0.2);
}

.mtitle3 span {
  position: absolute;
  z-index: 0;
  color: rgba(0, 0, 0, 0.2);
  font-weight: bold;
  text-shadow: none;
  font-size: 6rem;
  top: -55px;
  left: -10px;
}

@media all and (max-width: 639px) {
  .mtitle3 {
    margin-top: 30px;
  }
  .mtitle3 span {
    font-size: 3.3rem;
    top: -40px;
  }
}

@media all and (max-width: 320px) {
  .mtitle3 span {
    font-size: 2.8rem;
  }
}

.mtitle_point {
  margin-bottom: 15px;
  font-size: 1.7rem;
  position: relative;
  text-align: center;
}

.mtitle_point:after {
  content: "";
  width: 30px;
  height: 2px;
  background-color: #e24e42;
  display: block;
  margin: 10px auto 0;
}

.mtitle-bll {
  font-size: 1.8rem;
  font-weight: bold;
  border-bottom: 2px solid #eeeeee;
  position: relative;
  margin-bottom: 15px;
  padding-left: 10px;
  color: #e24e42;
}

.mtitle-bll:before {
  font-family: "FontAwesome";
  content: "\f105";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  color: #aaaaaa;
}

.mtitle-bll:after {
  position: absolute;
  content: "";
  height: 2px;
  display: block;
  background: #e24e42;
  bottom: -2px;
  width: 100px;
  left: 0;
}

@media all and (max-width: 639px) {
  .mtitle-bll {
    font-size: 1.5rem;
    line-height: 1.5;
  }
}

.mtitle_sub {
  color: #3a200c;
  line-height: 1.4;
  padding-left: 0.5em;
  font-weight: 600;
  position: relative;
  border-left: 6px solid #e24e42;
  margin: 8px 0;
}

.mtitle_sub span {
  font-size: 2rem;
}

.mtitle_sub:before {
  position: absolute;
  left: -6px;
  bottom: 0;
  content: "";
  width: 6px;
  height: 50%;
  background-color: #ff9035;
}

.mtitle_box {
  background: #546cac;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: #fefefe;
  font-size: 2.2rem;
  position: relative;
  padding: 10px;
  margin-bottom: 25px;
}

.mtitle_box span {
  font-weight: normal;
  font-size: 14px;
}

.mtitle_box:before {
  position: absolute;
  font-family: "Font Awesome 5 Free";
  content: "\f30a";
  display: block;
  right: -1px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  color: #fefefe;
}

.mtitle_box2 {
  background: #fff;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: #111;
  font-size: 1.7rem;
  position: relative;
  font-weight: normal;
  border: 1px solid #555;
  overflow: hidden;
  padding: 5px 10px;
  margin-bottom: 10px;
}

.mtitle_box2 .small-cap {
  font-weight: normal;
  font-size: 14px;
}

.mtitle_box2:before {
  background-color: #555;
  content: "";
  display: block;
  -webkit-transform: rotate(-40deg);
  transform: rotate(-40deg);
  position: absolute;
  bottom: 0px;
  right: -120px;
  width: 300px;
  height: 280px;
}

@media all and (max-width: 800px) {
  .mtitle_box2 {
    font-size: 15px;
    line-height: 1.5;
    padding-right: 40px;
  }
  .mtitle_box2 span {
    font-size: 12px;
  }
  .mtitle_box2:before {
    width: 215px;
    right: -120px;
  }
}

.en1 {
  text-align: center;
  font-family: "Varela Round",sans-serif;
  font-size: 2rem;
  color: #ff9035;
  position: relative;
  margin: 20px 0 20px;
}

.en1:before {
  position: absolute;
  content: "";
  top: -10px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 120px;
  height: 1px;
  background: #e24e42;
}

@media all and (max-width: 639px) {
  .en1 {
    font-size: 1.7rem;
    line-height: 1.5;
  }
}

.mtext1 {
  font-size: 4rem;
  line-height: 1.5;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
}

.mtext2 {
  font-size: 3.5rem;
  text-align: center;
  letter-spacing: 0.1rem;
}

.mtext3 {
  font-size: 2.4rem;
  line-height: 1.5;
  position: relative;
  margin-bottom: 20px;
}

.mtext3:before {
  position: absolute;
  content: "";
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  bottom: -10px;
  width: 60px;
  height: 2px;
  z-index: 0;
  background: #ff9035;
}

@media all and (max-width: 639px) {
  .mtext3 {
    font-size: 2rem;
  }
}

.president {
  text-align: right;
  font-size: 1.75rem;
  font-weight: 600;
}

.president span {
  font-size: 2rem;
}

.serif {
  font-family: "YakuHanMP","Noto Serif JP",serif;
  font-weight: normal;
}

.mtitle_bnr {
  font-size: 2rem;
  font-weight: 600;
  color: #e24e42;
  text-align: center;
  margin-bottom: 10px;
}

.mtitle_bnr:before {
  font-family: "FontAwesome";
  font-weight: bold;
  margin-right: 5px;
}

.mtitle_bnr.mtitle_bnr_01:before {
  content: "\f015";
}

.mtitle_bnr.mtitle_bnr_02:before {
  content: "\f0ad";
}

.mtitle_category {
  margin-bottom: 15px;
  font-size: 1.8rem;
  font-weight: normal;
  border-bottom: 1px solid #ccc;
}

.mtitle_category:before {
  font-family: "FontAwesome";
  font-weight: normal;
  content: "\f0ca";
  margin-right: 5px;
  color: #e24e42;
}

@media all and (max-width: 639px) {
  .mtitle_category {
    font-size: 1.5rem;
  }
}

.mtitle_catch {
  font-weight: bold;
  margin: 10px 0;
  color: #d12d20;
  border-bottom: 1px solid #e24e42;
  font-size: 1.8rem;
  background: #f5f5f5;
}

.btn01 a {
  background: #ff8c40;
  text-align: center;
  width: 270px;
  margin: 0 auto;
  display: block;
  color: #fff;
  padding: 15px 5px;
  font-weight: bold;
  border-radius: 35px;
}

.btn01 a:hover {
  background: #746966;
}

.btn02 {
  width: 300px;
  margin: 20px auto 0;
}

.btn02 a {
  display: block;
  position: relative;
  padding: 15px 0;
  background-color: #000;
  line-height: 24px;
  letter-spacing: 0.1rem;
  font-size: 1.6rem;
  text-align: center;
  color: #ffffff;
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}

.btn02 a i {
  display: block;
  position: absolute;
  top: 50%;
  right: -10px;
  width: 50px;
  height: 1px;
  background-color: #ffffff;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.btn02 a:hover i {
  width: 34px;
}

@media all and (max-width: 639px) {
  .btn02 {
    width: 280px;
  }
}

.news {
  overflow: hidden;
}

.news dt {
  float: left;
  width: 8em;
  padding-top: 10px;
  font-weight: normal;
}

.news dd {
  padding: 10px 0 10px 8em;
  border-bottom: 1px dotted #dddddd;
}

.news dd:last-child {
  border-bottom: none;
}

.news-bl {
  overflow: hidden;
  margin: 15px auto;
}

.news-bl dt {
  float: left;
  width: 7em;
  padding: 3px 5px;
  line-height: 1.3;
  background: #e24e42;
  color: #ffffff;
  text-align: center;
}

.news-bl dd {
  padding: 0 0 10px 9em;
  line-height: 1.6;
  border-bottom: 1px dotted #dddddd;
  margin: 0 0 10px;
}

.news-bl dd:last-child {
  margin: 0;
  border-bottom: none;
}

.bg-greet {
  background: url(../img/pattern-green.jpg);
  position: relative;
  margin-top: 20px;
  width: calc(100% - 40px);
  margin-left: auto;
  margin-right: auto;
  border-radius: 20px;
}

.bg-greet .inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 50px 0 30px;
}

.bg-greet .inner .mtitle span {
  color: #fefefe;
}

@media all and (max-width: 800px) {
  .bg-greet {
    background-attachment: scroll;
    width: 90%;
  }
  .bg-greet .inner {
    width: 99%;
    margin: 0 auto;
    padding: 40px 0 0px;
  }
}

.bg-01 {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.5)), to(rgba(255, 255, 255, 0.5))), url(../img/pattern-green.jpg);
  background: linear-gradient(rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.5)), url(../img/pattern-green.jpg);
}

.bg-02 {
  position: relative;
  margin: 40px 0;
}

.bg-02:before {
  position: absolute;
  content: "";
  left: 50%;
  top: 0;
  width: 95%;
  height: 100%;
  z-index: -1;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background: url(../img/pattern-brown.jpg);
  border-radius: 15px;
  opacity: 0.6;
}

@media all and (max-width: 639px) {
  .bg-02:before {
    width: 97%;
  }
}

.bg-03 {
  background: url(../img/bg-03.jpg) no-repeat center bottom;
  background-size: cover;
}

.bg-gradient {
  background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(226, 78, 66, 0.4)), to(rgba(0, 149, 194, 0.2)));
  background-image: linear-gradient(to top, rgba(226, 78, 66, 0.4) 0%, rgba(0, 149, 194, 0.2) 100%);
}

.bg-base {
  position: relative;
  margin: 40px 0;
}

.bg-base:before {
  position: absolute;
  content: "";
  left: 50%;
  top: 0;
  width: 95%;
  height: 100%;
  z-index: -1;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.5);
  border-radius: 15px;
}

@media all and (max-width: 639px) {
  .bg-base:before {
    width: 97%;
  }
}

.sec1 {
  position: relative;
  z-index: 0;
  overflow: hidden;
  padding: 30px 0;
}

.sec1:before {
  position: absolute;
  content: "";
  width: 35%;
  height: 100%;
  background: url(../img/paper.png);
  -webkit-transform: skew(-25deg);
  transform: skew(-25deg);
  right: -10px;
  top: 0;
  z-index: -1;
}

.sec2 {
  position: relative;
  z-index: 0;
  overflow: hidden;
  padding: 30px 0;
}

.sec2:before {
  position: absolute;
  content: "";
  width: 35%;
  height: 100%;
  background: url(../img/paper.png);
  -webkit-transform: skew(-25deg);
  transform: skew(-25deg);
  left: 100px;
  top: 0;
  z-index: -1;
}

@media all and (max-width: 639px) {
  .sec1:before {
    width: 70%;
    right: -28%;
    -webkit-transform: skew(-10deg);
    transform: skew(-10deg);
  }
  .sec2:before {
    width: 70%;
    left: -28%;
    -webkit-transform: skew(-10deg);
            transform: skew(-10deg);
  }
}

.article {
  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;
}

.article .article_image {
  width: 60%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.article .article_detail {
  width: 40%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 100px 0;
}

.article .article_detail .inner {
  margin: 0 auto;
  width: 80%;
}

.article.article_01 {
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
}

.article.article_01 .article_image {
  background-image: url(../img/article_image_01.jpg);
}

@media all and (max-width: 800px) {
  .article .article_detail .inner {
    width: 90%;
  }
}

@media all and (max-width: 639px) {
  .article .article_image, .article .article_detail {
    width: 100%;
  }
  .article .article_image {
    display: none;
  }
  .article .article_detail {
    padding: 30px 0;
  }
}

.tbl {
  width: 100%;
}

.tbl th, .tbl td {
  padding: 10px;
  vertical-align: middle;
  border: 1px solid #7a7978;
}

.tbl th {
  background: #0095c2;
  font-weight: 500;
}

.tbl th span {
  font-size: 1.4rem;
}

.tbl.timetable th {
  text-align: center;
  font-size: 1.4rem;
}

.tbl.timetable td {
  text-align: center;
  font-size: 1.4rem;
  color: #3a200c;
  background: #fff;
}

.tbl.timetable .tr-01 td {
  background: lemonchiffon;
  text-align: center;
  font-weight: 500;
}

@media all and (max-width: 639px) {
  .tbl.timetable th, .tbl.timetable td {
    font-size: 1.2rem;
    padding: 5px;
  }
}

.tbl_new {
  width: 100%;
}

.tbl_new tr th, .tbl_new tr td {
  vertical-align: middle;
  padding: 10px;
}

.tbl_new tr th {
  font-weight: 700;
}

.tbl_new tr th span {
  font-size: 1.4rem;
}

.tbl_new tr:nth-child(odd) th, .tbl_new tr:nth-child(odd) td {
  background: #f0f0f0;
}

.company {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 5px;
}

.company th, .company td {
  padding: 10px;
  vertical-align: middle;
}

.company th {
  text-align: left;
  width: 25%;
  position: relative;
  background: #546cac;
  color: #ffffff;
  font-weight: bold;
}

.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: #546cac;
  margin-top: -10px;
}

.company td {
  background: #f9f9f9;
  padding-left: 20px;
}

.ggmap {
  position: relative;
  padding-bottom: 46.25%;
  height: 0;
  overflow: hidden;
}

.ggmap iframe, .ggmap object, .ggmap embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.list_common li {
  padding-bottom: 10px;
  padding-left: 1rem;
  margin-bottom: 10px;
  border-bottom: 1px dotted #cccccc;
}

.list_common li:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: none;
}

.list_check li {
  padding-bottom: 10px;
  margin-bottom: 10px;
}

.list_check li:not(:last-child) {
  border-bottom: 1px dotted #cccccc;
}

.list_check li:before {
  font-family: "FontAwesome";
  content: "\f14a";
  margin-right: 5px;
  color: rgba(226, 78, 66, 0.8);
}

.list_business {
  text-align: 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_business li {
  width: 48%;
  margin: 0 0.5% 10px;
  padding: 5px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background: #ddd;
  font-weight: bold;
  font-size: 1.7rem;
}

.list_business li:before {
  font-family: "Font Awesome 5 Free";
  content: "\f7d9";
  color: #e24e42;
  margin-right: 8px;
}

@media all and (max-width: 800px) {
  .list_business li {
    font-size: 1.5rem;
  }
}

@media all and (max-width: 639px) {
  .list_business li {
    width: 98%;
    margin: 0 auto 10px;
    font-size: 1.4rem;
  }
}

.ol-list {
  counter-reset: number;
  list-style: none;
  margin: 0;
  padding: 0;
  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;
}

.ol-list li {
  line-height: 2;
  border-bottom: 1px solid #aaa;
  margin-bottom: 10px;
  padding-bottom: 10px;
  font-weight: bold;
  font-size: 1.6rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 49%;
}

.ol-list li:before {
  counter-increment: number;
  content: counter(number);
  background: #e24e42;
  display: inline-block;
  width: 2em;
  height: 2em;
  text-align: center;
  border-radius: 50%;
  color: #fff;
  margin-right: 0.3em;
}

@media all and (max-width: 639px) {
  .ol-list {
    font-size: 1.6rem;
  }
}

.list-center {
  text-align: center;
}

.list-center li {
  display: inline-block;
}

.list-center.type01 li {
  border-radius: 30px;
  background: rgba(0, 143, 149, 0.8);
  color: #fff;
  border: 2px solid #008f95;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 4px 10px;
  width: 20%;
  margin-bottom: 10px;
  font-weight: bold;
}

@media all and (max-width: 639px) {
  .list-center.type01 li {
    width: 49%;
  }
}

.list_disc li {
  padding: 5px 0;
}

.list_disc li:not(:last-of-type) {
  margin-bottom: 5px;
  border-bottom: 1px dashed #746966;
}

.list_disc li:before {
  content: "●";
  margin-right: 10px;
  color: #546cac;
  font-size: 0.5rem;
}

@media all and (max-width: 639px) {
  .list_disc li {
    font-size: 12px;
  }
}

.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%;
}

.point-wrap {
  border-bottom: 1px soldi #ccc;
  padding: 10px 0;
  margin-bottom: 5px;
}

.point-wrap dt {
  position: relative;
  overflow: hidden;
  padding-left: 90px;
  font-size: 1.8rem;
  color: #e24e42;
  border-bottom: 1px dashed #e24e42;
  margin-bottom: 5px;
}

.point-wrap dt span {
  position: absolute;
  display: block;
  width: 80px;
  height: 80px;
  background: #d12d20;
  font-size: 4rem;
  color: #fff;
  left: 0;
  bottom: -30px;
  text-align: center;
}

.point-wrap dd {
  padding: 5px;
}

@media all and (max-width: 639px) {
  .point-wrap dt {
    font-size: 1.6rem;
    line-height: 1.6;
    overflow: visible;
    padding-left: 70px;
  }
  .point-wrap dt span {
    width: 60px;
    height: 40px;
    line-height: 40px;
    bottom: 0;
    font-size: 2rem;
  }
}

.blog_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.blog_list .blog_img {
  width: 35%;
  overflow: hidden;
}

.blog_list .blog_img img {
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.blog_list .blog_detail {
  width: 60%;
}

.blog_list .blog_detail .blog_ttl {
  font-weight: 500;
  color: #e24e42;
  margin-bottom: 5px;
}

.blog {
  display: block;
  padding: 15px;
  background: #ffffff;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: #323232;
}

.blog:hover .blog_img img {
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}

.date {
  display: block;
  font-size: 1.2rem;
  margin-bottom: 5px;
}

.date.date_02 {
  margin-bottom: 15px;
}

.date:before {
  font-family: "FontAwesome";
  content: "\f017";
  margin-right: 5px;
}

.pages {
  text-align: center;
  margin-top: 10px;
}

.pages .page_next, .pages .page_prev {
  display: inline;
  margin: 0 20px;
}

.top-blog .pages {
  display: none;
}

.category_nav {
  border: 1px solid #dddddd;
}

.category_nav li a {
  display: block;
  padding: 5px 10px;
  border-bottom: 1px dotted #dddddd;
  background-color: #ffffff;
}

.category_nav li a:before {
  font-family: "FontAwesome";
  content: "\f0a9";
  margin-right: 5px;
}

.category_nav li a:hover {
  background: #f1edee;
}

.category_nav li:last-child a {
  border-bottom: none;
}

.column2 {
  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;
}

.column2 .child {
  position: relative;
  width: 49%;
}

@media all and (max-width: 639px) {
  .column2 .child {
    width: 100%;
    margin: 0 auto 10px;
  }
}

.column3 {
  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;
  margin-bottom: -3%;
}

.column3 .child {
  width: 31.3%;
  margin: 0 3% 3% 0;
  position: relative;
}

.column3 .child:nth-child(3n) {
  margin: 0 0 3% 0;
}

.column3.align-items {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.column4 {
  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;
}

.column4 .child {
  width: 23.5%;
  margin: 0 2% 2% 0;
  position: relative;
}

.column4 .child:nth-child(4n) {
  margin: 0 0 2% 0;
}

.re_reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.ai_center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.ai_start {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.cut {
  overflow: hidden;
  zoom: 1;
}

.w300 {
  width: 300px;
}

.spbr {
  display: none;
}

.color1 {
  color: #546cac;
}

.color2 {
  color: #c8210b;
}

.color3 {
  color: #a52419;
}

.num {
  color: #ff0000;
  font-weight: bold;
  margin-right: 5px;
}

.breadcrumb {
  padding-left: 0;
  font-size: 1.3rem;
}

.breadcrumb li {
  display: inline;
  color: #111;
  padding: 3px;
  background: rgba(255, 255, 255, 0.8);
}

.breadcrumb li a {
  color: #e24e42;
}

.breadcrumb li + li:before {
  margin: 0 10px;
  content: ">";
}

.breadcrumb li .home {
  font-family: "FontAwesome";
}

.form {
  margin: 0 auto;
  width: 90%;
}

.form .form-pattern-1 {
  background: transparent;
}

.form .form-contents {
  padding: 0;
}

.form .form-contents dl {
  margin-bottom: 0;
}

.form dl dt {
  float: left;
  width: 280px;
  padding-top: 20px;
  font-weight: bold;
}

.form dl dt span,
.form .form-pattern-1 dl dt:not(.pattern-exclusion) span.required::before {
  color: #fff;
  background: #e24e42;
  padding: 0 5px 0;
  margin-right: 5px;
  font-size: 11px;
  border-radius: 2px;
  position: relative;
  top: -2px;
}

.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: 5px;
  width: 100%;
  border-radius: 0;
  -webkit-appearance: none;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.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,
.form .form-pattern-1 .submit-btn {
  cursor: pointer;
  display: block;
  color: #111;
  text-align: center;
  -webkit-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
  font-family: "-apple-system", BlinkMacSystemFont, "Helvetica Neue", Roboto, "Droid Sans", Arial, "Hiragino Kaku Gothic ProN", "Yu Gothic", YuGothic, Meiryo, sans-serif;
  font-size: 1.5rem;
  font-weight: bold;
  padding: 8px 5px;
  margin: 0 auto 10px;
  width: 250px;
  background: #e24e42;
  border: 1px solid #e24e42;
  border-radius: 25px;
  color: #fff;
}

.form button:hover,
.form .form-pattern-1 .submit-btn:hover {
  background: #fff;
  color: #e24e42;
}

.form .form-pattern-1 .submit-btn::before {
  -webkit-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
}

.form .form-pattern-1 .submit-btn:hover::before {
  background: #e24e42;
}


.form button:before {
  font-family: "FontAwesome";
  font-weight: normal;
  content: "\f0e0";
  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: #e24e42;
}

.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: #e24e42;
  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 #f5f5f5;
  box-shadow: 20px -1px #f5f5f5;
}

.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;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.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;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.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 #e24e42;
  border-bottom: 3px solid #e24e42;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  z-index: 1;
}

.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;
}

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

.memo {
  background: rgba(255, 255, 255, 0.7);
  font-size: 1.4rem;
  padding: 10px;
}

.bnr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.bnr li {
  width: 33.3333333%;
}

@media all and (max-width: 639px) {
  .bnr {
    display: block;
  }
  .bnr li {
    float: none;
    width: 100%;
  }
}

.top_bnr {
  position: relative;
  overflow: hidden;
  min-width: 220px;
  width: 100%;
  background: #000000;
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
  color: #ffffff;
}

.top_bnr * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 0.45s ease-in-out;
  transition: all 0.45s ease-in-out;
}

.top_bnr img {
  max-width: 100%;
  position: relative;
  opacity: 0.9;
}

.top_bnr figcaption {
  position: absolute;
  top: 45%;
  left: 7%;
  right: 7%;
  bottom: 45%;
  border: 1px solid white;
  border-width: 1px 1px 0;
}

.top_bnr .heading {
  overflow: hidden;
  -webkit-transform: translateY(50%);
  transform: translateY(50%);
  position: absolute;
  bottom: 0;
  width: 100%;
}

.top_bnr h2 {
  display: table;
  margin: 0 auto;
  padding: 0 10px;
  position: relative;
  text-align: center;
  width: auto;
  font-size: 2.2rem;
  text-transform: uppercase;
  text-shadow: -2px 1px 0 rgba(0, 0, 0, 0.6);
  font-weight: bold;
}

.top_bnr h2:before, .top_bnr h2:after {
  position: absolute;
  display: block;
  width: 1000%;
  height: 1px;
  content: "";
  background: white;
  top: 50%;
}

.top_bnr h2:before {
  left: -1000%;
}

.top_bnr h2:after {
  right: -1000%;
}

.top_bnr p {
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  position: absolute;
  width: 100%;
  padding: 0 20px;
  margin: 0;
  opacity: 0;
  line-height: 1.6em;
}

.top_bnr a {
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  position: absolute;
  z-index: 1;
}

.top_bnr:hover img, .top_bnr.hover img {
  opacity: 0.25;
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.top_bnr:hover figcaption, .top_bnr.hover figcaption {
  top: 7%;
  bottom: 7%;
}

.top_bnr:hover p, .top_bnr.hover p {
  opacity: 1;
  -webkit-transition-delay: 0.35s;
  transition-delay: 0.35s;
}

.shadow {
  -webkit-box-shadow: 0 0 8px rgba(233, 176, 0, 0.3);
  box-shadow: 0 0 8px rgba(233, 176, 0, 0.3);
}

.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: calc((100% - 30px) / 3);
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  margin: 0 15px 20px 0;
}

.gallery li:nth-child(3n) {
  margin-right: 0;
}

.gallery li a {
  background: #f2f2f2;
  display: block;
  text-align: center;
  padding: 0px;
  height: 180px;
}

.gallery li a img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  font-family: "object-fit: cover;";
}

.gallery li p {
  font-size: 13px;
  margin: 3px 0 10px;
}

.gallery.gallery2 li {
  width: calc((100% - 32px) / 5);
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  margin: 0 8px 20px 0;
}

.gallery.gallery2 li:nth-child(5n) {
  margin-right: 0;
}

@media all and (max-width: 639px) {
  .gallery.gallery2 li {
    width: calc((100% - 40px) / 3);
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    margin: 0 6px 10px;
  }
  .gallery.gallery2 li:nth-child(3n) {
    margin-right: 0;
  }
  .gallery.gallery2 li:nth-child(5n) {
    margin-right: 6px;
  }
}

@media screen and (max-width: 800px) {
  .gallery li {
    width: 48%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0 1% 20px;
  }
  .gallery li:nth-child(2n) {
    margin-right: 0;
  }
  .gallery li:nth-child(3n) {
    margin: 0 1% 20px;
  }
  .gallery li a {
    height: 100px;
  }
}

.prv dt {
  color: #e24e42;
  border-bottom: 1px solid #ccc;
  margin: 10px 0;
}

.flex {
  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: 1400px;
  margin: 0 auto;
}

.flex li {
  width: 32%;
  padding: 15px;
  position: relative;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background: #fefefe;
  border-radius: 15px;
}

.flex li:hover .border {
  width: 102%;
  height: 105%;
}

.flex li:hover .linkbtn-more {
  background: #e24e42;
  color: #fff;
  -webkit-transition: all 0.55s ease;
  transition: all 0.55s ease;
}

.flex li a {
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  -webkit-transition: all 0.55s ease;
  transition: all 0.55s ease;
}

.flex li:hover .snip1445 img, .flex li:hover .snip1445 .hover img {
  zoom: 1;
  filter: alpha(opacity=50);
  -webkit-opacity: 0.4;
  opacity: 0.4;
}

.flex li:hover .snip1445 figcaption:before, .flex li:hover .snip1445 .hover figcaption:before, .flex li:hover .snip1445 figcaption:after, .flex li:hover .snip1445 .hover figcaption:after, .flex li:hover .snip1445 figcaption div:before, .flex li:hover .snip1445 .hover figcaption div:before, .flex li:hover .snip1445 figcaption div:after, .flex li:hover .snip1445 .hover figcaption div:after {
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}

.flex li:hover .snip1445 figcaption:before, .flex li:hover .snip1445 .hover figcaption:before, .flex li:hover .snip1445 figcaption:after, .flex li:hover .snip1445 .hover figcaption:after {
  -webkit-transition-delay: 0.15s;
  transition-delay: 0.15s;
}

.snip1445 {
  position: relative;
  overflow: hidden;
  min-width: 230px;
  max-width: 100%;
  height: 250px;
  width: 100%;
  text-align: center;
  font-size: 13px;
  color: #fff;
  background-color: #3a200c;
}

.snip1445 * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 0.55s ease;
  transition: all 0.55s ease;
}

.snip1445 *:before, .snip1445 *:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 0.55s ease;
  transition: all 0.55s ease;
}

.snip1445 img {
  -o-object-fit: cover;
  object-fit: cover;
  height: 100%;
  width: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  vertical-align: top;
}

.snip1445 figcaption {
  position: absolute;
  bottom: 20px;
  right: 20px;
  padding: 10px 10px 10px;
}

.snip1445 figcaption:before, .snip1445 figcaption:after {
  height: 1px;
  width: 100%;
  position: absolute;
  content: "";
  background-color: #ffffff;
}

.snip1445 figcaption:before {
  top: 0;
  left: 0;
  -webkit-transform: translateX(200%);
  transform: translateX(200%);
}

.snip1445 figcaption:after {
  bottom: 0;
  right: 0;
  -webkit-transform: translateX(-250%);
  transform: translateX(-250%);
}

.snip1445 figcaption > div:before, .snip1445 figcaption > div:after {
  width: 1px;
  height: 300px;
  position: absolute;
  content: "";
  background-color: #ffffff;
}

.snip1445 figcaption > div:before {
  top: 0;
  left: 0;
  -webkit-transform: translateY(200%);
  transform: translateY(200%);
}

.snip1445 figcaption > div:after {
  bottom: 0;
  right: 0;
  -webkit-transform: translateY(-250%);
  transform: translateY(-250%);
}

.snip1445 h2, .snip1445 h4 {
  margin: 0;
  width: 200px;
  background: rgba(255, 255, 255, 0.8);
  text-align: center;
  color: #e24e42;
}

.snip1445 h2 {
  font-size: 2rem;
  letter-spacing: 1px;
}

.snip1445 .click {
  display: block;
  font-weight: bold;
  width: 150px;
  margin-left: auto;
  background-color: #008f95;
  padding: 3px 10px;
  color: #111;
  text-shadow: #fff 0px 0px 0px;
}

.snip1445 img {
  opacity: 0.9;
}

.linkbtn-ttl {
  font-size: 2.2rem;
  color: #e24e42;
  margin-bottom: 10px;
  float: left;
}

@media all and (max-width: 639px) {
  .linkbtn-ttl {
    font-size: 1.6rem;
  }
}

.linkbtn-more {
  float: right;
  background: #e9b000;
  color: #fff;
  padding: 3px;
  border-radius: 5px;
}

@media all and (max-width: 639px) {
  .linkbtn-more {
    font-size: 1.2rem;
  }
}

@media screen and (max-width: 768px) {
  .flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }
  .flex li {
    width: 80%;
    margin-bottom: 30px;
  }
  .snip1445 {
    min-width: 230px;
    max-width: 100%;
    height: 200px;
  }
  .snip1445 img {
    opacity: 0.6;
    width: 100%;
  }
}

@media screen and (max-width: 480px) {
  .flex li {
    width: 95%;
  }
}

.linkbtn-txt {
  color: #111;
  line-height: 1.5;
  margin-top: 10px;
}

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

.topbnr {
  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;
  max-width: 1000px;
  margin: 0 auto 30px;
}

.topbnr li {
  width: 48%;
  margin: 0 1% 0;
  background: #fff;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-box-shadow: 0 0 12px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.1);
  position: relative;
}

.topbnr li:before {
  content: "";
  position: absolute;
  right: 3px;
  bottom: 3px;
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-left: 5px solid transparent;
  border-right: 5px solid #e9b000;
  border-bottom: 5px solid #e9b000;
  z-index: 20;
}

.topbnr li:hover {
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  -webkit-box-shadow: 0 0 10px rgba(17, 17, 17, 0.4);
  box-shadow: 0 0 10px rgba(17, 17, 17, 0.4);
}

@media all and (max-width: 639px) {
  .topbnr li {
    width: 95%;
    margin: 0 auto 15px;
  }
}

.top-bnr-wrap {
  position: relative;
  background: #fff;
  padding: 10px;
}

.top-bnr-wrap a {
  position: absolute;
  width: 100%;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: block;
  z-index: 10;
}

.top-bnr-wrap .top-bnr-title {
  background: #e24e42;
  display: block;
  width: 100%;
  color: #fff;
  font-size: 1.6rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  padding: 5px 5px 5px 10px;
  margin-bottom: 10px;
}

.top-bnr-wrap .top-bnr-title:before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f0a9";
  margin-right: 5px;
}

.top-bnr-wrap:hover a {
  cursor: pointer;
}

.top-bnr-wrap:hover .top-bnr-title {
  background: #a52419;
}

.memo2 {
  background: #ede5d8;
  padding: 10px;
}

.memo2 span {
  padding-right: 5px;
}

.note {
  border: 3px solid #ddd;
  padding: 10px;
  background: lemonchiffon;
}

.flow-dl > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 10px;
  background: rgba(255, 255, 255, 0.5);
  margin-bottom: 20px;
  -webkit-box-shadow: 0 0 5px rgba(226, 78, 66, 0.5);
  box-shadow: 0 0 5px rgba(226, 78, 66, 0.5);
}

.flow-dl dt {
  background: #005e62;
  font-size: 4rem;
  color: #3a200c;
  width: 150px;
  text-shadow: 2px 2px 2px rgba(226, 78, 66, 0.2);
  font-weight: bold;
  text-align: center;
  margin-right: 20px;
  line-height: 1.4;
  margin-bottom: 10px;
  padding-top: 10px;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.flow-dl dt:before {
  content: "";
  position: absolute;
  right: 3px;
  bottom: 3px;
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-left: 8px solid transparent;
  border-right: 8px solid #0095c2;
  border-bottom: 8px solid #0095c2;
  z-index: 20;
}

.flow-dl dt span {
  font-size: 1.5rem;
  margin-right: 5px;
}

.flow-dl dd {
  width: calc(100% - 180px);
  margin-bottom: 10px;
}

@media all and (max-width: 639px) {
  .flow-dl dt {
    width: 80px;
    font-size: 2.7rem;
  }
  .flow-dl dt span {
    font-size: 1.3rem;
  }
  .flow-dl dd {
    width: calc(100% - 105px);
  }
}

.txt1 {
  padding-left: 10px;
}

.fee-box {
  margin: 10px 0 20px;
  font-weight: bold;
  background: lemonchiffon;
  padding: 5px;
}

.fee-box span {
  display: block;
  font-weight: normal;
}

.list3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 auto;
}

.list3.strength-list {
  margin-bottom: 80px;
}

.list3.strength-list li {
  padding: 5px;
}

.list3.strength-list li:nth-child(2) {
  -webkit-transform: translateY(40px);
  transform: translateY(40px);
}

.list3.strength-list li:nth-child(3) {
  -webkit-transform: translateY(80px);
  transform: translateY(80px);
}

.list3 li {
  width: 31%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0 1% 10px;
}

.list3.top-list {
  width: 87%;
}

.list3.top-list img {
  -webkit-transition: 0.2s all ease-in;
  transition: 0.2s all ease-in;
  border: 4px solid #fff;
}

.list3.top-list img:hover {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
  -webkit-box-shadow: 0 0 5px rgba(226, 78, 66, 0.2);
  box-shadow: 0 0 5px rgba(226, 78, 66, 0.2);
}

.list3.top-list:first-of-type {
  margin-left: 0;
}

.list3.top-list:last-of-type {
  margin-left: auto;
  margin-right: 0;
}

@media all and (max-width: 800px) {
  .list3.strength-list li {
    width: 90%;
    margin: 0 auto;
  }
}

@media all and (max-width: 639px) {
  .list3 li {
    width: 100%;
  }
}

@media all and (max-width: 639px) {
  .list3.top-list {
    width: 95%;
    margin: 0 auto;
  }
  .list3.top-list:first-of-type, .list3.top-list:last-of-type {
    margin: 0 auto;
  }
}

.fukidashi {
  position: relative;
  display: inline-block;
  padding: 20px;
  max-width: 100%;
  background: #008f95;
  border-radius: 10px;
}

.fukidashi:before {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: -30px;
  border: 15px solid transparent;
  border-right: 15px solid #008f95;
}

.fukidashi.fukidashi2 {
  background: rgba(226, 78, 66, 0.2);
}

.fukidashi.fukidashi2:before {
  border-bottom: 15px solid rgba(226, 78, 66, 0.2);
}

@media all and (max-width: 639px) {
  .fukidashi:before {
    border-right: solid 15px transparent;
    border-bottom: 15px solid #008f95;
    top: -30px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}

.list2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.list2 > li {
  width: 48%;
  margin: 0 1% 10px;
}

@media all and (max-width: 639px) {
  .list2 li {
    width: 100%;
    margin: 0 auto 10px;
  }
}

.blog-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.blog-wrap * {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.blog-wrap > li {
  width: 48%;
  margin: 0 1% 15px 1%;
  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-sizing: border-box;
  box-sizing: border-box;
  padding: 10px;
  background: #fff;
}

@media all and (max-width: 639px) {
  .blog-wrap > li {
    width: 100%;
  }
}

#side .blog-wrap > li {
  width: 100%;
  margin: 0 auto 10px;
}

#side .blog-wrap .blog-img {
  width: 80px;
  height: 80px;
}

#side .blog-wrap .mtitle_sub {
  line-height: 1.5;
  font-size: 1.4rem;
  font-weight: normal;
  border-left: 0;
}

#side .blog-wrap .mtitle_sub:before {
  display: none;
}

#side .blog-wrap .blog-txt {
  display: none;
}

.blog-img {
  width: 120px;
  height: 120px;
  overflow: hidden;
  margin-right: 10px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 10px;
}

.blog-img img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-family: "object-fit: cover;";
}

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

.blog-contents {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.blog-date {
  color: #e24e42;
  font-size: 14px;
}

.blog-date:before {
  font-family: "Font Awesome 5 Free";
  content: "\f017";
  margin-right: 5px;
}

.blog-txt {
  height: 50px;
  overflow: hidden;
  font-size: 14px;
  line-height: 1.5;
  color: #111;
}

@media all and (max-width: 639px) {
  .blog-txt {
    font-size: 12px;
  }
}

.foot_list3 {
  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;
}

.foot_list3 .child {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 28%;
}

.foot_list3 .child.child1 {
  width: 42%;
}

@media all and (max-width: 800px) {
  .foot_list3 .child {
    width: 100%;
    text-align: center;
  }
  .foot_list3 .child.child1 {
    width: 100%;
    margin: 0 auto;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    text-align: center;
  }
  .foot_list3 .child.child1 img {
    max-width: 300px;
  }
  .foot_list3 .child.child2 {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
}

.box1 {
  width: 90%;
  margin-top: -40px;
  border: 4px solid #999;
  padding: 20px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin-left: auto;
  background: rgba(255, 255, 255, 0.9);
}

.flex-l {
  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;
}

.flex-l > .fukidashi {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.l-child {
  width: 400px;
  margin-right: 20px;
}

@media all and (max-width: 639px) {
  .l-child {
    width: 100%;
    margin: 10px auto;
    text-align: center;
  }
}

.strength-txt {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 30px;
}

@media all and (max-width: 639px) {
  .strength-txt {
    font-size: 1.5rem;
  }
}

.head-insta {
  margin-left: 10px;
}

.head-insta a {
  display: block;
  width: 50px;
  height: 50px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
  padding-top: 27px;
  background: #a3318d;
  line-height: 1.2;
  color: #fefefe;
  text-align: center;
  font-weight: bold;
}

.head-insta a:before {
  position: absolute;
  font-size: 2rem;
  content: "\f16d";
  font-weight: bold;
  font-family: "FontAwesome";
  top: 5px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.head-insta a:hover {
  background: #ed7837;
  color: #fff;
}

.round img {
  border-radius: 20px;
}

.flow > li {
  position: relative;
}

.flow > li:not(:last-child) {
  margin-bottom: 40px;
}

.flow > li:not(:last-child) dl:before, .flow > li:not(:last-child) dl:after {
  content: "";
  border: solid transparent;
  position: absolute;
  top: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.flow > li:not(:last-child) dl:before {
  border-width: 22px;
  border-top-color: #546cac;
}

.flow > li:not(:last-child) dl:after {
  border-width: 19px;
  border-top-color: #fff;
}

.flow > li:not(:first-child):before {
  content: "";
  height: 60px;
  display: block;
  border-left: 4px dotted #e5e5e5;
  position: absolute;
  top: -40px;
  left: calc(10% + 30px - 2px);
  z-index: 10;
}

.flow > li dl {
  width: 100%;
  padding: 20px 30px;
  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;
  background: #fff;
  border: 2px solid #546cac;
  border-radius: 10px;
  position: relative;
}

.flow > li dl dt {
  width: 25%;
  font-size: 20px;
  font-weight: 600;
  color: #6b90db;
  margin-right: 20px;
  text-align: center;
}

@media all and (max-width: 639px) {
  .flow > li dl dt {
    width: 100%;
  }
}

.flow > li dl dt .icon {
  font-size: 2rem;
  letter-spacing: 0.1rem;
  color: #fff;
  background: -webkit-gradient(linear, left top, right top, from(#6b90db), to(#66d5e9));
  background: linear-gradient(to right, #6b90db 0%, #66d5e9 100%);
  padding: 5px 10px;
  margin-bottom: 10px;
  display: block;
  border-radius: 20px;
  position: relative;
  z-index: 100;
}

.flow > li dl dd {
  width: calc(100% - (25% + 20px));
}

.flow * {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.flow2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media all and (max-width: 639px) {
  .flow2 {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.flow2 > li {
  width: calc(18% - 60px);
  padding: 20px 30px;
  margin-bottom: 20px;
  border: 2px solid #6b90db;
  position: relative;
}

@media all and (max-width: 639px) {
  .flow2 > li {
    width: calc(48% - 30px);
    padding: 20px 10px;
  }
}

.flow2 > li:not(:last-child):before, .flow2 > li:not(:last-child):after {
  content: "";
  border: solid transparent;
  position: absolute;
  top: 50%;
  left: 100%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.flow2 > li:not(:last-child):before {
  border-width: 10px;
  border-left-color: #6b90db;
}

.flow2 > li:not(:last-child):after {
  border-width: 8px;
  border-left-color: #fff;
}

.flow2 > li .icon {
  font-size: 12px;
  color: #fff;
  background: #546cac;
  padding: 5px 20px;
  display: block;
  border-radius: 20px;
  position: absolute;
  top: -10px;
  left: -10px;
  z-index: 100;
}

.flow2 > li dl dt {
  font-size: 20px;
  font-weight: 600;
  color: #6b90db;
}

.gallery_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.gallery_list li {
  width: 31%;
  margin-bottom: 2rem;
  margin-right: calc((100% - (31%*3)) / 2);
}

@media all and (max-width: 639px) {
  .gallery_list li {
    width: 100%;
    margin-right: 0;
  }
}

.gallery_list li:nth-of-type(3n) {
  margin-right: 0;
}

.gallery_list li span {
  display: block;
  width: 100%;
  height: 300px;
  overflow: hidden;
}

.gallery_list li span img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
}

.gallery_list li span:hover img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.gallery_list li p {
  margin-top: 1rem;
}

.slide_list {
  position: relative;
  display: none;
  padding-bottom: 1rem;
}

.slide_list li {
  -webkit-filter: drop-shadow(5px 5px 5px rgba(0, 0, 0, 0.3));
          filter: drop-shadow(5px 5px 5px rgba(0, 0, 0, 0.3));
  margin-right: 1%;
}

.slide_list li p {
  display: none;
}

.slide_list li img {
  width: auto;
  height: 260px;
  border-radius: 15px 0 15px 0;
}

@media all and (max-width: 639px) {
  .slide_list li img {
    height: 180px;
  }
}

.srv_img_box {
  position: relative;
}

.srv_img_box .srv_img {
  width: 100%;
  height: 400px;
  overflow: hidden;
}

.srv_img_box .mbox-b {
  width: 80%;
  padding: 40px;
  margin: auto;
  margin-top: -100px;
  position: relative;
  z-index: 1;
}

@media all and (max-width: 639px) {
  .srv_img_box .mbox-b {
    width: 95%;
    padding: 10px;
  }
}

.sales_ng{
  position: relative;
}
.sales_ng p{
  position: absolute;
  bottom:10px;
  right:10px;
}
.sales_ng p img{
  width:100%;
  max-width:300px;
}
@media screen and (max-width:480px){
  .sales_ng p img{
  max-width:200px;
}
}
@media screen and (max-width:375px){
  .sales_ng p img{
  max-width:150px;
}
}