@charset "utf-8";

/* googleフォント読み込み */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500;600;700&display=swap');

/* font-family: 'Montserrat', sans-serif; */

/* 共通 */
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
dl,
li,
dt,
dd,
p,
div,
span,
img,
a,
table,
tr,
th,
td {
  margin: 0;
  padding: 0;
  border: 0;
  font-weight: normal;
  vertical-align: baseline;
}

html {
  font-size: 62.5%;
}

header,
footer,
nav,
section,
article,
aside,
figure,
figcaption {
  display: block;
}

body {
  line-height: calc(23 / 16);
  font-family: 游ゴシック, "Yu Gothic", "ヒラギノ角ゴ ProN W3", HiraKakuProN-W3, Meiryo, メイリオ, Verdana, Helvetica, Arial, sans-serif;
  color: #101010;
  font-size: 1.6rem;
  font-weight: 500;
}

p {
  font-weight: 500;
}

ol,
ul {
  list-style: none;
  list-style-type: none;
}

img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

a {
  text-decoration: none;
  cursor: pointer;
  color: #000;
  transition: background-color .6s,color .6s;
}

a[href^="tel:"] {
  pointer-events: none;
}

/* ヘッダーボタン */
.btn_wrapper a,
.btn_wrapper .more-span{
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 18rem;
  height: 4rem;
  background-color: #d2c61a;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1;
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
.btn_wrapper a:hover {
  background: #24386a;	  
}
}

/* more ボタン */
.btn_more a,
.btn_more .more-span{
  font-size: 1.4rem;
  font-family: 'Montserrat', sans-serif;
  width: 28rem;
  height: 7rem;
  background-color: #24386a;
  margin-top: 8rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
.btn_more a:hover {
  filter: brightness(120%);
}
}

.btn_more a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 3rem;
  transform: translateY(-50%);
  background-image: url(../images/arw.png);
  width: 31px;
  height: 9px;
  background-size: contain;
  transition: all .3s;
}
@media screen and (min-width: 768px) {
.btn_more a:hover::after {
  right: 2rem;
}
}

.container {
  width: 1000px;
  max-width: 95%;
  margin: auto;
}

.font_mont {
  font-family: 'Montserrat', sans-serif;
}

/* section共通 */
section {
  padding: 10rem 0;
}

/* section_title */
.section_title {
  font-size: 6.5rem;
  line-height: 1;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: .075em;
  /*background: linear-gradient(to top, #24386a, #24386a 50%, rgba(36, 56, 106, .4) 50%);*/
  background: linear-gradient(to top, #24386a, #24386a 50%, rgba(36, 56, 106, 0.8) 50%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
}

.title_wrapper span {
  font-weight: 700;
  font-size: 1.8rem;
  color: #101010;
  line-height: calc(30 / 18);
  letter-spacing: .1em;
  margin-top: 1rem;
}


/* SPのみに適用させたい要素 */
.is_sp {
  display: none;
}

/* ブロック要素に変化 */
.block {
  display: block;
}

/* header */
#header {
  height: 13rem;
  color: #fff;
  position: relative;
  z-index: 100;
}

.header_inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo {
  letter-spacing: .075em;
  font-weight: 700;
  font-size: 2.4rem;
  padding-top: 1.2rem;
}

.logo span {
  font-size: 1.8rem;
  font-weight: 700;
}
.header_logo a {
	color: #101010;
	text-decoration: none;
	font-weight: bold;
}
.toppage .header_logo a {
	color: #FFF;
	text-decoration: none;
}
.header_right {
  margin-left: auto;
}

.header_info {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  justify-content: flex-end;
  padding-bottom: 2rem;
}

.header_info a.tel {
  font-weight: 500;
  font-size: 2.6rem;
  letter-spacing: .05em;
  color: #fff;
}

.header_info span {
  font-size: 2rem;
  font-weight: 500;
}

.header_info .btn_wrapper a {
  text-transform: uppercase;
}

