/*
  Theme Name: GOLAND
  Author: shion.S
  Author URI: 
  Description: 
  Version: 1.0.0
  Text Domain: 
*/


/* import
-------------------------------------------------- */
@import url( 'https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100..700;1,100..700&display=swap' );
@import url( 'https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500;700;900&display=swap' );
/* @import url( 'https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200;300;400;500;600;700;900&display=swap' ); */


/* common
-------------------------------------------------- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  word-wrap: break-word;
  -webkit-appearance: none;
  letter-spacing: .05em;
}

.half_box > * {
  width: 50%;
}
.try_box > * {
  width: 33%;
}


/* element
-------------------------------------------------- */
html {
  font-family: YakuHanJP, 'Noto Sans JP', "Hiragino Sans W3", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  /* font-family: YakuHanMP, 'Noto Serif JP', "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif; */
	font-size: 62.5%;
	-webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
	color: #333;
	font-size: 1.6rem;
  overflow-x: hidden;
  /* background: url( './assets/imgs/common/bg.png' ) fixed; */
}

a {
  color: #333;
  transition: .6s;
}
a:hover { opacity: .5; }
a, a:hover { text-decoration: none; }

ul { list-style: none; }
img {
	max-width: 100%;
	vertical-align: bottom;
}


/* flex-box
-------------------------------------------------- */
.dp_f {
  display: flex;
  display: -ms-flexbox;
  display: -webkit-flex;
}

.flex_center {
  align-items: center;
  justify-content: center;
}


/* common
-------------------------------------------------- */


/* title
-------------------------------------------------- */
.main_ttl {
  margin: 3rem 0;
  font-family: "Josefin Sans", sans-serif;
  font-weight: 400;
  font-size: 5rem;
  text-align: center;
  white-space: nowrap;
}

.ttl_life {
  /* font-family: "Josefin Sans", sans-serif;
  font-size: 8vw;
  font-weight: 500;
  text-align: center;
  white-space: nowrap;
  letter-spacing: .1em; */
  margin: 2rem auto 5rem;
  padding: 0 2rem;
  max-width: 1080px;
}


/* btn
-------------------------------------------------- */
.onlineshop_btn {
  margin-top: 10rem;
}
.onlineshop_btn a {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  max-width: 450px;
  border: 1px solid #fff;
  color: #fff;
  font-family: "Josefin Sans", sans-serif;
  font-size: 1.8rem;
  font-weight: 400;
  text-align: center;
}
.onlineshop_btn a svg:nth-of-type(1) {
  margin-top: -5px;
  margin-right: 1rem;
  width: 22px;
  height: 20px;
}
.onlineshop_btn a svg:nth-of-type(2) {
  margin-left: 1rem;
  width: 25px;
  height: 20px;
}
.onlineshop_btn a svg {
  fill: #fff;
  transition: all .6s ease;
}
.onlineshop_btn a:hover svg {
  fill: rgba( 206, 157, 51, 1 );
}
.onlineshop_btn a:hover {
  color: rgba( 206, 157, 51, 1 );
  background-color: #fff;
  opacity: 1;
}

.btn_more {
  margin: 3rem auto;
  max-width: 1280px;
  text-align: right;
}
.btn_more a {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-left: auto;
  width: fit-content;
  font-family: "Josefin Sans", sans-serif;
  font-size: 2.1rem;
}
.btn_more a svg {
  margin-left: 1rem;
  width: 35px;
  height: 28px;
}


/* nav
-------------------------------------------------- */
nav {
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  align-items: flex-end;
  padding: 2rem;
  width: 100%;
  height: 100px;
  background-color: #fff;
  border-bottom: 1px solid #333;
  z-index: 9;
}
body.logged-in.admin-bar nav { top: 32px; }

.main_logo {
  margin-right: auto;
  width: 260px;
}

