@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP&display=swap");
/* bootstrap.css基本の打消し（同じclass名での書き換え）
---------------------------------------------------- */
* {
  margin: 0px;
  padding: 0px;
}

html {
  font-size: 62.5%;
}

body {
  color: #333;
  margin: 0px;
  font-family: "Noto Serif JP", "游明朝", "游明朝体", "Yu Mincho", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  line-height: 2.4em;
  letter-spacing: 0.15em;
  overflow-x: hidden;
  font-size: 1.4rem;
}

h1 {
  margin: 0px;
  padding: 0px;
  font-weight: normal;
  font-size: 100%;
}

h2 {
  margin: 0px;
  padding: 0px;
  font-weight: normal;
  font-size: 100%;
}

h3 {
  margin: 0px;
  padding: 0px;
  font-weight: normal;
  font-size: 100%;
}

h4 {
  margin: 0px;
  padding: 0px;
  font-weight: normal;
  font-size: 100%;
}

h5 {
  margin: 0px;
  padding: 0px;
  font-weight: normal;
  font-size: 100%;
}

h6 {
  margin: 0px;
  padding: 0px;
  font-weight: normal;
  font-size: 100%;
}

p {
  padding: 0px;
  margin: 0px;
}

img {
  border: 0px;
  max-width: 100%;
  vertical-align: top;
  height: auto;
}

dl {
  padding: 0;
  margin: 0;
}

ul {
  padding: 0;
  margin: 0;
}

ol {
  padding: 0;
  margin: 0;
}

li {
  list-style-type: none;
}

a {
  color: #333;
  text-decoration: underline;
}
a:hover {
  color: #333;
  text-decoration: none;
}

/*-------------------------------------------------------------------------------------------*
 *
 *  header
 *  
 *-------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------*
 *
 * navigation
 *  
 *-------------------------------------------------------------------------------------------*/
.mainWrap {
  width: 100%;
  margin-left: auto;
  padding-left: 0px;
}
@media (min-width: 1200px) {
  .mainWrap {
    padding-left: 19.871vw;
  }
}
@media (min-width: 1560px) {
  .mainWrap {
    padding-left: 310px;
  }
}

/* 
	mainMenu
 *--------------------------------------------*/
#mainMenu {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 310px;
  height: 100vh;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  z-index: 9999;
  min-height: 640px;
}
@media (min-width: 1200px) {
  #mainMenu {
    display: flex;
    width: 19.871vw;
  }
}
@media (min-width: 1560px) {
  #mainMenu {
    width: 310px;
  }
}

#logo {
  margin-top: 60px;
}
#logo img {
  width: 173px;
  height: auto;
}

#mainMenu-List {
  font-size: 12px;
  margin-bottom: 15px;
  width: 152px;
}
#mainMenu-List li {
  text-align: center;
  margin-bottom: 8px;
}
#mainMenu-List li.active a {
  text-decoration: underline;
}
#mainMenu-List li a {
  display: block;
  text-decoration: none;
}
#mainMenu-List li a:hover {
  text-decoration: underline;
}
#mainMenu-List li:last-child {
  margin-top: 30px;
}
#mainMenu-List li:last-child a {
  background: #443835;
  color: #fff;
  padding: 7px;
}
#mainMenu-List li:last-child a:hover {
  text-decoration: none;
  background: #664c45;
}

/* 
	spMenu
 *--------------------------------------------*/
#spMenu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 60px;
  position: fixed;
  top: 0px;
  z-index: 1000;
  padding: 5px 15px;
  background: rgba(255, 255, 255, 0.3);
}
@media (min-width: 1200px) {
  #spMenu {
    display: none;
  }
}

#sp-logo {
  width: 200px;
}

/* --- hambergerMenu --- */
#hambergerMenu {
  position: fixed;
  top: 5px;
  right: 15px;
  width: 30px;
  height: 50px;
  transform: translate3d(0, 0, 0);
  z-index: 1003;
  display: block;
}
@media (min-width: 1200px) {
  #hambergerMenu {
    display: none;
  }
}

#menuButton {
  overflow: hidden;
  display: block;
  position: absolute;
  z-index: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}
#menuButton span, #menuButton:before, #menuButton:after {
  display: block;
  position: absolute;
  top: -10px;
  bottom: 0;
  left: 0;
  right: 0;
  width: 30px;
  height: 1px;
  margin: auto;
  background: #000;
}
#menuButton span {
  overflow: hidden;
  z-index: 1;
  color: #000;
}
#menuButton:before {
  z-index: 2;
  transform: translate(0, -9px);
  content: "";
}
#menuButton:after {
  z-index: 2;
  transform: translate(0, 9px);
  content: "";
}
#menuButton small {
  position: absolute;
  left: 0;
  bottom: 5px;
  width: 100%;
  color: #000;
  font-size: 0.9rem;
  line-height: 1.2;
  letter-spacing: normal;
  text-align: center;
  display: block;
}

/* アニメーション */
#menuButton span {
  opacity: 1;
  transition: opacity 150ms 50ms;
}
#menuButton::before, #menuButton::after {
  transition: transform 200ms;
}
.side-open #menuButton span {
  opacity: 0;
  transition: opacity 150ms;
}
.side-open #menuButton::before {
  transform: rotate(45deg);
}
.side-open #menuButton::after {
  transform: rotate(-45deg);
}

