@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;200;300;400;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@200;300;400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Shippori+Mincho+B1:wght@400;500;600;700;800&display=swap");
/* アニメーションベンダープレフィックス込み指定 */
/* アニメーションベンダープレフィックス込み指定 */
body {
  color: #fefefe;
  background: #074770;
  font-family: "Noto Sans JP", "YakuHanJP", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 1.8rem;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  font-weight: 400;
  position: relative;
  letter-spacing: 0.1em;
}

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

#wrapper {
  overflow: hidden;
}
#wrapper.contents {
  overflow: initial;
}

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

h2,
h3,
h4 {
  line-height: 1.4;
  font-weight: 500;
}

.mincho {
  font-family: "Shippori Mincho B1", serif;
  font-weight: 600;
}

.eng {
  font-family: "Playfair Display", serif;
}

.number {
  font-family: "Oswald", sans-serif;
  font-weight: 300;
}

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

.en-big {
  font-family: "Playfair Display", serif;
  font-weight: 500;
  text-transform: uppercase;
}

.bold {
  font-weight: 600;
}

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

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

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

/* header
----------------------------------*/
@keyframes hd-scrolled {
  0% {
    opacity: 0;
    transform: translate(0, -100%);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}
.gradient {
  background: linear-gradient(45deg, #ccc, #0A2647, #eee);
  background-size: 600% 600%;
  animation: anim-gradient 10s ease infinite;
}

@keyframes anim-gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
#l-header {
  width: 100%;
  height: 100px;
  position: absolute;
  z-index: 200;
  top: 0;
  left: 0;
  background: #074770;
  display: flex;
  align-items: center;
}
@media all and (max-width: 639px) {
  #l-header {
    position: relative;
  }
}
#l-header.is-hide {
  transform: translateY(-100%);
}
#l-header .inner {
  position: relative;
  width: calc(100% - 100px);
  margin: 0 20px 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
#l-header .inner #logo {
  width: 260px;
  z-index: 15;
  /*
  img{
  	filter: invert(1);
  }*/
}
@media all and (max-width: 1100px) {
  #l-header .inner #logo {
    width: 200px;
  }
}
#l-header .inner .contact-btn a {
  padding: 7px 50px;
  background: transparent;
  color: #074770;
  border-radius: 80px;
  border: 1px solid rgba(7, 71, 112, 0.5);
}
#l-header .inner .contact-btn a:hover {
  background: #074770;
  color: #fefefe;
}
@media all and (max-width: 639px) {
  #l-header .inner .contact-btn {
    display: none;
  }
}
#l-header.is-fixed {
  position: fixed;
}
#l-header.is-fixed .inner {
  /*
  #logo {	
  	img{
  		filter: invert(1);
  	}
  }*/
}
#l-header.is-fixed .inner .contact-btn a {
  padding: 7px 50px;
  background: transparent;
  color: #074770;
  border-radius: 80px;
  border: 1px solid #074770;
}
#l-header.is-fixed .inner .contact-btn a:hover {
  background: #074770;
  color: #fefefe;
}
#l-header.is-fixed #nav-toggle span {
  background: #fefefe;
}
#l-header.is-fixed #header_nav ul li a {
  color: #fefefe;
}
#l-header.is-fixed #header_nav ul li a:hover, #l-header.is-fixed #header_nav ul li a.active {
  color: #fefefe;
}
#l-header.is-fixed #header_nav .dropdown .dropdown-li a {
  color: #fefefe;
}
#l-header .head-right {
  margin-left: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
}
@media all and (max-width: 896px) {
  #l-header .head-right {
    display: none;
  }
}

#header_nav {
  position: relative;
  z-index: 20;
  margin-right: 15px;
}
#header_nav ul {
  display: flex;
  flex-wrap: wrap;
}
#header_nav ul li {
  position: relative;
  flex: 1 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  /*
  &:first-child{
  	display: none;
  }*/
}
#header_nav ul li a {
  letter-spacing: 0.09rem;
  display: block;
  position: relative;
  line-height: 1.5;
  padding: 0 15px 0;
  color: #fefefe;
  font-weight: 600;
  text-align: center;
}
@media all and (max-width: 1100px) {
  #header_nav ul li a {
    font-size: 1.3rem;
    padding: 0 5px 0;
  }
}
#header_nav ul li a span {
  display: block;
  margin: 0 auto;
  font-size: 1.2rem;
  font-family: "Playfair Display", serif;
  font-weight: 500;
}
#header_nav ul li a:hover, #header_nav ul li a.active {
  color: #fefefe;
}
#header_nav ul li:first-child {
  border-left: none;
}
#header_nav ul li:first-child a::after {
  display: none;
}
#header_nav .dropdown {
  display: none;
  position: absolute;
  left: 0;
  top: 10px;
  z-index: 999;
  padding-top: 30px;
}
#header_nav .dropdown .dropdown-li {
  border-right: 0;
  margin: 0 0 5px;
  background: #0A2647;
  text-align: center;
  z-index: 999;
}
#header_nav .dropdown .dropdown-li:last-child {
  display: block;
}
#header_nav .dropdown .dropdown-li a {
  display: block;
  width: 160px;
  padding: 10px 8px;
  color: #fefefe;
  font-size: 1.2rem;
}
#header_nav .dropdown .dropdown-li a:after {
  display: none;
}
#header_nav .dropdown .dropdown-li:hover {
  background: #074770;
}
#header_nav .dropdown .dropdown-li.foot_only {
  display: none;
}

.open #l-header.is-fixed #nav-toggle span {
  background: #fefefe !important;
}

/* splash
----------------------------------*/
#splash {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #074770;
  z-index: 9999999;
  text-align: center;
  color: #fefefe;
  display: flex;
  justify-content: center;
  align-items: center;
}
#splash::after {
  animation: loader 0.5s linear infinite;
  border: 1px solid #fefefe;
  border-radius: 50%;
  border-right: 1px solid rgba(254, 254, 254, 0.2);
  border-top: 1px solid rgba(254, 254, 254, 0.2);
  content: "";
  height: 70px;
  width: 70px;
}

@keyframes loader {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
body {
  background: #074770;
}
body.appear {
  background: #074770;
}

.splashbg {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border-width: 0px;
  border-style: solid;
  border-color: #074770;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
}

@keyframes backBoxAnime {
  99.9% {
    z-index: 2;
    border-width: 0px;
  }
  100% {
    z-index: -1;
    border-width: 0px;
  }
}
#wrapper {
  position: relative;
  opacity: 0;
}

body.appear #wrapper {
  animation-name: PageAnimeAppear;
  animation-duration: 1s;
  animation-delay: 0.2s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes PageAnimeAppear {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* page-top
----------------------------------*/
#page-top {
  position: fixed;
  bottom: 10px;
  right: 7px;
  z-index: 200;
}
#page-top a {
  display: block;
  background: #fefefe;
  box-shadow: rgba(0, 0, 0, 0.2) 2px 2px 2px;
  color: #074770;
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 50%;
  font-size: 1.2rem;
  text-align: center;
}
#page-top a:hover {
  opacity: 0.6;
}
@media all and (max-width: 639px) {
  #page-top {
    bottom: 3%;
  }
}

/* swiper
----------------------------------*/
@keyframes zoom-in {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.12);
  }
}
.swiper-slide {
  position: relative;
  background: #111;
}
.swiper-slide:before {
  position: absolute;
  width: 100%;
  height: 100%;
  content: "";
  left: 0;
  top: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: -1;
  opacity: 0.5;
}
.swiper-slide.slide1:before {
  background-image: url(../img/1.webp);
}
.swiper-slide.slide2:before {
  background-image: url(../img/2.webp);
}
.swiper-slide.slide3:before {
  background-image: url(../img/3.webp);
}
.swiper-slide.slide4:before {
  background-image: url(../img/4.webp);
}

.slide-img {
  overflow: hidden;
  position: relative;
  margin: 0 auto;
  width: 100%;
  height: 85vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media all and (max-width: 1100px) {
  .slide-img {
    height: 60vw;
  }
}
@media all and (max-width: 896px) {
  .slide-img img {
    width: 60%;
  }
}
@media all and (max-width: 639px) {
  .slide-img {
    height: 70vh;
  }
  .slide-img img {
    width: 80%;
  }
}
.slide-img video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* slideshow
----------------------------------*/
#slide-bg {
  position: relative;
  padding: 0;
  width: 100%;
  margin: 100px auto 0;
  overflow: hidden;
}
@media all and (max-width: 1100px) {
  #slide-bg {
    width: calc(100% - 80px);
    padding: 0;
  }
}
@media all and (max-width: 639px) {
  #slide-bg {
    margin: 0 auto;
    width: calc(100% - 10px);
  }
}

#slideshow {
  position: relative;
  width: 100%;
  margin: 0 auto 0 0;
}
@media all and (max-width: 639px) {
  #slideshow {
    margin: 0 auto;
    width: 100%;
  }
}

#catch {
  z-index: 150;
  width: 60%;
  height: auto;
  position: absolute;
  left: 5%;
  top: 50%;
  transform: translateY(-50%);
}
#catch .catch_01, #catch .catch_02, #catch .catch_03, #catch .catch_04, #catch .catch_05 {
  opacity: 1;
}
#catch .catch_01.on, #catch .catch_02.on, #catch .catch_03.on, #catch .catch_04.on, #catch .catch_05.on {
  opacity: 1;
  transition: 2s;
}
#catch::before {
  content: "";
  width: 400px;
  height: 400px;
  background: url(../img/guru.png) no-repeat center/contain;
  z-index: -2;
  position: absolute;
  top: -15%;
  left: -15%;
  animation: spin 15s linear infinite;
}
@media all and (max-width: 896px) {
  #catch::before {
    width: 250px;
    height: 250px;
  }
}
@media all and (max-width: 639px) {
  #catch::before {
    top: -5%;
    left: -85px;
    width: 200px;
    height: 200px;
  }
}
#catch h2 {
  font-size: 6.1rem;
  line-height: 1.6;
  font-family: "Shippori Mincho B1", serif;
  font-weight: 600;
  color: #fefefe;
  text-shadow: 0 0 10px rgba(17, 17, 17, 0.8);
}
#catch h3 {
  color: #fefefe;
  text-shadow: 0 0 10px rgba(17, 17, 17, 0.8);
  font-size: 2.5rem;
  font-weight: 500;
  margin-top: 15px;
  line-height: 2.5;
}
@media all and (max-width: 1100px) {
  #catch h2 {
    font-size: 4.5rem;
  }
}
@media all and (max-width: 896px) {
  #catch h2 {
    font-size: 3.5rem;
  }
  #catch h3 {
    font-size: 1.3rem;
    line-height: 2;
  }
}
@media all and (max-width: 639px) {
  #catch {
    width: 95%;
    height: 90%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  #catch h2 {
    position: absolute;
    top: 0;
    left: auto;
    right: 0;
    text-align: left;
  }
  #catch h3 {
    font-size: 1.15rem;
    position: absolute;
    left: 0;
    bottom: 0;
    text-align: left;
  }
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
#scrolldown {
  position: absolute;
  right: 15px;
  bottom: 0px;
  color: #fefefe;
  font-family: "Playfair Display", serif;
  font-weight: 500;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-feature-settings: "pkna";
  font-size: 1.4rem;
  z-index: 100;
  height: 200px;
}
#scrolldown:before, #scrolldown:after {
  position: absolute;
  content: "";
  z-index: 2;
  left: 50%;
}
#scrolldown:before {
  width: 1px;
  height: 100px;
  bottom: 0;
  background: #fefefe;
  transform: translateX(-50%);
}
#scrolldown:after {
  width: 8px;
  height: 8px;
  background: rgba(254, 254, 254, 0.9);
  border-radius: 100%;
  top: 100px;
  margin-left: -4px;
  animation: scroll-point 2.3s ease-out infinite;
  animation-fill-mode: both;
}
@media all and (max-width: 896px) {
  #scrolldown {
    display: none;
  }
}

@keyframes scroll-point {
  0% {
    bottom: 0;
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  50% {
    top: 180px;
    opacity: 1;
  }
  80% {
    opacity: 0;
  }
  100% {
    top: 210px;
    opacity: 0;
  }
}
/* footer
----------------------------------*/
#l-footer {
  font-size: 1.4rem;
  position: relative;
  padding: 80px 20px 40px;
  background: #074770;
  color: #fefefe;
}
#l-footer .inner {
  margin: 0 auto;
  max-width: 1200px;
  position: relative;
  z-index: 3;
}
#l-footer .inner .contact-area {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
}
#l-footer .inner .contact-area > li {
  width: 31%;
}
@media all and (max-width: 1100px) {
  #l-footer .inner .contact-area > li {
    width: 40%;
  }
}
@media all and (max-width: 896px) {
  #l-footer .inner .contact-area > li {
    width: 45%;
  }
}
@media all and (max-width: 639px) {
  #l-footer .inner .contact-area > li {
    width: 90%;
    margin: 0 auto;
    margin-bottom: 30px;
  }
}
@media all and (max-width: 1100px) {
  #l-footer .inner {
    width: 100%;
  }
}
@media all and (max-width: 639px) {
  #l-footer {
    font-size: 1.2rem;
    background-size: contain;
    overflow: hidden;
    width: 100%;
    margin: 0 auto;
    padding: 50px 0 0;
  }
  #l-footer .inner {
    padding: 0;
  }
  #l-footer .inner .contact-area {
    flex-direction: column-reverse;
  }
}

