@charset "UTF-8";

/* ===================================================================
	/
	/	header
	/
	=================================================================== */
header.site-header {
  position: fixed;
  width: 100%;
  z-index: 200;
  padding: 40px 50px;
  transition: 0.5s ease;
  background-color: rgba(255,255,255,0.6);
}
header .header_inner {

}
header .h_logo {
  width: 300px;
}
header .h_logo a:hover {
  opacity: 0.7;
}
header .h_menu ul {
  gap: 0 50px;
}
header .h_menu ul li {
  margin-bottom: 0;
}
header .h_menu ul li a {
  font-size: 15px;
  display: block;
  font-weight: bold;
  transition: 0.3s ease;
}
header .h_menu ul li a:hover {
  color: #c69c6d;
  text-decoration: none;
  transition: 0.3s ease;
}



/* under */
.under header.site-header {
  background-color: #fff;
}
.under header .container {

}
.under header.site-header .header_inner {
  box-shadow: unset;
}


.global-nav {
  position: fixed;
  right: -55%;
  /* これで隠れる */
  top: 0;
  width: 50%;
  /* スマホに収まるくらい */
  height: 100vh;
  padding-top: 18px;
  background-color: #fff;
  transition: all .6s;
  z-index: 200;
  overflow-y: auto;
  /* メニューが多くなったらスクロールできるように */
}

.hamburger {
  position: absolute;
  right: 0;
  top: 0;
  width: 62px;
  /* クリックしやすいようにちゃんと幅を指定する */
  height: 62px;
  /* クリックしやすいようにちゃんと高さを指定する */
  cursor: pointer;
  z-index: 300;
}

.hamburger > p {
  top: 40px;
  right: 12px;
  position: absolute;
  font-size: 10px !important;
  letter-spacing: 0px;
}

.global-nav__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.global-nav__img {
  padding: 0 10px 18px;
  margin: 0 auto;
}

.global-nav__item {
  text-align: center;
  padding: 0 15px;
}

.global-nav__item a {
  display: block;
  padding: 15px 0;
  border-bottom: 1px solid #eee;
  text-decoration: none;
  font-size: 15px;
  font-weight: bold;
}
.global-nav a .en {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0;
}
.global-nav .insta {
  position: relative;
}
.global-nav .insta a::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 20%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  background-image: url(../images/insta_icon.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 28px;
  height: 28px;
}

.global-nav .sub-nav {
  margin: 0 15px;
}
.global-nav .sub-nav li {
  width: 50%;
}
.global-nav .sub-nav li a {
  font-size: 13px;
  padding: 15px 0;
  text-align: center;
  border-bottom: 1px solid #eee;
  display: block;
}
.global-nav .sub-nav li:nth-child(1) a,
.global-nav .sub-nav li:nth-child(3) a {
  border-right: 1px solid #eee;
}

.global-nav ul li {
  margin-bottom: 0;
  line-height: unset;
  text-align: center;
}

.hamburger__line {
  position: absolute;
  right: 18px;
  width: 28px;
  height: 2px;
  background-color: #231815;
  transition: all .6s;
}

ul.navsns {
  width: 100px;
  padding-right: 0;
  font-size: 20px;
  text-align: center;
  margin: 0 auto;
}

.hamburger__line--1 {
  top: 15px;
}
.hamburger__line--2 {
  top: 24px;
}
.hamburger__line--3 {
  top: 33px;
}

.black-bg {
  position: fixed;
  right: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  z-index: 100;
  background-color: #000;
  opacity: 0;
  visibility: hidden;
  transition: all .6s;
  cursor: pointer;
}

/* 表示された時用のCSS */
.nav-open .global-nav {
  right: 0;
}

.nav-open .black-bg {
  opacity: .8;
  visibility: visible;
}

.nav-open .hamburger__line--1 {
  transform: rotate(45deg);
  top: 26px;
}