/* 
	draweMenu
 *--------------------------------------------*/
#sidebar {
  position: fixed;
  top: 0;
  bottom: 0;
  right: -280px;
  width: 280px;
  text-align: left;
  background-color: #fff;
  transition: transform 0.5s ease;
  overflow-y: auto;
  z-index: 1002;
  padding: 40px 0px 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  background: #fff url(../images/bg01-07.jpg) no-repeat right bottom;
  background-size: 100%, auto;
}
.side-open #sidebar {
  transform: translate3d(-100%, 0, 0);
}
#sidebar ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
#sidebar a {
  text-decoration: none;
}
#sidebar .list-sidenav {
  width: 100%;
  padding: 30px 20px;
}
#sidebar .list-sidenav > li {
  text-align: center;
  margin-bottom: 5px;
}
#sidebar .list-sidenav > li > a {
  color: #333;
  line-height: 1.5;
  position: relative;
  justify-content: space-between;
  align-items: center;
}
#sidebar .list-sidenav > li.active > a,
#sidebar .list-sidenav > li > a:hover {
  border-bottom: solid 1px #9b4b38;
}
#sidebar .list-sidenav > li:last-child a {
  display: block;
  padding: 4px 0px;
  background: #664c45;
  color: #fff;
  border-bottom: solid 1px #664c45;
}

body.side-open {
  /*IE(Internet Explorer)・Microsoft Edgeへの対応*/
  -ms-overflow-style: none;
  /*Firefoxへの対応*/
  scrollbar-width: none;
}
body.side-open::-webkit-scrollbar {
  display: none;
}

#side-Logo {
  width: 173px;
  height: auto;
}

#side-tel {
  text-align: center;
}
#side-tel dd:nth-child(2) {
  font-size: 2.4rem;
}
#side-tel dd:nth-child(3) span {
  font-size: 0.9rem;
}

/* --- overlay --- */
.overlay {
  content: "";
  visibility: hidden;
  position: fixed;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0);
  transition: all 0.5s ease;
  z-index: 1001;
}
.side-open .overlay {
  visibility: visible;
  cursor: pointer;
  background: rgba(0, 0, 0, 0.7);
}

/*-------------------------------------------------------------------------------------------*
 *
 * footer
 *  
 *-------------------------------------------------------------------------------------------*/
.contactClumb {
  padding: 100px 15px;
  background: url(../images/bg01-04.jpg);
}
@media (min-width: 768px) {
  .contactClumb {
    padding: 100px 30px;
  }
}

.contact-Tel {
  font-size: 8.33vw;
}
.contact-Tel .en {
  font-size: 6.25vw;
}
@media (min-width: 576px) {
  .contact-Tel {
    font-size: 4.8rem;
  }
  .contact-Tel .en {
    font-size: 3.6rem;
  }
}

.contactBtn {
  border: solid 1px #b7b7b7;
  font-size: 2.4rem;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 415px;
  height: 60px;
  text-decoration: none;
}
.contactBtn:before {
  content: url(../images/icon_mail.png);
  margin-right: 10px;
}
.contactBtn:hover {
  background: rgba(102, 76, 69, 0.1);
}

.footerClumb {
  background: #4d4746;
  color: #fff;
  padding: 60px 15px;
}
@media (min-width: 768px) {
  .footerClumb {
    padding: 60px 30px;
  }
}

#textLink {
  display: inline-flex;
  flex-wrap: wrap;
  width: 240px;
  font-size: 1.2rem;
  line-height: 2em;
}
#textLink li {
  width: 50%;
  text-align: left;
}
#textLink li a {
  color: #fff;
  text-decoration: none;
}

/*-------------------------------------------------------------------------------------------*
 *
 * index.html
 *  
 *-------------------------------------------------------------------------------------------*/
.bg_slider {
  width: 100%;
  padding-bottom: 30px;
  background: url(../images/bg01-01.jpg) no-repeat left bottom;
}

#sliderWrap {
  position: relative;
  margin-top: 60px;
}
@media (min-width: 1200px) {
  #sliderWrap {
    margin-top: 0px;
  }
}

#catch {
  position: absolute;
  top: 60px;
  left: 50%;
  transform: translate(-50%, 0);
  z-index: 100;
  width: 30vw;
  height: auto;
}
@media (min-width: 576px) {
  #catch {
    width: 154px;
  }
}
@media (min-width: 768px) {
  #catch {
    width: 154px;
  }
}

.slider {
  margin-inline: auto;
  overflow: hidden; /* 画像がはみ出ないようにする */
}

.slick-img {
  height: 110vw;
  width: 100%;
}
@media (min-width: 768px) {
  .slick-img {
    height: 720px;
  }
}
@media (min-width: 1200px) {
  .slick-img {
    height: 840px;
  }
}

.slick-img:nth-child(1) {
  background: url(../images/main01.jpg) no-repeat top center;
  background-size: auto 100%;
}

.slick-img:nth-child(2) {
  background: url(../images/main02.jpg) no-repeat top center;
  background-size: auto 100%;
}

.slick-img:nth-child(3) {
  background: url(../images/main03.jpg) no-repeat top center;
  background-size: auto 100%;
}

