@charset "utf-8";
/* CSS Document */
body {
  font-feature-settings: "palt";
  word-wrap: break-word;
  overflow-wrap: break-word;
  font-kerning: normal;
  -webkit-font-kerning: normal;
  font-size: 14px;
  /*font-family: メイリオ, Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;*/
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.1em;
  margin: 0px;
  box-sizing: border-box;
  background-color: #fff;
  color: #000;
  padding: 0em;
  -webkit-animation: fadeIn 2s ease 0s 1 normal;
  animation: fadeIn 2s ease 0s 1 normal;
}
.fa-arrow-right {
  padding-left: 10px;
}
.link_line {
  background: linear-gradient(transparent 80%, #ff6 80%);
}
.link_line a {
  color: #000000;
}
.clearfix:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}
h2 {
  font-size: 28px;
  text-align: center;
}
h3 {
  font-size: 18px;
}
h4 {
  font-size: 16px;
}
h5 {
  font-size: 15px;
  text-align: center;
}
.f10 {
  font-size: 10px;
}
.f12 {
  font-size: 12px;
}
.f15 {
  font-size: 15px;
}
.f17 {
  font-size: 17px;
}
.f20 {
  font-size: 20px;
}
.bk_kon {
  background: #1c273c;
}
.orange {
  color: #e55d39;
}
.blue {
  color: #3366cc;
}
.left {
  text-align: left;
}
.no-link {
  pointer-events: none;
}
#wrapper {
  width: 100%;
  margin: auto;
  max-width: 2000px;
}
.contents {
  width: 100%;
  margin: 5% auto 7%;
  max-width: 1280px;
}
/* page-top */
#page_top {
  position: fixed;
  bottom: 30px;
  right: 30px;
}
#page_top a {
  text-align: center;
  text-decoration: none;
  font-size: 3.5em;
  color: #dbd6d6;
}
#page_top a:hover {
  text-decoration: none;
}
.anchor {
  display: block;
  padding-top: 70px;
  margin-top: -70px;
}
@media screen and (max-width: 1024px) {
  .contents {
    padding: 0 2.5%;
  }
}
@media screen and (min-width: 769px) {
  .pc_none {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .sp_none {
    display: none;
  }
  h2 {
    font-size: 160%;
  }
  h3 {
    font-size: 130%;
    width: 80%;
    margin: auto 10%;
    line-height: 1.7;
  }
  #page_top {
    right: 10px;
  }
  .none {
    display: none;
  }
  body {
    font-size: 12px;
  }
  h2 {
    font-size: 160%;
  }
  h3 {
    width: 100%;
    margin: auto 0 5%;
    line-height: 2;
    text-align: left;
  }
  h5 {
    font-size: 110%;
  }
}
/*==========================
	ページ内リンク
===========================*/
.anchor {
  display: block;
  padding-top: 80px;
  margin-top: -80px;
}
.p_link {
  margin: 2% auto 3%;
}
.p_link ul {
  display: flex;
  justify-content: center;
}
.p_link ul a {
  display: block;
  width: 14%;
  text-align: center;
  background-color: #eff5f5;
  padding: 10px 0;
  border-right: 3px solid #fff;
}
.p_link ul a:hover {
  background-color: #ccffff;
}
.p_link ul a:first-child {
  width: 19% !important;
}
.p_link ul a li {
  padding-right: 5px;
  font-weight: bold;
}
.p_link ul a li::after {
  content: "";
  display: inline-block;
  width: 20px;
  aspect-ratio: 1;
  vertical-align: middle;
  mask-position: center center;
  mask-repeat: no-repeat;
  mask-size: contain;
  mask-image: url("/corp/assets/images/common/icon_arrow_down.svg");
  background: #333;
}
/*==========================
アコーディオン
===========================*/
#acMenu dt {
  font-size: 30px;
  border-top: #666 1px solid;
  border-bottom: #666 1px solid;
  line-height: 55px;
  text-align: center;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  #acMenu {
    width: 100%;
    margin: 0 auto;
  }
  #acMenu dt {
    font-size: 24px;
    font-weight: 500;
    display: block;
    width: 100%;
    height: 50px;
    position: relative;
  }
  /*#acMenu dt {
    border-bottom: none;
  }*/
  #acMenu dt.active {
    border-bottom: #666 1px solid;
  }
  #acMenu dt::after {
    content: "";
    position: absolute;
    right: 25px;
    top: 38%;
    transition: all 0.2s ease-in-out;
    display: block;
    width: 8px;
    height: 8px;
    border-top: solid 2px #473a24;
    border-right: solid 2px #473a24;
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
  }
  #acMenu dt.active:after {
    content: "";
    position: absolute;
    right: 25px;
    top: 38%;
    transition: all 0.2s ease-in-out;
    display: block;
    width: 8px;
    height: 8px;
    border-top: solid 2px #473a24;
    border-right: solid 2px #473a24;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  #acMenu dd {
    width: 100%;
    margin: 0 auto;
    display: none;
  }
  #acMenu dt {
    cursor: pointer;
  }
}
@media screen and (max-width: 480px) {
  #acMenu dt::after,
  #acMenu dt.active:after {
    width: 5px;
    height: 5px;
    right: 19px;
  }
  #acMenu dt {
    font-size: 17px;
  }
  .sp_dt {
    font-size: 16px !important;
    letter-spacing: -0.05em;
  }
  #acMenu dt.active:after {
    top: 45%;
  }
  #acMenu dt::after,
  #acMenu dt.active:after {
    border-top: solid 1px #999;
    border-right: solid 1px #999;
  }
  #acMenu .info::after,
  #acMenu .info.active:after {
    border-top: solid 1px #fff;
    border-right: solid 1px #fff;
  }
}
/*==========================
	main
===========================*/
.main {
  background-color: #0e43c8;
  width: 100%;
  height: 80vh;
  background: url("../images/main.jpg") center center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}
