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

html {
  font-size: 50%;
}
@media (min-width: 992px) {
  html {
    font-size: 62.5%;
  }
}

body {
  color: #5e5e5e;
  margin: 0px;
  font-family: "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  line-height: 1.8;
  letter-spacing: 0.05em;
  overflow-x: hidden;
  font-size: 1.6rem;
}

h1,
h2,
h3,
h5,
h6 {
  margin: 0px;
  padding: 0px;
  font-weight: normal;
  font-size: 100%;
  line-height: 1.85;
}

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

dl,
ul,
ol {
  padding: 0;
  margin: 0;
}

li {
  list-style-type: none;
}

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

/*-------------------------------------------------------------------------------------------*
 *
 * Header
 *  
 *-------------------------------------------------------------------------------------------*/
#header {
  display: flex;
  justify-content: space-between;
  align-content: center;
  width: 100%;
  height: 60px;
  position: fixed;
  top: 0px;
  z-index: 100;
  transition: all 600ms 0s ease;
  align-items: center;
  padding: 0px 15px;
  background: #fff;
}
@media (min-width: 992px) {
  #header {
    height: 70px;
  }
}
@media (min-width: 1200px) {
  #header {
    height: 80px;
  }
}
@media (min-width: 1400px) {
  #header {
    padding: 0px 30px;
  }
}
#header #logo {
  display: block;
  transition: all 600ms 0s ease;
  width: 75vw;
}
@media (min-width: 576px) {
  #header #logo {
    width: 420px;
  }
}
@media (min-width: 992px) {
  #header #logo {
    width: 480px;
  }
}
@media (min-width: 1200px) {
  #header #logo {
    width: 518px;
  }
}
#header #logo a {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: space-between;
}
#header #header-Right {
  display: flex;
  align-items: center;
}
#header #mainNavi {
  display: none;
}
@media (min-width: 1200px) {
  #header #mainNavi {
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }
}
#header #mainNavi > li {
  display: block;
}
#header #mainNavi > li > a {
  padding: 0px 1rem;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  line-height: 1;
  position: relative;
  width: 100%;
  height: 100%;
  font-weight: 500;
}
@media (min-width: 1400px) {
  #header #mainNavi > li > a {
    padding: 0px 2rem;
  }
}
#header #mainNavi > li > a .en {
  font-size: 1.5rem;
  padding-bottom: 0.4rem;
  transition: all 600ms 0s ease;
  font-family: "Open Sans", sans-serif;
}
@media (min-width: 992px) {
  #header #mainNavi > li > a .en {
    font-size: 1.7rem;
  }
}
#header #mainNavi > li > a .ja {
  font-size: 1.2rem;
  margin-bottom: 0.4rem;
  transition: all 600ms 0s ease;
  font-weight: 400;
}
@media (min-width: 992px) {
  #header #mainNavi > li > a .ja {
    font-size: 1.4rem;
  }
}
#header #mainNavi > li > a:after {
  width: 0%;
  content: "";
  display: block;
  background: #f07e5b;
  height: 1px;
  transition: all 600ms 0s ease;
  border: none;
}
#header #mainNavi li.active a:after,
#header #mainNavi li a:hover:after {
  width: 100%;
}
#header #contactButton {
  display: none;
}
@media (min-width: 1200px) {
  #header #contactButton {
    display: block;
    margin-left: 1.5rem;
  }
  #header #contactButton a {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-weight: 400;
    height: 100%;
    background: #3a3a3a url(../images/bg_btn.jpg) no-repeat center/auto 100%;
    height: 38px;
    width: 170px;
    transition: all 600ms 0s ease;
    text-decoration: none;
    font-size: 2.2rem;
    font-weight: 500;
    font-family: "Open Sans", sans-serif;
  }
}
@media (min-width: 1200px) and (min-width: 1400px) {
  #header #contactButton a {
    height: 40px;
    width: 180px;
  }
}
@media (min-width: 1200px) {
  #header #contactButton a:after {
    display: none;
  }
  #header #contactButton a img {
    filter: brightness(0) invert(1);
    width: 18px;
    margin-right: 0.7rem;
  }
}
@media (min-width: 1200px) and (min-width: 1400px) {
  #header #contactButton a img {
    width: 20px;
  }
}
@media (min-width: 1200px) {
  #header #contactButton a:hover, #header #contactButton a.active a {
    opacity: 0.7;
  }
}
#header.on {
  height: 60px;
}
@media (min-width: 992px) {
  #header.on {
    height: 70px;
  }
}
#header.on #logo {
  width: 75vw;
}
@media (min-width: 576px) {
  #header.on #logo {
    width: 420px;
  }
}
@media (min-width: 992px) {
  #header.on #logo {
    width: 480px;
  }
}
#header.on #mainNavi a {
  text-shadow: none;
}
#header.on #mainNavi a::before {
  background: #f07e5b;
}

.dropdown-toggle {
  padding-right: 24px !important;
  position: relative;
}
.dropdown-toggle:after {
  position: absolute;
  right: 8px;
  top: 50%;
}

.dropdown-menu {
  border-radius: 0px;
  border: none;
}
.dropdown-menu a {
  display: block;
  text-decoration: none;
  padding: 0.8rem 0px;
  border-bottom: dashed 1px #acacac;
  line-height: 1.2;
  padding-right: 2.8rem;
  position: relative;
}
.dropdown-menu a:hover {
  background: #ececec;
}
.dropdown-menu a:after {
  content: "";
  display: block;
  width: 16px !important;
  aspect-ratio: 16/7;
  background: url(../images/icon_arrow.png) no-repeat center;
  position: absolute;
  top: 1.6rem;
  right: 4px;
}

.dropdown-menu.show {
  width: 280px;
  font-size: 1.4rem;
  margin-top: 6px !important;
  padding: 8px 15px !important;
}
@media (min-width: 1400px) {
  .dropdown-menu.show {
    font-size: 1.6rem;
  }
}

/*-------------------------------------------------------------------------------------------*
     *
     * サイドメニュー
     *  
*-------------------------------------------------------------------------------------------*/
#sidebar {
  position: fixed;
  top: 0;
  bottom: 0;
  right: -100%;
  width: 100%;
  text-align: left;
  background-color: #fff;
  transition: transform 0.5s ease;
  overflow-y: auto;
  z-index: 102;
  padding: 80px 25px 0px 25px;
}
@media (min-width: 576px) {
  #sidebar {
    right: -380px;
    width: 380px;
  }
}
.side-open #sidebar {
  transform: translate3d(-100%, 0, 0);
}
#sidebar #side-logo {
  display: flex;
  justify-content: space-between;
}
#sidebar ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
#sidebar a {
  text-decoration: none;
}
#sidebar .list-sidenav {
  width: 100%;
  font-size: 1.8rem;
}
#sidebar .list-sidenav > li {
  text-align: left;
}
#sidebar .list-sidenav > li > a {
  color: #3a3a3a;
  line-height: 1.2;
  display: flex;
  padding: 17px 10px;
  position: relative;
  justify-content: space-between;
  align-items: flex-end;
  border-bottom: dashed 1px #5f5f5f;
  font-size: 15px;
  font-weight: 500;
}
#sidebar .list-sidenav > li > a .en {
  font-family: "Open Sans", sans-serif;
  font-size: 2rem;
  font-weight: 400;
}
#sidebar .list-sidenav > li > a .ja {
  font-size: 1.4rem;
}
#sidebar .list-sidenav > li.active > a,
#sidebar .list-sidenav > li > a:hover {
  background: #f7f7f7;
}
#sidebar .submenu {
  background: #fff;
  display: none;
}
#sidebar .submenu li {
  border-bottom: 1px dashed #cacaca;
}
#sidebar .submenu li a {
  padding: 10px 15px 10px 28px;
  font-size: 14px;
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  position: relative;
}
#sidebar .submenu li a:before {
  content: "";
  display: block;
  width: 16px;
  aspect-ratio: 1;
  background: url(../images/icon_arrow.svg) no-repeat center/contain;
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translate(0, -50%);
}
#sidebar .submenu li a:hover {
  background: #f7f7f7;
}
#sidebar .submenu li a.active a {
  background: #f7f7f7;
}