/* contact_bnr
----------------------------------*/
.contact_bnr {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.contact_bnr.full {
  margin-top: 0;
  margin-bottom: 0;
}
.contact_bnr.full > li {
  width: 100%;
  margin: 0 auto 10px;
}
.contact_bnr > li {
  width: 48%;
  margin: 0 auto 15px;
}
@media all and (max-width: 896px) {
  .contact_bnr > li {
    width: 100%;
  }
}
.contact_bnr > li .bnr_tel {
  white-space: nowrap;
  position: relative;
  font-family: "Oswald", sans-serif;
  font-weight: 300;
  font-size: 2.8rem;
  line-height: 1.5;
}
.contact_bnr > li .bnr_tel:before {
  font-family: "Font Awesome 5 Free";
  content: "\f879";
  font-weight: 900;
  margin-right: 5px;
  font-size: 2rem;
}
@media all and (max-width: 896px) {
  .contact_bnr > li .bnr_tel {
    font-size: 2rem;
  }
}
.contact_bnr > li .bnr_sns {
  white-space: nowrap;
  position: relative;
  font-size: 2.8rem;
  line-height: 1.5;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.contact_bnr > li .bnr_sns i {
  font-size: 3.5rem;
  margin-right: 10px;
}
.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: #074770;
}
.contact_bnr > li .bnr_fax:before {
  font-family: "Font Awesome 5 Free";
  content: "\f1ac";
  font-weight: 900;
}
.contact_bnr > li .bnr_mail:before {
  font-family: "Font Awesome 5 Free";
  content: "\f0e0";
  font-weight: 900;
}
.contact_bnr > li .bnr_link:before {
  font-family: "Font Awesome 5 Free";
  content: "\f08e";
  font-weight: 900;
}
.contact_bnr > li a,
.contact_bnr > li span {
  display: block;
  border: 1px solid #fefefe;
  color: #fefefe;
  font-size: 2.5rem;
  font-weight: 500;
  text-align: center;
  letter-spacing: 0.2rem;
  padding: 8px 10px;
  border-radius: 8px;
}
.contact_bnr > li a:before,
.contact_bnr > li span:before {
  margin-right: 5px;
  position: relative;
  display: inline-block;
}
.contact_bnr > li a:hover,
.contact_bnr > li span:hover {
  background: #fefefe;
  color: #074770;
}
@media all and (max-width: 896px) {
  .contact_bnr > li a,
  .contact_bnr > li span {
    margin: 0 auto;
    white-space: nowrap;
    padding: 10px 0;
    width: 100%;
    font-size: 1.5rem;
  }
  .contact_bnr > li a:before,
  .contact_bnr > li span:before {
    font-size: 1.3rem;
    transform: translateY(-2px);
  }
}
.contact_bnr.white li {
  width: 48%;
}
@media all and (max-width: 639px) {
  .contact_bnr.white li {
    width: 100%;
  }
}
.contact_bnr.white li a, .contact_bnr.white li span {
  border: 1px solid #fefefe;
  color: #fefefe;
}
.contact_bnr.white li a:hover, .contact_bnr.white li span:hover {
  color: #074770;
  background: #fefefe;
}

/* footer_navi
----------------------------------*/
.footer_navi {
  flex-basis: 100%;
  margin: 30px auto 10px;
}
.footer_navi ul {
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.footer_navi ul li {
  margin-bottom: 8px;
}
.footer_navi ul li a {
  color: #1a1103;
  font-size: 1.2rem;
  position: relative;
  padding: 0 10px;
  font-weight: 600;
}
.footer_navi ul li a span {
  display: none;
}
.footer_navi ul li a:before {
  content: "";
  background-color: #1a1103;
  width: 1px;
  height: 15px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.footer_navi ul li a:hover {
  color: #074770;
}
.footer_navi ul li:first-child a::before {
  display: none;
}
.footer_navi ul li .dropdown {
  display: none;
}
.footer_navi ul li .dropdown .dropdon-li a {
  font-size: 1.2rem;
}

.address {
  font-size: 1.6rem;
  margin-top: 10px;
  text-align: right;
}
@media all and (max-width: 639px) {
  .address {
    text-align: center;
    font-size: 12px;
  }
}

.flogo {
  width: 260px;
  margin-right: 15px;
  margin-bottom: 10px;
}
.flogo img {
  width: 100%;
}
@media all and (max-width: 896px) {
  .flogo {
    width: 200px;
  }
}
@media all and (max-width: 639px) {
  .flogo {
    width: 80%;
    margin: 0 auto 10px;
  }
}

.flogo-area {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 5px;
}
.flogo-area p {
  font-size: 1.2rem;
}
@media all and (max-width: 896px) {
  .flogo-area {
    width: 280px;
    margin-bottom: 0;
  }
}
@media all and (max-width: 639px) {
  .flogo-area {
    width: 80%;
    margin: 0 auto;
  }
  .flogo-area p {
    text-align: center;
    margin: 0 auto;
  }
  .flogo-area .sns-list {
    margin: 0 auto;
  }
}

.copyright {
  font-size: 1rem;
  z-index: 2;
  color: #fefefe;
  position: relative;
  font-weight: 500;
  padding: 0;
}
@media all and (max-width: 896px) {
  .copyright {
    font-size: 12px;
    padding: 15px 0 0;
  }
}
@media all and (max-width: 639px) {
  .copyright {
    text-align: center;
    padding-bottom: 0;
  }
}

/* contents
----------------------------------*/
.single {
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 0;
  position: relative;
}
@media all and (max-width: 1100px) {
  .single {
    width: 85%;
    padding: 80px 0;
  }
}

.single01 {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 0 100px;
}
@media all and (max-width: 1100px) {
  .single01 {
    width: 95%;
    padding: 0 0 60px;
  }
}

.single02 {
  margin: 0 auto;
  padding: 80px 0;
  position: relative;
}
@media all and (max-width: 1100px) {
  .single02 {
    padding: 80px 10px;
  }
}

.single03 {
  max-width: 1500px;
  margin: 0 auto;
  padding: 80px 0;
  position: relative;
}

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

.margin-top2 {
  margin-top: -150px;
}
@media all and (max-width: 896px) {
  .margin-top2 {
    margin-top: -80px;
  }
}

.margin-bottom {
  margin-bottom: -80px;
}
@media all and (max-width: 896px) {
  .margin-bottom {
    margin-bottom: -40px;
  }
}

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

.lsingle {
  float: left;
}

.rsingle {
  float: right;
}

.mbox {
  background: #fefefe;
  color: #074770;
  padding: 35px 30px;
  position: relative;
  z-index: 3;
  max-width: 1200px;
  margin-right: auto;
  margin-left: auto;
}
.mbox.transparent {
  background: transparent;
  color: #fefefe;
}
@media all and (max-width: 639px) {
  .mbox {
    padding: 15px;
  }
}
.mbox.bd {
  position: relative;
  padding: 40px;
  border: 1px solid #074770;
}
@media all and (max-width: 639px) {
  .mbox.bd {
    padding: 40px 15px;
  }
}
.mbox.l-h20 {
  line-height: 2.3;
}
@media all and (max-width: 639px) {
  .mbox.l-h20 {
    line-height: 1.8;
  }
}
.mbox.l-h18 {
  line-height: 1.8;
}
@media all and (max-width: 639px) {
  .mbox.l-h18 {
    line-height: 1.6;
  }
}
.mbox.p-non {
  padding: 0;
}
@media all and (max-width: 639px) {
  .mbox.sp-non {
    padding: 0;
  }
}
.mbox.sd {
  box-shadow: 0.5rem 0.5rem 10px rgba(51, 51, 51, 0.1), -0.5rem -0.5rem 8px rgba(218, 218, 218, 0.1);
  border-radius: 8px;
}

.small-box {
  max-width: 960px;
  margin-right: auto;
  margin-left: auto;
}
.small-box.min {
  max-width: 800px;
}

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

.tcen {
  text-align: center;
}
@media all and (max-width: 639px) {
  .tcen {
    text-align: left;
  }
}

.trig {
  text-align: right;
}
@media all and (max-width: 896px) {
  .trig {
    text-align: left;
  }
}

.bg-grid {
  background: rgba(255, 255, 255, 0.9);
  /* border-top: 1px solid #555;
     border-bottom: 1px solid #555;*/
  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;
}

#main {
  float: left;
  width: 76%;
}
#main .mbox {
  min-height: 300px;
}
@media all and (max-width: 896px) {
  #main .mbox {
    min-height: initial;
  }
}
#main .mbox a {
  font-weight: 600;
  text-decoration: underline;
}
#main .mbox a:hover {
  text-decoration: none;
}
@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;
  }
}

.s-contena {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: calc(100% - 40px);
  margin: 0 auto;
  position: relative;
}
@media all and (max-width: 1100px) {
  .s-contena {
    max-width: 95%;
  }
}

.s-main {
  width: 78%;
}
@media all and (max-width: 1100px) {
  .s-main {
    width: 75%;
  }
}
@media all and (max-width: 896px) {
  .s-main {
    width: 100%;
  }
}

.s-side {
  width: 18%;
  min-height: 350px;
  position: sticky;
  right: 0;
  top: 100px;
}
@media all and (max-width: 1100px) {
  .s-side {
    width: 20%;
  }
}
@media all and (max-width: 896px) {
  .s-side {
    width: 100%;
    height: auto;
    min-height: auto;
    position: relative;
    top: 0;
    margin-bottom: 10px;
  }
}

/* mtitle
----------------------------------*/
.mtitle {
  font-weight: 500;
  margin: 0 auto 40px;
  text-align: center;
}
.mtitle.b-min {
  margin-bottom: 20px;
}
.mtitle.t-mgn {
  margin-top: 40px;
}
.mtitle .eng {
  font-size: 1.8rem;
  color: #074770;
  position: relative;
  display: block;
  font-family: "Playfair Display", serif;
  font-weight: 500;
}
.mtitle .ja {
  font-size: 3.6rem;
  color: #232323;
  font-weight: 600;
  font-family: "Shippori Mincho B1", serif;
  font-weight: 600;
}
.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.mtitle_left {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
}
.mtitle.mtitle_left span:after {
  left: 0;
  transform: none;
}
.mtitle.mtitle_right {
  text-align: right;
  margin-right: 0;
  margin-left: 0;
}
.mtitle.mtitle_right span:after {
  left: 0;
  transform: none;
}
@media all and (max-width: 639px) {
  .mtitle {
    text-align: center;
  }
  .mtitle .eng {
    font-size: 1.2rem;
    font-weight: 400;
  }
  .mtitle .ja {
    font-size: 1.8rem;
  }
}

.mtitle1 {
  position: relative;
  margin-bottom: 40px;
}
.mtitle1 .eng {
  font-size: 6rem;
  font-family: "Playfair Display", serif;
  font-weight: 500;
  color: #074770;
  margin-bottom: 40px;
}
@media all and (max-width: 896px) {
  .mtitle1 .eng {
    font-size: 4rem;
  }
}
@media all and (max-width: 639px) {
  .mtitle1 .eng {
    font-size: 3.2rem;
  }
}
.mtitle1 .ja {
  font-size: 2rem;
  font-family: "Shippori Mincho B1", serif;
  font-weight: 600;
  display: block;
}

.mtitle2 {
  font-size: 2rem;
  position: relative;
  font-weight: 600;
  position: relative;
  padding-left: 15px;
  margin-bottom: 20px;
  line-height: 1.2;
  font-family: "Shippori Mincho B1", serif;
  font-weight: 600;
}
.mtitle2 span {
  display: block;
  font-size: 1.2rem;
  color: #074770;
  font-weight: 600;
  font-family: "Noto Sans JP", "YakuHanJP", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
.mtitle2:before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 6px;
  height: 100%;
  background: linear-gradient(to top, #074770, #0A2647);
}
@media all and (max-width: 639px) {
  .mtitle2 {
    font-size: 1.6rem;
  }
  .mtitle2 span {
    font-size: 1.2rem;
  }
  .mtitle2 .viewbtn {
    font-size: 13px;
  }
}

.mtitle3 {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-feature-settings: "pkna";
  position: absolute;
  min-height: 100px;
  top: 40px;
  left: 30px;
}
.mtitle3 .ja {
  display: block;
  font-size: 3.1rem;
  border-right: 2px solid #fefefe;
  letter-spacing: 0.2em;
  padding-right: 5px;
  font-weight: 500;
  font-family: "Shippori Mincho B1", serif;
  font-weight: 600;
  color: #fefefe;
}
.mtitle3 .eng {
  display: block;
  font-family: "Playfair Display", serif;
  font-weight: 500;
  font-size: 2rem;
  color: #fefefe;
  padding-left: 3px;
}
@media all and (max-width: 896px) {
  .mtitle3 {
    left: 0px;
    top: 0px;
    min-height: auto;
    margin-bottom: 20px;
    writing-mode: inherit;
    position: relative;
    border-bottom: 2px solid #fefefe;
  }
  .mtitle3 .ja {
    border-right: none;
    padding-bottom: 15px;
  }
}
@media all and (max-width: 639px) {
  .mtitle3 .ja {
    font-size: 1.6rem;
  }
  .mtitle3 .eng {
    font-size: 1.3rem;
  }
}

.mtitle_line {
  font-size: 2.2rem;
  position: relative;
  font-weight: 600;
  margin-bottom: 30px;
  padding-top: 8px;
  padding-left: 8px;
  padding-bottom: 10px;
  color: #fefefe;
  letter-spacing: 0.2rem;
  font-family: "Shippori Mincho B1", serif;
  font-weight: 600;
}
.mtitle_line span {
  display: block;
  font-size: 1.4rem;
  color: #fefefe;
}
.mtitle_line:after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  content: "";
  opacity: 0.6;
  background-image: repeating-linear-gradient(-45deg, #fefefe, #fefefe 1px, transparent 1px, transparent 3px);
  background-size: 4px 4px;
  backface-visibility: hidden;
}
@media all and (max-width: 639px) {
  .mtitle_line {
    font-size: 1.4rem;
  }
  .mtitle_line span {
    font-size: 1.2rem;
  }
}

.mtitle4 {
  font-weight: normal;
  text-align: center;
  font-size: 2.6rem;
  line-height: 1.5;
  letter-spacing: 0.1rem;
  color: #074770;
}
.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: 5rem;
  background-color: #074770;
}
.mtitle4 span:before {
  left: -11px;
  transform: rotate(-20deg);
}
.mtitle4 span:after {
  right: -11px;
  transform: rotate(20deg);
}
.mtitle4.white span:before, .mtitle4.white span:after {
  background-color: #0A2647;
}
@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;
  }
}
.mtitle4.min {
  font-size: 2rem;
  font-weight: 600;
  color: #333;
}
.mtitle4.min span:before, .mtitle4.min span:after {
  width: 2px;
  height: 3rem;
}