.nav-open .hamburger__line--2 {
  width: 0;
  right: 50%;
}

.nav-open .hamburger__line--3 {
  transform: rotate(-45deg);
  top: 26px;
}

.is-fixed {
  position: fixed;
  right: 0;
  top: 0;
  margin: 0;
  width: 90px;
  height: 90px;
  cursor: pointer;
  z-index: 300;
  background: #fff;
}

.hamburger {
  display: none;
}



@media screen and (max-width:1280px) {
  header.site-header {
    padding: 20px 50px;
  }
  header .h_logo {
    width: 250px;
  }
  header .h_logo img {
    width: 180px;
  }
  header .h_menu ul {
    gap: 0 30px;
  }
  header .h_menu ul li a {
    font-size: 13px;
  }
}

@media screen and (max-width:1024px) {
  header.site-header {
    padding: 20px 30px;
  }
  header .header_inner {
    -webkit-box-pack: justify;
  	-ms-flex-pack: justify;
  	justify-content: space-between;
  }
  /*header .header_inner {
    padding: 20px 0px 15px 0px;
  }
  header .h_logo img {
    width: 220px;
  }*/
  header .h_logo {
    width: auto;
  }
  header .h_logo img {
    width: 130px;
  }
  header .h_menu ul {
    gap: 0 20px;
  }
  header .h_menu ul li a {
    font-size: 12px;
  }
}

@media screen and (max-width:768px) {
  header.site-header {
    padding: 18px 30px;
  }
  header .h_logo img {
    width: 160px;
  }
  header .h_menu {
    display: none;
  }
  .hamburger {
    display: block;
    position: fixed;
  }
}

@media screen and (max-width:550px) {
  .global-nav {
    right: -85%;
    /* これで隠れる */
    width: 80%;
    /* スマホに収まるくらい */
  }
}

@media screen and (max-width:479px) {
  /*header .header_inner {
    padding: 20px 0 15px 0;
  }*/
  header.site-header {
    padding: 18px 20px;
  }
  header .h_logo img {
    width: 130px;
  }
  .global-nav__item a {
    font-size: 14px;
  }
}

@media screen and (max-width:370px) {
  header .h_logo img {
    width: 120px;
  }
  .global-nav__item a {
    font-size: 13px;
  }
}




/* ===================================================================
	/
	/	f_contact
	/
	=================================================================== */