.sidebar-bnr {
  text-align: center;
}
.sidebar-bnr img {
  width: 80%;
  margin: 0px auto;
}

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

#sidebarContact {
  width: 100%;
  background: #f07e5b;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Open Sans", sans-serif;
  padding: 0px 15px;
  height: 56px;
  font-size: 2.2rem;
  font-weight: 300;
}
#sidebarContact img {
  filter: brightness(0) invert(1);
  margin-right: 1.2rem;
  width: 22px;
  height: auto;
}
#sidebarContact:hover {
  opacity: 0.9;
}

#sidebarTel {
  font-weight: 400;
  font-size: 7.2vw;
  font-family: "Open Sans", sans-serif;
}
@media (min-width: 576px) {
  #sidebarTel {
    font-size: 3rem;
  }
}
#sidebarTel .time {
  font-size: 1.3rem;
  line-height: 1.4;
}

/* -------------------------------
          オーバーレイ
      -------------------------------- */
.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: 101;
}
.side-open .overlay {
  visibility: visible;
  cursor: pointer;
  background: rgba(0, 0, 0, 0.7);
}

/* -------------------------------
          HambergerMenu
      -------------------------------- */
.menuWrapper {
  position: fixed;
  right: 15px;
  top: 5px;
  width: 50px;
  height: 50px;
  transform: translate3d(0, 0, 0);
  z-index: 103;
  display: block;
}
@media (min-width: 992px) {
  .menuWrapper {
    top: 10px;
  }
}
@media (min-width: 1200px) {
  .menuWrapper {
    display: none;
  }
}

@media (min-width: 1200px) {
  .side-open .menuWrapper {
    display: block;
  }
}
.menuWrapper.on {
  right: 0px;
  top: 0px;
}
@media (min-width: 1200px) {
  .menuWrapper.on {
    right: 0px;
    top: 0px;
  }
}

#menuButton {
  overflow: hidden;
  display: block;
  position: absolute;
  z-index: 100;
  width: 100%;
  height: 100%;
  cursor: pointer;
}
#menuButton span, #menuButton:before, #menuButton:after {
  display: block;
  position: absolute;
  top: -11px;
  bottom: 0;
  left: 0;
  right: 0;
  width: 75%;
  height: 1px;
  margin: auto;
  background: url(../images/bg_hamberger.png) no-repeat center;
}
#menuButton span {
  overflow: hidden;
  z-index: 1;
  color: #333;
}
#menuButton:before {
  z-index: 2;
  transform: translate(0, -10px);
  content: "";
}
#menuButton:after {
  z-index: 2;
  transform: translate(0, 10px);
  content: "";
}
#menuButton small {
  position: absolute;
  left: 0;
  width: 100%;
  color: #333;
  line-height: 1.2;
  letter-spacing: normal;
  text-align: center;
  display: block;
  font-size: 11px;
  bottom: 0px;
  letter-spacing: 0.1em;
}
@media (min-width: 1200px) {
  #menuButton small {
    font-size: 13px;
    letter-spacing: 0.15em;
    bottom: 2px;
  }
}

body.side-open #menuButton {
  display: block;
}

/* アニメーション */
#menuButton {
  margin-right: 120px;
}
#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);
  background: #333;
}
.side-open #menuButton::after {
  transform: rotate(-45deg);
  background: #333;
}

/*-------------------------------------------------------------------------------------------*
 *
 * Footer
 *  
 *-------------------------------------------------------------------------------------------*/
#footer {
  width: 100%;
  background: #433f3f;
}
#footer #footerBody {
  width: 100%;
  color: #fff;
  padding: 90px 0px 90px;
}
#footer #footerBody a {
  color: #fff;
  text-decoration: none;
}
@media (min-width: 992px) {
  #footer #footerBody {
    padding: 120px 0px;
  }
}
#footer #footerBody .footerLeft {
  text-align: center;
}
@media (min-width: 768px) {
  #footer #footerBody .footerLeft {
    text-align: left;
  }
}
#footer #footerBody .footerLeft #f-logo {
  width: 80vw;
  text-align: center;
  filter: brightness(0) invert(1);
  margin: 0px auto;
}
@media (min-width: 768px) {
  #footer #footerBody .footerLeft #f-logo {
    max-width: 518px;
    width: 100%;
    margin: initial;
  }
}
#footer #footerBody .footerLeft .mapPin {
  width: 14px;
  display: inline-flex;
  filter: brightness(0) invert(1);
  margin-left: 0.6rem;
}
#footer #footerBody .footerLeft .f-tel {
  font-family: "Open Sans", sans-serif;
  font-weight: 300;
  line-height: 1.6;
  font-size: 4.4vw;
}
@media (min-width: 576px) {
  #footer #footerBody .footerLeft .f-tel {
    font-size: 2.4rem;
  }
}
@media (min-width: 768px) {
  #footer #footerBody .footerLeft .f-tel {
    font-size: 1.8rem;
  }
}
@media (min-width: 992px) {
  #footer #footerBody .footerLeft .f-tel {
    line-height: 1.4;
  }
}
@media (min-width: 1200px) {
  #footer #footerBody .footerLeft .f-tel {
    line-height: 1;
  }
}
#footer #footerBody .footerRight #textLink {
  display: none;
}
@media (min-width: 768px) {
  #footer #footerBody .footerRight #textLink {
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-size: 1.4rem;
    align-items: flex-end;
  }
}
@media (min-width: 992px) {
  #footer #footerBody .footerRight #textLink {
    justify-content: flex-end;
  }
}
#footer #footerBody .footerRight #textLink li {
  margin: 0px 0px 0.8rem 0px;
}
#footer #footerBody .footerRight #textLink li a {
  text-decoration: none;
}
#footer #footerBody .footerRight #textLink li a:before {
  display: inline-block;
  content: "";
  background: url(../images/icon_triangle.png) no-repeat center/contain;
  width: 5px;
  aspect-ratio: 1;
  margin-right: 0.4rem;
  margin-bottom: 0.2rem;
}
#footer #footerBody .footerRight #textLink li a:hover {
  text-decoration: underline;
}
#footer #copy {
  width: 100%;
  text-align: center;
  font-size: 1.2rem;
  margin: 0px;
  background: #000;
  color: #fff;
}

