@charset "UTF-8";
* {
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

/* 大枠 */
html,
body {
  height: 100%;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: none;
  -webkit-overflow-scrolling: touch !important;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-size: 14px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  line-height: 1.9;
  font-weight: 500;
  color: #3E3E3E;
  word-wrap: break-word;
  overflow-wrap: break-word;
  background: url(../img/bg.jpg) repeat-y top/cover;
}
@media screen and (min-width: 768px) {
  body {
    font-size: 16px;
  }
}
body #wrapper {
  height: auto;
}

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

#screen {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 200;
}

@media print {
  html,
  html body {
    overflow: visible !important;
  }
}
/* アクセシビリティ */
img {
  image-rendering: auto;
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
  box-shadow: #000 0 0 0; /* ロールオーバー対応 */
}

img,
x:-moz-any-link,
x:default {
  box-shadow: #000 0 0 0; /* IE7対応 */
}

/* リンク */
a {
  display: inline-block;
}
a:link, a:visited, a:active {
  color: inherit;
  text-decoration: none;
}
@media screen and (min-width: 768px) {
  a:hover {
    color: inherit;
    opacity: 0.7;
    text-decoration: none !important;
  }
}

.container {
  width: 100%;
  max-width: 1200px;
  padding: 0 20px;
  margin: 0 auto;
  position: relative;
}

.ft_barlow {
  font-family: "Barlow Condensed", sans-serif;
}

.pc_only {
  display: none;
}
@media screen and (min-width: 768px) {
  .pc_only {
    display: block;
  }
}

.sp_only {
  display: block;
}
@media screen and (min-width: 768px) {
  .sp_only {
    display: none;
  }
}

/* ▼▼▼ ヘッダー
====================================================== */
header {
  width: 100%;
  background: #1E5445;
  padding: 0;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999;
  overflow: visible;
}
@media screen and (min-width: 768px) {
  header {
    position: relative;
    top: auto;
    left: auto;
  }
}
header .site_title {
  max-width: 65px;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 99999;
}
@media screen and (min-width: 768px) {
  header .site_title {
    max-width: 180px;
  }
}
header .site_title a:hover {
  opacity: 1;
}
header .site_title::before, header .site_title::after {
  content: "";
  background: #3e3e3e;
  position: absolute;
}
header .site_title::before {
  width: 1px;
  height: calc(100% + 6px);
  top: 0;
  right: -6px;
}
@media screen and (min-width: 768px) {
  header .site_title::before {
    height: calc(100% + 10px);
    right: -10px;
  }
}
header .site_title::after {
  width: calc(100% + 6px);
  height: 1px;
  bottom: -6px;
  right: 0;
}
@media screen and (min-width: 768px) {
  header .site_title::after {
    width: calc(100% + 10px);
    bottom: -10px;
  }
}
header .header_inner {
  background-color: #1E5445;
  width: 100%;
  height: 50px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999;
}
@media screen and (min-width: 768px) {
  header .header_inner {
    width: 100%;
    height: auto;
    background: none;
    position: relative;
    top: auto;
    left: auto;
    z-index: 0;
  }
}

.menu {
  --menu-width:50px;
  --menu-height:50px;
  --menu-bar-color:#E0EEE9;
  --menu-bar-width:26px;
  --menu-bar-height:1px;
  --menu-bar-gap:10px;
  display: block;
  width: var(--menu-width);
  height: var(--menu-height);
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2000;
}
.menu .icon {
  display: block;
  width: var(--menu-bar-width);
  height: var(--menu-bar-height);
  background: var(--menu-bar-color);
  position: absolute;
  top: 50%;
  right: calc((var(--menu-width) - var(--menu-bar-width)) / 2);
  box-sizing: border-box;
  transition: all 0.3s;
}
.menu .icon::before, .menu .icon::after {
  content: "";
  width: var(--menu-bar-width);
  height: var(--menu-bar-height);
  background: var(--menu-bar-color);
  position: absolute;
  transition: all 0.3s;
  right: 0;
}
.menu .icon::before {
  top: calc(-1 * var(--menu-bar-gap));
}
.menu .icon::after {
  bottom: calc(-1 * var(--menu-bar-gap));
}
.menu .icon.active {
  background: transparent;
}
.menu .icon.active::before {
  transform: rotate(-135deg);
  top: 0;
}
.menu .icon.active::after {
  transform: rotate(135deg);
  bottom: 0;
}
@media screen and (min-width: 768px) {
  .menu {
    display: none;
  }
}