.nav_list {
  display: flex;
  align-items: center;
  padding-right: 11rem;
}
.nav_list > li:first-child {
  display: none;
}
.nav_list > li:not(:nth-child(2)) {
  border-left: 1px solid #333;
}
.nav_list > li:last-child a {
  align-items: center;
  justify-content: center;
  text-align: center;
  position: absolute;
  top: 0;
  right: 0;
  padding: 1rem 2rem;
  width: 120px;
  height: 100px;
  font-size: 1.4rem;
  font-weight: 300;
  line-height: 1.25;
  border-left: none;
  color: #fff;
  background-color: #333;
}
.nav_list > li:last-child a svg {
  margin-bottom: 1rem;
  width: 30px;
  height: 30px;
  fill: #fff;
}
.nav_list > li:last-child a:hover {
  opacity: 1;
  background: rgba( 206, 157, 51, 1 );
}
.nav_list > li a {
  display: flex;
  flex-direction: column;
  padding: 0 2rem;
  font-family: "Josefin Sans", sans-serif;
  font-weight: 500;
}


/* Nav - ナビ
-------------------------------------------------- */
#nav_menu {
  position: relative;
	display: none;
  align-items: center;
  justify-content: center;
	width: 50px;
	height: 100%;
	cursor: pointer;
  z-index: 999;
}
#nav_menu > span {
	position: relative;
	display: block;
	background: #333;
	width: 40px;
	height: 4px;
	transition: background 10ms 300ms ease;
}
#nav_menu > span::before, #nav_menu > span::after {
  content: '';
  transition: top 300ms 350ms ease, transform 300ms 50ms ease;
  position: absolute;
  background: #333;
  width: 40px;
  height: 4px;
}
#nav_menu > span::before { top: -12px; }
#nav_menu > span::after { top: 12px; }

#nav_menu.is_active > span { background: transparent; }
#nav_menu.is_active > span::before { transform: rotate( 45deg ); }
#nav_menu.is_active > span::after { transform: rotate( -45deg ); }

#nav_menu.is_active > span::before, #nav_menu.is_active > span::after {
  background: #fff;
	transition: top 300ms 50ms ease, transform 300ms 350ms ease;
  top: 0;
}



/* header
-------------------------------------------------- */
header {
  margin-top: 10rem;
}
.main_visual {
  height: calc( 100vh - 10rem );
  background-color: aliceblue;
  border-bottom: 1px solid #333;
  overflow: scroll;
  scrollbar-width: none;
}
.main_visual::-webkit-scrollbar {
  display: none;
}

.portfolio {
  display: grid;
  grid-template-columns: repeat( 3, 1fr );
  cursor: grab;
  width: 125vw;
  height: 100%;
}

.work_items {
  position: relative;
  border: 1px solid #333;
}
.work_items > li {
  position: absolute;
}

.main_visual_dami {
  width: 100%;
  height: calc( 100vh - 10rem );
  background-image: url( './assets/imgs/top/main_visual.jpg' );
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-bottom: 1px solid #333;
}


/* main
-------------------------------------------------- */
main {
  margin-top: 10rem;
  overflow-x: hidden;
}

.txt {
  margin: 5rem auto;
  padding: 2rem;
  max-width: fit-content;
}


/* main:LifeIsMore - ライフイズモア
-------------------------------------------------- */
section#life_is_more {

}
section#life_is_more .txt {
  margin-top: 0;
  line-height: 2;
}

.life_is_more_link {
  border-top: 1px solid #333;
  border-bottom: 1px solid #333;
}

.list_lifeismore {
  margin: 0 auto;
  max-width: 1280px;
  display: flex;
  justify-content: center;
}
.list_lifeismore > li {
  width: 50%;
}
.list_lifeismore > li:first-child a {
  border-left: 1px solid #333;
}
.list_lifeismore > li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100px;
  border-right: 1px solid #333;
}
.list_lifeismore > li a:hover {
  color: #fff;
  background-color: #333;
  opacity: 1;
}