/*-------------------------------------------------------------------------------------------*
 *
 * index.html
 *  
 *-------------------------------------------------------------------------------------------*/
#mainVisual {
  position: relative;
}

#catchCont {
  position: absolute;
  display: flex;
  top: 0px;
  left: 0px;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  z-index: 2;
}
#catchCont .left {
  width: 24vw;
  height: 100%;
  position: relative;
  overflow: hidden;
}
@media (min-width: 1200px) {
  #catchCont .left {
    width: 22vw;
  }
}
@media (min-width: 1400px) {
  #catchCont .left {
    width: 20vw;
  }
}
#catchCont .left img {
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translate(0, -50%);
  max-width: 80vw;
}
@media (min-width: 992px) {
  #catchCont .left img {
    left: 30px;
  }
}
@media (min-width: 1400px) {
  #catchCont .left img {
    max-width: initial;
    left: 60px;
  }
}
#catchCont .right {
  width: 76vw;
  height: 100%;
  position: relative;
  overflow: hidden;
}
@media (min-width: 1200px) {
  #catchCont .right {
    width: 78vw;
  }
}
@media (min-width: 1400px) {
  #catchCont .right {
    width: 80vw;
  }
}
#catchCont .right img {
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translate(-24vw, -50%);
  max-width: 80vw;
}
@media (min-width: 992px) {
  #catchCont .right img {
    left: 30px;
  }
}
@media (min-width: 1200px) {
  #catchCont .right img {
    transform: translate(-22vw, -50%);
  }
}
@media (min-width: 1400px) {
  #catchCont .right img {
    max-width: initial;
    transform: translate(-20vw, -50%);
    left: 60px;
  }
}

#sliderWrap {
  position: relative;
  width: 100%;
  padding: 0px 4vw 0px 24vw;
  margin-top: 60px;
}
@media (min-width: 992px) {
  #sliderWrap {
    margin-top: 70px;
  }
}
@media (min-width: 1200px) {
  #sliderWrap {
    margin-top: 80px;
    padding: 0px 6vw 0px 22vw;
  }
}
@media (min-width: 1400px) {
  #sliderWrap {
    padding: 0px 8vw 0px 20vw;
  }
}

#mainSlider {
  width: 100%;
  position: relative;
  /* before要素 */
}
#mainSlider .sp-buttons {
  padding-top: 0px;
  position: absolute;
  bottom: 0px;
}
#mainSlider .sp-button {
  width: 13.6666666667%;
  height: 2px;
  position: relative;
  background: #fff;
  border-radius: 0;
  border: 0;
}
#mainSlider .sp-selected-button:before {
  animation-name: sliderpro-bg-color01;
  animation-duration: 5000ms;
  animation-timing-function: linear;
  width: 0;
  content: "";
  display: inline-block;
  height: 100%;
  background: #333;
  top: 0;
  left: 0;
  position: absolute;
}
@keyframes sliderpro-bg-color01 {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}

.tabs li {
  margin-bottom: 5px;
  width: 50%;
}
@media (min-width: 768px) {
  .tabs li {
    width: 33%;
  }
}
@media (min-width: 1200px) {
  .tabs li {
    width: 20%;
  }
}
@media (min-width: 1400px) {
  .tabs li {
    width: 16.6%;
  }
}
.tabs li a {
  font-size: 1.4rem;
  line-height: 1.2;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  min-height: 32px;
  height: 100%;
  cursor: pointer;
  padding: 5px 10px;
}
.tabs li a.lable01 {
  border: solid 1px #d89a6a;
  color: #d89a6a;
  background: #fff;
}
.tabs li a.lable02 {
  border: solid 1px #d59071;
  color: #d59071;
  background: #fff;
}
.tabs li a.lable03 {
  border: solid 1px #d28878;
  color: #d28878;
  background: #fff;
}
.tabs li a.lable04 {
  border: solid 1px #cf807e;
  color: #cf807e;
  background: #fff;
}
.tabs li a.lable05 {
  border: solid 1px #c97681;
  color: #c97681;
  background: #fff;
}
.tabs li a.lable06 {
  border: solid 1px #c97681;
  color: #c97681;
  background: #fff;
}
.tabs li a.lable07 {
  border: solid 1px #c26c83;
  color: #c26c83;
  background: #fff;
}
.tabs li a.lable08 {
  border: solid 1px #bc6386;
  color: #bc6386;
  background: #fff;
}
.tabs li a.lable09 {
  border: solid 1px #b65988;
  color: #b65988;
  background: #fff;
}
.tabs li a.lable10 {
  border: solid 1px #af508a;
  color: #af508a;
  background: #fff;
}
.tabs li a.lable01.active, .tabs li a.lable01:hover {
  background: #d89a6a;
  color: #fff;
}
.tabs li a.lable02.active, .tabs li a.lable02:hover {
  background: #d59071;
  color: #fff;
}
.tabs li a.lable03.active, .tabs li a.lable03:hover {
  background: #d28878;
  color: #fff;
}
.tabs li a.lable04.active, .tabs li a.lable04:hover {
  background: #cf807e;
  color: #fff;
}
.tabs li a.lable05.active, .tabs li a.lable05:hover {
  background: #c97681;
  color: #fff;
}
.tabs li a.lable06.active, .tabs li a.lable06:hover {
  background: #c97681;
  color: #fff;
}
.tabs li a.lable07.active, .tabs li a.lable07:hover {
  background: #c26c83;
  color: #fff;
}
.tabs li a.lable08.active, .tabs li a.lable08:hover {
  background: #bc6386;
  color: #fff;
}
.tabs li a.lable09.active, .tabs li a.lable09:hover {
  background: #b65988;
  color: #fff;
}
.tabs li a.lable10.active, .tabs li a.lable10:hover {
  background: #af508a;
  color: #fff;
}

.news-Wrap {
  width: 100%;
  height: 680px;
  overflow-y: scroll;
  scrollbar-color: #555 #e0ebeb;
  scrollbar-width: thin;
  padding-right: 3rem;
}
.news-Wrap::-webkit-scrollbar {
  width: 6px;
  background-color: #555;
}
.news-Wrap:-webkit-scrollbar-thumb {
  background: #e0ebeb;
  width: 8px;
  border-radius: 0;
}