.slick-img:nth-child(4) {
  background: url(../images/main04.jpg) no-repeat top center;
  background-size: auto 100%;
}

@keyframes zoomUp {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.15); /* 拡大率 */
  }
}
.add-animation {
  animation: zoomUp 10s linear 0s normal both;
}

.leftClumb {
  background: #fff;
  overflow: hidden;
}
.leftClumb .Cont {
  position: relative;
}
.leftClumb .Cont .img {
  position: initial;
  left: -6.4vw;
  top: 0px;
  max-width: 100%;
  transform: translate(0, 0);
}
@media (min-width: 768px) {
  .leftClumb .Cont .img {
    position: absolute;
    max-width: initial;
    transform: translate(-100%, 0);
  }
}

.rightClumb {
  overflow: hidden;
}
.rightClumb .Cont {
  position: relative;
}
.rightClumb .Cont .img {
  position: initial;
  right: -6.4vw;
  top: 0px;
  max-width: 100%;
  transform: translate(0, 0);
}
@media (min-width: 768px) {
  .rightClumb .Cont .img {
    position: absolute;
    max-width: initial;
    transform: translate(100%, 0);
  }
}

.horizontalClumb {
  padding-bottom: 60px;
  background: url(../images/bg01-04.jpg) repeat-x left bottom;
  background-size: auto calc(75% - 60px);
}
@media (min-width: 1200px) {
  .horizontalClumb {
    background-size: auto 65%;
  }
}

.horizontalClumb-Gray {
  padding-bottom: 60px;
  background: url(../images/bg01-08.jpg) repeat-x left bottom;
  background-size: auto calc(75% - 60px);
}
@media (min-width: 1200px) {
  .horizontalClumb-Gray {
    background-size: auto 65%;
  }
}

.p01-Box01 {
  padding: 20px 0px 30px;
  background: url(../images/bg01-02.jpg) no-repeat;
  background-position: 100% bottom;
  background-size: 200% auto;
}
@media (min-width: 768px) {
  .p01-Box01 {
    background-position: 60% top;
    background-size: auto;
  }
}
@media (min-width: 1200px) {
  .p01-Box01 {
    background-position: center top;
  }
}

.p01-Box02 {
  background: #fff;
  padding-bottom: 90px;
  background: url(../images/bg01-03.jpg) no-repeat left bottom;
}

.p01-Box03 {
  background: #fff;
  padding-bottom: 30px;
  background: url(../images/bg01-05.jpg) no-repeat center bottom;
}

.instaClumb {
  padding-bottom: 130px;
  background: url(../images/bg01-06.jpg) no-repeat bottom center;
}

.instaClumb a:hover {
  opacity: 0.8;
}

.vertical-List {
  writing-mode: vertical-rl;
  display: flex;
  flex-direction: column;
  justify-content: end;
  width: 100%;
}
.vertical-List li {
  border: solid 1px #b7b7b7;
  margin-right: min(3vw, 16px);
  vertical-align: middle;
  line-height: 1em;
  padding: 8px 0px 16px;
  background: #fff;
  width: min(12vw, 50px);
  display: flex;
  align-items: center;
}