.mtitle_sub {
  padding-left: 0.5em;
  font-weight: 600;
  position: relative;
  border-left: 6px solid #074770;
  margin: 8px 0 15px;
  font-size: 1.1em;
  line-height: 1.4;
  text-align: left;
}
.mtitle_sub .hissu {
  color: #fff;
  background: #0a65a0;
  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: #0A2647;
}

.mtitle_box {
  background: #063858;
  color: #fefefe;
  font-size: 2rem;
  position: relative;
  padding: 5px 10px;
  margin-bottom: 15px;
  font-weight: 500;
}
.mtitle_box span {
  font-weight: normal;
  font-size: 14px;
  padding-left: 10px;
}
@media all and (max-width: 639px) {
  .mtitle_box {
    font-size: 1.5rem;
  }
}

.mtext1 {
  font-size: 2.5rem;
  line-height: 1.6;
}
@media all and (max-width: 896px) {
  .mtext1 {
    font-size: 1.85rem;
  }
}

.mtext2 {
  font-size: 3rem;
  letter-spacing: 0.1rem;
  line-height: 1.6;
}
.mtext2 span {
  font-style: italic;
  padding: 5px 15px;
  border-bottom: 2px solid #1a1103;
  border-top: 2px solid #1a1103;
  color: #1a1103;
}
@media all and (max-width: 639px) {
  .mtext2 {
    font-size: 1.8rem;
    padding: 4px 8px;
  }
}

.mtext3 {
  font-size: 1.8rem;
  letter-spacing: 0.15em;
}
@media all and (max-width: 639px) {
  .mtext3 {
    font-size: 1.4rem;
  }
}

.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: #074770;
}

/* btn
----------------------------------*/
.btn01 a {
  text-align: center;
  width: 300px;
  margin: 15px auto;
  color: #074770;
  display: block;
  padding: 0px 5px;
  border: 1px solid #074770;
  border-radius: 5px;
  font-size: 2.5rem;
}
.btn01 a:hover {
  background: #074770;
  color: #fefefe;
}
.btn01.tel a {
  background: #fefefe;
}
.btn01.tel a:before {
  font-family: "Font Awesome 5 Free";
  content: "\f879";
  font-weight: 900;
  margin-right: 5px;
}
.btn01.tel a:hover {
  background: #074770;
  color: #fefefe;
}
.btn01.mail {
  flex-basis: 100%;
}
.btn01.mail a {
  background: #0A2647;
  margin: 15px auto 25px;
}
.btn01.mail a:before {
  font-family: "Font Awesome 5 Free";
  content: "\f0e0";
  font-weight: 900;
  margin-right: 5px;
}
.btn01.sub1 a {
  margin: 15px auto 25px 0;
}
.btn01.white a {
  border: 2px solid #fefefe;
  color: #fefefe;
  margin: 20px auto 20px;
}
.btn01.white a:hover {
  background: #fefefe;
  color: #074770;
}
.btn01.right a {
  margin-right: 0;
}
.btn01.left a {
  margin-left: 0;
}
@media all and (max-width: 639px) {
  .btn01 a {
    width: 95%;
    padding: 8px 5px;
    font-size: 1.7rem;
  }
}

.btn02 {
  width: 400px;
  margin: 20px auto 20px;
}
.btn02.right {
  margin-right: 0;
}
.btn02.left {
  margin-left: 0;
}
.btn02 a {
  display: block;
  position: relative;
  padding: 20px 0;
  background-color: #ffffff;
  border: 1px solid #074770;
  line-height: 24px;
  letter-spacing: 0.1rem;
  font-size: 1.7rem;
  text-align: center;
  color: #074770;
  font-weight: 600;
}
.btn02 a i {
  display: block;
  position: absolute;
  top: 50%;
  right: -10px;
  width: 50px;
  height: 1px;
  background-color: #074770;
  transition: all 0.3s ease;
}
.btn02 a:hover {
  background: #074770;
  color: #fefefe;
}
.btn02 a:hover i {
  width: 34px;
  background-color: #ffffff;
}
@media all and (max-width: 639px) {
  .btn02 {
    width: 80%;
  }
  .btn02 a {
    font-size: 1.4rem;
  }
}

/* news
----------------------------------*/
.news-bl {
  overflow: hidden;
}
.news-bl dt {
  float: left;
  width: 7em;
  padding: 5px;
  line-height: 1.3;
  color: #074770;
  font-family: "Oswald", sans-serif;
  font-weight: 300;
  font-size: 1.3rem;
}
@media all and (max-width: 639px) {
  .news-bl dt {
    font-size: 1.2rem;
  }
}
.news-bl dd {
  padding: 0 0 5px 8em;
  line-height: 1.6;
  margin: 0 0 5px;
}
.news-bl dd a {
  color: #333;
  background-image: linear-gradient(to right, #074770, #0A2647);
  padding-bottom: 0.25em;
  background-position: 100% 100%;
  background-size: 0% 1px;
  background-repeat: no-repeat;
  transition: background-size 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  font-weight: 500;
}
.news-bl dd a:hover {
  background-position: 0 100%;
  background-size: 100% 1px;
}
.news-bl dd:last-child {
  margin: 0;
  border-bottom: none;
}
.news-bl dd .cate {
  display: inline-block;
  padding: 3px 5px;
  font-size: 1rem;
  background: #074770;
  color: #fefefe;
  margin-right: 10px;
}
@media all and (max-width: 639px) {
  .news-bl dt {
    float: none;
  }
  .news-bl dd {
    padding: 8px 5px;
  }
}

.link-news {
  position: relative;
  display: flex;
  justify-content: flex-end;
  margin-top: 30px;
}
@media all and (max-width: 896px) {
  .link-news {
    margin-top: 20px;
  }
}
.link-news .link {
  display: flex;
  align-items: center;
  font-weight: 400;
  font-size: 16px;
  line-height: 1;
  color: #074770;
  padding-right: 30px;
  font-family: "Shippori Mincho B1", serif;
  font-weight: 600;
}
.link-news:before {
  position: absolute;
  content: "";
  width: 20px;
  height: 20px;
  border: 1px solid #074770;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.3s ease-in-out;
}
.link-news:after {
  position: absolute;
  content: "";
  width: 5px;
  height: 5px;
  top: 50%;
  right: 10px;
  border-top: 1px solid #074770;
  border-right: 1px solid #074770;
  transform: rotate(45deg) translateY(-50%);
  transition: 0.3s ease-in-out;
}
.link-news:hover:before {
  background: #074770;
}
.link-news:hover:after {
  border-color: #fefefe !important;
}

/* page-title
----------------------------------*/
.page-title {
  position: relative;
  z-index: 1;
  overflow: hidden;
  width: 100%;
  margin: 0 auto;
  background: #074770;
}
.page-title:before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100px;
  z-index: -1;
  background: url(../img/deco02.png) repeat-x center/contain;
}
.page-title.type1::before {
  background: url(../img/deco03.png) repeat-x center/contain;
}
.page-title.type2::before {
  background: url(../img/deco04.png) repeat-x center/contain;
}
.page-title.type3::before {
  background: url(../img/deco05.png) repeat-x center/contain;
}
.page-title.type4::before {
  background: url(../img/deco01.png) repeat-x center/contain;
}
.page-title .inner {
  margin: 0 auto;
  padding: 200px 0 170px;
  max-width: 1200px;
  overflow: hidden;
}
.page-title .inner .page-lead {
  color: #fff;
  font-size: 2.2rem;
  position: relative;
  text-align: center;
}
.page-title .inner .page-lead .ja {
  font-weight: 600;
  font-size: 3.5rem;
  font-family: "Shippori Mincho B1", serif;
  font-weight: 600;
}
.page-title .inner .page-lead .eng {
  display: block;
  font-family: "Playfair Display", serif;
  font-weight: 500;
  color: #fff;
}
@media all and (max-width: 639px) {
  .page-title .inner .page-lead .eng {
    font-size: 1rem;
  }
  .page-title .inner .page-lead .ja {
    font-size: 2rem;
  }
}
@media all and (max-width: 896px) {
  .page-title .inner {
    width: 95%;
    padding: 200px 0 80px;
  }
}
@media all and (max-width: 639px) {
  .page-title {
    background-position: 80% 50%;
  }
  .page-title .inner {
    width: 95%;
    padding: 150px 0 100px;
  }
}

/* bg
---------------------------------*/
.bg-base {
  background: rgba(216, 196, 182, 0.1);
  position: relative;
}
.bg-base.type1 {
  background-image: linear-gradient(to bottom, rgba(7, 71, 112, 0.5), rgba(216, 196, 182, 0.2));
}
.bg-base.type1:before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  background: url(../img/bg-fixed.webp) no-repeat bottom/cover;
  background-attachment: fixed;
  opacity: 0.8;
}
@media all and (max-width: 1100px) {
  .bg-base.type1:before {
    background-attachment: scroll;
  }
}
.bg-base.type1:after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #0A2647 url(../img/raster2.png) repeat;
  opacity: 0.3;
  z-index: -1;
}
.bg-base.type2 {
  background: transparent;
  color: #074770;
}
.bg-base.type2:before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to bottom left, #fefefe, #fff);
}
.bg-base.type3 {
  background: transparent;
}
.bg-base.type3:before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100px;
  background: url(../img/deco01.png) repeat-x center/contain;
}

/* tbl
----------------------------------*/
.tbl {
  width: 100%;
}
.tbl th,
.tbl td {
  padding: 5px;
  vertical-align: middle;
  border: 1px solid #b3b3b3;
  font-size: 1.2rem;
  text-align: center;
}
.tbl th {
  background: #c4c4c4;
}
@media all and (max-width: 639px) {
  .tbl th,
  .tbl td {
    padding: 5px;
    font-size: 1.1rem;
  }
}

.tbl_new {
  margin: 0 auto;
  width: 100%;
}
.tbl_new tr th,
.tbl_new tr td {
  vertical-align: middle;
  padding: 15px 10px;
}
.tbl_new tr th {
  font-weight: 600;
  width: 15%;
  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: #f0f0f0;
}

.tbl-border {
  width: 100%;
}
.tbl-border.color th, .tbl-border.color td {
  border-color: #074770;
}
.tbl-border th,
.tbl-border td {
  padding: 15px;
  border-bottom: 1px solid #fefefe;
  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: 25%;
  text-align: left;
  font-weight: 600;
  border-bottom-color: #fefefe;
}
.tbl-border th.th-1 {
  width: 45%;
}
@media all and (max-width: 639px) {
  .tbl-border th {
    width: 33%;
  }
}
.tbl-border td {
  word-break: break-all;
}
.tbl-border.type01 th, .tbl-border.type01 td {
  font-size: 1.4rem;
}
.tbl-border.type01 th {
  width: 35%;
}
@media all and (max-width: 639px) {
  .tbl-border.type01 th {
    width: 30%;
  }
}

.price {
  font-family: "Oswald", sans-serif;
  font-weight: 300;
  font-weight: 600;
  font-size: 2rem;
  color: #074770;
  text-align: right;
}
.price span {
  font-size: 1.5rem;
  font-family: "Noto Sans JP", "YakuHanJP", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
@media all and (max-width: 639px) {
  .price {
    font-size: 2rem;
  }
  .price span {
    font-size: 1.2rem;
  }
}

.p-tbl {
  width: 100%;
}
.p-tbl tr {
  border-bottom: 1px solid #b3b3b3;
}
.p-tbl tr:last-child {
  border-bottom: none;
}
.p-tbl th,
.p-tbl td {
  padding: 15px 10px;
  vertical-align: middle;
  text-align: center;
  border-right: 1px solid #b3b3b3;
}
.p-tbl th:last-child,
.p-tbl td:last-child {
  border-right: none;
}
.p-tbl td {
  font-family: "Oswald", sans-serif;
  font-weight: 300;
}
.p-tbl td.txt {
  font-family: "Noto Sans JP", "YakuHanJP", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  text-align: left;
  font-size: 13px;
  width: 40%;
  padding: 15px;
}
@media all and (max-width: 639px) {
  .p-tbl td.txt {
    font-size: 1rem;
    padding: 10px;
  }
}
@media all and (max-width: 639px) {
  .p-tbl th,
  .p-tbl td {
    padding: 10px 5px;
    font-size: 1rem;
  }
}

.company {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 5px;
}
.company th,
.company td {
  padding: 15px;
  vertical-align: middle;
}
.company th {
  width: 30%;
  position: relative;
  background: #074770;
  color: #fff;
  font-weight: 600;
}
.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: #074770;
  margin-top: -10px;
}
@media all and (max-width: 639px) {
  .company th {
    width: 40%;
  }
}
.company td {
  background: #f9f9f9;
  padding-left: 20px;
}