.header_nav_list {
  display: flex;
  gap: 2.7rem;
}

.header_nav_list a {
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: .075em;
  position: relative;
  color: #fff;
}

.header_nav_list a::after,
.hamburger_menu_nav_list_item a::after {
  position: absolute;
  content: "";
  display: block;
  width: 0;
  bottom: -.9rem;
  height: .2rem;
  background: #24386a;
  transition: all .3s;
}

.header_nav_list a.current::after,
.hamburger_menu_nav_list_item a.current::after {
  width: 100%;
}
@media screen and (min-width: 768px) {
.header_nav_list a:hover::after,
.hamburger_menu_nav_list_item a:hover::after {
  width: 100%;
}
}

.hamburger_menu_nav_list_item a::after {
  bottom: .5rem;
}

/* contact */
#contact {
  width: calc(1720 / 1920 * 100%);
  margin: auto;
  background: #24386a;
  color: #fff;
  padding: 13rem 0;
}

.contact_wrapper {
  display: flex;
  justify-content: space-between;
}

.contact_content {
  width: 50%;
  padding-right: 7rem;
}

.contact_title {
  font-weight: 700;
  font-size: 6rem;
  line-height: calc(50 / 60);
  letter-spacing: .075em;
  text-transform: uppercase;
}

.contact_text {
  margin-top: 5rem;
  line-height: calc(30 / 16);
  letter-spacing: .075em;
}

.contact_tel {
  text-align: right;
}

.contact_info .contact_tel a {
  position: relative;
  font-weight: 600;
  font-size: 4rem;
  line-height: calc(50 / 40);
  letter-spacing: .1em;
  padding-right: 2rem;
  text-align: right;
  color: #fff;
}

.contact_info .contact_tel a::after {
  position: absolute;
  top: 57%;
  left: -3.5rem;
  transform: translateY(-50%);
  content: "";
  width: 2.5rem;
  height: 2.5rem;
  background-image: url(../images/contact_icon_tel.png);
  background-size: contain;
}

.btn_contact {
  margin-top: 4rem;
}

.btn_contact a {
  width: 36rem;
  height: 8rem;
  font-weight: 700;
  gap: 1.9rem;
  letter-spacing: .1em;
  padding-right: 1.5rem;
	border: #d2c61a solid 1px;
}


.btn_contact a figure {
  width: 2.6rem;
}

/* footer_info */
footer {
  background-image: linear-gradient(to top, #eceff7, #eceff7 66.25%, transparent 66.25%);
  ;
}

#footer_info {
  color: #262626;
  padding-bottom: 3.5rem;
}

.footer_info_wrapper {
  display: flex;
  justify-content: space-between;
}

.footer_logo {
  padding-top: 0;
}

.footer_address p {
  font-size: 1.3rem;
  line-height: calc(20 / 13);
  letter-spacing: .075em;
  margin-top: 2rem;
}

.footer_link {
  display: flex;
}

.footer_link_item {
  padding: 0 4rem;
  border-right: 1px solid #e2ddda;
}

.footer_link_item:last-child {
  border-right: none;
  padding-right: 0;
}

.footer_link_item a {
  font-size: 1.4rem;
  font-weight: 700;
  line-height: calc(40 / 14);
  color: #222222;
  letter-spacing: .075em;
}
@media screen and (min-width: 768px) {
.footer_link_item a:hover {
  opacity: 0.7;
	}
}

.footer_copy {
  text-align: center;
  font-size: 1.2rem;
  margin-top: 7.5rem;
  color: #242222;
  letter-spacing: .075em;
}

/* ページトップ */
#pageTop {
  position: fixed;
  bottom: 0;
  right: calc(100 / 1920 * 100%);
  z-index: 99;
}

#pageTop a {
  display: block;
}