.news-table {
  width: 100%;
  border-top: none;
  border-top: solid 1px #ccc;
}
.news-table th {
  width: 100%;
  padding: 25px 0px 25px 0px;
  line-height: 1;
  font-weight: 400;
}
.news-table th .date {
  display: inline-block;
  margin-right: 2rem;
  font-size: 1.4rem;
}
.news-table th .icon-New {
  color: #e73939;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-left: 2em;
}
.news-table th .icon-Label {
  font-size: 1.2rem;
  padding: 0.2rem 1.6rem;
  color: #fff;
  width: 120px;
}
.news-table th .icon-Label.lable01 {
  color: #fff;
  background: #d89a6a;
}
.news-table th .icon-Label.lable02 {
  color: #fff;
  background: #d59071;
}
.news-table th .icon-Label.lable03 {
  color: #fff;
  background: #d28878;
}
.news-table th .icon-Label.lable04 {
  color: #fff;
  background: #cf807e;
}
.news-table th .icon-Label.lable05 {
  color: #fff;
  background: #c97681;
}
.news-table th .icon-Label.lable06 {
  color: #fff;
  background: #c97681;
}
.news-table th .icon-Label.lable07 {
  color: #fff;
  background: #c26c83;
}
.news-table th .icon-Label.lable08 {
  color: #fff;
  background: #bc6386;
}
.news-table th .icon-Label.lable09 {
  color: #fff;
  background: #b65988;
}
.news-table th .icon-Label.lable10 {
  color: #fff;
  background: #af508a;
}
.news-table td {
  width: 100%;
  border-bottom: none;
  padding: 0px 0px 35px 0px;
  line-height: 1.8;
  border-bottom: solid 1px #ccc;
  font-weight: 600;
  vertical-align: top;
}

.newsimage {
  width: 100%;
  aspect-ratio: 16/9;
  width: 180px;
  float: left;
  margin-right: 1.6rem;
  margin-bottom: 0.4rem;
  position: relative;
}
.newsimage iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.link {
  color: #f07e5b;
  display: inline-flex;
  align-items: center;
  margin-left: 1.6rem;
  white-space: nowrap;
}
.link:after {
  content: "";
  display: inline-block;
  width: 2rem;
  aspect-ratio: 1;
  background: url(../images/icon_arrow-right.svg) no-repeat center/contain;
  margin-left: 0.6rem;
  filter: invert(54%) sepia(77%) saturate(491%) hue-rotate(323deg) brightness(99%) contrast(90%);
}
.link:hover {
  color: #f07e5b;
}

.loop-slider .slick-slide {
  margin: 0px 15px;
}
@media (min-width: 1200px) {
  .loop-slider .slick-slide {
    margin: 0px 30px;
  }
}

.banner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 260px;
}
@media (min-width: 576px) {
  .banner {
    height: 300px;
  }
}
@media (min-width: 992px) {
  .banner {
    height: 320px;
  }
}
@media (min-width: 1200px) {
  .banner {
    height: 400px;
  }
}
@media (min-width: 1600px) {
  .banner {
    height: 500px;
  }
}
.banner .title {
  width: 100%;
}
.banner.business {
  background: #fff5ee;
  position: relative;
  overflow: hidden;
}
.banner.business:after {
  display: block;
  content: "Business";
  color: #fff;
  line-height: 1;
  -ms-writing-mode: tb-rl;
  font-weight: 300;
  writing-mode: vertical-rl;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0.8;
  font-size: 100px;
}
@media (min-width: 1200px) {
  .banner.business:after {
    font-size: 140px;
  }
}
.banner.company {
  background: #f1d9d4;
  position: relative;
  overflow: hidden;
}
.banner.company:after {
  display: block;
  content: "Company";
  color: #fff;
  line-height: 1;
  -ms-writing-mode: tb-rl;
  font-weight: 300;
  writing-mode: vertical-lr;
  transform: rotate(180deg);
  position: absolute;
  right: 0;
  bottom: 0;
  opacity: 0.6;
  font-size: 100px;
}
@media (min-width: 1200px) {
  .banner.company:after {
    font-size: 140px;
  }
}
.banner .detailBtn {
  width: 200px;
}

.contact-Wrap {
  background: url(../images/bg_contact.jpg) no-repeat top center/auto 60%;
  padding-top: 60px;
}
@media (min-width: 576px) {
  .contact-Wrap {
    padding-top: 90px;
  }
}
@media (min-width: 768px) {
  .contact-Wrap {
    background: url(../images/bg_contact.jpg) no-repeat top center/95% auto;
  }
}
@media (min-width: 992px) {
  .contact-Wrap {
    padding-top: 120px;
  }
}
@media (min-width: 1400px) {
  .contact-Wrap {
    padding-top: 150px;
  }
}
@media (min-width: 1600px) {
  .contact-Wrap {
    background: url(../images/bg_contact.jpg) no-repeat top center;
  }
}
.contact-Wrap .inr {
  background: #fff;
  padding: 30px;
}
@media (min-width: 992px) {
  .contact-Wrap .inr {
    padding: 60px 30px;
  }
}

.contact-Btn {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  color: #333;
  font-weight: 300;
  text-decoration: none;
}
.contact-Btn img {
  margin-right: 2vw;
  width: 7.4vw;
}
@media (min-width: 576px) {
  .contact-Btn img {
    margin-right: 1.2rem;
    width: 38px;
  }
}
@media (min-width: 992px) {
  .contact-Btn img {
    margin-right: 1.6rem;
    width: 44px;
  }
}
.contact-Btn.tel {
  font-size: 7.3vw;
}
@media (min-width: 576px) {
  .contact-Btn.tel {
    font-size: 4.8rem;
  }
}
.contact-Btn.tel a {
  text-decoration: none;
}
.contact-Btn.tel span {
  padding-bottom: 0.8rem;
  line-height: 1;
}
.contact-Btn.mail {
  font-size: 6.3vw;
}
@media (min-width: 576px) {
  .contact-Btn.mail {
    font-size: 4.2rem;
  }
}
.contact-Btn.mail span {
  padding-bottom: 0.6rem;
  line-height: 1;
}

/*-------------------------------------------------------------------------------------------*
 *
 * news_detail.html
 *  
 *-------------------------------------------------------------------------------------------*/
.caption {
  position: absolute;
  margin: 0;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-font-smoothing: subpixel-antialiased;
  -webkit-backface-visibility: hidden;
  color: #fff;
  background: rgba(0, 0, 0, 0.7);
  padding: 10px;
  visibility: visible;
  width: 100%;
  left: 0px;
  bottom: 0px;
  transform-origin: left bottom;
  transform: scale(1);
  opacity: 1;
}

.slick-slide > div > div {
  position: relative;
}

.thumb01 .slick-slide {
  padding: 0px 1px;
  cursor: pointer;
}

.gallery img {
  cursor: pointer;
}

.textBox {
  border: solid 5px #fff5ee;
  padding: 30px;
}