/* グローバルナビゲーション */
#gnav {
  display: block !important;
  transition: 0.5s ease-in-out;
  float: none;
  width: 100%;
  max-height: 100vh;
  padding-top: 75px;
  margin: 0;
  background: #1E5445;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1000;
  overflow: auto;
  transform: translateY(-100%);
}
#gnav.open {
  transform: translateY(0);
}
@media screen and (min-width: 768px) {
  #gnav {
    background: none;
    padding-top: 0;
    transition: 0s;
    position: relative;
    top: auto;
    left: auto;
    transform: translateY(0);
    overflow: hidden;
    padding: 20px 0;
  }
}
#gnav .gnav_list {
  display: block;
}
@media screen and (min-width: 768px) {
  #gnav .gnav_list {
    display: flex;
    justify-content: flex-end;
    gap: 48px;
  }
}
#gnav .gnav_list .gnav_item {
  width: 100%;
  max-width: 100%;
  height: auto;
  text-indent: 0;
  padding: 0 20px;
}
@media screen and (min-width: 768px) {
  #gnav .gnav_list .gnav_item {
    width: auto;
    padding: 0;
  }
}
#gnav .gnav_list .gnav_item a {
  display: block;
  color: #fff;
  position: relative;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  padding: 10px 0;
  border-bottom: 1px solid #E0EEE9;
}
@media screen and (min-width: 768px) {
  #gnav .gnav_list .gnav_item a {
    display: inline-block;
    padding: 0;
    text-align: left;
    border-bottom: none;
  }
  #gnav .gnav_list .gnav_item a::after {
    content: "";
    width: 0;
    height: 1px;
    background: #fff;
    position: absolute;
    bottom: 0px;
    left: 0;
    transition: width 0.3s ease;
  }
}
#gnav .gnav_list .gnav_item a:hover {
  text-decoration: none;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  #gnav .gnav_list .gnav_item a:hover {
    text-decoration: none;
    opacity: 1;
  }
  #gnav .gnav_list .gnav_item a:hover::after {
    width: 100%;
  }
}
#gnav .gnav_list .gnav_item_img {
  margin: 20px auto;
  text-align: center;
}
@media screen and (min-width: 768px) {
  #gnav .gnav_list .gnav_item_img {
    margin: 0;
    text-align: left;
  }
}

/* common
====================================================== */
#main {
  margin: 50px auto 0;
  clear: both;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  #main {
    margin: 0 auto;
  }
}

.btn {
  background-color: #1E5445;
  border: 2px solid #1E5445;
  border-radius: 100vmax;
  height: 65px;
  line-height: 60px;
  width: 100%;
  text-align: center;
  color: #fff !important;
  transition: 0.3s;
}
.btn.wh {
  background-color: #fff;
  color: #1E5445 !important;
}
.btn:hover {
  opacity: 1;
  background-color: #fff;
  color: #1E5445 !important;
}
.btn.wh:hover {
  opacity: 0.7;
}

.category_title {
  position: relative;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .category_title {
    font-size: 32px;
  }
}
.category_title::before {
  content: "";
  width: 46px;
  height: 6px;
  background: #1E5445;
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 3px;
}
.category_title.white {
  color: #fff;
}
.category_title.white::before {
  background: #fff;
}

.mv_under {
  margin-top: 80px;
}
@media screen and (min-width: 768px) {
  .mv_under {
    margin-top: 110px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 12%;
  }
}
.mv_under_ttl {
  position: relative;
  color: #1E5445;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-align: center;
  font-size: 32px;
  z-index: 2;
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .mv_under_ttl {
    font-size: 40px;
    margin-bottom: 0;
  }
}
.mv_under_ttl::after {
  position: absolute;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 80px;
  color: rgba(155, 192, 182, 0.3);
  letter-spacing: 0;
  font-weight: 300;
  line-height: 1;
  z-index: -1;
  top: -15px;
  left: 50%;
  translate: -50% -50%;
}
@media screen and (min-width: 768px) {
  .mv_under_ttl::after {
    font-size: 160px;
    top: -30px;
  }
}
.mv_under_img {
  position: relative;
  max-width: 730px;
  width: 100%;
  z-index: 1;
  padding-left: 40px;
}
@media screen and (min-width: 768px) {
  .mv_under_img {
    padding-left: 0px;
    width: 60%;
  }
}
.mv_under_img img {
  border-radius: 20px 0 0 20px;
}

.category_title_sub {
  text-align: center;
  color: #9BC0B6;
  font-size: 24px;
  font-weight: 300;
  line-height: 1;
}

.fix_bnr {
  position: fixed;
  right: 0;
  bottom: 0;
  background-color: #000;
  width: 100%;
  padding: 10px;
  z-index: 99;
}
@media screen and (min-width: 768px) {
  .fix_bnr {
    bottom: 50px;
    max-width: 180px;
    box-shadow: 4px 4px 10px;
    padding: 10px;
  }
}
.fix_bnr_txt {
  color: #fff;
  font-size: 13px;
  margin-bottom: 10px;
}
@media screen and (min-width: 768px) {
  .fix_bnr_txt {
    text-align: center;
    line-height: 1.4;
  }
}
.fix_bnr_btn {
  text-align: center;
  width: 100%;
  padding: 10px;
  border: 1px solid #fff;
  color: #fff !important;
  margin-bottom: 5px;
  transition: 0.3s;
  font-size: 13px;
}
@media screen and (min-width: 768px) {
  .fix_bnr_btn {
    margin-bottom: 10px;
  }
}
.fix_bnr_btn:hover {
  background-color: #fff;
  color: #000 !important;
  opacity: 1;
}
.fix_bnr_tel {
  font-size: 16px;
  text-align: center;
  color: #fff;
  line-height: 1.4;
}
@media screen and (min-width: 768px) {
  .fix_bnr_tel {
    border-top: 1px solid #fff;
    padding-top: 5px;
    font-size: 13px;
  }
}