.resultItem {
  position: relative;
  margin-bottom: 2px;
}
.resultItem dt {
  background: rgba(255, 255, 255, 0.9);
  line-height: 1.4em;
  padding: 5px 16px 5px 0px;
  font-size: 2.9vw;
  display: flex;
  justify-content: start;
  font-weight: 300;
  z-index: 10;
  width: 100%;
}
@media (min-width: 576px) {
  .resultItem dt {
    font-size: 1.5vw;
  }
}
@media (min-width: 1200px) {
  .resultItem dt {
    font-size: 1.6rem;
  }
}
.resultItem dt span {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.newsBox {
  height: 320px;
  overflow-y: scroll;
}

.newsTable {
  width: 100%;
}
.newsTable th {
  width: 100%;
  font-size: 1.2rem;
  padding: 30px 0px 0px;
}
.newsTable td {
  border-bottom: solid 1px #ccc;
  font-size: 1.4rem;
  padding: 0px 0px 30px;
}
.newsTable th,
.newsTable td {
  line-height: 1.8em;
}

/*-------------------------------------------------------------------------------------------*
 *
 * aboutus.html
 *  
 *-------------------------------------------------------------------------------------------*/
.commonTable {
  width: 100%;
}
.commonTable tr {
  border-bottom: solid 1px #ccc;
}
.commonTable tr:first-child {
  border-top: solid 1px #ccc;
}
.commonTable th {
  width: 25%;
}
.commonTable th,
.commonTable td {
  padding: 30px 0px;
  line-height: 1.8em;
}

/*-------------------------------------------------------------------------------------------*
 *
 * business.html
 *  
 *-------------------------------------------------------------------------------------------*/
.businessItem {
  position: relative;
}
.businessItem dt {
  background: url(../images/bg01-04.jpg);
  position: absolute;
  top: -2.5vw;
  left: 2.5vw;
  line-height: 1em;
  padding: 12px;
  font-size: 1.8rem;
  display: flex;
  width: 36px;
  justify-content: center;
}
@media (min-width: 576px) {
  .businessItem dt {
    font-size: 1.8rem;
  }
}
@media (min-width: 1200px) {
  .businessItem dt {
    font-size: 2rem;
    top: -30px;
    left: 30px;
  }
}
.businessItem dt span {
  writing-mode: vertical-rl;
  text-orientation: upright; /* すべて縦方向に表示 */
  display: inline-block;
  min-height: 180px;
}

.priceTable {
  width: 100%;
}
.priceTable th,
.priceTable td {
  border: solid 1px #ccc;
  text-align: center;
  padding: 15px 0px;
}
.priceTable thead th {
  background: #b7b7b7;
  font-weight: 900;
  font-size: 1.4rem;
}
@media (min-width: 768px) {
  .priceTable thead th {
    font-size: 1.6rem;
  }
}
.priceTable tbody th,
.priceTable tbody td {
  font-size: 1.2rem;
}
@media (min-width: 768px) {
  .priceTable tbody th,
  .priceTable tbody td {
    font-size: 1.4rem;
  }
}

.processList {
  list-style: none;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.processList li {
  border: solid 1px #ccc;
  width: 48%;
  height: 45vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  background: #fff;
  position: relative;
  line-height: 1.2em;
  font-size: 1.3rem;
  margin-bottom: 10px;
  text-align: center;
  padding: 0px 1%;
}
@media (min-width: 576px) {
  .processList li {
    font-size: 1.5rem;
    height: 244px;
  }
}
@media (min-width: 992px) {
  .processList li {
    width: 31%;
    height: 189px;
  }
}
@media (min-width: 1200px) {
  .processList li {
    height: 187px;
  }
}
@media (min-width: 1420px) {
  .processList li {
    height: 248px;
  }
}
.processList li img {
  width: 16vw;
  height: auto;
  margin-bottom: 10px;
}
@media (min-width: 576px) {
  .processList li img {
    width: 60%;
  }
}
@media (min-width: 992px) {
  .processList li img {
    width: 50%;
  }
}
.processList li::after {
  position: absolute;
  top: 50%;
  right: -6%;
  transform: translate(0, -50%);
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f061";
  font-size: 2vw;
  color: #4b4b4b;
  z-index: -1;
}
@media (min-width: 992px) {
  .processList li::after {
    right: -10%;
  }
}
.processList li:last-child:after {
  display: none;
}

/*-------------------------------------------------------------------------------------------*
 *
 * work.html
 *  
 *-------------------------------------------------------------------------------------------*/
.tabBtn {
  border: solid 1px #b7b7b7;
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: start;
  width: 100%;
  height: 60px;
  padding: 0px 30px;
  text-decoration: none;
  margin-bottom: 10px;
  position: relative;
}
.tabBtn span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.tabBtn:after {
  position: absolute;
  top: 26px;
  right: 16px;
  content: "";
  display: inline-block;
  width: 0.4em;
  height: 0.4em;
  border: 2px solid;
  border-color: #333 #333 transparent transparent;
  transform: rotate(45deg);
  margin-left: 0.5em;
}
.tabBtn:hover {
  background: rgba(102, 76, 69, 0.1);
}

/*-------------------------------------------------------------------------------------------*
 *
 * realestate.html
 *  
 *-------------------------------------------------------------------------------------------*/
/* Swiper-Slider-thumnail
---------------------------------------------------- */
/*   ===   メインスライダー要素のスタイル*/
.swiper-thumbnail-main {
  margin-bottom: 15px;
}

.swiper-thumbnail-main .swiper-slide {
  position: relative;
}

.swiper-thumbnail-main .imageTitle {
  position: absolute;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  bottom: 0px;
  left: 0px;
  width: 100%;
  padding: 4px 8px;
  font-size: 12px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/*矢印ボタンの色を変更*/
.swiper-thumbnail-main .swiper-button-next,
.swiper-thumbnail-main .swiper-button-prev {
  color: #212121;
}

/*   ===   サムネイルのスタイル*/
.swiper-thumbnail {
  margin-bottom: 15px;
}

.swiper-thumbnail .swiper-slide {
  opacity: 0.6;
  transition: opacity 0.5s;
}

/*アクティブなときのスタイル*/
.swiper-thumbnail .swiper-slide.swiper-slide-thumb-active {
  opacity: 1;
  border: solid 2px #ffcaca;
}

/*-------------------------------------------------------------------------------------------*
 *
 * recruit.html
 *  
 *-------------------------------------------------------------------------------------------*/
.flowList {
  list-style: none;
  display: flex;
  justify-content: space-between;
}
.flowList li {
  border: solid 1px #ccc;
  width: 23%;
  height: 15vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  background: #fff;
  position: relative;
  line-height: 1em;
  font-size: 1.2rem;
}
@media (min-width: 576px) {
  .flowList li {
    font-size: 1.4rem;
    height: 12vw;
  }
}
@media (min-width: 1200px) {
  .flowList li {
    height: 167px;
  }
}
@media (min-width: 1420px) {
  .flowList li {
    height: 214px;
  }
}
.flowList li img {
  width: 8vw;
  height: auto;
  margin-bottom: 10px;
}
@media (min-width: 1200px) {
  .flowList li img {
    width: 70%;
  }
}
.flowList li::after {
  position: absolute;
  top: 50%;
  right: -12%;
  transform: translate(0, -50%);
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f061";
  font-size: 2vw;
  color: #4b4b4b;
  z-index: -1;
}
.flowList li:last-child:after {
  display: none;
}

/*-------------------------------------------------------------------------------------------*
 *
 * contact.html
 *  
 *-------------------------------------------------------------------------------------------*/
.form-control {
  font-size: 1.4rem;
}

.contactBox {
  width: 100%;
}

.contactBox dt {
  background: #333;
  color: #fff;
  font-size: 18px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contactBox dd {
  background: #fff;
  padding: 30px 0px;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: solid 1px #ccc;
  border-top: none;
}

.contactBox dd .num {
  font-size: 3.2rem;
  border-bottom: dotted 1px #888;
  padding: 0 30px 10px;
}

.contactBox dd .num em {
  font-style: normal;
  font-size: 1.8rem;
}

.contactBox dd .time {
  padding-top: 1em;
}

.table_float {
  width: 100%;
  margin-bottom: 10px;
}

.table_float th {
  width: 100%;
  padding: 15px 15px 10px 0px;
  font-weight: bold;
  border-top: none;
  border-bottom: solid 1px #ccc;
  line-height: 140%;
  display: block;
}

.table_float th div {
  display: flex;
  justify-content: start;
}

.table_float th .required {
  margin-left: 0.5em;
}

.table_float td {
  width: 100%;
  padding: 15px 0px 30px 0px;
  border: none;
  line-height: 140%;
  display: block;
}

@media (min-width: 768px) {
  .table_float table {
    width: 100%;
    display: table;
  }
  .table_float th {
    width: 30%;
    font-weight: bold;
    border-top: solid 1px #ccc;
    border-bottom: solid 1px #ccc;
    line-height: 140%;
    display: table-cell;
    vertical-align: middle;
  }
  .table_float th div {
    justify-content: space-between;
  }
  .table_float td {
    padding: 18px 0px 18px 10px;
    border-top: solid 1px #ccc;
    border-bottom: solid 1px #ccc;
    line-height: 140%;
    display: table-cell;
  }
}
textarea {
  width: 100%;
}

.form25 {
  width: 80%;
  display: inline-block;
}

.form50 {
  width: 100%;
  display: inline-block;
}

@media (min-width: 767px) {
  .form25 {
    width: 25%;
  }
  .form50 {
    width: 50%;
  }
}
.need {
  color: #c00;
  font-size: 12px;
  border-radius: 4px;
  float: right;
  line-height: 1em;
}

.required {
  background: #c00;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 20px;
  width: 44px;
  color: #fff;
  padding: 0px 0px 1px;
  border-radius: 3px;
  line-height: 1;
  font-size: 11px;
  transform: translateY(-2px);
}

.formBtn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  max-width: 475px;
  height: 56px;
  background: #000;
  color: #fff;
  position: relative;
  font-size: 1.3rem;
  text-decoration: none;
}

@media (min-width: 576px) {
  .formBtn {
    font-size: 1.6rem;
  }
}
.formBtn:hover {
  background: #999;
  text-decoration: none;
}

.formBtn.back:before {
  content: "";
  display: inline-block;
  width: 0.6em;
  height: 0.6em;
  border: 2px solid;
  border-color: transparent transparent #fff #fff;
  transform: rotate(45deg);
  margin-right: 0.5em;
}

.formBtn.next:after {
  content: "";
  display: inline-block;
  width: 0.6em;
  height: 0.6em;
  border: 2px solid;
  border-color: #fff #fff transparent transparent;
  transform: rotate(45deg);
  margin-right: 0.5em;
}

button.formBtn {
  border: none;
  outline: none;
}

button.formBtn:hover {
  outline: none;
}

.privacyBox {
  height: 250px;
  overflow: auto;
  overflow-y: scroll;
  font-size: 14px;
  line-height: normal;
  padding: 20px;
  border: solid 1px #ccc;
  border-radius: 8px;
  box-shadow: 0px 1px 2px #999 inset;
  background: #fff;
  font-size: 1.2rem;
}

.privacyBox h4 {
  font-size: 120%;
  font-weight: bold;
  border-bottom: #ccc solid 1px;
  margin-bottom: 10px;
}

.privacyBox p {
  margin-bottom: 1em;
}

.privacyBox ul {
  margin-bottom: 1em;
  margin-left: 10px;
}

.privacyBox ol {
  margin-bottom: 1em;
  margin-left: 0px;
  padding: 0px;
}

.privacyBox li {
  list-style: decimal outside;
  margin-left: 2em;
  margin-bottom: 5px;
}

@media (min-width: 768px) {
  .privacyBox ul {
    margin-bottom: 1em;
    margin-left: 20px;
  }
}
.ttl_policy {
  font-size: 120%;
  font-weight: bold;
}

.out-line {
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  padding: 50px 0;
}

/*-------------------------------------------------------------------------------------------*
 *
 * Title
 *  
 *-------------------------------------------------------------------------------------------*/
#h2Title {
  width: 100%;
  height: 80vw;
  position: relative;
  margin-top: 60px;
}
@media (min-width: 768px) {
  #h2Title {
    height: 520px;
  }
}
@media (min-width: 992px) {
  #h2Title {
    height: 640px;
  }
}
@media (min-width: 1200px) {
  #h2Title {
    margin-top: 0px;
  }
}
#h2Title.p02 {
  background: url(../images/bg_h2-02.jpg) no-repeat top center;
  background-size: auto 100%;
}
#h2Title.p03 {
  background: url(../images/bg_h2-03.jpg) no-repeat top center;
  background-size: auto 100%;
}
#h2Title.p04 {
  background: url(../images/bg_h2-04.jpg) no-repeat top center;
  background-size: auto 100%;
}
#h2Title.p05 {
  background: url(../images/bg_h2-05.jpg) no-repeat top center;
  background-size: auto 100%;
}
#h2Title.p06 {
  background: url(../images/bg_h2-06.jpg) no-repeat top center;
  background-size: auto 100%;
}
#h2Title.p07 {
  background: url(../images/bg_h2-07.jpg) no-repeat top center;
  background-size: auto 100%;
}
#h2Title h2 {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 90vw;
  height: 15.63vw;
  padding: 0px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: end;
  background: rgba(0, 0, 0, 0.4);
  color: #fff;
}
@media (min-width: 576px) {
  #h2Title h2 {
    width: 520px;
    height: 96px;
  }
}
@media (min-width: 1200px) {
  #h2Title h2 {
    align-items: start;
    top: 30px;
    right: 30px;
  }
}
#h2Title h2 .ja {
  font-size: 8.33vw;
  line-height: 1em;
  font-weight: 300;
}
@media (min-width: 576px) {
  #h2Title h2 .ja {
    font-size: 4.8rem;
  }
}
#h2Title h2 .en {
  font-size: 2.43vw;
  line-height: 1em;
  margin-top: 0.6rem;
}
@media (min-width: 576px) {
  #h2Title h2 .en {
    font-size: 1.4rem;
  }
}