.youtube {
  width: 100%;
  aspect-ratio: 16/9;
  position: relative;
}
.youtube iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.attachedButton {
  display: inline-flex;
  width: 100%;
  height: 100%;
  color: #fff;
  background: #454545;
  align-items: center;
  padding: 8px 48px 8px 56px;
  justify-content: center;
  position: relative;
  text-decoration: none;
  transition: all 600ms 0s ease;
}
.attachedButton:before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  background: url(../images/icon_dot.png) no-repeat center/contain;
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translate(0, -50%);
  filter: brightness(0) invert(1);
}
.attachedButton:after {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  background: url(../images/icon_arrow-right.svg) no-repeat center;
  background-size: contain;
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translate(0, -50%);
  filter: brightness(0) invert(1);
}
.attachedButton:hover {
  border: solid 1px #454545;
  background: #fff;
  color: #454545;
  text-decoration: none;
}
.attachedButton:hover:before {
  filter: invert(29%) sepia(1%) saturate(521%) hue-rotate(68deg) brightness(93%) contrast(99%);
}
.attachedButton:hover:after {
  filter: invert(29%) sepia(1%) saturate(521%) hue-rotate(68deg) brightness(93%) contrast(99%);
}
.attachedButton.pdf {
  background: #ba3434;
  border: solid 1px #fff;
  color: #fff;
}
.attachedButton.pdf::before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  background: url(../images/icon-pdf.png);
  background-size: contain;
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translate(0, -50%);
  filter: brightness(0) invert(1);
}
.attachedButton.pdf:after {
  filter: brightness(0) invert(1);
}
.attachedButton.pdf:hover {
  border: solid 1px #ba3434;
}
.attachedButton.pdf:hover:before {
  filter: none;
}
.attachedButton.pdf:hover:after {
  filter: invert(28%) sepia(32%) saturate(2835%) hue-rotate(332deg) brightness(87%) contrast(87%);
}
.attachedButton.excel {
  background: #3c6e3e;
  border: solid 1px #fff;
  color: #fff;
}
.attachedButton.excel::before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  background: url(../images/icon-excel.png);
  background-size: contain;
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translate(0, -50%);
  filter: brightness(0) invert(1);
}
.attachedButton.excel:after {
  filter: brightness(0) invert(1);
}
.attachedButton.excel:hover {
  border: solid 1px #3c6e3e;
}
.attachedButton.excel:hover:before {
  filter: none;
}
.attachedButton.excel:hover:after {
  filter: invert(38%) sepia(15%) saturate(1264%) hue-rotate(73deg) brightness(94%) contrast(94%);
}
.attachedButton.word {
  background: #2e3d7f;
  border: solid 1px #fff;
  color: #fff;
}
.attachedButton.word::before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  background: url(../images/icon-word.png);
  background-size: contain;
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translate(0, -50%);
  filter: brightness(0) invert(1);
}
.attachedButton.word:after {
  filter: brightness(0) invert(1);
}
.attachedButton.word:hover {
  border: solid 1px #2e3d7f;
}
.attachedButton.word:hover:before {
  filter: none;
}
.attachedButton.word:hover:after {
  filter: invert(20%) sepia(97%) saturate(645%) hue-rotate(198deg) brightness(92%) contrast(95%);
}
.attachedButton.pdf:hover {
  background: #fff;
  color: #a53434;
}
.attachedButton.excel:hover {
  background: #fff;
  color: #3c6e3e;
}
.attachedButton.word:hover {
  background: #fff;
  color: #2e3d7f;
}

hr.hr {
  border-top: solid 1px #cf807e;
}

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

div.paging span.paging-text a {
  padding: 3px 8px;
  display: block;
}

div.paging span.current {
  background: #cf807e;
  border: 1px solid #cf807e;
  color: #fff;
  display: inline;
  zoom: 1;
  padding: 3px 8px;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
}

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

/*-------------------------------------------------------------------------------------------*
 *
 * business.html
 *  
 *-------------------------------------------------------------------------------------------*/
.white-Wrap {
  position: relative;
  overflow: hidden;
}
.white-Wrap:before {
  display: none;
}
@media (min-width: 576px) {
  .white-Wrap:before {
    opacity: 0.8;
    white-space: nowrap;
    font-family: "Open Sans", sans-serif;
    font-weight: 300;
    content: attr(data-backgorund-text);
    display: block;
    writing-mode: vertical-rl;
    font-size: 16rem;
    color: #f0f0f0;
    position: absolute;
    top: 0px;
    right: 0px;
    line-height: 1;
    z-index: -1;
  }
}

.beige-Wrap {
  background: #fff5ee;
  padding: 60px 15px;
  position: relative;
  overflow: hidden;
}
.beige-Wrap:before {
  display: none;
}
@media (min-width: 576px) {
  .beige-Wrap:before {
    opacity: 0.8;
    white-space: nowrap;
    font-family: "Open Sans", sans-serif;
    font-weight: 300;
    content: attr(data-backgorund-text);
    display: block;
    writing-mode: vertical-rl;
    font-size: 16rem;
    color: #fff;
    position: absolute;
    top: 0px;
    left: 0px;
    line-height: 1;
  }
}

.flowDl {
  display: flex;
  width: 100%;
  flex-direction: column;
}
@media (min-width: 576px) {
  .flowDl {
    flex-direction: row;
  }
}
.flowDl dt {
  width: 50%;
  margin: 0px 25%;
  display: flex;
  align-items: center;
}
@media (min-width: 576px) {
  .flowDl dt {
    width: 20%;
    margin-left: 0;
    margin-right: 5%;
  }
}
.flowDl dt img {
  border-radius: 50%;
}
.flowDl dd {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
}
.flowDl dd .step {
  font-family: "Open Sans", sans-serif;
  color: #dd5025;
  font-weight: 700;
  font-size: 1.8rem;
}
.flowDl dd h4 {
  font-size: 2.4rem;
  font-weight: 500;
  color: #333;
}

.qa-all .qa-set {
  margin-bottom: 5px;
}
.qa-all .q-box {
  background-color: #f1f1f1;
  padding: 20px 50px;
  position: relative;
  margin-bottom: 5px;
}
.qa-all .q-box:before {
  content: "Q";
  font-family: "Open Sans", sans-serif;
  position: absolute;
  top: calc(50% - 12px);
  left: 15px;
  font-size: 24px;
  font-weight: bold;
  color: #333;
  line-height: 1;
}
.qa-all .q-box:after {
  content: "";
  position: absolute;
  top: calc(50% - 13px);
  right: 15px;
  width: 25px;
  height: 25px;
  background: url(../images/icon_plus.svg);
}
.qa-all .q-box:hover {
  cursor: pointer;
}
.qa-all .q-open:after {
  background: url(../images/icon_minus.svg);
}
.qa-all .a-box {
  background-color: #fff;
  padding: 20px 50px;
  display: none;
  margin-bottom: 15px;
  position: relative;
}
.qa-all .a-box:before {
  display: block;
  content: "A";
  font-family: "Open Sans", sans-serif;
  position: absolute;
  top: calc(50% - 12px);
  left: 15px;
  font-size: 24px;
  font-weight: bold;
  color: #dd5025;
  line-height: 1;
}

/*-------------------------------------------------------------------------------------------*
 *
 * service.html
 *  
 *-------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------*
 *
 * company.html
 *  
 *-------------------------------------------------------------------------------------------*/
