@charset "UTF-8";
/*--------------------------------------------------------------
reset.min.css
リセット関係・clearfixなど

fonts.min.css
フォントアイコンを記載したcss

common.css
レイアウト、TOPのスタイルを記載したcss

sub.css
下層のレイアウトを記載したcss
--------------------------------------------------------------*/
/* fontIcon
:before,
:after {
	content: "\f099";
	font-family: "icomoon";
	display: inline-block;
	font-style: normal;
	font-variant: normal;
	font-weight: 900;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
}
/* ------------------------------------------------------------ */
/* 全デバイス/画面サイズに共通 かつ
　　479：スマートフォン縦：基本・レイアウト指定 */
/* ------------------------------------------------------------ */
* html body {
  background: url(null) fixed;
}
html {
  font-size: 62.5%;
  overflow-x: hidden;
}
/*ナビ表示のときはスクロールしないように*/
html.is-locked {
    overflow-y: hidden;
}
body {
  margin: 0;
  padding: 0;
  background: #fff;
  color: #000;
  font-size: 14px;
  line-height: 1.8;
  font-weight: 500;
  font-style: normal;
  font-family:"游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  overflow-wrap: break-word;
  text-size-adjust: 100%;
  font-feature-settings: "palt";
  letter-spacing: .1em;
	-webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
}
@media (min-width: 751px) {
  /*電話番号リンクをスマホのみ有効にする*/
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}
.pc,.pc-only {
  display: none;
}
.sp,.sp-only {
  display: block;
}
@media screen and (min-width: 768px) {
  /* 768px以上 */
  body {
    font-size: 1.5rem; /* 15px */
  }
	.pc-only {
		display: block;
	}
}
@media screen and (min-width: 1025px) {
  /* 1025px */
  body {
    font-size: 1.6rem; /* 16px */
  }
  .pc {
    display: block;
  }
  .sp {
    display: none;
  }
}
/* ------------------------------------------------------------ */
/* common layouts */
/* ------------------------------------------------------------ */
.wrapper {
  width: 100%;
  height: auto;
  overflow: hidden;
}
.content {
  width: 100%;
  height: auto;
  position: relative;
  padding: 0;
  margin: 0 auto;
}
.base {
  width: 100%;
  height: auto;
  position: relative;
  padding: 3em 0;
  margin: 0 auto;
}
.inner {
  width: 100%;
  max-width: 100%;
  height: auto;
  padding: 0 1.5em;
  margin: 0 auto;
  clear: both;
  position: relative;
}
.inner::after {
  content: "";
  clear: both;
  display: block;
}

/* ------------------------------------------------------------ */
/* font */
/* ------------------------------------------------------------ */

/* ------------------------------------------------------------ */
/* img */
/* ------------------------------------------------------------ */
.thum, .image, .banner {
  margin: 0 auto;
  text-align: center;
}
/* ------------------------------------------------------------ */
/* link */
/* ------------------------------------------------------------ */
::selection {
  color: #383838;
  background: rgba(0,0,0,0.1);
  text-shadow: none;
}

::-moz-selection {
  color: #383838;
  background: rgba(0,0,0,0.1);
  text-shadow: none;
}
a {
  color: #000;
  cursor: pointer;
  line-height: inherit;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  text-decoration: none;
}
a:link {
  color: #000;
  text-decoration: none;
}
/* a:visited {
  color: #000;
  text-decoration: none;
} */
a:hover {
  color: #000;
  opacity: 0.8;
  text-decoration: none;
}
/* a:active {
  color: #000;
  text-decoration: none;
} */