.title {
  display: flex;
  flex-direction: column;
}
.title .ja {
  line-height: 1.4em;
  margin-bottom: 10px;
  font-size: 6.6vw;
}
@media (min-width: 576px) {
  .title .ja {
    font-size: 4rem;
    margin-bottom: 20px;
  }
}
@media (min-width: 768px) {
  .title .ja {
    font-size: 3.5rem;
  }
}
@media (min-width: 992px) {
  .title .ja {
    font-size: 4.2rem;
  }
}
@media (min-width: 1200px) {
  .title .ja {
    font-size: 4.4rem;
  }
}
@media (min-width: 1480px) {
  .title .ja {
    font-size: 4.6rem;
  }
}
.title .en {
  font-size: 2.43vw;
  margin-bottom: 30px;
  line-height: 1em;
}
@media (min-width: 576px) {
  .title .en {
    font-size: 1.4rem;
    margin-bottom: 50px;
  }
}

.vertical-Title {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0px auto;
}
.vertical-Title .en {
  font-size: 1.8rem;
  line-height: 1em;
  padding: 0px 0px 8px;
  border-bottom: solid 1px #333;
  margin-bottom: 30px;
}
.vertical-Title .ja {
  writing-mode: horizontal-tb;
  line-height: 1em;
  font-size: 6.6vw;
}
@media (min-width: 576px) {
  .vertical-Title .ja {
    font-size: 4rem;
  }
}
@media (min-width: 768px) {
  .vertical-Title .ja {
    font-size: 3.5rem;
  }
}
@media (min-width: 992px) {
  .vertical-Title .ja {
    font-size: 4.2rem;
  }
}
@media (min-width: 1200px) {
  .vertical-Title .ja {
    font-size: 4.4rem;
  }
}
@media (min-width: 1480px) {
  .vertical-Title .ja {
    font-size: 5.6rem;
  }
}
@media (min-width: 1200px) {
  .vertical-Title .ja {
    writing-mode: vertical-rl;
  }
}