.tbl0 {
  width: 100%;
  margin-bottom: 30px;
}
.tbl0 th,
.tbl0 td {
  padding: 5px;
  border: 0;
  font-size: 1.3rem;
  border-bottom: 1px solid #555;
  color: #1a1103;
  vertical-align: middle;
}
@media all and (max-width: 639px) {
  .tbl0 th,
  .tbl0 td {
    font-size: 0.9rem;
  }
}
.tbl0 th {
  font-weight: normal;
  background: none;
  color: #333;
  font-weight: 600;
}
.tbl0 th:after, .tbl0 th:before {
  display: none;
}
.tbl0 th.nmb {
  font-family: "Oswald", sans-serif;
  font-weight: 300;
}
.tbl0.type1 th,
.tbl0.type1 td {
  font-size: 1.5rem;
  padding: 5px 10px;
  text-align: center;
  border: 1px solid #ccc;
}
@media all and (max-width: 639px) {
  .tbl0.type1 th,
  .tbl0.type1 td {
    padding: 3px 5px;
    font-size: 1.2rem;
  }
  .tbl0.type1 th:nth-child(1), .tbl0.type1 th:nth-child(2),
  .tbl0.type1 td:nth-child(1),
  .tbl0.type1 td:nth-child(2) {
    width: 10%;
  }
  .tbl0.type1 th:nth-child(3), .tbl0.type1 th:nth-child(4), .tbl0.type1 th:nth-child(5),
  .tbl0.type1 td:nth-child(3),
  .tbl0.type1 td:nth-child(4),
  .tbl0.type1 td:nth-child(5) {
    width: 20%;
  }
}
.tbl0.type1 th {
  background: rgba(7, 71, 112, 0.1);
}

.f-tbl {
  width: 100%;
}
.f-tbl th, .f-tbl td {
  padding: 5px 15px;
  font-size: 1.3rem;
  font-weight: 600;
}
@media all and (max-width: 896px) {
  .f-tbl th, .f-tbl td {
    padding: 5px 10px;
    font-size: 1.1rem;
  }
}
.f-tbl.ja th {
  font-family: "Shippori Mincho B1", serif;
  font-weight: 600;
}

.tbl_time {
  width: 100%;
  position: relative;
}
.tbl_time tr {
  position: relative;
  margin-bottom: 15px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: flex-start;
}
.tbl_time tr::after {
  content: "";
  position: absolute;
  width: 2px;
  height: 100%;
  bottom: -2rem;
  left: 10%;
  background: #074770;
  z-index: -1;
}
@media all and (max-width: 896px) {
  .tbl_time tr::after {
    left: 18%;
  }
}
.tbl_time tr:last-child {
  margin-bottom: 0;
}
.tbl_time tr:last-child::after {
  display: none;
}
.tbl_time th {
  border: 2px solid #074770;
  color: #074770;
  background: #fefefe;
  text-align: center;
  font-family: "Oswald", sans-serif;
  font-weight: 300;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.5rem;
  padding: 3px;
  display: block;
  position: relative;
  width: 20%;
  line-height: 1.5;
}
@media all and (max-width: 896px) {
  .tbl_time th {
    width: 35%;
  }
}
@media all and (max-width: 639px) {
  .tbl_time th {
    font-weight: 400;
    font-size: 1.4rem;
  }
}
.tbl_time td {
  width: 75%;
  padding: 3px;
  position: relative;
  display: block;
}
@media all and (max-width: 896px) {
  .tbl_time td {
    width: 60%;
  }
}

/* ggmap
----------------------------------*/
.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%;
}
.ggmap.footer {
  padding-bottom: 0;
  height: 350px;
  background: #074770;
}
.ggmap.footer iframe,
.ggmap.footer object,
.ggmap.footer embed {
  filter: grayscale(1);
}

.youtube {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  margin-bottom: 10px;
}
.youtube iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
}

/* list
----------------------------------*/
.list_check li {
  font-weight: 600;
}
.list_check li:before {
  font-family: "Font Awesome 5 Free";
  content: "\f00c";
  font-weight: 900;
  margin-right: 8px;
  color: #074770;
}

.list_dot li {
  position: relative;
  padding: 0 5px 0 2rem;
}
.list_dot li:before {
  content: "●";
  margin-right: 8px;
  color: #074770;
  font-weight: 600;
  position: absolute;
  top: 0.2rem;
  left: 0;
}

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

.list_disc li {
  padding: 5px 0;
}
.list_disc li:not(:last-of-type) {
  margin-bottom: 5px;
  border-bottom: 1px dashed #ccc;
}
.list_disc li:before {
  content: "●";
  margin-right: 5px;
  color: #0A2647;
}
.list_disc.type1 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 15px;
}
.list_disc.type1 li {
  width: 48%;
  font-size: 1.4rem;
  font-weight: 500;
  position: relative;
  padding: 0;
  padding-left: 1.4em;
}
.list_disc.type1 li b {
  color: #0A2647;
}
.list_disc.type1 li:not(:last-of-type) {
  margin-bottom: 5px;
  border-bottom: none;
}
.list_disc.type1 li:before {
  color: #0A2647;
  position: absolute;
  top: 0;
  left: 0;
}
@media all and (max-width: 639px) {
  .list_disc.type1 li {
    font-size: 1.2rem;
  }
}

.list-btn {
  display: flex;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 0 auto 50px;
}
.list-btn li {
  width: 31%;
  margin: 0 1.995% 10px 0;
}
.list-btn li a {
  display: block;
  color: #074770;
  font-weight: 600;
  padding: 10px 3px;
  text-align: center;
  width: 100%;
  height: 100%;
  line-height: 1.5;
  font-size: 1.55rem;
  letter-spacing: 0;
  border-radius: 8px;
  border: 1px solid #074770;
}
.list-btn li a:hover {
  background: #074770;
  color: #fefefe;
}
.list-btn li:nth-child(3n) {
  margin-right: 0;
}
@media all and (max-width: 896px) {
  .list-btn li {
    width: 98%;
    margin: 0 auto 10px;
  }
  .list-btn li:nth-child(3n) {
    margin: 0 auto 10px;
  }
}
@media all and (max-width: 639px) {
  .list-btn li {
    width: 100%;
  }
  .list-btn li a {
    font-size: 1.3rem;
  }
}
.list-btn.type1 {
  margin: 0 auto;
}
.list-btn.type1 li {
  width: 49%;
  margin: 0 1.995% 10px 0;
}
.list-btn.type1 li a {
  background: #074770;
  border: none;
  color: #fefefe;
  border-radius: 5px;
  font-size: 1.6rem;
  font-weight: 500;
}
.list-btn.type1 li a:hover {
  background: #02101a;
}
.list-btn.type1 li:nth-child(2n) {
  margin-right: 0;
}
@media all and (max-width: 1100px) {
  .list-btn.type1 li {
    margin: 0 auto 10px;
    width: 90%;
  }
  .list-btn.type1 li:nth-child(2n) {
    margin: 0 auto 10px;
  }
  .list-btn.type1 li:last-child {
    margin-bottom: 0;
  }
}
@media all and (max-width: 639px) {
  .list-btn.type1 li a {
    font-size: 1.4rem;
  }
}
.list-btn.type2 {
  margin: 0 auto;
}
.list-btn.type2 li {
  margin: 0 auto 10px;
  width: 90%;
}
.list-btn.type2 li a {
  background: #fefefe;
  border-color: #074770;
  color: #074770;
  border-radius: 5px;
  font-size: 1.6rem;
  font-weight: 500;
}
.list-btn.type2 li a span {
  font-size: 1.2rem;
  display: block;
}
.list-btn.type2 li a:hover {
  background: #074770;
  color: #fefefe;
}
.list-btn.type2 li:nth-child(2n) a {
  border-color: #0A2647;
  color: #0A2647;
}
.list-btn.type2 li:nth-child(2n) a:hover {
  background: #0A2647;
  color: #fefefe;
}
.list-btn.type2 li:last-child {
  margin-bottom: 0;
}
@media all and (max-width: 639px) {
  .list-btn.type2 li a {
    font-size: 1.4rem;
  }
}

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

#main .blog-wrap > li {
  width: 32%;
}
@media all and (max-width: 1100px) {
  #main .blog-wrap > li {
    width: 49%;
    margin: 0 0.5% 20px 0.5%;
  }
}
@media all and (max-width: 639px) {
  #main .blog-wrap > li {
    width: 90%;
    margin: 0 auto 10px;
  }
}

.blog-wrap {
  display: flex;
  flex-wrap: wrap;
}
.blog-wrap * {
  transition: 0.3s;
}
.blog-wrap > li {
  width: 24%;
  margin: 0 0.5% 20px 0.5%;
  padding: 15px;
  background: #fefefe;
  position: relative;
  border: 1px solid #ddd;
  color: #074770;
}
@media all and (max-width: 1100px) {
  .blog-wrap > li {
    width: 49%;
  }
}
.blog-wrap > li > a {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 10;
}
.blog-wrap > li > a:hover ~ .blog-img img {
  opacity: 1;
  transform: scale(1.2);
}
@media all and (max-width: 639px) {
  .blog-wrap > li {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 48%;
    margin: 0 auto 10px;
    border: none;
    border-bottom: none;
    padding: 15px 5px;
  }
}

.blog-wrap2 {
  display: flex;
  flex-wrap: wrap;
}
.blog-wrap2 * {
  transition: 0.3s;
}
.blog-wrap2 > li {
  width: 100%;
  margin: 0 0.5%;
  background: transparent;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  box-shadow: 0 0 5px #ddd;
  border: 1px solid rgba(221, 221, 221, 0.5);
  border-radius: 10px;
  align-items: center;
}
.blog-wrap2 > li:hover {
  box-shadow: 15px 15px 10px #ddd;
}
.blog-wrap2 > li > a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
}
.blog-wrap2 > li > a:hover ~ .blog-img img {
  opacity: 1;
  transform: scale(1.2);
}
@media all and (max-width: 639px) {
  .blog-wrap2 > li {
    width: 100%;
    margin: 0 auto;
  }
}
.blog-wrap2 .blog-detail {
  width: 55%;
  margin-top: -5px;
  padding: 15px;
}
@media all and (max-width: 639px) {
  .blog-wrap2 .blog-detail {
    width: 95%;
    padding: 15px 10px;
  }
}
.blog-wrap2 .blog-date {
  border: none;
  width: 100px;
  padding: 5px;
  line-height: 1.3;
  text-align: center;
  color: #fefefe;
  background: #074770;
  font-size: 10px;
  font-family: "Oswald", sans-serif;
  font-weight: 300;
  font-weight: 600;
  border-radius: 5px;
}
.blog-wrap2 .blog-title {
  font-weight: 600;
  line-height: 1.3;
  margin: 10px 0;
  font-size: 2rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  color: #1a1103;
  font-family: "Shippori Mincho B1", serif;
  font-weight: 600;
}
@media all and (max-width: 896px) {
  .blog-wrap2 .blog-title {
    font-size: 1.6rem;
  }
}
.blog-wrap2 .blog-txt {
  line-height: 1.5;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  padding: 0;
}
@media all and (max-width: 896px) {
  .blog-wrap2 .blog-txt {
    font-size: 12px;
  }
}
.blog-wrap2 .blog-img {
  width: 45%;
  height: 250px;
  overflow: hidden;
  box-sizing: border-box;
  border-radius: 10px 0 0 10px;
}
.blog-wrap2 .blog-img img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.4s ease;
  font-family: "object-fit: cover;";
  /*IE対策*/
}
.blog-wrap2 .blog-img:hover img {
  opacity: 1 !important;
  transform: scale(1.2);
}
@media all and (max-width: 896px) {
  .blog-wrap2 .blog-img {
    height: 180px;
  }
}
@media all and (max-width: 639px) {
  .blog-wrap2 .blog-img {
    width: 100%;
  }
}

.blog-img {
  width: 100%;
  height: 200px;
  overflow: hidden;
  box-sizing: border-box;
}
.blog-img img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.4s ease;
  font-family: "object-fit: cover;";
  /*IE対策*/
}
.blog-img:hover img {
  opacity: 1 !important;
  transform: scale(1.2);
}
@media all and (max-width: 639px) {
  .blog-img {
    width: 100%;
    height: 130px;
    margin-bottom: 10px;
  }
}

.blog-detail {
  margin-top: 10px;
}
@media all and (max-width: 639px) {
  .blog-detail {
    margin-top: 0;
    width: 100%;
  }
}