/* main:Project - プロジェクト
-------------------------------------------------- */
.swiper-wrapper li.bg_branding { background-color: rgba( 244, 219, 205, 1 ); }
.swiper-wrapper li.bg_logo { background-color: rgba( 219, 227, 212, 1 ); }
.swiper-wrapper li.bg_homepage { background-color: rgba( 199, 199, 199, 1 ); }
.swiper-wrapper li.bg_movie { background-color: rgba( 229, 214, 219, 1 ); }
.swiper-wrapper li.bg_package { background-color: rgba( 233, 249, 249, 1 ); }
.swiper-wrapper li.bg_graphic { background-color: rgba( 235, 234, 213, 1 ); }
.swiper-wrapper li.bg_other { background-color: rgba( 231, 211, 178, 1 ); }

.swiper-wrapper li {
  cursor: grab;
}
.project_info {
  padding: 5rem 2rem 10rem;
  min-height: 800px;
}
.swiper-slide {
  overflow: hidden;
}

.project_data {
  margin: 7.5rem auto;
  max-width: 1280px;
}
.project_data > * {
  width: 50%;
}
.project_data figure {
  overflow: hidden;
  height: 400px;
}
.project_data figure img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}
.project_data h3 {
  margin-bottom: 1rem;
  font-family: "Josefin Sans", sans-serif;
  font-size: 3.1rem;
  font-weight: bold;
  letter-spacing: .05em;
}
.project_data .right_box {
  display: flex;
  flex-direction: column;
  padding-left: 3rem;
}
.project_data .right_box p {
  line-height: 2;
}
.project_tag {
  margin-top: auto;
  list-style: inside;
}
.project_tag > li {
  font-size: 1.4rem;
  font-weight: 500;
}
.project_tag > li:not(:last-child) {
  margin-bottom: .5rem;
}

.btn_project {
  margin: 0 auto;
  max-width: 1280px;
}
.btn_project a {
  display: block;
  padding: 2.5rem 2rem;
  text-align: center;
  border: 1px solid #333;
}
.btn_project a:hover {
  opacity: 1;
  color: #fff;
  background: #333;
}

.swiper-pagination {
  bottom: 25px !important;
}
.swiper-scrollbar { bottom: -20px !important; }
.swiper-pagination-bullet-active {
  background: #333 !important;
}

.project_list {
  margin: 0 auto;
  padding: 2rem 0;
  max-width: 1280px;
  border-bottom: 1px solid #333;
}
.project_list > li {
  width: calc( 100% / 7 );
}
.project_list > li a {
  position: relative;
  display: block;
  padding: .5rem 0;
  text-align: center;
}

.project_list > li a:hover {
  color: #fff;
  opacity: 1;
}
.project_list > li:not(:last-child) a {
  border-right: 1px solid #333;
}

.project_list > li a::before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  transition: all 0.6s ease 0s;
  background-color: #333;
  z-index: -1;
}

.project_list > li a:hover::before{
  width: 100%;
}


/* main:News - お知らせ
-------------------------------------------------- */
section#news {
  padding: 5rem 2rem;
  border-top: 1px solid #333;
}

.blog_list {
  margin: 3rem auto;
  max-width: 1280px;
}
.blog_list > li {
  border-bottom: 1px solid #333;
}
.blog_list > li a {
  position: relative;
  display: flex;
  align-items: center;
  padding: 2.5rem;
  padding-right: 5rem;
}
.blog_list > li a:hover {
  opacity: 1;
  color: #fff;
  background-color: #333;
}
.blog_list > li a::after {
  position: absolute;
  top: 50%;
  right: 2rem;
  transform: translateY( -50% );
  content: '\f055';
  font-size: 2rem;
  font-weight: 900;
  font-family: 'Font Awesome 5 Free';
}
.blog_list > li a time {
  font-family: "Josefin Sans", sans-serif;
  font-size: 2.1rem;
  font-weight: 500;
}
.blog_list > li a h3 {
  padding-left: 5rem;
  font-weight: normal;
}