.responsiveTable {
  width: 100%;
  margin-bottom: 10px;
  border-bottom: solid 1px #ccc;
}
@media (min-width: 768px) {
  .responsiveTable {
    width: 100%;
    display: table;
    border-bottom: none;
  }
}
.responsiveTable tbody {
  display: block;
  width: 100%;
}
@media (min-width: 768px) {
  .responsiveTable tbody {
    display: table-row-group;
  }
}
.responsiveTable tr {
  display: block;
  width: 100%;
}
@media (min-width: 768px) {
  .responsiveTable tr {
    display: table-row;
  }
}
.responsiveTable tr:first-child th {
  border-top: solid 1px #f18b6b;
}
.responsiveTable tr:first-child td {
  border-top: none;
}
@media (min-width: 768px) {
  .responsiveTable tr:first-child td {
    border-top: solid 1px #ccc;
  }
}
.responsiveTable th {
  width: 100%;
  padding: 25px 0px 0px;
  font-weight: bold;
  border-top: solid 1px #f18b6b;
  line-height: 140%;
  display: block;
  font-weight: 700;
}
@media (min-width: 768px) {
  .responsiveTable th {
    padding: 25px 0px;
    width: 30%;
    border-top: none;
    border-bottom: solid 1px #f18b6b;
    line-height: 140%;
    display: table-cell;
    vertical-align: middle;
  }
}
.responsiveTable td {
  width: 100%;
  padding: 7px 0px 25px;
  border-bottom: none;
  line-height: 140%;
  display: block;
}
@media (min-width: 768px) {
  .responsiveTable td {
    padding: 25px 15px;
    border-top: none;
    border-bottom: solid 1px #ccc;
    line-height: 140%;
    display: table-cell;
  }
}

.dotList li {
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.4;
  margin-bottom: 0.8rem;
}
.dotList li:last-child {
  margin-bottom: 0;
}
.dotList li:before {
  content: "";
  display: block;
  width: 0.5rem;
  height: 0.5rem;
  background: #444444;
  position: absolute;
  left: 0;
  top: 1rem;
}
.dotList.Horizonal {
  display: flex;
  flex-wrap: wrap;
}
.dotList.Horizonal li {
  margin-right: 3rem;
  white-space: nowrap;
}

.googleMap {
  width: 100%;
  height: 320px;
}
@media (min-width: 992px) {
  .googleMap {
    height: 480px;
  }
}

/*-------------------------------------------------------------------------------------------*
 *
 * contact.html
 *  
 *-------------------------------------------------------------------------------------------*/
.contactBox {
  width: 100%;
}
.contactBox a {
  text-decoration: none;
}
.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: 24px;
  border-bottom: dotted 1px #888;
  padding: 0 30px 10px;
}
.contactBox dd .num em {
  font-style: normal;
  font-size: 18px;
}
.contactBox dd .time {
  padding-top: 1em;
}

.mailfoamTable {
  width: 100%;
  margin-bottom: 10px;
}
.mailfoamTable th {
  width: 100%;
  padding: 15px 15px 10px 0px;
  font-weight: bold;
  border-top: none;
  border-bottom: solid 1px #ccc;
  line-height: 140%;
  display: block;
}
.mailfoamTable th div {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.mailfoamTable th .required {
  margin-left: 1.6rem;
}
.mailfoamTable td {
  width: 100%;
  padding: 15px 0px 30px 0px;
  border: none;
  line-height: 140%;
  display: block;
}
.mailfoamTable td .form-control {
  font-size: 1.4rem;
  padding: 0.75rem 1.25rem;
}

@media (min-width: 768px) {
  .mailfoamTable table {
    width: 100%;
    display: table;
  }
  .mailfoamTable 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;
  }
  .mailfoamTable th div {
    justify-content: space-between;
  }
  .mailfoamTable td {
    padding: 18px 0px 18px 10px;
    border-top: solid 1px #ccc;
    border-bottom: solid 1px #ccc;
    line-height: 140%;
    display: table-cell;
  }
}
.select-Wrap {
  position: relative;
  display: inline-block;
  width: 80%;
}
@media (min-width: 768px) {
  .select-Wrap {
    width: 25%;
  }
}
.select-Wrap:after {
  position: absolute;
  content: "";
  clip-path: polygon(100% 0, 0 0, 50% 80%);
  width: 8px;
  aspect-ratio: 1;
  top: calc(50% + 1px);
  right: 4%;
  background: #333;
  pointer-events: none;
  transform: translate(0, -50%);
}
.select-Wrap select {
  -webkit-appearance: none;
}

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: #df443e;
  font-size: 12px;
  border-radius: 4px;
  float: right;
  line-height: 1em;
}

.required {
  background: #df443e;
  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;
}

.formBtn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  max-width: 475px;
  min-height: 56px;
  background: #444;
  color: #fff;
  position: relative;
  font-size: 4.2vw;
  line-height: 1.2;
  padding: 8px 0px;
}
@media (min-width: 576px) {
  .formBtn {
    font-size: 18px;
  }
}
.formBtn:hover {
  background: #666;
  text-decoration: none;
}
.formBtn.back:before {
  content: "";
  background: url(../images/icon_arrow-left.svg) no-repeat center/contain;
  display: inline-block;
  width: 30px;
  height: 30px;
  margin-right: 1.2rem;
  filter: brightness(0) invert(1);
}
.formBtn.next:after {
  content: "";
  background: url(../images/icon_arrow-right.svg) no-repeat center/contain;
  display: inline-block;
  width: 30px;
  height: 30px;
  filter: brightness(0) invert(1);
  margin-right: 1.2rem;
}

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;
  word-wrap: break-word;
}
.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-Wrap {
  position: relative;
  margin-top: 60px;
  width: 100%;
  overflow: hidden;
}
@media (min-width: 992px) {
  #h2Title-Wrap {
    margin-top: 70px;
  }
}
@media (min-width: 1200px) {
  #h2Title-Wrap {
    margin-top: 80px;
  }
}

#h2Title {
  position: absolute;
  display: flex;
  top: 0px;
  left: 0px;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  z-index: 2;
}
#h2Title h2 {
  display: flex;
  flex-direction: column;
  line-height: 1;
  justify-content: center;
}
#h2Title h2 .en {
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-size: 16vw;
  text-align: left;
  white-space: nowrap;
}
@media (min-width: 768px) {
  #h2Title h2 .en {
    font-size: 13rem;
  }
}
@media (min-width: 992px) {
  #h2Title h2 .en {
    font-size: 14rem;
  }
}
@media (min-width: 1200px) {
  #h2Title h2 .en {
    font-size: 15rem;
  }
}
#h2Title h2 .ja {
  font-size: 5.2vw;
  font-weight: 400;
  white-space: nowrap;
}
@media (min-width: 768px) {
  #h2Title h2 .ja {
    font-size: 3rem;
  }
}
#h2Title .left-Title {
  width: 24vw;
  height: 100%;
  position: relative;
  overflow: hidden;
}
@media (min-width: 1200px) {
  #h2Title .left-Title {
    width: 22vw;
  }
}
@media (min-width: 1400px) {
  #h2Title .left-Title {
    width: 20vw;
  }
}
#h2Title .left-Title h2 {
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translate(0, -50%);
  max-width: 80vw;
}
@media (min-width: 992px) {
  #h2Title .left-Title h2 {
    left: 30px;
  }
}
@media (min-width: 1400px) {
  #h2Title .left-Title h2 {
    max-width: initial;
    left: 60px;
  }
}
#h2Title .right-Title {
  width: 74vw;
  height: 100%;
  position: relative;
  overflow: hidden;
}
@media (min-width: 1200px) {
  #h2Title .right-Title {
    width: 78vw;
  }
}
@media (min-width: 1400px) {
  #h2Title .right-Title {
    width: 80vw;
  }
}
#h2Title .right-Title h2 {
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translate(-24vw, -50%);
  max-width: 80vw;
  color: #fff;
}
@media (min-width: 992px) {
  #h2Title .right-Title h2 {
    left: 30px;
  }
}
@media (min-width: 1200px) {
  #h2Title .right-Title h2 {
    transform: translate(-22vw, -50%);
  }
}
@media (min-width: 1400px) {
  #h2Title .right-Title h2 {
    max-width: initial;
    transform: translate(-20vw, -50%);
    left: 60px;
  }
}