.blog-detail-upper {
  position: relative;
  z-index: 2;
  margin: -31px 0 0;
  color: #fff;
  font-size: 12px;
}

.blog-category {
  display: inline-block;
  padding: 5px;
  line-height: 1.3;
  text-align: center;
  background: #111;
}

.blog-page-detail {
  margin-bottom: 15px;
}

.blog-date {
  border: 1px solid #ccc;
  width: 100px;
  padding: 5px 0;
  line-height: 1.3;
  text-align: center;
  display: inline-block;
  color: #aaa;
  font-size: 12px;
}

.blog-date2 {
  color: #031928;
  font-size: 0.9em;
  margin-bottom: 5px;
  margin-right: 5px;
}
.blog-date2:before {
  font-family: "Font Awesome 5 Free";
  content: "\f017";
  font-weight: 900;
  margin-right: 5px;
}

.blog-title {
  font-weight: 600;
  line-height: 1.5;
  margin: 6px 0;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
@media all and (max-width: 639px) {
  .blog-title {
    margin-bottom: 8px;
  }
}

.blog-txt {
  line-height: 1.5;
  padding: 8px;
}
@media all and (max-width: 639px) {
  .blog-txt {
    font-size: 12px;
    padding: 8px 0;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    padding: 0;
  }
}

.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: #fff;
  padding: 4px 5px;
  font-size: 12px;
}

.category_nav {
  border: 1px solid #dddddd;
}
.category_nav li a {
  display: block;
  padding: 15px;
  border-bottom: 1px dotted #dddddd;
  background-color: #ffffff;
}
.category_nav li a:before {
  font-family: "Font Awesome 5 Free";
  content: "\f0a9";
  font-weight: 900;
  margin-right: 5px;
}
.category_nav li a:hover {
  background: #c4c4c4;
}
.category_nav li:last-child a {
  border-bottom: none;
}

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

.w300 {
  width: 300px;
}

.spbr {
  display: none;
}

.color1 {
  color: #074770;
}

.color2 {
  color: #0A2647;
}

.color3 {
  color: #D8C4B6;
}

.relative {
  position: relative;
  overflow: hidden;
}

.num {
  font-weight: 600;
}
.num a {
  color: #074770;
  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: #0A2647;
}

.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: 600;
  text-decoration: underline;
}
.txt-link:hover {
  text-decoration: none;
}

.telbnr {
  max-width: 500px;
  margin: 30px auto 30px;
}
.telbnr li {
  border: 3px solid #ccc;
  padding: 10px 10px;
  text-align: center;
  border-radius: 50px;
}
.telbnr li a {
  display: block;
  font-size: 2.4rem;
  font-weight: 600;
  color: #074770;
}
.telbnr li a:before {
  font-family: "Font Awesome 5 Free";
  content: "\f879";
  font-weight: 900;
  margin-right: 5px;
}
.telbnr li a:hover {
  color: #074770;
}
@media all and (max-width: 639px) {
  .telbnr {
    max-width: 90%;
  }
  .telbnr li {
    width: 100%;
    margin: 0 auto 30px;
  }
  .telbnr li:last-of-type {
    margin-left: auto;
  }
  .telbnr li a {
    font-size: 2rem;
  }
}

.telbnr-ttl {
  font-weight: 600;
  font-size: 1.6rem;
  color: #333;
  margin-top: -30px;
}
.telbnr-ttl span {
  background: #c4c4c4;
  padding: 0 20px;
}
@media all and (max-width: 639px) {
  .telbnr-ttl {
    font-size: 1.3rem;
  }
}

/* breadcrumb
----------------------------------*/
.breadcrumb {
  max-width: #fefefe;
  margin: 20px auto 20px;
  font-size: 1.2rem;
}
.breadcrumb li {
  display: inline;
  color: #fefefe;
}
.breadcrumb li a {
  color: #fefefe;
}
.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: 600;
}
.form dl dt span {
  color: #fff;
  background: #074770;
  padding: 5px 8px;
  margin-right: 5px;
  font-size: 11px;
  border-radius: 20px;
  position: relative;
  top: -2px;
}
.form dl dt span.nini {
  background: rgb(167, 167, 167);
}
.form dl dd {
  padding-left: 280px;
  padding-bottom: 20px;
  padding-top: 23px;
  line-height: 1.5;
  border-bottom: 1px dotted #cccccc;
  font-family: "Noto Sans JP", "YakuHanJP", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 1.6rem;
}
.form dl dd:last-child {
  border-bottom: none;
}
.form dl dd input {
  margin-top: -0.5rem;
}
@media all and (max-width: 639px) {
  .form dl dd {
    font-size: 1.3rem;
  }
}
.form .textarea,
.form textarea {
  border: 0;
  padding: 15px;
  width: 100%;
  border-radius: 0;
  background: #f0f0f0;
  font-family: "Noto Sans JP", "YakuHanJP", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
.form .textarea02 {
  width: 48.5%;
  margin-right: 3%;
}
.form .textarea02:last-child {
  margin-right: 0;
}
.form .textarea03 {
  width: 20%;
  margin-right: 1%;
  padding: 10px;
}
.form button {
  cursor: pointer;
  display: block;
  color: #fff;
  text-align: center;
  transition: all 0.2s ease-in-out 0s;
  border: 1px solid #074770;
  font-weight: 600;
  padding: 12px 5px;
  margin: 0 auto;
  width: 250px;
  background: #074770;
  border-radius: 25px;
}
.form button:hover {
  background: #fff;
  color: #074770;
}
.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: #074770;
}
.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: 2px;
  top: 4px;
  background-color: #074770;
  z-index: 1;
}
.form label.radio_text input[type=radio] {
  position: absolute;
  z-index: 2;
  width: 20px;
  height: 20px;
  left: -23px;
  top: 0px;
  margin: 0px;
  box-shadow: 20px -1px #fff;
}
.form label.radio_text input[type=radio]:checked {
  box-shadow: none;
}
.form label.radio_text input[type=radio]:focus {
  opacity: 0.2;
  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 #074770;
  border-bottom: 3px solid #074770;
  transform: rotate(45deg);
  z-index: 1;
}
.form label.checkbox_text input[type=checkbox] {
  position: absolute;
  left: -40px;
  width: 20px;
  height: 20px;
  display: block;
  box-shadow: 41px 0px #fff;
  z-index: 2;
  margin: 0px;
  padding: 0px;
}
.form label.checkbox_text input[type=checkbox]:checked {
  box-shadow: none;
}
.form label.checkbox_text input[type=checkbox]:checked:focus {
  box-shadow: 40px 0px #666;
  opacity: 0.1;
}
.form label.checkbox_text input[type=checkbox]:focus {
  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 {
    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 #0A2647;
  background: #fefefe;
  max-width: 700px;
  margin: 0 auto;
  border-radius: 20px;
}
@media all and (max-width: 639px) {
  .thanks {
    max-width: 90%;
    padding: 30px 20px;
  }
}

.shadow {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
}

.policy {
  padding: 30px;
  background: rgba(255, 255, 255, 0.8);
}

.mtitle_small {
  position: relative;
  font-size: 1.7rem;
  margin-bottom: 15px;
  color: #074770;
  font-weight: 600;
  padding: 0 0 5px 0;
  border-bottom: 1px solid #ccc;
}
.mtitle_small:before {
  content: "";
  width: 50px;
  height: 1px;
  background-color: #074770;
  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;
  font-weight: 600;
}
.mtitle_small2:before {
  content: "";
  background-color: #074770;
  width: 10px;
  height: 4px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

/*photoギャラリー
----------------------------*/
.gallery {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.gallery li {
  width: 18.5%;
  margin: 0 1.3333333333% 25px 0;
}
.gallery li:nth-child(5n) {
  margin-right: 0;
}
.gallery li a {
  background: rgba(196, 196, 196, 0.2);
  display: block;
  text-align: center;
  padding: 0px;
  height: 140px;
}
.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: 12px;
  text-align: center;
  line-height: 1.2;
  margin-top: 5px;
  letter-spacing: 0;
}
@media all and (max-width: 639px) {
  .gallery li {
    width: 31%;
    margin: 0 1% 20px;
  }
  .gallery li:nth-child(5n) {
    margin: 0 1% 20px;
  }
  .gallery li:nth-child(3n) {
    margin-right: 0;
  }
  .gallery li a {
    height: 100px;
  }
  .gallery li p {
    font-size: 12px;
  }
}
.gallery.col3 li {
  width: 31%;
  margin: 0 1% 60px;
}
.gallery.col3 li:nth-child(3n) {
  margin-right: 0;
}
.gallery.col3 li a {
  height: 120px;
  background: #fefefe;
}
.gallery.col3 li a img {
  -o-object-fit: contain;
     object-fit: contain;
  font-family: "object-fit: contain;";
}
.gallery.col3 li p {
  font-size: 12px;
  text-align: center;
  line-height: 1.2;
}
.gallery.col4 li {
  width: 23%;
  margin: 0 1% 20px;
}
.gallery.col4 li:nth-child(4n) {
  margin-right: 0;
}
.gallery.col4 li a {
  height: 250px;
  background: #fefefe;
}
.gallery.col4 li a img {
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
}
.gallery.col4 li p {
  text-align: left;
}
@media all and (max-width: 896px) {
  .gallery.col4 li a {
    height: 150px;
  }
}
@media all and (max-width: 639px) {
  .gallery.col4 li {
    width: 48%;
    margin: 0 1% 10px;
  }
  .gallery.col4 li:nth-child(4n) {
    margin: 0 1% 10px;
  }
  .gallery.col4 li:nth-child(2n) {
    margin-right: 0;
  }
  .gallery.col4 li a {
    height: 150px;
  }
}

.list2 {
  display: flex;
  flex-wrap: wrap;
  max-width: 1500px;
  margin-top: -50px;
  margin-left: auto;
  margin-right: auto;
}
@media all and (max-width: 639px) {
  .list2 {
    margin-top: -35px;
  }
}
.list2.ai-c {
  align-items: center;
}
.list2.w-t70 > li,
.list2.w-t70 .child {
  width: 48%;
  margin-top: 50px;
}
.list2.w-t70 > li:nth-child(2n),
.list2.w-t70 .child:nth-child(2n) {
  margin-left: 4%;
}
@media all and (max-width: 639px) {
  .list2.w-t70 > li:nth-child(2n),
  .list2.w-t70 .child:nth-child(2n) {
    margin-left: auto;
  }
}
.list2.w-t70 > li.od-1,
.list2.w-t70 .child.od-1 {
  order: 1;
  margin-left: 0;
}
@media all and (max-width: 639px) {
  .list2.w-t70 > li.od-1,
  .list2.w-t70 .child.od-1 {
    order: 2;
  }
}
.list2.w-t70 > li.od-2,
.list2.w-t70 .child.od-2 {
  order: 2;
  margin-left: 4%;
}
@media all and (max-width: 639px) {
  .list2.w-t70 > li.od-2,
  .list2.w-t70 .child.od-2 {
    margin: 25px auto 0;
    order: 1;
  }
}
.list2.w-t70 > li .img,
.list2.w-t70 .child .img {
  height: 320px;
}
.list2.w-t70 > li .img img,
.list2.w-t70 .child .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
}
@media all and (max-width: 639px) {
  .list2.w-t70 > li .img,
  .list2.w-t70 .child .img {
    height: 300px;
  }
}
@media all and (max-width: 896px) {
  .list2.w-t70 > li,
  .list2.w-t70 .child {
    width: 45%;
  }
  .list2.w-t70 > li:nth-child(2n),
  .list2.w-t70 .child:nth-child(2n) {
    width: 50%;
  }
}
@media all and (max-width: 639px) {
  .list2.w-t70 > li,
  .list2.w-t70 .child {
    width: 100%;
    margin: 35px auto 0;
  }
  .list2.w-t70 > li:nth-child(2n),
  .list2.w-t70 .child:nth-child(2n) {
    width: 100%;
  }
}
.list2 > li,
.list2 .child {
  width: 48%;
  margin-top: 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;
  }
}
.list2 > li.od-1,
.list2 .child.od-1 {
  order: 1;
  margin-left: 0;
}
@media all and (max-width: 639px) {
  .list2 > li.od-1,
  .list2 .child.od-1 {
    order: 2;
  }
}
.list2 > li.od-2,
.list2 .child.od-2 {
  order: 2;
  margin-left: 4%;
}
@media all and (max-width: 639px) {
  .list2 > li.od-2,
  .list2 .child.od-2 {
    margin: 25px auto 0;
    order: 1;
  }
}
@media all and (max-width: 639px) {
  .list2 > li,
  .list2 .child {
    width: 100%;
    margin: 35px auto 0;
  }
}

.list3 {
  display: flex;
  flex-wrap: wrap;
}
.list3.jc-c {
  justify-content: center;
}
.list3.ai-c {
  align-items: 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: 896px) {
  .list3 > li {
    width: 48%;
  }
  .list3 > li:nth-child(2n) {
    margin-right: 0;
  }
  .list3 > li:nth-child(3n) {
    margin-right: 3.495%;
  }
}
@media all and (max-width: 639px) {
  .list3 > li {
    width: 95%;
    margin: 0 auto 20px;
  }
  .list3 > li:nth-child(3n) {
    margin-right: auto;
  }
  .list3 > li:nth-child(2n) {
    margin-right: auto;
  }
}