/* ▼▼▼ フッター
===================================== */
.contact_area {
  padding: 60px 0;
}
.contact_area .contact_area_inner {
  background-color: #1E5445;
  padding: 40px 20px 0;
  border-radius: 20px;
  overflow: hidden;
}
.contact_area_text {
  font-size: 14px;
  text-align: center;
  color: #fff;
  margin: 35px auto 20px;
}
@media screen and (min-width: 768px) {
  .contact_area_text {
    font-size: 18px;
    margin: 45px auto 30px;
  }
}
.contact_area_tel .tel_num {
  color: #fff;
  text-align: center;
  line-height: 1.4;
  font-size: 24px;
}
@media screen and (min-width: 768px) {
  .contact_area_tel .tel_num {
    font-size: 32px;
  }
}
.contact_area_tel .tel_num span {
  position: relative;
  padding-left: 40px;
}
@media screen and (min-width: 768px) {
  .contact_area_tel .tel_num span {
    padding-left: 60px;
  }
}
.contact_area_tel .tel_num span::before {
  content: "";
  position: absolute;
  background: url(../img/icon_tel.svg) no-repeat center/contain;
  width: 30px;
  height: 35px;
  top: 0;
  left: 0;
}
@media screen and (min-width: 768px) {
  .contact_area_tel .tel_num span::before {
    width: 45px;
    height: 43px;
  }
}
.contact_area_tel .tel_note {
  text-align: center;
  color: #fff;
}
.contact_area .btn_contact {
  max-width: 460px;
  margin: 30px auto 0;
}
.contact_area .btn_contact .btn {
  position: relative;
  padding-left: 35px;
}
.contact_area .btn_contact .btn::before {
  content: "";
  position: absolute;
  background: url(../img/icon_mail_gr.svg) no-repeat center/contain;
  width: 20px;
  height: 16px;
  top: 50%;
  left: 16px;
  translate: 0 -50%;
}
@media screen and (min-width: 768px) {
  .contact_area .btn_contact .btn::before {
    width: 27px;
    height: 21px;
    left: 43px;
  }
}
.contact_area_flow_txt {
  font-size: 60px;
  font-weight: 400;
  font-family: "Barlow Condensed", sans-serif;
  color: rgba(255, 255, 255, 0.2);
  line-height: 1;
  white-space: nowrap;
  display: inline-block;
  padding-right: 50px;
  animation: flowText 20s linear infinite;
}
@media screen and (min-width: 768px) {
  .contact_area_flow_txt {
    font-size: 120px;
    padding-right: 100px;
  }
}

@keyframes flowText {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
footer {
  width: 100%;
  clear: both;
  overflow: hidden;
}

.footer_inner {
  border-top: 1px solid #1E5445;
  padding: 40px 20px 120px;
}
@media screen and (min-width: 768px) {
  .footer_inner {
    padding: 45px 20px;
  }
}
.footer_wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 25px;
}
@media screen and (min-width: 768px) {
  .footer_wrap {
    flex-direction: row;
    gap: 40px;
    margin-bottom: 45px;
  }
}
.footer_logo {
  max-width: 132px;
  width: 100%;
}
.footer_address {
  line-height: 1.6;
}
.footer_address_name {
  font-size: 20px;
}
.footer_link {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-bottom: 40px;
}
.footer_map iframe {
  width: 100%;
  height: 383px;
}

.btn_footer {
  max-width: 346px;
  width: 100%;
}
.btn_footer .btn {
  position: relative;
  padding-left: 35px;
}
.btn_footer .btn::before {
  content: "";
  position: absolute;
  background: url(../img/icon_mail_wh.svg) no-repeat center/contain;
  width: 27px;
  height: 21px;
  top: 50%;
  left: 43px;
  translate: 0 -50%;
}
.btn_footer .btn:hover::before {
  background: url(../img/icon_mail_gr.svg) no-repeat center/contain;
}
.btn_footer_ig {
  max-width: 30px;
  width: 100%;
}

.map_txt_link {
  margin-bottom: 45px;
}
.map_txt_link:hover {
  opacity: 1;
  text-decoration: underline !important;
}

#copyright {
  font-size: 12px;
  text-align: center;
  font-family: "Barlow Condensed", sans-serif;
}/*# sourceMappingURL=base.css.map */