#h2Title-Image {
  position: relative;
  width: 100%;
  padding: 0px 4vw 0px 24vw;
}
@media (min-width: 1200px) {
  #h2Title-Image {
    padding: 0px 6vw 0px 22vw;
  }
}
@media (min-width: 1400px) {
  #h2Title-Image {
    padding: 0px 8vw 0px 20vw;
  }
}
#h2Title-Image span {
  width: 100%;
  display: block;
  height: 400px;
}
@media (min-width: 992px) {
  #h2Title-Image span {
    height: 440px;
  }
}
@media (min-width: 1200px) {
  #h2Title-Image span {
    height: 480px;
  }
}
@media (min-width: 1400px) {
  #h2Title-Image span {
    height: 520px;
  }
}
#h2Title-Image span.news {
  background: url(../images/bg_h2title-news.jpg) no-repeat center/auto 100%;
}
#h2Title-Image span.p02 {
  background: url(../images/bg_h2title02.jpg) no-repeat center right/auto 100%;
}
#h2Title-Image span.p03 {
  background: url(../images/bg_h2title03.jpg) no-repeat center/auto 100%;
}
#h2Title-Image span.p04 {
  background: url(../images/bg_h2title04.jpg) no-repeat center/auto 100%;
}
#h2Title-Image span.p05 {
  background: url(../images/bg_h2title05.jpg) no-repeat center/auto 100%;
}
#h2Title-Image span.p06 {
  background: url(../images/bg_h2title06.jpg) no-repeat center/auto 100%;
}