/*-------------------------------------------------------------------------------------------*
 *
 * Button
 *  
 *-------------------------------------------------------------------------------------------*/
.moreBtn {
  border-bottom: solid 1px #333;
  text-decoration: none;
  position: relative;
  line-height: 25px;
  text-align: left;
  width: 150px;
  display: inline-block;
}
.moreBtn.large {
  width: 180px;
}
.moreBtn:before {
  position: absolute;
  right: 0px;
  top: 0px;
  content: "";
  width: 25px;
  height: 25px;
  display: block;
  background: #443835 url(../images/icon_arrow.png) no-repeat center center;
}

/*-------------------------------------------------------------------------------------------*
 *
 * Component
 *  
 *-------------------------------------------------------------------------------------------*/
.paging {
  display: flex;
  justify-content: center;
}

div.paging span.current,
div.paging span.paging-text {
  margin: 0px 2px;
  color: #333;
  display: inline;
  zoom: 1;
  display: inline-block;
  overflow: hidden;
  text-decoration: none;
}

div.paging span.paging-text a {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 38px;
  height: 38px;
  padding: 0px 12px;
  border: 1px solid #ccc;
}

div.paging span.current {
  background: #c00;
  border: 1px solid #636;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  zoom: 1;
  min-width: 38px;
  height: 38px;
  padding: 0px 12px;
  text-decoration: none;
  cursor: pointer;
}

div.paging span.paging-text a:hover {
  background: #ccc;
  color: #fff;
  text-decoration: none;
  cursor: pointer;
}