.main img {
  max-width: 2000px;
  max-height: 750px;
}
.btn_top {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
  position: relative;
  display: inline-block;
  padding: 1rem 4rem;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  color: #212529;
  border-radius: 0.5rem;
}
.btn-wrap {
  margin: 30px 0;
  position: absolute;
  right: 3%;
  bottom: 5%;
}
.btn-wrap2 {
  margin: 30px 0;
  position: absolute;
  right: 3%;
  bottom: 0;
}
.btn-c {
  font-size: 1.2rem;
  position: relative;
  padding: 0.25rem 1rem 0.5rem 1.5rem;
  color: #fff !important;
  background: rgba(49, 78, 170, 1);
}
a.btn-c span {
  font-size: 1.2rem;
  position: absolute;
  top: -1.25rem;
  left: calc(50% - 175px);
  display: block;
  width: 350px;
  padding: 0.4rem 0 0;
  color: rgba(49, 78, 170, 1);
  border: 2px solid rgba(49, 78, 170, 1);
  border-radius: 100vh;
  background: #fff;
  -webkit-box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
}
a.btn-c span:before,
a.btn-c span:after {
  position: absolute;
  left: calc(50% - 10px);
  content: "";
}
a.btn-c span:before {
  bottom: -10px;
  border-width: 10px 10px 0 10px;
  border-style: solid;
  border-color: rgba(49, 78, 170, 1) transparent transparent transparent;
}
a.btn-c span:after {
  bottom: -7px;
  border-width: 10px 10px 0 10px;
  border-style: solid;
  border-color: #fff transparent transparent transparent;
}
.m_ttl {
  position: absolute;
  left: 5%;
  top: 80px;
}
.mcopy {
  position: absolute;
  right: 5%;
  bottom: 5px;
}
.mcopy img {
  max-width: 490px;
}
.main_cap {
  font-size: 13px;
  color: #000;
  position: absolute;
  bottom: 5px;
  left: 2.7%;
}
.bnr_cp {
  max-width: 560px;
  width: 32%;
  position: absolute;
  right: 1%;
  bottom: 3%;
}
.tb80 {
  width: 80%;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  .m_ttl {
    left: 4%;
  }
}
@media screen and (max-width: 768px) {
  .main {
    height: 470px;
  }
  .m_ttl {
    width: 40%;
    top: 15px;
  }
}
@media screen and (min-width: 481px) {
  .main_sp {
    display: none;
  }
}
@media screen and (max-width: 480px) {
  .main {
    display: none;
  }
}
/*==========================
	lead
===========================*/
.lead_area {
  position: relative;
}
.lead_area ul {
  display: flex;
  justify-content: center;
}
.lead_area ul li {
  width: 28%;
  margin: 0 1.5%;
}
.lead_bk1 {
  position: absolute;
  left: 0;
  bottom: 3%;
  max-width: 250px;
}
.lead_bk2 {
  position: absolute;
  right: 0;
  bottom: 3%;
  max-width: 250px;
}
.lead {
  margin: 5% 10%;
  line-height: 2;
}
.contact_area {
  text-align: center;
  margin-top: -5px;
  padding: 5%;
}
.contact_area h4 {
  border-bottom: 3px solid #014593;
  display: inline-block;
  padding-bottom: 8px;
  font-size: 30px;
  font-weight: 700;
  color: #014593;
  line-height: 1;
  margin-bottom: 20px;
}
.coName {
  font-size: 18px;
  color: #014593;
  font-weight: 700;
}
.contact_txt {
  font-size: 16px;
  line-height: 1.75;
}
.m_btn {
  display: inline-block;
  border-left: 1px solid #000;
  border-right: 1px solid #000;
  padding: 1% 5%;
}
@media screen and (max-width: 768px) {
  .lead_bk1,
  .lead_bk2 {
    width: 20%;
  }
}
@media screen and (max-width: 480px) {
  .lead_area {
    margin-bottom: 25%;
  }
  .lead {
    text-align: left;
    margin-bottom: 15%;
  }
  .lead_bk1,
  .lead_bk2 {
    width: 50%;
    border: 0;
    bottom: -8%;
  }
}
/*==========================
	btn
===========================*/
a.d_btn {
  font-size: 1.2em;
  position: relative;
  display: inline-block;
  padding: 1.3em 2.5em;
  border: 2px solid #333;
  color: #333;
  text-align: center;
  text-decoration: none;
  transition: 0.3s;
  z-index: 1;
}
a.d_btn img {
  max-width: 50px;
  display: inline;
  margin-left: 10px;
  vertical-align: baseline;
}
a.d_btn::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -2;
  content: "";
  background: #85caf2;
  transform-origin: left top;
  transform: scale(0, 1);
  transition: transform 0.3s;
}
a.d_btn:hover::before {
  transform-origin: left top;
  transform: scale(1, 1);
}
.h_btn {
  border: 1px #000 solid;
  padding: 2px 8%;
  border-radius: 20px;
}
.h_btn:hover {
  background-color: #eae244;
}
.l_btn {
  margin: 0 auto 8%;
}
.l_btn p {
  color: #fff;
  font-size: 1.5em;
  font-weight: bold;
  background-color: #268bc5;
  display: inline-block;
  padding: 1% 5%;
  margin-top: 30px;
  border-bottom: solid 10px #175d85;
  border-radius: 5px;
}
.l_btn p::after {
  font-family: "Font Awesome 5 Free";
  content: "\f0da";
  padding-left: 15px;
}
.m_btn p:hover {
  background-color: #eae244;
}
.l_btn p:hover {
  color: #000;
  background-color: #85caf2;
}
.l_btn p img,
.m_btn p img {
  max-width: 50px;
  display: inline;
  margin-left: 10px;
  vertical-align: baseline;
}
.info_l_btn p {
  color: #000;
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  a.d_btn {
    padding: 0.5em 5%;
  }
}
@media screen and (max-width: 768px) {
  a.d_btn {
    padding: 0.5em 10%;
  }
  .l_btn p {
    margin-bottom: 5%;
    font-size: 120%;
  }
}
/*==========================
	Work space
===========================*/
ul.work_area {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  justify-content: center;
  margin: 3% 0 0;
}
ul.work_area li {
  display: block;
  width: 28.5%;
  margin: 0 1.5%;
  margin-bottom: 8%;
  text-align: left;
}
ul.work_area li div {
  padding: 2% 3%;
}
ul.work_area li h3 {
  text-align: center;
  font-size: 1.15em;
  font-weight: bold;
  border: 1px solid #000;
  padding: 3px auto 10px;
}
.work_photo {
  padding: 2% 0 4%;
  border-bottom: none !important;
  border-top: none !important;
  position: relative;
}
.bay_icon,
.life_icon {
  width: 60px;
  bottom: 0;
  position: absolute;
  left: -10px;
}
.bay_icon2 {
  width: 60px;
  top: -10px;
  position: absolute;
  left: 10px;
}
.work_adress {
  font-size: 0.9em;
  padding-top: 10px;
}
@media screen and (max-width: 480px) {
  .shukuhaku_area p {
    font-size: 11px;
  }
  ul.work_area {
    display: block;
  }
  ul.work_area li {
    width: 100%;
    margin: 5% auto 10%;
  }
}
/*==========================
	Stay
===========================*/
.i_erea {
  width: 100%;
  margin: 5% 0;
}
.s_box {
  display: flex;
  width: 100%;
  margin: 0 auto 8%;
  justify-content: center !important;
}
.s_box li:first-child {
  width: 40%;
  position: relative;
}
.s_box li:nth-child(2) {
  padding-right: 1.5%;
}
.s_box li:first-child img {
  max-width: 420px;
}
.s_box li:last-child {
  width: 48%;
}
.s_box h3 {
  font-size: 1.6em;
  font-weight: bold;
  margin-bottom: 4%;
}
.s_txt {
  font-size: 1em;
  text-align: left;
  line-height: 2;
  margin-bottom: 5%;
}
@media screen and (max-width: 480px) {
  .s_box {
    display: block;
  }
  .s_box h5 {
    margin-top: 6%;
  }
  .s_box li:first-child,
  .s_box li:last-child {
    width: 100%;
  }
  .s_box li:first-child {
    border-top: 1px dotted #999;
    padding-top: 8%;
  }
  .s_box li:last-child {
    margin-bottom: 12%;
  }
  .s_lead {
    margin-top: 5%;
  }
}
/*==========================
	Activity
===========================*/
ul.activity_area {
  display: block;
  width: 100%;
  flex-wrap: wrap;
  justify-content: center;
  margin: 3% 0 0;
}
ul.activity_area li {
  display: flex;
  padding: 2% 3% 1.5%;
  margin: 0 auto 3.5%;
  text-align: left;
  border: 1px solid #000;
}
ul.activity_area li div:first-child {
  width: 25%;
  margin-right: 3%;
}
ul.activity_area li div:last-child {
  width: 70%;
}
ul.activity_area li div:first-child img {
  width: 100%;
}
ul.activity_area li div:last-child h5 {
  text-align: center;
  margin-bottom: 10px;
  font-size: 1.25em;
  font-weight: bold;
}
.activity_photo {
  padding: 2% 0 4%;
  border-bottom: none !important;
  border-top: none !important;
  position: relative;
}
.activity_adress {
  font-size: 1em;
  padding-top: 10px;
}
@media screen and (max-width: 480px) {
  ul.activity_area li {
    width: 100%;
    padding: 2% 3% 3%%;
    margin: 5% auto 8%;
    display: block;
  }
  ul.activity_area li div:first-child,
  ul.activity_area li div:last-child {
    width: 100%;
  }
}
/*==========================
  plan
===========================*/
.plan_area ul {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  justify-content: center;
}
.plan_area ul li {
  width: 30%;
  margin: 0 auto 8%;
}
p.category {
  position: relative;
  display: inline-block;
  padding: 0 55px;
  font-size: 1.5em;
  margin-bottom: 0.5em;
}
p.category:before,
p.category:after {
  content: "";
  position: absolute;
  top: 50%;
  display: inline-block;
  width: 45px;
  height: 2px;
  border-top: solid 1px black;
  border-bottom: solid 1px black;
}
p.category:before {
  left: 0;
}
p.category:after {
  right: 0;
}
.cp_area {
  width: 90%;
  margin: 0 auto 5%;
  background: repeating-linear-gradient(-45deg, #f0f8ff, #f0f8ff 3px, #e9f4ff 3px, #e9f4ff 7px);
  padding: 2% 5% 3%;
}
.ttl_cp {
  width: 50%;
  margin: 0 auto;
  max-width: 558px;
}
@media screen and (max-width: 480px) {
  .cp_area {
    text-align: left;
  }
  .ttl_cp {
    width: 100%;
  }
  .plan_area ul {
    display: block;
  }
  .plan_area ul li {
    width: 100%;
  }
}
/*==========================
 more_ifo
===========================*/
.more_info {
  padding: 5%;
  color: #fff;
}
.more_info a {
  background-color: #fff;
  width: 60%;
  margin: 10px auto;
  padding: 2%;
  font-size: 16px;
  color: #1c273c;
  display: block;
  text-align: left;
}
.more_info a:hover {
  opacity: 0.8;
}
.more_info a::after {
  font-family: "Font Awesome 5 Free";
  content: "\f101";
  display: inline;
  padding-left: 10px;
  color: #1c273c;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .info {
    margin-top: 0;
  }
  .more_info a {
    width: 95%;
    font-size: 14px;
  }
}
/*==========================
  下記固定のお問合せ
===========================*/
@media screen and (min-width: 769px) {
  #bottom_info {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  #bottom_info {
    width: 33%;
    background: rgba(234, 226, 68, 0.5);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    position: fixed;
    bottom: 0;
    z-index: 999;
    border-radius: 30px 30px 0 0;
  }
  #bottom_info p {
    font-size: 130%;
    padding: 5px 15px 5px 0;
  }
  #bottom_info p::before {
    font-family: "Font Awesome 5 Free";
    content: "\f059";
    font-weight: 900;
    padding-right: 5px;
    padding-left: 5px;
    color: #fff;
  }
}
/*=========================
	map
==========================*/
.map {
  height: 100%;
}
/*=========================
	copy
==========================*/
.copy_area {
  width: 100%;
  background-color: #fff3;
  padding: 2%;
  font-size: 0.8em;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .copy_area {
    padding: 10% 1% 5%;
  }
}
@media screen and (max-width: 480px) {
  .copy_area {
    font-size: 0.7em;
  }
}