#pageTop a img {
  width: 6rem;
  height: 6rem;
}
@media screen and (min-width: 768px) {
	#pageTop a:hover img {
		opacity: 0.8;
	}
}
@media screen and (max-width: 767px) {
	#pageTop a {
	  width: 55px;
	  height: 45px;
		text-align: center;
		background: #24386a;
	}
}


@media screen and (max-width: 1024px) {

  /* section_title */
  .section_title {
    font-size: 5rem;
  }

  /* main-visual */
  .main-visual {
    padding-bottom: 0rem;
  }

  /* header */
  .logo {
    font-size: 2.2rem;
  }

  .logo span {
    font-size: 1.6rem;
  }

  .header_info {
    gap: 1.5rem;
  }

  .header_nav_list {
    gap: 0.7rem;
    justify-content: flex-end;
  }

  .header_nav_list a {
    font-size: 1.3rem;
  }

  /* contact */
  .contact_title {
    font-size: 5rem;
  }

  .contact_content {
    padding-right: 2rem;
  }
}

/* スマホ用デザイン */
@media screen and (max-width: 767px) {
  /* （ここにモバイル用スタイルを記述） */

  body {
    font-size: 1.4rem;
  }

  section {
    padding: 5rem 0;
  }

  /* section_title */
  .section_title {
    font-size: 4rem;
    text-align: center;
  }
	.section_title.e2 {
		font-size: 3rem !important;
	}

  .title_wrapper span {
    text-align: center;
  }

  .is_sp {
    display: block;
  }

  .is_pc {
    display: none;
  }

  .sp_block {
    display: block;
  }

  .container {
    width: 90%;
  }

  .btn_more a {
    max-width: 70%;
    height: 6rem;
  }

  a[href^="tel:"] {
    pointer-events: auto;
  }

  /* header */
  #header {
    height: 7rem;
  }

  .logo {
    font-size: 2rem;
    padding-top: 0;
  }

  .logo span {
    font-size: 1.4rem;
  }


  /* ハンバーガーメニュー */
  .hamburger_menu {
    position: relative;
	  z-index: 101;
  }

  .hamburger_menu_btn {
    position:fixed;
	  right: 17px;
	  top: 20px;
    cursor: pointer;
    width: 3rem;
    height: 3rem;
    z-index: 102;
  }

  .hamburger_menu_btn span {
    display: inline-block;
    transition: all .4s;
    position: absolute;
    top: 0;
    left: 0;
    height: 2px;
    border-radius: 2px;
    /*background: #fff;*/
	  background: #262626;
    width: 100%;
  }

  .hamburger_menu_btn span:nth-of-type(2) {
    top: 10px;
  }

  .hamburger_menu_btn span:nth-of-type(3) {
    top: 22px;
  }

  /* クリックされたら×に変更 */

  .hamburger_menu_btn span.active:nth-of-type(1) {
    top: 10px;
    left: 10px;
    transform: translateY(6px) rotate(-45deg);
    width: 80%;
    background: #262626;
  }

  .hamburger_menu_btn span.active:nth-of-type(2) {
    opacity: 0;
  }

  .hamburger_menu_btn span.active:nth-of-type(3) {
    top: 22px;
    left: 10px;
    transform: translateY(-6px) rotate(45deg);
    width: 80%;
    background: #262626;
  }

  .hamburger_menu_btn_wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
  }

  .hamburger_menu_btn_wrapper a {
    text-transform: uppercase;
  }

  .hamburger_menu_content {
    position: fixed;
    z-index: 101;
    top: 0;
    right: -120%;
    width: 70vw;
    max-width: 25rem;
    height: 100vh;
    background: #fff;
    transition: all 0.6s;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 3rem;
  }

  .hamburger_menu_content.active {
    right: 0;
  }

  .hamburger_menu_tel,
  .hamburger_menu_tel a {
    color: #262626;
  }

  .hamburger_menu_tel a {
    font-size: 2.2rem;
  }

  .hamburger_menu_nav_list_item {
    text-align: center;
  }

  .hamburger_menu_nav_list_item a {
    display: inline-block;
    padding: 1rem 0;
    color: #262626;
    position: relative;
	  font-size: 1.6rem;
  }

  /* contact */
  #contact {
    padding: 5rem 0;
    width: 100%;
  }

  .contact_wrapper {
    flex-wrap: wrap;
  }

  .contact_content {
    width: 100%;
    padding-right: 0;
  }

  .contact_title {
    font-size: 4rem;
    text-align: center;
  }

  .contact_text {
    text-align: center;
    margin-top: 3rem;
  }

  .contact_info {
    width: 100%;
    text-align: center;
    margin-top: 3rem;
  }

  .contact_tel {
    text-align: center;
  }

  .contact_info .contact_tel a {
    font-size: 3rem;
    padding-right: 0;
    display: inline-block;
  }

  .contact_info .contact_tel a::after {
    width: 1.5rem;
    height: 1.5rem;
    top: 50%;
    left: -2rem;
  }

  .btn_contact {
    width: 100%;
    max-width: 36rem;
    margin: 2rem auto 0;
  }

  .btn_contact a {
    padding-right: 1.5rem;
    max-width: 85%;
    margin: auto;
    height: 6.5rem;
  }

  #footer_info {
    padding: 3rem 0;
  }

  /* footer_link */
  .footer_link {
    display: none;
  }

  .footer_address p {
    font-size: 1.2rem;
    margin-top: 1rem;
  }

  .footer_copy {
    text-align: left;
    font-size: 1.2rem;
    margin-top: 2.5rem;
  }

  #pageTop a img {
    width: 4rem;
    height: 4rem;
  }
}