.f_contact {
  padding: 100px 0;
  background-image: url(../images/f_contact_bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  color: #fff;
  text-align: center;
}
.f_contact .sec_title {
  margin-bottom: 50px;
}
.f_contact .sec_title .h2_ja {
  font-size: 20px;
  color: #fff;
}
.f_contact .sec_title h2 {
  font-size: 50px;
  color: #fff;
  position: relative;
}
.f_contact .sec_title h2:after {
  content: '';
  position: absolute;
  bottom: -15px;
  display: inline-block;
  width: 100px;
  height: 1px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: #fff;
}
.f_contact .f_contact_wrap {
  margin-top: 30px;
  gap: 20px 40px;
}
.f_contact .f_contact_box {
  width: calc( 100% / 2 - 20px );
  background-color: rgba(255,255,255,0.7);
  border-radius: 5px;
  text-align: center;
  padding: 30px 0;
}
.f_contact .f_contact_box p {
  color: #000;
}
.f_contact .f_contact_box a img {
  margin-right: 20px;
}
.f_contact .f_contact_box .tel {
  font-size: 50px;
  font-family: bebas-neue-pro, sans-serif;
  font-weight: 700;
  font-style: normal;
  color: #000;
  letter-spacing: 1px;
}
.f_contact .f_contact_box .tel:hover {
  opacity: 1;
}
.f_contact .f_contact_box .mail {
  background-color: #c69c6d;
  border-radius: 5px;
  padding: 15px 0;
  color: #fff;
  max-width: 400px;
  width: 90%;
  margin: 5px auto 0;
  font-weight: 700;
  position: relative;
}
.f_contact .f_contact_box .mail:after {
  content: '\f105';
  font-family: "Font Awesome 5 Free";
  font-weight: 700;
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  color: #fff;
}
.f_contact .f_contact_box .mail:hover {
  background-color: #000;
}
.f_contact .partnership_area {
  margin-top: 40px;
}

/* 202505追加 */
.f_contact .f_contact_box.box4  {
  width: calc( 100% / 4 - 30px );
  padding: 0;
  background-color: transparent;
}
.f_contact .f_contact_box.box4 a {
  display: block;
  padding: 30px 0 40px;
  background-color: rgba(255, 255, 255, 0.7);
  border-radius: 5px;
  position: relative;
}
.f_contact .f_contact_box.box4 a::after {
  content: '\f107';
  font-family: "Font Awesome 5 Free";
  font-weight: 700;
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  color: #000;
}
.f_contact .f_contact_box.box4 a img {
  margin-right: 0;
  margin-bottom: 5px;
}
.f_contact .f_contact_box.box4 a .tit {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.3;
}
.f_contact .f_contact_box.box4 a .tit > span {
  font-size: 32px;
  font-family: roboto, sans-serif;
  font-weight: 700;
  font-style: normal;
}
.f_contact .f_contact_box.box4 a.phone .tit {
  font-size: 26px;
}
.f_contact .f_contact_box.box4 a .time {
  font-size: 15px;
}
.f_contact .f_contact_box.box4 a:hover {
  background-color: rgba(198, 156, 109, 0.9);
}
.f_contact .f_contact_box.box4 a:hover img {
  opacity: 1;
}


@media screen and (max-width:1024px) {
  .f_contact .sec_title h2 {
    font-size: 40px;
  }
  .f_contact .f_contact_box .tel {
    font-size: 45px;
  }

  /* 202505追加 */
  .f_contact .f_contact_wrap.box4_wrap {
    gap: 20px 20px;
  }
  .f_contact .f_contact_box.box4  {
    width: calc( 100% / 4 - 15px );
  }
  .f_contact .f_contact_box.box4 a img {
    width: 50px;
    margin-bottom: 5px;
  }
  .f_contact .f_contact_box.box4 a .tit > span {
    font-size: 26px;
  }
  .f_contact .f_contact_box.box4 a .tit {
    font-size: 18px;
  }
  .f_contact .f_contact_box.box4 a.phone .tit {
    font-size: 22px;
  }
  .f_contact .f_contact_box.box4 a .time {
    font-size: 14px;
  }
}

@media screen and (max-width:768px) {
  .f_contact {
    padding: 50px 0 60px;
  }
  .f_contact .sec_title h2 {
    font-size: 35px;
  }
  .f_contact .sec_title h2:after {
    width: 80px;
  }
  .f_contact .sec_title .h2_ja {
    font-size: 16px;
  }
  .f_contact .f_contact_box {
    width: 80%;
    margin: 0 auto;
    padding: 20px 0;
  }
  .f_contact .f_contact_box .tel {
    font-size: 42px;
  }
  .f_contact .f_contact_box a img {
    width: 30px;
  }
  .f_contact .partnership_area {
    width: 80%;
    margin: 20px auto 0;
  }

  /* 202505追加 */
  .f_contact .f_contact_wrap.box4_wrap {
    gap: 40px 40px;
    width: 80%;
    margin: 30px auto;
  }
  .f_contact .f_contact_box.box4  {
    width: calc( 100% / 2 - 20px );
  }
}

@media screen and (max-width:600px) {
  .f_contact .f_contact_box {
    width: 100%;
  }
  .f_contact .partnership_area {
    width: 100%;
  }

  /* 202505追加 */
  .f_contact .f_contact_wrap.box4_wrap {
    gap: 20px 20px;
    width: 100%;
  }
  .f_contact .f_contact_box.box4  {
    width: calc( 100% / 2 - 10px );
  }
}

@media screen and (max-width:479px) {
  .f_contact {
    padding: 40px 0 50px;
  }
  .f_contact .sec_title {
    margin-bottom: 40px;
  }
  .f_contact .sec_title h2 {
    font-size: 30px;
  }
  .f_contact .sec_title .h2_ja {
    font-size: 14px;
  }
  .f_contact .f_contact_wrap {
    margin-top: 20px;
  }
  .f_contact .f_contact_box .tel {
    font-size: 35px;
  }
  .f_contact .f_contact_box .mail {
    font-size: 14px;
  }
  .f_contact .f_contact_box .mail:after {
    right: 10px;
  }
  .f_contact .f_contact_box a img {
    width: 25px;
    margin-right: 15px;
  }

  /* 202505追加 */
  .f_contact .f_contact_wrap.box4_wrap {
    gap: 10px 10px;
  }
  .f_contact .f_contact_box.box4  {
    width: calc( 100% / 2 - 5px );
  }
  .f_contact .f_contact_box.box4 a {
    padding: 20px 0 30px;
    height: 160px;
  }
  .f_contact .f_contact_box.box4 a::after {
    bottom: 5px;
  }
  .f_contact .f_contact_box.box4 a img {
    width: 30px;
    margin-bottom: 3px;
  }
  .f_contact .f_contact_box.box4 a .tit > span {
    font-size: 20px;
  }
  .f_contact .f_contact_box.box4 a .tit {
    font-size: 14px;
  }
  .f_contact .f_contact_box.box4 a.phone .tit {
    font-size: 17px;
  }
  .f_contact .f_contact_box.box4 a .time {
    font-size: 12px;
    margin-top: 5px;
  }
}

@media screen and (max-width:370px) {
  .f_contact .f_contact_box .tel {
    font-size: 30px;
  }
  .f_contact .f_contact_box .mail {
    font-size: 13px;
    padding: 12px 0;
  }
  .f_contact .f_contact_box a img {
    width: 20px;
    margin-right: 10px;
  }

  /* 202505追加 */
  .f_contact .f_contact_box.box4 a .tit > span {
    font-size: 18px;
  }
  .f_contact .f_contact_box.box4 a .tit {
    font-size: 13px;
  }
  .f_contact .f_contact_box.box4 a.phone .tit {
    font-size: 16px;
  }
  .f_contact .f_contact_box.box4 a .time {
    font-size: 11.5px;
  }
}



/* ===================================================================
	/
	/	footer
	/
	=================================================================== */
footer {
  padding: 60px 0 40px;
  background-color: #000;
}
footer .container {
  max-width: 1700px;
  width: 95%;
}
footer p {
  color: #fff;
  font-size: 15px;
}
footer .f_wrap {
  padding-left: 120px;
}
footer .f_logo_area {
  width: 23%;
  gap: 5px 0;
}
footer .f_logo_area .copyright {
  font-size: 14px;
  font-family: roboto, sans-serif;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0;
}
footer .f_title {
  font-size: 20px;
  font-family: roboto, sans-serif;
  font-weight: 900;
  font-style: normal;
  margin-bottom: 20px !important;
}
footer .f_address_area {
  width: 32%;
  padding: 0 20px;
  border-left: 2px solid #fff;
}
footer .f_sitemap_area {
  width: 45%;
  padding: 0 20px;
  border-left: 2px solid #fff;
}
footer .f_sitemap_area > div {
  gap: 0 60px;
}
footer .f_sitemap_area ul li a {
  color: #fff;
  line-height: 1.8;
  font-size: 15px;
}
footer .f_sitemap_area ul li a::before {
  content: '▶ ';
  color: #c69c6d;
}
footer .f_sitemap_area ul li a:hover {
  color: #c69c6d;
}
footer .right {
  margin-top: 20px;
}
footer .right p {
  font-size: 14px;
  letter-spacing: 0.3px;
}
.address_br {
  display: none;
}


@media screen and (max-width:1600px) {
  footer .f_wrap {
    padding-left: 0;
    -webkit-box-pack: justify;
  	-ms-flex-pack: justify;
  	justify-content: space-between;
  }
  footer .f_logo_area {
    width: auto;
    padding: 0 20px;
  }
  footer .f_address_area {
    width: auto;
  }
  footer .f_sitemap_area {
    width: auto;
  }
}

@media screen and (max-width:1280px) {
  footer p {
    font-size: 14px;
  }
  footer .f_logo_area .copyright {
    font-size: 13px;
  }
  footer .f_title {
    font-size: 18px;
  }
  footer .f_sitemap_area > div {
    gap: 0 40px;
  }
  footer .f_sitemap_area ul li a {
    font-size: 14px;
    line-height: 1.8;
  }
  footer .right p {
    font-size: 13px;
  }
}


@media screen and (max-width:1024px) {
  footer p {
    font-size: 13px;
  }
  footer .f_logo_area .copyright {
    font-size: 12px;
  }
  footer .f_logo_area .f_logo img {
    width: 120px;
  }
  footer .f_title {
    font-size: 16px;
    margin-bottom: 10px;
  }
  footer .f_sitemap_area ul li a {
    font-size: 13px;
  }
  footer .right p {
    font-size: 12px;
  }
}

@media screen and (max-width:950px) {
  footer .f_wrap {
    justify-content: left;
    gap: 40px 60px;
  }
  footer .f_sitemap_area {
    width: 100%;
    border-left: none;
  }
}

@media screen and (max-width:768px) {
  footer {
    padding: 40px 0 30px;
  }
  footer .f_sitemap_area > div {
    display: block;
  }
  footer .f_sitemap_area ul {
    display:-webkit-box;
  	display:-ms-flexbox;
  	display:flex;
    -ms-flex-wrap: wrap;
  	flex-wrap: wrap;
    margin-bottom: 10px;
  }
  footer .f_sitemap_area ul li {
    width: 25%;
  }
  footer .f_sitemap_area ul.sitemap02 li:last-of-type {
    width: 50%;
  }
  footer .f_sitemap_area ul li a::before {
    font-size: 11px;
    vertical-align: middle;
  }
}

@media screen and (max-width:600px) {
  footer .f_address_area {
    border-left: none;
  }
  footer .f_sitemap_area ul {
    margin-bottom: 0;
  }
  footer .f_sitemap_area ul li {
    width: 50%;
    padding: 3px 0;
  }
  footer .right {
    text-align: center;
    width: 95%;
    margin-left: auto;
    margin-right: auto;
  }
  .address_br {
    display: block;
  }
}

@media screen and (max-width:479px) {
  footer .f_wrap {
    -webkit-box-pack: center;
  	-ms-flex-pack: center;
  	justify-content: center;
    gap: 30px 60px;
  }
  footer .f_title {
    font-size: 15px;
  }
  footer .f_address_area {
    width: 100%;
  }
  footer .f_sitemap_area ul li a {
    font-size: 12px;
  }
  .address_br {
    display: none;
  }
}

@media screen and (max-width: 370px) {
  footer .container {
    width: 90%;
  }
  footer .f_logo_area .f_logo img {
    width: 100px;
  }
  footer .f_logo_area .copyright {
    font-size: 11px;
  }
  footer .f_address_area,
  footer .f_sitemap_area {
    padding: 0;
  }
  footer .f_sitemap_area ul li a {
    font-size: 11px;
  }
  footer .right p {
    font-size: 11px;
  }
  .address_br {
    display: block;
  }
}







/* ===================================================================
	/
	/	ページトップ
	/
	=================================================================== */
#page-top {
  position: fixed;
  bottom: 8%;
  right: 2%;
  z-index: 100;
}
#page-top a {
  background: #c69c6d;
  text-decoration: none;
  color: #fff;
  width: 60px;
  height: 60px;
  text-align: center;
  display: block;
  opacity: 0.9;
  transition: all .3s ease;
  border: 1px solid #fff;
}
#page-top a i {
  font-size: 20px;
  line-height: 60px;
}
#page-top a:hover {
  text-decoration: none;
  opacity: 0.7;
}