/* ------------------------------------------------------------ */
/* ボタン */
/* ------------------------------------------------------------ */
.btn {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.btn.btn_flx .btn-link {
  flex: 1;
}
.btn .btn-link {
  font-size: 1.1em;
  display: inline-block;
  line-height: 1.5;
  min-width: 270px;
  max-width: 100%;
  color: #fff;
  background-color: #1a1a1a;
  border: 1px solid #1a1a1a;
  margin: 0.5em;
  padding: 0.8em 1.5em;
  text-align: center;
  min-height: inherit;
  white-space: pre-wrap;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.btn .btn-link:hover,
a:hover .btn .btn-link {
  opacity: 1;
  box-shadow: 0 0 8px rgba(0,0,0,0.2);
}
.btn .btn-link.sm-btn {
  font-size: 1em;
  text-align: center;
  min-width: inherit;
  font-size: 1.6rem;
}
/* ------------------------------------------------------------ */
/* ttl */
/* ------------------------------------------------------------ */
h1,h2,h3,h4,h5,h6 {
  font-weight: 500;
  font-family: 'Shippori Mincho',YuGothic, "Yu Gothic Medium", "Yu Gothic", -apple-system, BlinkMacSystemFont, Roboto, "Segoe UI", "Helvetica Neue", HelveticaNeue, Verdana, Meiryo, sans-serif;
  letter-spacing: .05em;
}
.main-ttl {
  font-size: 1.4em;
  margin: 0 auto 1em;
  padding-bottom: .6em;
  text-align: center;
  position: relative;
}
.main-ttl::before {
  content: '';
  position: absolute;
  width: 2em;
  height: 1px;
  background-color: #EDEDED;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.main-ttl::after {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 100%;
  background-color: #ededed;
  position: absolute;
  bottom: .5px;
  left: 50%;
  transform: translate(-50%,50%);
}
.tit_area {
  padding: 8% 1em;
  margin: 0 auto 3em;
  /* background-attachment: fixed; */
}
.sec-ttl {
  font-size: 1.5em;
  text-align: center;
  margin: 0 auto;
  color: #fff;
  position: relative;
}
.tate {
  writing-mode: vertical-rl;
  -webkit-writing-mode: vertical-rl;
  -moz-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  -ms-writing-mode: vertical-rl;
  letter-spacing: .2em;
}
.align-center {
  text-align: center;
}
.txt {
  margin: 0 auto 1.5em;
  line-height: 2;
}
.detail_box {
  border: 1px solid #EDEDED;
  padding: .8em 1em;
}
.detail_box p {
  font-size: .85em;
}
/* ------------------------------------------------------------ */
/* flx_box */
/* ------------------------------------------------------------ */
.flx_box {
  width: 100%;
  height: auto;
  margin: 0 auto 1em;
  display: flex;
  /* justify-content: space-between; */
  flex-wrap: wrap;
}
.flx_line {
  width: 100%;
  display: flex;
}
.hrzn-center {
  align-items: center;
}
/* カラム共通 */
.flx_item {
  width: 100%;
  height: auto;
  margin: 0 auto 1em;
}
.flx_item .thum:not(:last-child) {
  margin: 0 auto 1em;
}
.flx_3cols .flx_item {
  margin: 0 auto 2.5em;
}
/* 4カラム */
.flx_4cols .flx_item {
  width: calc((100% - 1em)/2);
  margin: 0 1em 1.5em 0;
}
.flx_4cols .flx_item:nth-of-type(2n) {
  margin: 0 0 1.5em;
}
/* ------------------------------------------------------------ */
/* list */
/* ------------------------------------------------------------ */
/* list */
.list {
  margin: 0 auto 2em;
}
.list li {
  padding-left: 1.2em;
  position: relative;
  margin-bottom: .5em;
  line-height: 1.6;
}
.list li:last-of-type {
  margin-bottom: 0;
}
/* normal_list */
.normal_list li::before {
  content: '・';
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
}
/* square_list */
.square_list li::before {
  content: '■';
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
}
/* circle_list */
.circle_list li {
  padding-left: 1.5em;
  margin-bottom: 1em;
}
.circle_list li::before {
  content: '';
  display: inline-block;
  position: absolute;
  top: 0.35em;
  left: 0;
  width: 1em;
  height: 1em;
  border-radius: 100px;
  border:3px solid #1a1a1a;
}

/* num_list */
.num_list {
  counter-reset: item;
}
.num_list li {
  padding-left: 2.2em;
  font-size: 1.25em;
  line-height: 1.6;
  position: relative;
}
.num_list li:not(:last-of-type) {
  margin-bottom: 1.2em;
}
.num_list li::before {
  counter-increment: item;
  content: counter(item);
  width: 1.8em;
  height: 1.8em;
  color: #fff;
  background: linear-gradient(to bottom, #DEAD25 0%, #83A25B 100%);
  border-radius: 50%;
  letter-spacing: 0.3em;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  left: 0;
  top: 0;
  letter-spacing: 0;
  padding-bottom: 0.15em;
}
/* ------------------------------------------------------------ */
/* animation */
/* ------------------------------------------------------------ */
@keyframes fadeInup {
  0% {
    opacity: 0;
    transform: translateY(50%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIndown {
  0% {
    transform: translateY(-50%);
  }
  100% {
    transform: translateY(0);
  }
}
.fadeInup {
  opacity: 0;
  animation: fadeInup 2s ease-in-out 0.3s 1 forwards;
}
.fadeIn {
  opacity: 0;
  animation: fadeIn 2s ease-in-out 2.5s 1 forwards;
}
.inview {
  opacity: 0;
}
/* ------------------------------------------------------------ */
/* swiper */
/* ------------------------------------------------------------ */
.swiper-button-next{
  right: 1em;
}
.swiper-button-prev {
  left: 1em;
}
.swiper-button-next:after, .swiper-button-prev:after {
  content: '';
  width: 20px;
  height: 20px;
  display: inline-block;
  transform: rotate(45deg);
    position: absolute;
    top: 50%;
    left: 50%;
}
.swiper-button-next:after {
  border-top: 1px solid #404040;
  border-right: 1px solid #404040;
  transform: translate(-50%,-50%) rotate(45deg);
}
.swiper-button-prev:after {
  border-bottom: 1px solid #404040;
  border-left: 1px solid #404040;
  transform: translate(-50%,-50%) rotate(45deg);
}
.swiper-pagination.swiper-horizontal>.swiper-pagination-bullets,
.swiper-pagination.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination.swiper-pagination-custom, .swiper-pagination-fraction {
  bottom: 0;
}
.swiper-pagination > .swiper-pagination-bullet {
  width: 1em;
  height: 3px;
  border-radius: 0;
  background-color: #cfcfcf;
  opacity: 1;
}
.swiper-pagination > .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #ed799b;
}

/* ------------------------------------------------------------ */
/* header */
/* ------------------------------------------------------------ */
.main-header {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  /* スマホ用の慣性スクロール */
  -webkit-overflow-scrolling: touch;
}
/* hamburger */
.hamburger {
  position: relative;
  z-index: 1000;
  background-color: #000;
  width: 50px;
  height: 50px;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hamburger button {
  min-height: inherit;
  width: 30px;
  height: 15px;
  position: relative;
  outline: none;
}
.hamburger span {
  height: 1px;
  width: 100%;
  display: block;
  background: #fff;
  transition: all .3s ease-in-out;
  position: absolute;
  left: 0;
}
.hamburger span:first-of-type {
  top: 0;
}
.hamburger span:last-of-type{
  bottom: 0;
}
.hamburger.is-open span:first-of-type {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}
.hamburger.is-open span:last-of-type {
  top: 50%;
  transform:  translateY(-50%) rotate(-45deg);
  left: 0;
}

/* ------------------------------------------------------------ */
/* gnav */
/* ------------------------------------------------------------ */
.spnav {
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
/*右から*/
	/* right: 0;
	transform: translateX(100%); */
/*左から*/
/*
	left: 0;
    transform: translateX(-100%);
*/
/*上から*/
/*
	left:0;
    transform: translateY(-100%);
*/
	z-index: 999;
	-webkit-transition: transform 0.3s;
	transition: transform 0.3s;
	background: rgba(26,26, 26, .8);
  opacity: 0;
  visibility: hidden;
  display: flex;
    flex-direction: column;
    justify-content: center;
}
.show-nav .spnav {
  opacity: 1;
  visibility: visible;
  transition: all .3s;
  /* transform: translateX(0); */
  pointer-events: auto;
  overflow-y: auto;
}
.spnav_inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  height: auto;
  opacity: 0;
  position: relative;
  padding: 1em 0 1em;
  z-index: 999;
  color: #fff;
/*
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
*/
}
.show-nav .spnav_inner {
  opacity: 1;
  transition: 1.8s cubic-bezier(.165, .84, .44, 1) .3s;
}
.hidden-nav.overlay {
  position: fixed;
  width: 100vw;
  height: 100vh;
  display: block;
  background: rgba(0,0, 0, .2);
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  z-index: 10;
}
.show-nav .hidden-nav.overlay {
  opacity: 1;
  visibility: visible;
}
/* ------------------------------------------------------------ */
/* nav-menu */
/* ------------------------------------------------------------ */
.spnav h5 {
  font-size: 1.2rem;
  letter-spacing: 0;
}
.spnav h4 {
  font-size: 3rem;
  line-height: 1;
  margin-bottom: 1em;
}
.nav-menu {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  margin: 0 auto 2em;
}
.menu-item > a,
.menu-item > p {
  display: block;
  width: 100%;
  padding: .5em 1.5em;
  color: #fff;
  font-size: 1.2em;
  font-weight: 600;
  position: relative;
  overflow: hidden;
  z-index: 2;
  text-align: center;
}
.menu-item a:hover {
  opacity: 1;
}
/*アコーディオン*/
.menu-item .nav_ttl {
    position: relative;
    padding-right: 3em;
}
.menu-item .nav_ttl::before {
    content: '';
    display: block;
    width: 1em;
    height: 2px;
    background: #000;
    position: absolute;
    top: 50%;
    right: 1em;
    transform: translateY(-50%);
}
.menu-item .nav_ttl::after {
    content: '';
    display: block;
    width: 2px;
    height: 1em;
    background: #000;
    position: absolute;
    top: 50%;
    right: 1.5em;
    transform: translate(50%,-50%);
}
.menu-item .nav_ttl.is-open::after {
    content: none;
}
.nav_cnt {
    display: none;
}
.nav_cnt.is-open {
    display: block;
}
.nav-child li a {
    display: block;
    padding: .8em 1.5em;
    font-size: 1.6rem;
}
/* ------------------------------------------------------------ */
/* footer */
/* ------------------------------------------------------------ */
.main-footer {
  width: 100%;
  padding: 3em 0;
  background-color: #EDEDED;
}
.ft_inner {
  width: 90%;
  margin: 0 auto;
}
.ft_logo {
  font-size: 1.2em;
  margin-bottom: .5em;
}
.ft_info {
  font-size: .85em;
}
.copy {
  text-align: right;
  font-size: 1rem;
}
.mainvisual {
  position: relative;
}
.mv-slider {
  z-index: -1;
}
.mv_thum {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: calc(100vh - 60px);
  /* height: -webkit-fill-available; */
}
.mv_thum img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: auto;
  max-width: inherit;
  height: 100%;
}
.logo-area {
  color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.main-logo {
  font-size: 2.3em;
  font-weight: 500;
  margin-bottom: .8em;
}
.logo-area p {
  letter-spacing: 0;
  text-align: center;
  font-family: 'Shippori Mincho',YuGothic, "Yu Gothic Medium", "Yu Gothic", -apple-system, BlinkMacSystemFont, Roboto, "Segoe UI", "Helvetica Neue", HelveticaNeue, Verdana, Meiryo, sans-serif;
  font-weight: 600;
}
.logo-area span {
  display: block;
  font-size: .8em;
}
.intro {
  background: url(../img/back-paper.jpg) repeat ;
}
.intro h3 {
  font-size: 2em;
  letter-spacing: .15em;
  margin-bottom: 1em;
  line-height: 1.5;
}
.intro h4 {
  display: flex;
  justify-content: center;
  margin-bottom: 1em;
  line-height: 1.3;
}
.intro h4 span{
  font-size: 1.4em;
  border-bottom: 1px solid #000;
}
.works.base {
  padding-top: 0;
}
.works .tit_area {
  background-image: url(../img/bg01.jpg);
  background-size: cover;
  background-position: center;
}
.about .tit_area {
  background-image: url(../img/bg02.jpg);
  background-size: cover;
  background-position: center;
}
.about .inner {
  max-width: 680px;
}
.bg {
  position: relative;
}
.bg::before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0,0,0,0.1);
}

.gallery {
  background:url(../img/back-paper.jpg) repeat;
  position: relative;
}
.gallery::before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, #fff 0%, #fff 30%, transparent 30%, transparent 70%);
  position: absolute;
  top: 0;
  left: 0;
}

.glr_box {
  display: flex;
  position: relative;
  flex-wrap: wrap;
}

.glr_item:first-of-type {
  width: 70%;
  padding-right: 1em;
}

.glr_item:nth-of-type(2) {
  width: 30%;
}

.glr_item h6{
  margin: 0 auto 2em;
  font-size: 1.1em;
}

.glr_item:nth-of-type(2) figure{
  position: absolute;
  bottom: 0;
  width: 60%;
  right: 0;
}

.glr_box::after {
  content: '';
  display: block;
  width: 100%;
  padding-bottom: calc(8/16*100%);
}

.contact {
  background-image: url(../img/bg03.jpg);
  background-size: cover;
  background-position: center;
  position: relative;
  /* background-attachment: fixed; */
}
.contact::before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(to top, rgba(0,0,0,1), rgba(0,0,0,.4) 60%);
}
.contact .inner {
  position: relative;
  color: #fff;
  text-align: center;
}
.contact a {
  color: #fff;
}
.contact .sec-ttl {
  margin-bottom: 1em;
}
.cntct-ttl {
  font-size: 1.05em;
  margin-bottom: .5em;
}
.tel .num{
  font-size: 1.6em;
  line-height: 50px;
  margin: 0 .5em;
  display: inline-block;
}
.tel {
  margin-bottom: 1em;
}
.num span {
  display: inline-block;
  font-size: .6em;
  margin-right: .5em;
}
.attention {
  font-size: 1.4rem;
}
.mail {
  font-size: 1.4em;
  line-height: 50px;
}
.bg_gray {
  width: 100%;
  max-width: 920px;
  background: #EDEDED;
  padding: 1.5em;
  margin: 0 auto;
}
.bg_gray .main-ttl::before,
.bg_gray .main-ttl::after {
  background-color: #fff;
}
.bg_gray div {
  margin-bottom: 0!important;
}
.bg_gray figcaption {
  text-align: right;
  font-size: 12px;
  padding-top: 5px;
}
.info-table {
  width: 100%;
  margin: 0 auto 6%;
  border-top: 1px solid #EDEDED;
}
.tb_item{
  display: flex;
  flex-wrap: nowrap;
  border-bottom: 1px solid #EDEDED;
  padding: 1em 0;
}
.tb_item > div {
  padding: 0 1em;
}
.tb-ttl {
  width: 30%;
}
.tb-txt {
  width: 70%;
}
.rec_box {
  width: 100%;
  max-width: 480px;
  margin: 0 auto 2em;
  border: 1px solid #11621A;
  padding: 1.5em 1em;
  text-align: center;
}
.rec_box h4 {
  font-weight: 600;
  font-size: 1.2em;
  color: #11621A;
  margin: 0 auto .5em;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", sans-serif;
}
.rec_box h4::after,
.rec_box h4::before {
  content: "";
  background-image: linear-gradient( to right, #11621A, #11621A 4px, transparent 4px, transparent 10px );
  background-size: 10px 4px;
  background-repeat: repeat-x;
  width: 35px;
  height: 4px;
  margin: 0 .5em;
}

.contact {
  font-weight: 500;
    font-family: 'Shippori Mincho',YuGothic, "Yu Gothic Medium", "Yu Gothic", -apple-system, BlinkMacSystemFont, Roboto, "Segoe UI", "Helvetica Neue", HelveticaNeue, Verdana, Meiryo, sans-serif;
    letter-spacing: .05em;
  }
.contact .txt {
  font-size: 1.2em;
  border-bottom: 1px solid #fff;
  margin-bottom: 2em;
  padding-bottom: 2em;
}

@media screen and (min-width: 480px) {
  /* スマートフォン横 */
  .sp-only {
		display: none;
	}
  /* ------------------------------------------------------------ */
  /* common layouts */
  /* ------------------------------------------------------------ */
  .base {
    padding: 3em 0;
  }
  .inner {
    padding: 0 2em;
  }
  /* ------------------------------------------------------------ */
  /* btn */
  /* ------------------------------------------------------------ */
  .btn.flex-start {
    justify-content: flex-start;
  }
  .btn.flex-start .btn-link {
    margin-left: 0;
    margin-right: 0;
  }
  /* ------------------------------------------------------------ */
  /* flx_box */
  /* ------------------------------------------------------------ */
  /* 2カラム */
  /* .flx_2cols .flx_item {
    width: calc((100% - 1.5em)/2);
    margin: 0 1.5em 1.5em 0;
  }
  .flx_2cols .flx_item:nth-child(2n){
    margin: 0 0 1.5em;
  } */
  /* 3カラム */
/* .flx_3cols .flx_item {
  width: calc((100% - 1.5em)/2);
  margin: 0 1.5em 1.5em 0;
}
.flx_3cols .flx_item:nth-child(2n) {
  margin: 0 0 1.5em;
} */
  /* asyme */
  .flx_asyme {
    justify-content: space-between;
  }
  .flx_asyme .small_side {
    width: 45%;
    margin: 0 0 1em;
  }
  .flx_asyme .wide_side {
    width: 50%;
    margin: 0 0 1em;
  }

  .tit_area {
    margin: 0 auto 6%;
    background-attachment: fixed;
  }
  .contact {
    background-attachment: fixed;
  }

}
@media screen and (min-width: 768px) {
  /* タブレット縦 / スマートフォン横 */
  /* ------------------------------------------------------------ */
  /* common layouts */
  /* ------------------------------------------------------------ */
  .base {
    padding: 4em 0;
  }
  /* ------------------------------------------------------------ */
  /* flx_box */
  /* ------------------------------------------------------------ */
  /* 2カラム */
  .flx_2cols .flx_item {
    width: calc((100% - 5%)/2);
    margin: 0 5% 2em 0;
  }
  .flx_2cols .flx_item:nth-child(2n){
    margin: 0 0 2em;
  }
  /* 3カラム */
  .flx_3cols .flx_item,
  .flx_3cols .flx_item:nth-child(2n) {
      width: calc((100% - 6%)/3);
      margin: 0 3% 2em 0;
  }
  .flx_3cols .flx_item:nth-child(3n){
      margin: 0 0 2em;
  }
  /* 4カラム */
  .flx_4cols .flx_item,
  .flx_4cols .flx_item:nth-of-type(2n) {
    width: calc((100% - 4.5em)/ 4);
    margin: 0 1.5em 2em 0;
  }
  .flx_4cols .flx_item:nth-of-type(4n) {
    margin: 0 0 2em;
  }
  /* asyme */
  .flx_asyme .small_side {
    width: 40%;
  }
  .flx_asyme .wide_side {
    width: 55%;
  }

  .mv_thum {
    height: auto;
    position: relative;
  }
  .mv_thum::before{
    content: '';
    display: block;
    width: 100%;
    height: auto;
    padding-top: calc(10.3/16*100%);
  }
  .mv_thum img {
    max-width: 100%;
    height: auto;
  }
  .glr_box::after {
    content: none;
  }
  .glr_item:first-of-type {
    width: 50%;
    padding: 0 2em;
  }
  .glr_item:nth-of-type(2) {
    width: 50%;
  }
  .glr_item:nth-of-type(2) figure {
    margin: 0 auto;
    position: inherit;
  }

  /* ------------------------------------------------------------ */
  /* footer */
  /* ------------------------------------------------------------ */
  .copy {
    font-size: 1.2rem;
  }

  .bg_gray {
    padding: 3% 4%;
  }

  .cntct_box {
    position: relative;
  }
  .cntct_box::after {
    content: '';
    display: block;
    width: 1px;
    height: 90%;
    position: absolute;
    top: 0;
    right: 50%;
    transform: translateX(-50%);
    background-color: #fff;
  }
  .tel {
    margin-bottom: 0;
  }
}
@media screen and (min-width: 1025px) {
  /* デスクトップ/タブレット横 */
  .hamburger {
    width: 62px;
    height: 62px;
  }
  /* ------------------------------------------------------------ */
  /* common layouts */
  /* ------------------------------------------------------------ */
  .inner {
    padding: 0 3em;
    max-width: 1200px;
  }
  .wide {
    width: 97%;
    max-width: 1500px;
  }
  .base {
    padding: 5em 0;
  }
  /* ------------------------------------------------------------ */
  /* flx_box */
  /* ------------------------------------------------------------ */
  /* 3カラム */
  /* .flx_3cols .flx_item, .flx_3cols .flx_item:nth-child(2n) {
    width: calc((100% - 3em)/3);
    margin: 0 1.5em 1.5em 0;
  }
  .flx_3cols .flx_item:nth-child(3n) {
    margin: 0 0 1.5em;
  } */
  /* 4カラム */
  .flx_4cols .flx_item,
  .flx_4cols .flx_item:nth-of-type(2n){
    width: calc((100% - 12%)/ 4);
    margin: 0 3% 2.5em 0;
  }
  .flx_4cols .flx_item:nth-of-type(4n) {
    margin: 0 0 2.5em;
  }
  /* ------------------------------------------------------------ */
  /* header */
  /* ------------------------------------------------------------ */

  /* ------------------------------------------------------------ */
  /* gnav */
  /* ------------------------------------------------------------ */
  .menu-item a:hover {
    color: #11621A;
  }
}