.anchor {
  padding-top: 80px;
  margin-top: -80px;
}
@media (min-width: 1200px) {
  .anchor {
    padding-top: 30px;
    margin-top: -30px;
  }
}

.gutter1 {
  margin-left: 0px !important;
  margin-right: 0px !important;
}

.gutter1 > div {
  padding-left: 1px !important;
  padding-right: 1px !important;
}

.photo-ofi {
  height: 0;
  display: block;
  padding-bottom: 75%;
  background-color: #f5f5f5;
  overflow: hidden;
  position: relative;
}
.photo-ofi img {
  max-width: inherit;
  max-height: inherit;
  width: 100%;
  height: 100%;
  -o-object-fit: scale-down;
  object-fit: scale-down;
  font-family: "object-fit: scale-down;";
  position: absolute;
  left: 0;
  top: 0;
}

.txtBox {
  background: url(../images/bg01-04.jpg) repeat;
  padding: 30px;
}
@media (min-width: 768px) {
  .txtBox {
    padding: 60px;
  }
}

.txtBox2 {
  border: solid 1px #ccc;
  padding: 30px;
}
@media (min-width: 768px) {
  .txtBox2 {
    padding: 30px 60px;
  }
}

.ta-c {
  text-align: center !important;
}

.ta-r {
  text-align: right !important;
}

.ta-l {
  text-align: left !important;
}

@media (min-width: 576px) {
  .ta-sm-c {
    text-align: center !important;
  }
  .ta-sm-r {
    text-align: right !important;
  }
  .ta-sm-l {
    text-align: left !important;
  }
}
@media (min-width: 768px) {
  .ta-md-c {
    text-align: center !important;
  }
  .ta-md-r {
    text-align: right !important;
  }
  .ta-md-l {
    text-align: left !important;
  }
}
@media (min-width: 992px) {
  .ta-lg-c {
    text-align: center !important;
  }
  .ta-lg-r {
    text-align: right !important;
  }
  .ta-lg-l {
    text-align: left !important;
  }
}
@media (min-width: 1200px) {
  .ta-xl-c {
    text-align: center !important;
  }
  .ta-xl-r {
    text-align: right !important;
  }
  .ta-xl-l {
    text-align: left !important;
  }
}
.rel {
  position: relative;
}

.posa {
  position: absolute;
}

.f-left {
  float: left;
}

.f-right {
  float: right;
}

.clear {
  clear: both;
}

.clearfix:after {
  content: "";
  display: block;
  clear: both;
}

.pbb {
  page-break-before: always;
}

.lh-12 {
  line-height: 1.2em;
}

.lh-14 {
  line-height: 1.4em;
}

.fs-11 {
  font-size: 1.1rem;
}

.fs-12 {
  font-size: 1.2rem;
}

.fs-14 {
  font-size: 1.4rem;
}

.fs-15 {
  font-size: 1.5rem;
}

.fs-16 {
  font-size: 1.6rem;
}

.fs-17 {
  font-size: 1.7rem;
}

.fs-18 {
  font-size: 1.8rem;
}

.fs-24 {
  font-size: 2.4rem;
}

@media (min-width: 768px) {
  .fs-md-14 {
    font-size: 1.4rem;
  }
}
.h-auto {
  height: auto;
}

@media (min-width: 768px) {
  .h-md-480 {
    height: 480px !important;
  }
}
.m-auto {
  margin: 0px auto;
}

.ml-00 {
  margin-left: 0px !important;
}

.mr-05 {
  margin-right: 5px !important;
}

.mr-10 {
  margin-right: 10px;
}

.mr-15 {
  margin-right: 15px;
}

.mr-20 {
  margin-right: 20px;
}

.mr-30 {
  margin-right: 30px;
}

.mt-05 {
  margin-top: 5px !important;
}

.mt-10 {
  margin-top: 10px !important;
}

.mb-00 {
  margin-bottom: 0px !important;
}

.mb-10 {
  margin-bottom: 10px !important;
}

.mb-15 {
  margin-bottom: 15px !important;
}

.mb-20 {
  margin-bottom: 20px !important;
}

.mb-30 {
  margin-bottom: 30px !important;
}

.mb-40 {
  margin-bottom: 40px !important;
}

.mb-50 {
  margin-bottom: 50px !important;
}

.mb-60 {
  margin-bottom: 60px !important;
}

.mb-70 {
  margin-bottom: 70px !important;
}

.mb-80 {
  margin-bottom: 80px !important;
}

.mb-90 {
  margin-bottom: 90px !important;
}

.mb-100 {
  margin-bottom: 100px !important;
}

.mb-120 {
  margin-bottom: 120px !important;
}

.mb-150 {
  margin-bottom: 150px !important;
}