/* main:OnlineShop - オンラインショップ
-------------------------------------------------- */
.shop_info_box {
  border-top: 1px solid #333;
}
.shop_info_box > .yuzugo_img {
  width: 55%;
  background-position: center;
  background-size: cover;
  background-image: url( './assets/imgs/common/yuzugo.jpg' );
}
.shop_info_box > .shop_info {
  padding: 10rem 8rem;
  width: 45%;
  background-color: rgba( 206, 157, 51, 1 );
}

.shop_info_box > .shop_info h2 {
  margin-top: 0;
  color: #fff;
  font-size: 4.2rem;
  text-align: left;
}
.shop_info_box > .shop_info p {
  color: #fff;
  max-width: 450px;
  line-height: 2;
}

#comingsoon {
  position: relative;
  padding: 15rem 2rem 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  min-height: 500px;
  z-index: -1;
}

#comingsoon p {
  text-align: center;
}

#comingsoon > img {
  position: absolute;
  width: 150px;
  bottom: 55px;
  transform: rotate( 90deg );
}

.txt_anime_up {
  margin-bottom: 3rem;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.txt_anime_up > img {
  width: auto;
  height: 60px;
}
.txt_anime_up > img:not(:last-child) {
  margin-right: .5rem;
}
.txt_anime_up > img:nth-child(6) {
  margin-right: 3rem;
}

.comingsoon > .txt_down {
  overflow: hidden;
}

.contact_form a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 500px;
  font-family: "Josefin Sans", sans-serif;
  font-size: 6rem;
  color: #fff;
  background-color: #333;
  border-top: 1px solid #333;
  letter-spacing: .1em;
}
.contact_form a:hover {
  color: #333;
  opacity: 1;
  background-color: #fff;
}


/* スクロールダウン - scrollDown
-------------------------------------------------- */
.scroll_down {
	display: inline-block;
	position: relative;
  margin-top: 5rem;
	z-index: 2;
	padding-top: 90px;
	color: #333;
}
.scroll_down::before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 40%;
	width: 2px;
	height: 100px;
	background: rgba( 51, 51, 51, 1 );
}
.scroll_down::before {
	animation: sdl 1.5s cubic-bezier( 1, 0, 0, 1 ) infinite;
}
.arrow_down::after {
  content: '';
  display: block;
  margin: 0;
  padding: 0;
  width: 10px;
  height: 10px;
  border-top: 2px solid #333;
  border-right: 2px solid #333;
  transform: rotate( 135deg );
}


@keyframes sdl {
	0% {
    transform: scale( 1, 0 );
    transform-origin: 0 0;
	}
	50% {
		transform: scale( 1, 1 );
		transform-origin: 0 0;
	}
	50.1% {
		transform: scale( 1, 1 );
		transform-origin: 0 100%;
	}
	100% {
		transform: scale( 1, 0 );
		transform-origin: 0 100%;
  }
}



/* footer
-------------------------------------------------- */
footer {
  position: relative;
  padding: 3rem;
  border-top: 1px solid #333;
}

.list_sns {
  display: flex;
  position: absolute;
  top: 0;
  left: 2rem;
  bottom: 0;
  margin: auto;
  height: 60px;
}
.list_sns > li:not(:last-child) {
  margin-right: 1rem;
}
.list_sns > li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: #333;
  border-radius: 50%;
}
.list_sns > li a i {
  font-size: 3.6rem;
  color: #fff;
}

.list_sitemap {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.list_sitemap > li a {
  display: flex;
  padding: 0 2rem;
}
.list_sitemap > li:not(:last-child) {
  border-right: 1px solid #333;
}
.list_sitemap > li:last-child a {
  padding-right: 0;
}
.copy {
  margin-top: 1rem;
  /* padding: 1rem 3rem 2rem; */
  font-weight: bold;
  letter-spacing: .05em;
  text-align: right;
}
.copy a {
  font-family: "Josefin Sans", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: #333;
}


/* エラーページ - 404
-------------------------------------------------- */
.error_txt {
  margin: 5rem auto;
  text-align: center;
}