.list4 {
  display: flex;
  flex-wrap: wrap;
}
.list4 > li, .list4 .child {
  width: 24%;
  margin: 0 1.3333333333% 25px 0;
}
.list4 > li:nth-child(4n), .list4 .child:nth-child(4n) {
  margin-right: 0;
}

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

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

.flow-dl .flow-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 20px;
}
.flow-dl .flow-inner:not(:last-of-type) {
  margin-bottom: 10px;
  border-bottom: solid 1px #074770;
}
.flow-dl .flow-inner dt {
  width: 10%;
  text-align: center;
  font-family: "Oswald", sans-serif;
  font-weight: 300;
  font-size: 3rem;
  color: #074770;
  line-height: 1.3;
}
.flow-dl .flow-inner dt .eng {
  font-size: 1.1rem;
  color: #074770;
  display: block;
}
.flow-dl .flow-inner dt .eng::after {
  content: ".";
}
.flow-dl .flow-inner dd {
  width: 87%;
  border-left: 1px solid #074770;
  padding-left: 20px;
}
@media all and (max-width: 639px) {
  .flow-dl .flow-inner {
    padding: 6px;
  }
  .flow-dl .flow-inner dt {
    width: 20%;
    font-size: 1.7rem;
  }
  .flow-dl .flow-inner dt .eng {
    font-size: 1.25rem;
  }
  .flow-dl .flow-inner dd {
    width: 77%;
  }
}

.flow-dl2 {
  position: relative;
}
.flow-dl2::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  background: #fefefe;
  background: linear-gradient(to bottom, #fefefe 80%, transparent 100%);
  height: 100%;
  width: 1px;
}
@media all and (max-width: 639px) {
  .flow-dl2::after {
    left: 35%;
    width: 1px;
  }
}
.flow-dl2 dl {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
  margin-top: 100px;
  width: 100%;
}
.flow-dl2 dl:first-child {
  margin-top: 10px;
}
@media all and (max-width: 639px) {
  .flow-dl2 dl {
    margin-top: 50px;
  }
}
.flow-dl2 dl dt {
  width: 45%;
  position: relative;
}
.flow-dl2 dl dt::after {
  content: "";
  position: absolute;
  top: 10px;
  right: -5px;
  background: #fefefe;
  border: 2px solid #074770;
  height: 10px;
  width: 10px;
  border-radius: 100%;
}
.flow-dl2 dl dt .img-box {
  margin: 0 auto;
  width: 100%;
  height: 300px;
  background: #074770;
  border: 1px solid #fefefe;
}
.flow-dl2 dl dt .img-box img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  font-family: "object-fit: contain;";
}
.flow-dl2 dl dt img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  font-family: "object-fit: contain;";
}
@media all and (max-width: 639px) {
  .flow-dl2 dl dt {
    width: 30%;
  }
  .flow-dl2 dl dt .img-box {
    height: 80px;
  }
}
.flow-dl2 dl dd {
  width: 45%;
  position: relative;
  padding-top: 25px;
}
.flow-dl2 dl dd::after {
  content: "";
  position: absolute;
  top: 15px;
  left: -25%;
  background: #fefefe;
  height: 1px;
  width: 30%;
  z-index: -1;
}
@media all and (max-width: 639px) {
  .flow-dl2 dl dd {
    padding-top: 0;
    padding-left: 10px;
    width: 60%;
    letter-spacing: 0;
  }
  .flow-dl2 dl dd::after {
    width: 25%;
  }
  .flow-dl2 dl dd > .contact_bnr li a {
    font-size: 1.3rem;
  }
}
.flow-dl2 dl dt:not(:last-of-type),
.flow-dl2 dl dd:not(:last-of-type) {
  margin-bottom: 30px;
}
.flow-dl2 dl:nth-child(2n) dt {
  order: 2;
}
.flow-dl2 dl:nth-child(2n) dt::after {
  right: auto;
  left: -5px;
}
.flow-dl2 dl:nth-child(2n) dd {
  order: -1;
}
.flow-dl2 dl:nth-child(2n) dd::after {
  left: auto;
  right: -25%;
}
@media all and (max-width: 639px) {
  .flow-dl2 dl:nth-child(2n) dt {
    order: 1;
  }
  .flow-dl2 dl:nth-child(2n) dt::after {
    right: -5px;
    left: auto;
  }
  .flow-dl2 dl:nth-child(2n) dt .img-box {
    height: 80px;
  }
  .flow-dl2 dl:nth-child(2n) dd {
    order: 2;
  }
  .flow-dl2 dl:nth-child(2n) dd::after {
    left: -25%;
    right: auto;
  }
}

.blog-month {
  margin-bottom: 10px;
}
.blog-month ul {
  display: flex;
  flex-wrap: wrap;
}
.blog-month ul li {
  width: 49%;
  padding: 5px 0;
  margin-bottom: 5px;
  text-align: center;
  letter-spacing: 0;
  background: #074770;
}
.blog-month ul li:nth-child(2n) {
  margin-left: 2%;
}
.blog-month ul li a {
  color: #fff;
  font-size: 12px;
}
.blog-month ul li:hover {
  background: #042940;
  transition: all 0.4s ease;
}

#a01,
#a02,
#a03,
#a04,
#a05,
#a06,
#a07,
#a08 {
  display: block;
  padding-top: 100px;
  margin-top: -100px;
}