@media only screen and (max-width: 768px) {
  #page-top {
    bottom: 6.5%;
  }
  #page-top a {
    width: 45px;
    height: 45px;
  }
  #page-top a i {
    font-size: 16px;
    line-height: 45px;
  }
}

@media only screen and (max-width: 479px) {
  #page-top {
    bottom: 18vw;
  }
  #page-top a {
    width: 40px;
    height: 40px;
  }
  #page-top a i {
    font-size: 15px;
    line-height: 40px;
  }
}


/* ===================================================================
	/
	/	追従フッター
	/
	=================================================================== */
.f_contact_follow {
  position: fixed;
  width: 100%;
  left: 0;
  bottom: 0;
  background-color: #c69c6d;
  border-top: 1px solid #fff;
  transition: 0.2s ease;
  display: none;
}
.f_contact_follow .container_s {
  width: 100%;
}
.f_contact_follow ul li {
  width: calc( 100% / 4 );
  border-left: 1px solid #fff;
}
.f_contact_follow ul li:last-of-type {
  border-right: 1px solid #fff;
}
.f_contact_follow ul li a {
  padding: 15px 30px;
}
.f_contact_follow ul li img {
  width: 50px;
  margin-right: 20px;
}
.f_contact_follow ul li .tit {
  font-size: 25px;
  font-family: roboto, sans-serif;
  font-weight: 700;
  font-style: normal;
  line-height: 1.3;
}
.f_contact_follow ul li .tit > span {
  font-size: 19px;
  font-weight: 700;
}
.f_contact_follow ul li .phone .tit > span {
  font-size: 25px;
}
.is-hidden {
  visibility: hidden;
  opacity: 0;
  transition: 0.2s ease;
}