.object-fit {
	overflow: hidden;
	object-fit: cover;
	font-family: 'object-fit: cover;'; /*IE対策*/
}

/*----------------------------------------
  modal
------------------------------------------*/
.modal-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal-wrapper .modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
}
.modal-wrapper .modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 1000;
  cursor: pointer;
  color: #fff;
  background: #000;
}
.modal-wrapper .modal-close::after {
  content: "×";
  font-size: 40px;
}
.modal-wrapper .modal-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.modal-wrapper .modal-inner .modal-item {
  max-width: 100%;
  max-height: 100%;
  line-height: 0;
  margin-bottom: 5px;
}
.modal-wrapper .modal-inner .modal-item .modal-img {
  height: auto;
  max-height: 80vh;
  max-width: 80vw;
  width: auto;
}
.modal-wrapper .modal-inner .modal-item .modal-iframe {
  width: 80vw;
  height: 80vh;
}
.modal-wrapper .modal-inner .modal-gallery {
  text-align: center;
}
.modal-wrapper .modal-inner .modal-gallery .modal-btns {
  font-size: 20px;
}
.modal-wrapper .modal-inner .modal-gallery .modal-btns .modal-count {
  font-size: 0.8em;
  display: inline-block;
  color: #fff;
  letter-spacing: 0.2em;
  padding: 0 10px;
  vertical-align: middle;
  line-height: 1;
}
.modal-wrapper .modal-inner .modal-gallery .modal-btns .modal-prev,
.modal-wrapper .modal-inner .modal-gallery .modal-btns .modal-next {
  display: inline-flex;
  align-items: center;
  justify-self: center;
  color: #fff;
  cursor: pointer;
  vertical-align: middle;
  background: #000;
}
.modal-wrapper .modal-inner .modal-gallery .modal-btns .modal-prev::after {
  content: "◀";
}
.modal-wrapper .modal-inner .modal-gallery .modal-btns .modal-next::after {
  content: "▶";
}

a[data-href] {
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .modal-wrapper .modal-close {
    top: 10px;
    right: 10px;
  }
  .modal-wrapper .modal-inner .modal-item .modal-img {
    max-width: 100vw;
    max-width: 100vmin;
    width: 100vw;
    width: 100vmin;
    max-height: 100vmin;
    object-fit: contain;
  }
}