.list-center {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.list-center li {
  width: 50%;
}
@media all and (max-width: 639px) {
  .list-center {
    flex-direction: column;
  }
  .list-center li {
    width: 100%;
  }
}

.faq-dl .faq-inner {
  position: relative;
}
.faq-dl .faq-inner:not(:last-of-type) {
  border-bottom: 2px dashed #e7e7e7;
}
.faq-dl .faq-inner::before {
  content: "";
  position: absolute;
  top: calc(1.8rem + 20px);
  left: 0;
  width: 0;
  height: 10px;
  background-image: linear-gradient(to right, #074770, #D8C4B6);
  opacity: 0.5;
}
.faq-dl .faq-inner:hover::before {
  width: 100%;
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.faq-dl .faq-inner dt,
.faq-dl .faq-inner dd {
  position: relative;
  font-size: 1.6rem;
}
@media all and (max-width: 639px) {
  .faq-dl .faq-inner dt,
  .faq-dl .faq-inner dd {
    font-size: 1.3rem;
  }
}
.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.5rem;
  font-family: "Playfair Display", serif;
  font-weight: 500;
}
.faq-dl .faq-inner dt {
  font-weight: 600;
  padding: 20px 10px;
  padding-left: 55px;
  margin: 5px auto;
  cursor: pointer;
}
@media all and (max-width: 639px) {
  .faq-dl .faq-inner dt {
    padding-left: 45px;
  }
}
.faq-dl .faq-inner dt:before {
  content: "Q.";
  color: #1a1103;
  font-size: 3rem;
}
@media all and (max-width: 639px) {
  .faq-dl .faq-inner dt:before {
    font-size: 2rem;
  }
}
.faq-dl .faq-inner dd {
  display: none;
  margin-top: 10px;
  padding: 20px 10px 40px;
  padding-left: 55px;
}
.faq-dl .faq-inner dd:before {
  content: "A.";
  color: #074770;
  font-size: 3rem;
}
@media all and (max-width: 639px) {
  .faq-dl .faq-inner dd:before {
    font-size: 2rem;
  }
}

.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: flex;
}
.sns-list.center {
  justify-content: center;
  margin: 15px 0;
}
.sns-list.big li a {
  width: 50px;
  height: 50px;
  font-size: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.sns-list li a {
  width: 30px;
  height: 30px;
  line-height: 30px;
  font-size: 17px;
  color: #fefefe;
  display: block;
  background: #333;
  border-radius: 100%;
  text-align: center;
  transition: all 0.2s ease-in;
  position: relative;
}
.sns-list li a:hover {
  opacity: 0.7;
}
.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-instagram {
  overflow: hidden;
  background: linear-gradient(135deg, #427eff 0%, #f13f79 70%) no-repeat;
}
.sns-list li a.btn-instagram i {
  position: relative;
  z-index: 2;
}
.sns-list li a.btn-instagram:before {
  content: "";
  position: absolute;
  /*絶対配置*/
  top: 18px;
  /*ずらす*/
  left: -10px;
  /*ずらす*/
  width: 50px;
  /*グラデーションカバーの幅*/
  height: 50px;
  /*グラデーションカバーの高さ*/
  background: radial-gradient(#ffdb2c 10%, rgba(255, 105, 34, 0.65) 55%, rgba(255, 88, 96, 0) 70%);
  /*グラデーション②*/
}
.sns-list li:not(:last-child) {
  margin-right: 10px;
}
@media all and (max-width: 896px) {
  .sns-list li:not(:last-child) {
    margin-right: 5px;
    margin-bottom: 0;
  }
}

/* slide_list
----------------------------------*/
.slide_list {
  position: relative;
  display: none;
}
.slide_list li {
  margin-right: 1%;
  width: 350px;
}
.slide_list li img {
  width: 100%;
  height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
}
.slide_list li table, .slide_list li p {
  display: none;
}
@media all and (max-width: 639px) {
  .slide_list li img {
    height: 180px;
  }
}

.bnr-img img:hover {
  opacity: 0.5;
  transform: scale(0.98);
  transition: all 0.3s ease;
}

/* accordion
----------------------------------*/
.accordion dt, .accordion dd {
  position: relative;
  padding: 1em;
  z-index: 20;
}
.accordion dt {
  background: #074770;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1.2em;
  font-weight: 600;
  color: #fefefe;
}
.accordion dt:after {
  position: absolute;
  font-family: "Font Awesome 5 Free";
  content: "\f067";
  font-weight: 900;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.7rem;
}
.accordion dt:hover {
  background: #031928;
  transition: all 0.3s ease;
}
.accordion dt.on:after {
  font-family: "Font Awesome 5 Free";
  content: "\f068";
  font-weight: 900;
}
.accordion dd {
  display: none;
  padding: 20px;
  background: #fff;
  color: #333;
}

.h-img {
  width: 250px;
  height: 300px;
  overflow: hidden;
}
.h-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
}
@media all and (max-width: 896px) {
  .h-img {
    width: 100%;
    height: 300px;
  }
}
.h-img.min {
  height: 110px;
  width: 110px;
  border-radius: 300px;
}
@media all and (max-width: 639px) {
  .h-img.min {
    width: 100%;
    height: 200px;
  }
}

.btn_wk2 a {
  text-align: center;
  position: relative;
  color: #fff;
  background: transparent;
  border: 1px solid #fff;
  padding: 10px;
  max-width: 200px;
  width: 80%;
  font-size: 90%;
  margin-top: 30px;
  margin-bottom: 6px;
  margin-left: auto;
  margin-right: auto;
  display: table;
  transition: all 0.3s ease-in-out;
  line-height: 1.4;
}
.btn_wk2 a span {
  font-family: "Playfair Display", serif;
  font-weight: 500;
  letter-spacing: 0.4em;
}
.btn_wk2 a:before, .btn_wk2 a:after {
  content: "";
  position: absolute;
  border: solid #fff;
  width: 10px;
  height: 10px;
  transition: all 0.3s ease-in-out;
}
.btn_wk2 a:before {
  top: -6px;
  left: -6px;
  border-width: 1px 0 0 1px;
}
.btn_wk2 a:after {
  bottom: -6px;
  right: -6px;
  border-width: 0 1px 1px 0;
}
.btn_wk2 a:hover {
  color: #074770;
  background: #fff;
  border-color: transparent;
}
.btn_wk2 a:hover:before, .btn_wk2 a:hover:after {
  width: calc(100% + 11px);
  height: calc(100% + 11px);
  border-color: #fff;
}
.btn_wk2.btn-r a {
  margin-right: 5px;
}
.btn_wk2.base a {
  color: #074770;
  border: 1px solid #074770;
}
.btn_wk2.base a:before, .btn_wk2.base a:after {
  border: solid #074770;
}
.btn_wk2.base a:before {
  top: -6px;
  left: -6px;
  border-width: 1px 0 0 1px;
}
.btn_wk2.base a:after {
  bottom: -6px;
  right: -6px;
  border-width: 0 1px 1px 0;
}
.btn_wk2.base a:hover {
  color: #fff;
  background: #074770;
  border-color: transparent;
}
.btn_wk2.base a:hover:before, .btn_wk2.base a:hover:after {
  border-color: #074770;
}
.btn_wk2.right a {
  margin-right: 0;
}
.btn_wk2.left a {
  margin-left: 0;
}

.menu-list {
  width: 100%;
  margin: auto;
}
.menu-list > li {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  padding: 5px 0;
}
.menu-list > li:not(:last-child) {
  margin-bottom: 15px;
}
.menu-list > li p {
  display: inline-block;
  line-height: 1.5;
}
.menu-list > li:before {
  background: radial-gradient(#1a1103 20%, transparent 0) center center/8px 8px;
  content: "";
  display: inline-block;
  flex: 1;
  height: 4px;
  margin: 0 1.2em;
}
@media all and (max-width: 639px) {
  .menu-list > li:not(:last-child) {
    margin-bottom: 15px;
  }
  .menu-list > li:before {
    margin: 0 5px;
  }
}
.menu-list > li .info {
  flex-basis: 100%;
  font-size: 95%;
  color: #1a1103;
  margin-top: 5px;
  padding: 5px 10px;
}
.menu-list > li .info.capt {
  margin-top: 10px;
  background: #fefefe;
}
.menu-list > li .left {
  order: -1;
  max-width: 65%;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: #1a1103;
  font-size: 1.5rem;
  position: relative;
}
.menu-list > li .left .small {
  display: block;
  font-size: 1.2rem;
}
.menu-list > li .left .small::before {
  content: "[";
  padding-right: 3px;
}
.menu-list > li .left .small::after {
  content: "]";
  padding-left: 3px;
}
.menu-list > li .left:after {
  content: ".";
  display: inline-block;
  width: 0;
  color: transparent;
  pointer-events: none;
}
@media all and (max-width: 639px) {
  .menu-list > li .left {
    max-width: 50%;
    font-size: 1.3rem;
  }
  .menu-list > li .left .small {
    font-size: 1rem;
  }
}
.menu-list > li .right {
  max-width: 35%;
  text-align: right;
  font-family: "Oswald", sans-serif;
  font-weight: 300;
  font-size: 1.8rem;
}

.tab_area {
  width: 98%;
  margin: 0 auto;
  flex-wrap: wrap;
  display: flex;
  justify-content: space-between;
}
.tab_area > .content_class {
  padding: 40px 0;
  border-top: 2px solid #074770;
}
@media all and (max-width: 639px) {
  .tab_area > .content_class {
    padding: 25px 0;
  }
}

.tab_class {
  width: calc(50% - 10px);
  height: 50px;
  background-color: #fefefe;
  border: 2px solid #074770;
  color: #074770;
  font-weight: 600;
  border-bottom: none;
  line-height: 50px;
  margin: 0 5px;
  font-size: 2rem;
  border-radius: 5px 5px 0 0;
  text-align: center;
  display: block;
  float: left;
  order: -1;
}
@media all and (max-width: 896px) {
  .tab_class {
    font-size: 1.3rem;
  }
}

input[name=tab_name] {
  display: none;
}

input:checked + .tab_class {
  background-color: #074770;
  color: #fefefe;
}

.content_class {
  display: none;
  width: 100%;
}

input:checked + .tab_class + .content_class {
  display: block;
}

.feaure-bnr {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
@media all and (max-width: 896px) {
  .feaure-bnr {
    max-width: 80%;
    margin-bottom: -40px;
  }
}
@media all and (max-width: 639px) {
  .feaure-bnr {
    max-width: 95%;
  }
}
.feaure-bnr > ul > li {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  position: relative;
  width: 100%;
  padding: 0 10px 100px;
}
.feaure-bnr > ul > li:last-child {
  padding-bottom: 50px;
}
@media all and (max-width: 639px) {
  .feaure-bnr > ul > li {
    width: 100%;
    padding: 55px 10px;
  }
}
.feaure-bnr > ul > li .img-area {
  width: 60%;
  height: 400px;
  overflow: hidden;
  background: #c4c4c4;
  border-radius: 10px;
}
.feaure-bnr > ul > li .img-area img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
}
@media all and (max-width: 1100px) {
  .feaure-bnr > ul > li .img-area {
    width: 55%;
  }
}
@media all and (max-width: 896px) {
  .feaure-bnr > ul > li .img-area {
    width: 100%;
    height: 250px;
  }
}
.feaure-bnr > ul > li .text {
  width: 35%;
}
.feaure-bnr > ul > li .text h4 {
  font-size: 2rem;
  margin-bottom: 35px;
  font-family: "Shippori Mincho B1", serif;
  font-weight: 600;
  color: #074770;
}
@media all and (max-width: 896px) {
  .feaure-bnr > ul > li .text h4 {
    font-size: 1.8rem;
    margin-bottom: 20px;
  }
}
@media all and (max-width: 1100px) {
  .feaure-bnr > ul > li .text {
    width: 40%;
  }
}
@media all and (max-width: 896px) {
  .feaure-bnr > ul > li .text {
    width: 100%;
    margin-top: 40px;
    padding: 0 10px;
  }
}
.feaure-bnr > ul > li .btn a {
  position: relative;
  display: flex;
  justify-content: end;
  margin: 0 auto;
  margin-top: 65px;
  width: 114px;
}
@media all and (max-width: 896px) {
  .feaure-bnr > ul > li .btn a {
    margin-top: 50px;
    margin-bottom: 30px;
  }
}
.feaure-bnr > ul > li .btn a .link {
  display: flex;
  align-items: center;
  font-size: 2rem;
  line-height: 1;
  color: #074770;
  padding-right: 60px;
  font-family: "Playfair Display", serif;
  font-weight: 500;
}
@media all and (max-width: 896px) {
  .feaure-bnr > ul > li .btn a .link {
    padding-right: 50px;
  }
}
.feaure-bnr > ul > li .btn a:before {
  position: absolute;
  content: "";
  width: 45px;
  height: 45px;
  border: 1px solid #074770;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.3s ease-in-out;
}
@media all and (max-width: 896px) {
  .feaure-bnr > ul > li .btn a:before {
    width: 40px;
    height: 40px;
  }
}
.feaure-bnr > ul > li .btn a:after {
  position: absolute;
  content: "";
  width: 10px;
  height: 10px;
  top: 50%;
  right: 25px;
  border-top: 1px solid #074770;
  border-right: 1px solid #074770;
  transform: rotate(45deg) translateY(-50%);
  transition: 0.3s ease-in-out;
}
@media all and (max-width: 896px) {
  .feaure-bnr > ul > li .btn a:after {
    right: 20px;
  }
}
.feaure-bnr > ul > li .btn a:hover {
  transition: all 0.3s ease;
}
.feaure-bnr > ul > li .btn a:hover:before {
  background: #074770;
}
.feaure-bnr > ul > li .btn a:hover:after {
  border-color: #fefefe !important;
}
.feaure-bnr > ul > li:nth-child(2n) .img-area {
  order: 2;
}
@media all and (max-width: 896px) {
  .feaure-bnr > ul > li:nth-child(2n) .img-area {
    order: 1;
  }
}
.feaure-bnr > ul > li:nth-child(2n) .text {
  order: -1;
}
@media all and (max-width: 896px) {
  .feaure-bnr > ul > li:nth-child(2n) .text {
    order: 2;
  }
}

/* slide_list
----------------------------------*/
.slide_left, .slide_right {
  position: relative;
  display: none;
}
.slide_left li, .slide_right li {
  position: relative;
  margin-right: 2%;
  margin-bottom: 2%;
  width: 250px;
  height: 250px;
  /*
  &::after{
  	content: "";
  	background-image: linear-gradient(to right top, $base_color, $sub_color, $sub_color2);
  	opacity: .2;
  	z-index: -2;
  	width: 100%;
  	height: 100%;
  	position: absolute;
  	bottom: -5px;
  	right: -5px;
  }*/
}
.slide_left li img, .slide_right li img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
}
.slide_left li p, .slide_right li p {
  display: none;
}
@media all and (max-width: 896px) {
  .slide_left li, .slide_right li {
    width: 200px;
    height: 200px;
  }
}

.clipboard {
  max-width: 100%;
  margin: 0 auto;
  position: relative;
  border: 2px solid #f7f3e8;
  border-radius: 20px;
  background: #faf7f0;
  padding: 30px;
}
.clipboard::after {
  content: "";
  background: url(../img/clip.png) no-repeat center/contain;
  width: 220px;
  height: 80px;
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
}
@media all and (max-width: 639px) {
  .clipboard {
    padding: 30px 15px;
  }
}
.clipboard .inner {
  background: #fefefe;
  padding: 40px;
}
@media all and (max-width: 639px) {
  .clipboard .inner {
    padding: 40px 15px;
  }
}

.ringbinder {
  max-width: 100%;
  margin: 0 auto;
  position: relative;
  border: 2px solid #f7f3e8;
  border-radius: 20px;
  background: #faf7f0;
  padding: 30px;
}
@media all and (max-width: 639px) {
  .ringbinder {
    padding: 30px 15px;
  }
}
.ringbinder .inner {
  background: #fefefe;
  padding: 40px;
  position: relative;
}
.ringbinder .inner::after {
  content: "";
  background: url(../img/ring.png) repeat-y 50% 17px/contain;
  width: 22px;
  height: calc(100% - 17px);
  position: absolute;
  top: 50%;
  left: -5px;
  transform: translateY(-50%);
}
@media all and (max-width: 639px) {
  .ringbinder .inner {
    padding: 40px 5px 40px 30px;
  }
}

.note_line {
  background-color: #fff;
  background-image: linear-gradient(90deg, rgba(216, 196, 182, 0) 0%, rgba(216, 196, 182, 0) 50%, #fff 0%, #fff 100%), linear-gradient(360deg, rgba(216, 196, 182, 0) 0%, rgba(216, 196, 182, 0) 95%, #D8C4B6 100%);
  background-size: 8px 100%, 100% 2.5em;
  line-height: 2.5em;
  padding: 0 0 0.5em;
}

.top-greet-area {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 200px 0 0;
}
.top-greet-area::after {
  content: "";
  width: 80%;
  height: 75%;
  background: #074770;
  z-index: -1;
  position: absolute;
  bottom: 0;
  right: 0;
}
@media all and (max-width: 639px) {
  .top-greet-area::after {
    height: 90%;
    width: 100%;
  }
}
.top-greet-area .swip-area {
  width: 25%;
}
.top-greet-area .swip-area .slide-img {
  height: 550px;
  overflow: hidden;
}
.top-greet-area .swip-area .slide-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
}
.top-greet-area .main-area {
  width: 70%;
}
.top-greet-area .main-area .img {
  width: 100%;
  height: 400px;
  overflow: hidden;
  margin-bottom: 50px;
}
.top-greet-area .main-area .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
}
@media all and (max-width: 1100px) {
  .top-greet-area .main-area .img {
    height: 250px;
  }
}
.top-greet-area .main-area .greet {
  font-size: 1.5rem;
  width: 88%;
  margin: 0 auto 50px 0;
  color: #fefefe;
}
.top-greet-area .main-area .greet h3 {
  color: #fefefe;
  font-size: 2.5rem;
  margin-bottom: 20px;
}
@media all and (max-width: 896px) {
  .top-greet-area {
    padding-top: 150px;
  }
}
@media all and (max-width: 639px) {
  .top-greet-area {
    padding: 80px 0 10px;
  }
  .top-greet-area .swip-area {
    width: 100%;
    margin-bottom: 20px;
  }
  .top-greet-area .swip-area .slide-img {
    height: 250px;
  }
  .top-greet-area .main-area {
    width: 100%;
    order: -1;
  }
  .top-greet-area .main-area .greet {
    width: 95%;
    margin: 0 auto 50px;
    line-height: 1.8;
    font-size: 1.4rem;
  }
  .top-greet-area .main-area .greet h3 {
    font-size: 1.8rem;
    text-align: center;
  }
}

.news-area {
  position: relative;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 90%;
  margin: 0 auto;
}
@media all and (max-width: 639px) {
  .news-area {
    margin: 0 auto;
  }
}
.news-area .right {
  width: 70%;
  overflow: hidden;
}
@media all and (max-width: 639px) {
  .news-area .right {
    width: 100%;
  }
}
.news-area .left {
  width: 28%;
  line-height: 2.6;
}
@media all and (max-width: 639px) {
  .news-area .left {
    width: 100%;
  }
}
.news-area .title {
  color: #fefefe;
  font-family: "Playfair Display", serif;
  font-weight: 500;
  font-size: 3.5rem;
  letter-spacing: 0;
}

.news-common {
  overflow: visible !important;
  display: flex;
  position: relative;
  padding-bottom: 60px !important;
  transform: translateX(20px);
}
.news-common .swiper-slide {
  overflow: hidden;
  width: 30rem;
  border-radius: 0;
  background: #fff;
  display: block;
  height: auto;
  box-shadow: 0.6rem 0.6rem 1rem rgba(10, 38, 71, 0.05), -0.6rem -0.6rem 1rem rgba(10, 38, 71, 0.05);
  border: 1px solid #ebebeb;
  margin-right: 20px;
}
.news-common .swiper-slide:last-child {
  margin-right: 0;
}
@media all and (max-width: 639px) {
  .news-common .swiper-slide {
    width: 20rem;
  }
}
.news-common .swiper-controller {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  position: absolute;
  left: -20px;
  bottom: -20px;
}
.news-common .swiper-button-prev,
.news-common .swiper-button-next {
  display: grid;
  place-content: center;
  width: 4rem !important;
  height: 4rem !important;
  cursor: pointer;
  transition: 0.8s cubic-bezier(0.2, 1, 0.2, 1);
}
.news-common .swiper-button-prev {
  margin-right: 40px !important;
}
.news-common .swiper-button-prev::before,
.news-common .swiper-button-next::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: "";
  border-radius: 50%;
  background: rgba(7, 71, 112, 0.5);
}
.news-common .swiper-button-prev::after,
.news-common .swiper-button-next::after {
  width: 1.2rem;
  height: 1.2rem;
  content: "";
  border: solid #fff;
  border-width: 2px 2px 0 0;
}
.news-common .swiper-button-prev::after {
  margin-left: 0.4rem;
  transform: rotate(-135deg);
}
.news-common .swiper-button-next::after {
  margin-right: 0.4rem;
  transform: rotate(45deg);
}
.news-common .swiper-button-disabled {
  pointer-events: none;
  opacity: 0;
}
.news-common .swiper-button-prev,
.news-common .swiper-button-next {
  position: relative;
  flex-shrink: 0;
  margin: 0;
}
.news-common .swiper-button-disabled {
  pointer-events: none;
  opacity: 0.5;
  /*
  &::before {
   box-shadow: inset 0.6rem 0.6rem 1rem rgba($brown, 0.05), inset -0.6rem -0.6rem 1rem $body;
  }*/
}
.news-common .swiper-button-prev,
.news-common .swiper-container-rtl .swiper-button-next {
  left: 10px !important;
  right: auto;
  background: transparent;
}
.news-common .swiper-button-next,
.news-common .swiper-container-rtl .swiper-button-prev {
  right: 10px !important;
  left: auto;
  background: transparent;
}

.topics-card {
  height: 100%;
  display: block;
  position: relative;
}
.topics-card:before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 0px;
  height: 3px;
  background-image: linear-gradient(to right, #074770, #D8C4B6, #0A2647);
  transition: 0.3s all cubic-bezier(0.26, 0.06, 0, 1);
  opacity: 0.6;
}
.topics-card:hover:before {
  width: 100%;
}
.topics-card figure {
  padding-top: 65%;
  position: relative;
}
.topics-card figure img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
}
.topics-card .content {
  position: relative;
  padding: 20px 15px;
  color: #1a1103;
}
.topics-card .content .topics-title {
  font-weight: 600;
  font-size: 2rem;
  color: #074770;
  line-height: 1.5;
  margin-bottom: 10px;
  letter-spacing: 0;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
@media all and (max-width: 639px) {
  .topics-card .content .topics-title {
    font-size: 1.4rem;
  }
}
.topics-card .content .info {
  font-size: 1.75rem;
  line-height: 1.5;
}
@media all and (max-width: 639px) {
  .topics-card .content .info {
    font-size: 1.3rem;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
  }
}
.topics-card .content .day {
  font-size: 1.2rem;
  text-align: right;
  margin-top: 10px;
}

.btn-more {
  margin-top: -20px;
  margin-right: 40px;
  padding-bottom: 30px;
}
.btn-more a {
  display: block;
  width: 12em;
  text-align: center;
  font-family: "Oswald", sans-serif;
  font-weight: 300;
  font-size: 2rem;
  color: #fefefe;
  padding: 8px 10px;
  background: #074770;
  border-radius: 40px;
  margin-left: auto;
  transition: 0.3s all cubic-bezier(0.26, 0.06, 0, 1);
}
.btn-more a:after {
  font-family: "Font Awesome 5 Free";
  content: "\f061";
  font-weight: 900;
  margin-left: 4px;
}
.btn-more a:hover {
  background: #0A2647;
}
@media all and (max-width: 639px) {
  .btn-more {
    margin-top: -25px;
    margin-right: 10px;
  }
  .btn-more a {
    font-size: 13px;
  }
}

.top-news {
  position: relative;
}
.top-news .pages {
  display: none;
}

/* 4-6 じわっ（ぼかしから出現） */
.blur {
  animation-name: blurAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
}

@keyframes blurAnime {
  from {
    filter: blur(10px);
    transform: scale(1.02);
    opacity: 0;
  }
  to {
    filter: blur(0);
    transform: scale(1);
    opacity: 1;
  }
}
/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.blurTrigger {
  opacity: 0;
}

.bnr-top-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.bnr-top-list li {
  width: 33.3333333333%;
  position: relative;
  background: #074770;
}
@media all and (max-width: 639px) {
  .bnr-top-list li {
    width: 100%;
    margin-bottom: 15px;
  }
  .bnr-top-list li:last-child {
    margin-bottom: 0;
  }
}
.bnr-top-list li .bnr-img-area {
  width: 100%;
  height: 550px;
}
.bnr-top-list li .bnr-img-area img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
  opacity: 0.3;
}
@media all and (max-width: 896px) {
  .bnr-top-list li .bnr-img-area {
    height: 300px;
  }
}
.bnr-top-list li .text-area {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 70%;
}
@media all and (max-width: 639px) {
  .bnr-top-list li .text-area {
    width: 98%;
  }
}
.bnr-top-list li .text-area h3 {
  font-size: 3rem;
  font-family: "Shippori Mincho B1", serif;
  font-weight: 600;
  line-height: 1.2;
  color: #fefefe;
  text-shadow: 0 0 10px rgba(51, 51, 51, 0.5);
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}
.bnr-top-list li .text-area h3 span {
  display: block;
  font-size: 1.8rem;
  font-family: "Playfair Display", serif;
  font-weight: 500;
}
.bnr-top-list li .text-area h3 br {
  display: none;
}
@media all and (max-width: 1100px) {
  .bnr-top-list li .text-area h3 {
    line-height: 1.8;
  }
  .bnr-top-list li .text-area h3 br {
    display: block;
  }
}
@media all and (max-width: 896px) {
  .bnr-top-list li .text-area h3 {
    font-size: 1.8rem;
  }
}
@media all and (max-width: 639px) {
  .bnr-top-list li .text-area h3 br {
    display: none;
  }
}
.bnr-top-list li .text-area .nmb {
  font-size: 6rem;
  font-family: "Oswald", sans-serif;
  font-weight: 300;
  text-align: center;
  color: #fefefe;
  position: absolute;
  text-shadow: 0 0 10px rgba(51, 51, 51, 0.5);
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
.bnr-top-list li .text-area .btn {
  border-bottom: 2px solid #fefefe;
  border-top: 2px solid #fefefe;
  text-shadow: 0 0 10px rgba(51, 51, 51, 0.5);
  color: #fefefe;
  padding: 10px 0px;
  margin: 0 auto;
  width: 200px;
  font-size: 2.3rem;
  text-align: center;
  font-family: "Shippori Mincho B1", serif;
  font-weight: 600;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
@media all and (max-width: 639px) {
  .bnr-top-list li .text-area .btn {
    font-size: 1.3rem;
  }
}
.bnr-top-list li:hover .bnr-img-area img {
  transition: ease-in-out 0.3s all;
  opacity: 0.53;
}
.bnr-top-list li:hover .btn {
  transition: ease 0.3s all;
  width: 180px;
}

.s-product {
  position: relative;
  overflow: visible;
  width: 800px;
  margin: 0 auto;
}
@media all and (max-width: 896px) {
  .s-product {
    width: 500px;
  }
}
@media all and (max-width: 639px) {
  .s-product {
    width: 98%;
    margin: 0 auto !important;
  }
}
.s-product > .swiper-wrapper .swiper-slide {
  position: relative;
  width: 900px;
  background: #fefefe;
  padding: 20px 40px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.s-product > .swiper-wrapper .swiper-slide:not(.swiper-slide-visible) {
  pointer-events: none;
  opacity: 0.3;
  transition: ease 0.3s all;
}
@media all and (max-width: 896px) {
  .s-product > .swiper-wrapper .swiper-slide {
    width: 500px;
    padding: 10px 20px;
  }
}
@media all and (max-width: 639px) {
  .s-product > .swiper-wrapper .swiper-slide {
    width: 100%;
    padding: 20px 10px;
  }
}
.s-product > .swiper-wrapper .swiper-slide .img-area {
  width: 53%;
  height: 350px;
}
.s-product > .swiper-wrapper .swiper-slide .img-area img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  font-family: "object-fit: contain;";
}
@media all and (max-width: 896px) {
  .s-product > .swiper-wrapper .swiper-slide .img-area {
    height: 250px;
    width: 55%;
  }
}
@media all and (max-width: 639px) {
  .s-product > .swiper-wrapper .swiper-slide .img-area {
    width: 100%;
    height: 200px;
    margin-bottom: 15px;
  }
}
.s-product > .swiper-wrapper .swiper-slide .txt-area {
  width: 43%;
  font-size: 1.7rem;
}
.s-product > .swiper-wrapper .swiper-slide .txt-area h3 {
  font-size: 3rem;
  font-family: "Shippori Mincho B1", serif;
  font-weight: 600;
  margin-bottom: 15px;
  color: #074770;
}
@media all and (max-width: 896px) {
  .s-product > .swiper-wrapper .swiper-slide .txt-area {
    width: 40%;
    font-size: 1.2rem;
  }
  .s-product > .swiper-wrapper .swiper-slide .txt-area h3 {
    font-size: 1.6rem;
  }
}
@media all and (max-width: 639px) {
  .s-product > .swiper-wrapper .swiper-slide .txt-area {
    width: 100%;
    padding: 15px;
  }
}
.s-product .swiper-button-prev, .s-product .swiper-button-next {
  display: grid;
  place-content: center;
  width: 6.4rem;
  height: 6.4rem;
  cursor: pointer;
  transition: 0.8s cubic-bezier(0.2, 1, 0.2, 1);
  position: absolute;
  z-index: 1;
  top: 0;
  bottom: 0;
  margin: auto;
}
@media all and (max-width: 896px) {
  .s-product .swiper-button-prev, .s-product .swiper-button-next {
    width: 3.2rem;
    height: 3.2rem;
  }
}
@media all and (max-width: 639px) {
  .s-product .swiper-button-prev, .s-product .swiper-button-next {
    width: 2.1rem;
    height: 2.1rem;
  }
}
.s-product .swiper-button-prev::before, .s-product .swiper-button-next::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: "";
  background-color: transparent;
  border-radius: 50%;
}
.s-product .swiper-button-prev::after, .s-product .swiper-button-next::after {
  width: 3.2rem;
  height: 3.2rem;
  content: "";
  border: solid #edeeed;
  border-width: 3px 3px 0 0;
  border-color: #074770;
}
@media all and (max-width: 896px) {
  .s-product .swiper-button-prev::after, .s-product .swiper-button-next::after {
    border-width: 1.5px 1.5px 0 0;
    width: 2.5rem;
    height: 2.5rem;
  }
}
.s-product .swiper-button-prev::after {
  margin-left: 0.4rem;
  transform: rotate(-135deg);
}
.s-product .swiper-button-next::after {
  margin-right: 0.4rem;
  transform: rotate(45deg);
}
.s-product .swiper-button-disabled {
  pointer-events: none;
  opacity: 0;
}
.s-product .swiper-button-prev {
  left: -15%;
}
.s-product .swiper-button-next {
  right: -15%;
}
@media all and (max-width: 1100px) {
  .s-product .swiper-button-prev {
    left: -5%;
  }
  .s-product .swiper-button-next {
    right: -5%;
  }
}
@media all and (max-width: 639px) {
  .s-product .swiper-button-prev {
    left: 0;
  }
  .s-product .swiper-button-next {
    right: 0;
  }
}

.recruit-area {
  background: #D8C4B6;
}
@media all and (max-width: 896px) {
  .recruit-area {
    padding: 50px 0;
  }
}
.recruit-area .inner {
  width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
@media all and (max-width: 1100px) {
  .recruit-area .inner {
    width: 95%;
  }
}
@media all and (max-width: 896px) {
  .recruit-area .inner {
    width: 75%;
  }
}
@media all and (max-width: 639px) {
  .recruit-area .inner {
    width: 95%;
  }
}
.recruit-area .inner .img {
  width: 45%;
  height: 450px;
  -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%);
}
.recruit-area .inner .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
}
@media all and (max-width: 896px) {
  .recruit-area .inner .img {
    width: 70%;
    height: 300px;
    margin: 0 auto 50px;
  }
}
@media all and (max-width: 639px) {
  .recruit-area .inner .img {
    width: 100%;
  }
}
.recruit-area .inner .txt {
  order: -1;
  width: 50%;
  text-align: center;
}
.recruit-area .inner .txt h3 {
  color: #fefefe;
  font-size: 2.1rem;
  font-weight: 600;
  margin-bottom: 15px;
}
.recruit-area .inner .txt p {
  color: #fefefe;
  line-height: 2.1;
}
@media all and (max-width: 896px) {
  .recruit-area .inner .txt {
    order: 1;
    width: 80%;
    margin: 0 auto;
  }
}
@media all and (max-width: 639px) {
  .recruit-area .inner .txt {
    width: 100%;
  }
  .recruit-area .inner .txt h3 {
    font-size: 1.8rem;
    letter-spacing: 0;
  }
}