@media only screen and (max-width: 1280px) {
  .f_contact_follow ul li a {
    padding: 15px 10px;
    -webkit-box-pack: center;
  	-ms-flex-pack: center;
  	justify-content: center;
  }
  .f_contact_follow ul li img {
    width: 40px;
    margin-right: 15px;
  }
  .f_contact_follow ul li .tit {
    font-size: 22px;
    line-height: 1.1;
  }
  .f_contact_follow ul li .tit > span {
    font-size: 16px;
  }
  .f_contact_follow ul li .phone .tit > span {
    font-size: 22px;
  }
}

@media only screen and (max-width: 900px) {
  .f_contact_follow ul li img {
    width: 30px;
    margin-right: 10px;
  }
  .f_contact_follow ul li .tit {
    font-size: 18px;
  }
  .f_contact_follow ul li .tit > span {
    display: none;
  }
}

@media only screen and (max-width: 600px) {
  .f_contact_follow ul li a {
    padding: 10px 2px;
    -webkit-box-orient: vertical;
  	-webkit-box-direction: normal;
  	-ms-flex-direction: column;
  	flex-direction: column;
  }
  .f_contact_follow ul li img {
    margin-right: 0;
    margin-bottom: 5px;
    width: 25px;
  }
  .f_contact_follow ul li .tit {
    font-size: 14px;
  }
}

@media only screen and (max-width: 479px) {
  .f_contact_follow ul li .tit {
    font-size: 11px;
  }
}

@media only screen and (max-width: 370px) {
  .f_contact_follow ul li img {
    width: 22px;
  }
  .f_contact_follow ul li .tit {
    font-size: 10px;
  }
}