.title-Cont {
  height: 100%;
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (min-width: 1200px) {
  .title-Cont {
    border-top: solid 1px #c1c1c1;
    border-bottom: solid 1px #c1c1c1;
  }
}

.title {
  display: flex;
  flex-direction: column;
  position: relative;
  color: #333333;
  font-weight: 300;
  line-height: 1;
  align-items: center;
}
.title.line {
  padding: 60px 0px;
  background: url(../images/bg_title.png) no-repeat center/auto 100%;
}
@media (min-width: 768px) {
  .title.line {
    padding: 110px 0px;
  }
}
.title .inr {
  background: #fff;
  padding: 1.5rem 0px;
  display: flex;
  flex-direction: column;
}
.title .inr.beige {
  background: #fff5ee;
}
.title .en {
  font-size: 9.8vw;
  font-family: "Open Sans", sans-serif;
  text-align: center;
  letter-spacing: 0;
  margin-bottom: 1rem;
}
@media (min-width: 576px) {
  .title .en {
    font-size: 5.4rem;
  }
}
@media (min-width: 1200px) {
  .title .en {
    font-size: 6.4rem;
  }
}
.title .ja {
  font-size: 3.2vw;
  position: relative;
  font-weight: 400;
  text-align: center;
}
@media (min-width: 576px) {
  .title .ja {
    font-size: 1.6rem;
  }
}
.title.center {
  text-align: center;
  margin: 0px auto;
}

.title2 {
  border-bottom: double 3px #f07e5b;
  font-size: 7.8vw;
}
@media (min-width: 576px) {
  .title2 {
    font-size: 4.4rem;
  }
}
@media (min-width: 1200px) {
  .title2 {
    font-size: 4.8rem;
  }
}

.subTitle {
  display: block;
  font-size: 4.8vw;
  color: #333;
  border-left: solid 1px #dd5025;
  padding-left: 1.6rem;
}
@media (min-width: 576px) {
  .subTitle {
    font-size: 3rem;
  }
}

.subTitle2 {
  font-size: 3.6rem;
  font-weight: 700;
  color: #0a5cb8;
}

.read {
  font-size: 2rem;
  font-weight: 700;
}
.read:before {
  content: "";
  display: inline-block;
  width: 12px;
  aspect-ratio: 1;
  background: #0a5cb8;
  margin-right: 8px;
  vertical-align: middle;
}

/*-------------------------------------------------------------------------------------------*
 *
 * table
 *  
 *-------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------*
 *
 * button
 *  
 *-------------------------------------------------------------------------------------------*/
.detailBtn {
  display: inline-flex;
  border: solid 1px #333;
  max-width: 360px;
  width: calc(100% - 30px);
  height: 40px;
  align-items: center;
  justify-content: space-between;
  padding: 0px 15px;
  text-decoration: none;
}
@media (min-width: 992px) {
  .detailBtn {
    height: 46px;
    padding: 0px 20px;
  }
}
.detailBtn:after {
  content: "";
  width: 25px;
  height: 20px;
  background: url(../images/icon_arrow.png) no-repeat center/contain;
  transition: all 600ms 0s ease;
}
.detailBtn:hover:after {
  transform: translate(4px, 0);
}
.detailBtn.back:after {
  transform: scale(-1, 1);
}
.detailBtn.back:hover:after {
  transform: scale(-1, 1) translate(4px, 0);
}
.detailBtn.map:after {
  background: url(../images/icon_mappin.svg) no-repeat center/contain;
}
.detailBtn.map:hover:after {
  transform: translate(0, 0);
}
.detailBtn.black {
  background: #333;
  color: #fff;
}
.detailBtn.black:after {
  filter: brightness(0) invert(1);
}

/*-------------------------------------------------------------------------------------------*
 *
 * Component
 *  
 *-------------------------------------------------------------------------------------------*/
.w100 {
  width: 100%;
}

.h100 {
  height: 100%;
}

.wrapper {
  width: 100%;
  padding: 0px 15px;
}

.padding-Right {
  padding-right: 0;
}
@media (min-width: 992px) {
  .padding-Right {
    padding-right: 8.1%;
  }
}

.padding-Left {
  padding-left: 0;
}
@media (min-width: 992px) {
  .padding-Left {
    padding-left: 8.1%;
  }
}

.anchor {
  padding-top: 100px;
  margin-top: -100px;
}

.objectfit-Img {
  width: 100%;
  height: 100%;
}
.objectfit-Img img {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.photo-ofi {
  height: 0;
  display: block;
  padding-bottom: 56.25%;
  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;
}

.orange {
  color: #dd5025;
}

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

.lh1 {
  line-height: 1;
}

.lh14 {
  line-height: 1.4;
}

.lh2 {
  line-height: 2;
}

small {
  font-size: 75%;
}

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

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

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

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

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

.fs-30 {
  font-size: 3rem;
}

.fs-36 {
  font-size: 3.6rem;
}

.m-auto {
  margin: 0px auto;
}

.mt-00 {
  margin-top: 0px;
}

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

.mt-20 {
  margin-top: 20px;
}

.mt-30 {
  margin-top: 30px;
}

.mt-60 {
  margin-top: 60px;
}

.mt-90 {
  margin-top: 90px;
}

@media (min-width: 992px) {
  .mt-lg-00 {
    margin-top: 0px;
  }
  .mt-lg-10 {
    margin-top: 10px;
  }
  .mt-lg-20 {
    margin-top: 20px;
  }
  .mt-lg-30 {
    margin-top: 30px;
  }
  .mt-lg-60 {
    margin-top: 60px;
  }
  .mt-lg-90 {
    margin-top: 90px;
  }
}
.ml-00 {
  margin-left: 0px !important;
}

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

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

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

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

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

.mb10 {
  margin-bottom: 5px !important;
}

.mb15 {
  margin-bottom: 7.5px !important;
}

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

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

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

.mb50 {
  margin-bottom: 25px !important;
}

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

.mb70 {
  margin-bottom: 35px !important;
}

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

.mb90 {
  margin-bottom: 45px !important;
}

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

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

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

.mb150 {
  margin-bottom: 75px !important;
}

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

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

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

.mb220 {
  margin-bottom: 110px !important;
}

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

@media (min-width: 992px), print {
  .mb10 {
    margin-bottom: 10px !important;
  }
  .mb15 {
    margin-bottom: 15px !important;
  }
  .mb20 {
    margin-bottom: 20px !important;
  }
  .mb30 {
    margin-bottom: 30px !important;
  }
  .mb40 {
    margin-bottom: 40px !important;
  }
  .mb50 {
    margin-bottom: 50px !important;
  }
  .mb60 {
    margin-bottom: 60px !important;
  }
  .mb70 {
    margin-bottom: 70px !important;
  }
  .mb80 {
    margin-bottom: 80px !important;
  }
  .mb90 {
    margin-bottom: 90px !important;
  }
  .mb100 {
    margin-bottom: 100px !important;
  }
  .mb120 {
    margin-bottom: 120px !important;
  }
  .mb140 {
    margin-bottom: 140px !important;
  }
  .mb150 {
    margin-bottom: 150px !important;
  }
  .mb160 {
    margin-bottom: 160px !important;
  }
  .mb180 {
    margin-bottom: 180px !important;
  }
  .mb200 {
    margin-bottom: 200px !important;
  }
  .mb220 {
    margin-bottom: 220px !important;
  }
  .mb240 {
    margin-bottom: 240px !important;
  }
}
.mb00 {
  margin-bottom: 0px !important;
}

.mb10 {
  margin-bottom: 5px !important;
}

.mb15 {
  margin-bottom: 7.5px !important;
}

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

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

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

.mb50 {
  margin-bottom: 25px !important;
}

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

.mb70 {
  margin-bottom: 35px !important;
}

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

.mb90 {
  margin-bottom: 45px !important;
}

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

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

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

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

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

.mb250 {
  margin-bottom: 175px !important;
}

@media (min-width: 992px), print {
  .mb10 {
    margin-bottom: 10px !important;
  }
  .mb15 {
    margin-bottom: 15px !important;
  }
  .mb20 {
    margin-bottom: 20px !important;
  }
  .mb30 {
    margin-bottom: 30px !important;
  }
  .mb40 {
    margin-bottom: 40px !important;
  }
  .mb50 {
    margin-bottom: 50px !important;
  }
  .mb60 {
    margin-bottom: 60px !important;
  }
  .mb70 {
    margin-bottom: 70px !important;
  }
  .mb80 {
    margin-bottom: 80px !important;
  }
  .mb90 {
    margin-bottom: 90px !important;
  }
  .mb100 {
    margin-bottom: 100px !important;
  }
  .mb120 {
    margin-bottom: 120px !important;
  }
  .mb140 {
    margin-bottom: 140px !important;
  }
  .mb160 {
    margin-bottom: 160px !important;
  }
  .mb180 {
    margin-bottom: 180px !important;
  }
  .mb250 {
    margin-bottom: 250px !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;
}

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

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

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

.mb-250 {
  margin-bottom: 250px !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;
  }
  .mb-sm-180 {
    margin-bottom: 180px !important;
  }
  .mb-sm-210 {
    margin-bottom: 210px !important;
  }
  .mb-sm-240 {
    margin-bottom: 240px !important;
  }
  .mb-sm-250 {
    margin-bottom: 250px !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;
  }
  .mb-md-180 {
    margin-bottom: 180px !important;
  }
  .mb-md-210 {
    margin-bottom: 210px !important;
  }
  .mb-md-240 {
    margin-bottom: 240px !important;
  }
  .mb-md-250 {
    margin-bottom: 250px !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;
  }
  .mb-lg-180 {
    margin-bottom: 180px !important;
  }
  .mb-lg-210 {
    margin-bottom: 210px !important;
  }
  .mb-lg-240 {
    margin-bottom: 240px !important;
  }
  .mb-lg-250 {
    margin-bottom: 250px !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;
  }
  .mb-xl-180 {
    margin-bottom: 180px !important;
  }
  .mb-xl-210 {
    margin-bottom: 210px !important;
  }
  .mb-xl-240 {
    margin-bottom: 240px !important;
  }
  .mb-xl-250 {
    margin-bottom: 250px !important;
  }
}
@media (min-width: 1400px) {
  .mb-xxl-00 {
    margin-bottom: 0px !important;
  }
  .mb-xxl-10 {
    margin-bottom: 10px !important;
  }
  .mb-xxl-15 {
    margin-bottom: 15px !important;
  }
  .mb-xxl-20 {
    margin-bottom: 20px !important;
  }
  .mb-xxl-30 {
    margin-bottom: 30px !important;
  }
  .mb-xxl-40 {
    margin-bottom: 40px !important;
  }
  .mb-xxl-50 {
    margin-bottom: 50px !important;
  }
  .mb-xxl-60 {
    margin-bottom: 60px !important;
  }
  .mb-xxl-70 {
    margin-bottom: 70px !important;
  }
  .mb-xxl-80 {
    margin-bottom: 80px !important;
  }
  .mb-xxl-90 {
    margin-bottom: 90px !important;
  }
  .mb-xxl-100 {
    margin-bottom: 100px !important;
  }
  .mb-xxl-120 {
    margin-bottom: 120px !important;
  }
  .mb-xxl-150 {
    margin-bottom: 150px !important;
  }
  .mb-xxl-180 {
    margin-bottom: 180px !important;
  }
  .mb-xxl-210 {
    margin-bottom: 210px !important;
  }
  .mb-xxl-240 {
    margin-bottom: 240px !important;
  }
  .mb-xxl-250 {
    margin-bottom: 250px !important;
  }
}
@media print {
  .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;
  }
  .mb-180 {
    margin-bottom: 180px !important;
  }
  .mb-210 {
    margin-bottom: 210px !important;
  }
  .mb-240 {
    margin-bottom: 240px !important;
  }
}/*# sourceMappingURL=style.css.map */