.icon-box li {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 100px;
}
.icon-box li:last-child {
  margin-bottom: 0;
}
.icon-box .icon-area {
  width: 250px;
  height: 250px;
  background: #fefefe;
  border-radius: 50%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.icon-box .icon-area .inner {
  display: block;
}
.icon-box .icon-area .inner h3 {
  color: #074770;
  text-align: center;
  margin-top: 10px;
  font-size: 2.5rem;
}
@media all and (max-width: 639px) {
  .icon-box .icon-area .inner h3 {
    font-size: 1.8rem;
  }
}
.icon-box .icon-area .inner .ico-img {
  display: block;
  width: 100px;
  height: 100px;
  overflow: hidden;
}
.icon-box .icon-area .inner .ico-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  font-size: "object-fit: contain;";
}
@media all and (max-width: 896px) {
  .icon-box .icon-area {
    width: 200px;
    height: 200px;
  }
}
@media all and (max-width: 639px) {
  .icon-box .icon-area {
    margin: 0 auto 30px;
  }
}
.icon-box .txt {
  width: calc(100% - 300px);
  display: block;
}
@media all and (max-width: 896px) {
  .icon-box .txt {
    width: calc(100% - 250px);
  }
}
@media all and (max-width: 639px) {
  .icon-box .txt {
    width: 100%;
  }
}