@media (min-width: 576px) {
  .mb-sm-00 {
    margin-bottom: 0px !important;
  }
  .mb-sm-10 {
    margin-bottom: 10px !important;
  }
  .mb-sm-15 {
    margin-bottom: 15px !important;
  }
  .mb-sm-20 {
    margin-bottom: 20px !important;
  }
  .mb-sm-30 {
    margin-bottom: 30px !important;
  }
  .mb-sm-40 {
    margin-bottom: 40px !important;
  }
  .mb-sm-50 {
    margin-bottom: 50px !important;
  }
  .mb-sm-60 {
    margin-bottom: 60px !important;
  }
  .mb-sm-70 {
    margin-bottom: 70px !important;
  }
  .mb-sm-80 {
    margin-bottom: 80px !important;
  }
  .mb-sm-90 {
    margin-bottom: 90px !important;
  }
  .mb-sm-100 {
    margin-bottom: 100px !important;
  }
  .mb-sm-120 {
    margin-bottom: 120px !important;
  }
  .mb-sm-150 {
    margin-bottom: 150px !important;
  }
}
@media (min-width: 768px) {
  .mb-md-00 {
    margin-bottom: 0px !important;
  }
  .mb-md-10 {
    margin-bottom: 10px !important;
  }
  .mb-md-15 {
    margin-bottom: 15px !important;
  }
  .mb-md-20 {
    margin-bottom: 20px !important;
  }
  .mb-md-30 {
    margin-bottom: 30px !important;
  }
  .mb-md-40 {
    margin-bottom: 40px !important;
  }
  .mb-md-50 {
    margin-bottom: 50px !important;
  }
  .mb-md-60 {
    margin-bottom: 60px !important;
  }
  .mb-md-70 {
    margin-bottom: 70px !important;
  }
  .mb-md-80 {
    margin-bottom: 80px !important;
  }
  .mb-md-90 {
    margin-bottom: 90px !important;
  }
  .mb-md-100 {
    margin-bottom: 100px !important;
  }
  .mb-md-120 {
    margin-bottom: 120px !important;
  }
  .mb-md-150 {
    margin-bottom: 150px !important;
  }
}
@media (min-width: 992px) {
  .mb-lg-00 {
    margin-bottom: 0px !important;
  }
  .mb-lg-10 {
    margin-bottom: 10px !important;
  }
  .mb-lg-15 {
    margin-bottom: 15px !important;
  }
  .mb-lg-20 {
    margin-bottom: 20px !important;
  }
  .mb-lg-30 {
    margin-bottom: 30px !important;
  }
  .mb-lg-40 {
    margin-bottom: 40px !important;
  }
  .mb-lg-50 {
    margin-bottom: 50px !important;
  }
  .mb-lg-60 {
    margin-bottom: 60px !important;
  }
  .mb-lg-70 {
    margin-bottom: 70px !important;
  }
  .mb-lg-80 {
    margin-bottom: 80px !important;
  }
  .mb-lg-90 {
    margin-bottom: 90px !important;
  }
  .mb-lg-100 {
    margin-bottom: 100px !important;
  }
  .mb-lg-120 {
    margin-bottom: 120px !important;
  }
  .mb-lg-150 {
    margin-bottom: 150px !important;
  }
}
@media (min-width: 1200px) {
  .mb-xl-00 {
    margin-bottom: 0px !important;
  }
  .mb-xl-10 {
    margin-bottom: 10px !important;
  }
  .mb-xl-15 {
    margin-bottom: 15px !important;
  }
  .mb-xl-20 {
    margin-bottom: 20px !important;
  }
  .mb-xl-30 {
    margin-bottom: 30px !important;
  }
  .mb-xl-40 {
    margin-bottom: 40px !important;
  }
  .mb-xl-50 {
    margin-bottom: 50px !important;
  }
  .mb-xl-60 {
    margin-bottom: 60px !important;
  }
  .mb-xl-70 {
    margin-bottom: 70px !important;
  }
  .mb-xl-80 {
    margin-bottom: 80px !important;
  }
  .mb-xl-90 {
    margin-bottom: 90px !important;
  }
  .mb-xl-100 {
    margin-bottom: 100px !important;
  }
  .mb-xl-120 {
    margin-bottom: 120px !important;
  }
  .mb-xl-150 {
    margin-bottom: 150px !important;
  }
}/*# sourceMappingURL=style.css.map */



  .instaLogo {
    width: 11vw;
  }

  .contactArea {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
  }


  .lineBtn {
    margin: 10px;
    width: 330px;
  }

  .lineBtn a {
    background: #00b900;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    padding: 10px 20px 10px 10px;
    border-radius: 10px;
  }

  .lineBtn a:hover{ 
    opacity: 0.8;
  }

  .lineBtn img {
    width: 40px;
    margin-right: 10px;
  }
  .lineBtn span {
    border-left: 1px solid #fff;
    padding-left: 10px;
  }

  .contactBtn02 {
    margin: 10px;
    width: 330px;
  }

  .contactBtn02 a {
    background: #666666;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    padding: 10px 20px 10px 10px;
    border-radius: 10px;

  }
  .contactBtn02 a:hover{ 
    opacity: 0.8;
  }

  .contactBtn02 img {
    width: 40px;
    margin-right: 10px;
  }
  .contactBtn02 span {
    border-left: 1px solid #fff;
    padding-left: 10px;
  }




@media (min-width: 768px) {
  .instaLogo {
    width: 60px;
  }
  .contactArea {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
  }

  .lineBtn {
    margin: 0 10px;
  } 
  .contactBtn02 {
    margin: 0 10px;
  }


  .lineBtn a  {
    font-size: 20px;
  }
  .contactBtn02 a {
    font-size: 20px;
  }


}


.m-adjust-240509{
  margin-top: 40px;
}
@media (min-width: 768px) {
  .m-adjust-240509{
    margin-top: 80px;
  }
}