@charset "UTF-8";
/* CSS Document */

/* Questrial */
@font-face {
  font-family: 'Questrial';
  src: url('/fonts/questrial-v18-latin-regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* Cormorant Garamond */
@font-face {
  font-family: 'Cormorant Garamond';
  src: url('/fonts/cormorant-garamond-v20-latin-regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* Noto Sans JP */
@font-face {
  font-family: 'Noto Sans JP';
  src: url('/fonts/noto-sans-jp-v54-latin-regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Noto Sans JP';
  src: url('/fonts/noto-sans-jp-v54-latin-600.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}


/* Noto Serif JP */
@font-face {
  font-family: 'Noto Serif JP';
  src: url('/fonts/noto-serif-jp-v31-latin-regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Noto Serif JP';
  src: url('/fonts/noto-serif-jp-v31-latin-600.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

body{
	font-family: 'Noto Serif JP',"游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
	-webkit-font-smoothing: antialiased;
	-webkit-text-size-adjust: 100%;
	font-weight:normal;
  letter-spacing: 0.05em;
	font-size:100%;
	color:#323232;
  background: #FFF;
}

body,html,p,ul,ol,li,form,h1,h2,h3,h4,dd,dl,dt,iframe,span,figure,figcaption,article,section{
	margin:0;
	padding:0;
}


h1,h2,h3,h4,h5{
  font-size: 16px;
  line-height: 1;
	font-weight:normal;
}

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

a img{
	border:none;
	outline:none;
}

ul,ol {
	list-style:none;
}

a{
  color: #000;
	text-decoration: none;
	transition:0.3s linear;
}

@media screen and (min-width: 861px)  {
  a:hover{
    text-decoration: none;
    transition: 0.3s;
    opacity: 0.7;
  }
}

a:focus {
  outline: none;
}

.dm{
	display:none;
}

.f_g{
  font-family:  'Noto Sans JP',"游ゴシック", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ ゴシック", sans-serif;
}

.en_g{
  font-family: 'Questrial', sans-serif;
}

.en_m{
  font-family: 'Cormorant Garamond', serif;
}

header{
  width: 100%;
  height: 80px;
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(255,255,255,.9);
  z-index: 9999;
}

header h1{
  width: 160px;
  line-height: 1;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
}

header h1 img{
  display: block;
}

header nav{
  width: 100%;
  height: 100vh;
  background: rgba(255,255,255,.6);
  padding-top: 40px;
  text-align: right;
  position: absolute;
  top: 80px;
  right: 0;
  box-sizing: border-box;
  display: none;
  padding: 0 20px;
}

header nav ul{
  display: inline-block;
}

header nav li{
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  line-height: 1;
  display: block;
}

header nav li + li{
  margin-top: 10px;
}

header nav li a{
  display: block;
  padding: 15px;
  position: relative;
}
@media screen and (min-width: 861px)  {
  header nav li a:hover{
    transform: translateX(5px);
    transition: .5s;
  }
}
header nav li a::after{
  content: ">";
  color: #4E4E4E;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%) scale(0.5,1);
}

.btn_m{
  width: 45px;
  height: 45px;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  z-index:9999;
  opacity:1;
  cursor: pointer;
}

.menu {
  width: 45px;
  height: 45px;
  display: block;
  z-index: 99999;
  cursor: pointer;
}

.menu span {
  width: 25px;
  height: 1px;
  display: block;
  background: #302025;
  position: absolute;
  right: 5px;
  top: 50%;
  cursor: pointer;
  transition: all 0.3s;
  transform: rotate(0deg);
}

.menu span:not(:target) {
  display: block;
}

.menu .top {
  width: 35px;
  transform: translateY(-10px);
}

.menu .bottom {
  width: 15px;
  transform: translateY(10px);
}

.menu.is-open .middle {
  background: rgba(255, 255, 255, 0);
  display:none;
}

.menu.is-open .top {
  width: 35px;
  transform: rotate(-45deg) translateY(0px);
  background: #636363;
}

.menu.is-open .bottom {
  width: 35px;
  transform: rotate(45deg) translateY(0px);
  background: #636363
}

article{
  width: 100%;
  overflow: hidden;
}

.inner{
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
  overflow: visible !important;
  position: relative;
}

.pan{
  max-width: 1000px;
  margin: 105px auto 20px;
  padding: 0 20px;
  box-sizing: border-box;
  display: flex;
  justify-content: flex-start;
  flex-flow: wrap;
}

.pan li{
  font-family: 'Cormorant Garamond', 'Noto Serif JP',"游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.1em;
}

.pan li a{
  color: #000;
}

.pan li a::after{
  content: ">";
  color: #000;
  padding: 0 0.8em;
}

.title{
  font-size: 22px;
  line-height: 1;
  letter-spacing: 0.1em;
  position: relative;
}

.title span{
  display: inline-block;
  position: relative;
}

.title span::after{
  content: "";
  width: 125px;
  height: 1px;
  background: #161616;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateX(105%);
}

.title em{
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  line-height: 1;
  color: #7d7d7d;
  font-style: normal;
  display: inline-block;
  position: absolute;
  bottom: -15px;
  left: 0;
  transform-origin: left bottom;
  transform: rotate(90deg)
}

a.btn_aw{
  width: 70px;
  height: 70px;
  background: #858484;
  border-radius: 50%;
  display: block;
  position: relative;
}

a.btn_aw span{
  font-size: 24px;
  line-height: 1;
  color: #dcdcdc;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  transition: 0.6s ease-in;
}

@media screen and (min-width: 861px)  {
  a.btn_aw:hover span{
    transform: translate(-20%,-50%);
    transition: 0.6s ease-out;
  }

  a.btn_aw:hover{
    background: #B7B7B7;
    opacity: 1;
  }
}

footer{
  margin-top: 200px;
}

.f_about{
  background: #f7f7f7;
  padding: 40px;
}

.f_about div.c2{
  max-width: 700px;
  margin: 0 auto 20px;
  display: flex;
  justify-content: space-between;
}

.f_about div.c2 > div{
  width: 30%;
  padding-top: 60px;
}

.f_about div.c2 > div + div{
  width: 65%;
  padding-top: 0;
}

.f_about h2{
  font-family: 'Questrial', sans-serif;
  font-size: 34px;
  line-height: 1;
}

.f_about h2 span{
  font-family:  'Noto Sans JP',"游ゴシック", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ ゴシック", sans-serif;
  font-size: 13px;
  display: block;
  margin-bottom: 10px;
}

.f_about h2 i{
  font-family:  'Noto Sans JP',"游ゴシック", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ ゴシック", sans-serif;
  font-size: 12px;
  font-style: normal;
  display: block;
  margin-top: 5px;
}

.f_about p{
  font-size: 14px;
  line-height: 1.8;
}

.f_about ul{
  font-size: 14px;
  line-height: 1.6;
  margin: 15px 0;
}

.f_about ul li{
  padding-left: 1em;
}

.f_about ul li::before{
  content: "▶";
  display: inline-block;
  margin-left: -1em;
  transform: scale(.6);
}

.f_about div.note{
  font-family:  'Noto Sans JP',"游ゴシック", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ ゴシック", sans-serif;
  margin-top: 15px;
}

.f_about div.note p{
  font-size: 12px;
  line-height: 1.6;
}

footer .f_about .contact_box{
  padding-bottom: 0;
  margin-top: 60px;
}

footer .contact_box{
  text-align: center;
  padding-bottom: 60px;
}

footer .contact_box a{
  font-family: 'Cormorant Garamond', serif;
  font-size: 43px;
  line-height: 1;
  color: #646464;
  display: inline-block;
  position: relative;
}

footer .contact_box a span{
  width: 70px;
  height: 70px;
  background: #FFF;
  border: 1px solid #858484;
  border-radius: 50%;
  display: block;
  position: absolute;
  top: 50%;
  right: -100px;
  transform: translateY(-50%);
  transition: 0.6s;
}

footer .contact_box a span em{
  font-family: 'Noto Serif JP',"游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-size: 60%;
  font-style: normal;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  transition: 0.6s ease-out;
}

@media screen and (min-width: 861px)  {
  footer .contact_box a:hover span{
    background: #858484;
    transition: 0.6s;
  }

  footer .contact_box a:hover span em{
    color: #FFF;
    transform: translate(-20%,-50%);
    transition: 0.6s ease-out;
  }
}

.footer_box{
  background: #060606;
  padding: 90px 0 25px;
}

.footer_box .inner > div{
  display: flex;
  justify-content: space-between;
  margin-bottom: 130px;
}

.footer_box .inner > div > div{
  width: 60%;
  padding: 0 20px;
  box-sizing: border-box;
}


.footer_box ul{
  display: flex;
  justify-content: flex-start;
  padding-top: 10px;
}

.footer_box ul + ul{
  margin-top: 30px;
}

.footer_box ul li + li{
  margin-left: 15px;
}

.footer_box ul + ul li + li{
  margin-left: 25px;
}

.footer_box ul img{
  width: 65px;
}

.footer_box ul a{
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  line-height: 1;
  white-space: nowrap;
  color: #dcdcdc;
  display: block;
  position: relative;
}

.footer_box ul:first-of-type a{
  padding-left: 15px;
}

.footer_box ul:first-of-type a::before{
  content: ">";
  color: #FFF;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%) scale(0.5,1);
}

.footer_box .inner address{
  font-style: normal;
}

.footer_box .inner .add{
  width: 25%;
  text-align: right;
  padding: 0;
}

.footer_box h2{
  margin-bottom: 20px;
  padding-right: 22px;
}

.footer_box h2 img{
  width: 145px;
}

.footer_box p{
  width: 190px;
  font-family: 'Questrial', sans-serif;
  font-size: 15px;
  line-height: 1.3;
  text-align: left;
  letter-spacing: normal;
  color: #CDCDCD;
  float: right;
  clear: both;
  margin-bottom: 5px;
  white-space: nowrap;
  padding-left: 3em;
  box-sizing: border-box;
}

.footer_box p a{
  font-size: 16px;
  color: #CDCDCD;
  padding-bottom: 1px;
  border-bottom: 1px solid #3E3E3E;
}

.footer_box p span{
  width: 2.8em;
  text-align: right;
  display: inline-block;
  margin-left: -3em;
}

footer small{
  font-family: 'Questrial', sans-serif;
  font-size: 14px;
  line-height: 1;
  text-align: center;
  color: #646464;
  display: block;
}

header,main,footer{
  opacity: 0;
  transition: 1s ease-out all;
}

.body_view{
  opacity: 1;
}

.view{
  opacity: 0;
  transform: translateY(30px);
  filter: blur(10px);
  transition: 1s ease-out all;
}

.view_on{
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}

.sp{
  display: none;
}

.pc{
  display: block;
}

@media screen and (max-width: 860px)  {
  
  .sp{
    display: block;
  }

  .pc{
    display: none;;
  }
  
  header{
    width: 100%;
    height: 15vw;
  }

  header h1{
    width: 30%;
  }
  
  header nav{
    padding-top: 20vw;
    top: 15vw;
    padding: 0 8vw;
    background: rgba(255,255,255,.9);
  }

  header nav li{
    font-size: 4vw;
  }

  header nav li + li{
    margin-top: 5vw;
  }

  header nav li a{
    padding: 2vw;
    position: relative;
  }

  .btn_m{
    width: 15vw;
    height: 15vw;
    top: 50%;
    right: 6vw;
  }

  .menu {
    width: 15vw;
    height: 15vw;
  }

  .menu span {
    width: 6vw;
    right: 0;
  }

  .menu span:not(:target) {
    display: block;
  }

  .menu .top {
    width: 9vw;
    transform: translateY(-2vw);
  }

  .menu .bottom {
    width: 3vw;
    transform: translateY(2vw);
  }


  .menu.is-open .top {
    width: 8vw;
    transform: rotate(-25deg) translateY(0px);
    background: #636363;
  }

  .menu.is-open .bottom {
    width: 8vw;
    transform: rotate(25deg) translateY(0px);
    background: #636363
  }

  article{
    width: 100%;
  }
  
  .pan{
    padding: 0 6vw;
    margin: 15vw auto 3vw;
  }

  .pan li{
    font-size: 3vw;
    line-height: 1.4;
    letter-spacing: normal;
  }

  .inner{
    padding: 0 6vw;
    box-sizing: border-box;
  }

  .title{
    font-size: 5vw;
    line-height: 1;
    letter-spacing: 0.1em;
    margin-bottom: 10vw;
  }

  .title span{
    display: inline-block;
    position: relative;
  }

  .title span::after{
    width: 15vw;
    height: 1px;
    background: #959595;
  }

  .title em{
    font-size: 3.5vw;
    bottom: -3vw;
    left: 0;
    transform-origin: left bottom;
    transform: rotate(90deg)
  }

  a.btn_aw{
    width: 15vw;
    height: 15vw;
  }

  a.btn_aw span{
    font-size: 4vw;
    line-height: 1;
  }

  footer{
    margin-top: 30vw;
  }
  
  .f_about{
    background: #f7f7f7;
    padding: 10vw 5vw;
  }

  .f_about div.c2{
    margin: 0 auto 5vw;
    display: block;
  }

  .f_about div.c2 > div{
    width: 100%;
    padding-top: 0;
  }

  .f_about div.c2 > div + div{
    width: 100%;
    padding-top: 5vw;
  }

  .f_about h2{
    font-size: 7vw;
    line-height: 1;
    margin-bottom: 0;
    text-align: center;
  }

  .f_about h2 span{
    font-size: 2.8vw;
    margin-bottom: 1vw;
    letter-spacing: normal;
  }

  .f_about h2 i{
    font-size: 2vw;
    display: block;
    margin-top: 1vw;
  }

  .f_about p{
    font-size: 3.3vw;
    line-height: 1.6;
  }

  .f_about ul{
    font-size: 3.3vw;
    line-height: 1.6;
    margin: 2vw 0;
  }


  .f_about div.note{
    margin-top: 5vw;
  }

  .f_about div.note p{
    font-size: 3vw;
    line-height: 1.6;
  }

  footer .f_about .contact_box{
    padding-bottom: 0;
    margin-top: 10vw;
  }

  footer .contact_box{
    padding-bottom: 10vw;
  }

  footer .contact_box a{
    font-size: 5.5vw;
    padding-right: 10vw;
  }

  footer .contact_box a span{
    width: 13vw;
    height: 13vw;
    right: -8vw;
    transition: 0.6s;
  }

  footer .contact_box a span em{
    font-size: 70%;
  }

  .footer_box{
    padding: 10vw 0 5vw;
  }

  .footer_box .inner > div{
    display: block;
    margin-bottom: 10vw;
  }

  .footer_box .inner > div > div{
    width: 100%;
    padding: 0 6vw;
    box-sizing: border-box;
  }

  .footer_box ul{
    display: flex;
    justify-content: space-between;
    flex-flow: wrap;
    padding-top: 0;
    padding: 0 5vw;
    margin-left: 5vw;
    box-sizing: border-box;
  }
  
  .footer_box ul li{
    width: 50%;
  }
  
  .footer_box ul + ul{
    margin-top: 5vw;
    margin-left: 0;
    padding: 0;
    justify-content: center;
  }

  .footer_box ul li + li{
    margin-left: 0;
  }

  .footer_box ul + ul li{
    width: 12%
  }
  
  .footer_box ul + ul li + li{
    margin-left: 12vw;
  }

  .footer_box ul img{
    width: 100%;
  }

  .footer_box ul a{
    font-size: 4vw;
    line-height: 1;
    padding: 2vw 0;
  }

  .footer_box ul:first-of-type a{
    padding-left: 4vw;
  }
  
  .footer_box .inner .add{
    width: 100%;
    text-align: center;
    padding: 0;
    margin-top: 10vw;
  }
  
  .footer_box h2{
    margin-bottom: 5vw;
    padding-right: 0;
  }

  .footer_box h2 img{
    width: 30%;
  }

  .footer_box p{
    width: 100%;
    font-size: 3.2vw;
    margin-bottom: 3vw;
    text-align: center;
    float: none;
    white-space: nowrap;
    padding-left: 0;
  }

  .footer_box p span{
    width: auto;
    text-align: left;
    display: inline-block;
    margin-left: 0;
  }
  
  .footer_box p a{
    font-size: 3.6vw;
  }

  footer small{
    font-size: 3.5vw;
  }
  
  .view{
    transform: translateY(0);
  }    
}

.loading {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background: #323232;
  z-index: 999;
}
 
.loading .ani {
  width: 40px;
  height: 20px;
  --c:no-repeat radial-gradient(farthest-side,#FFF 93%,#0000);
  background:
    var(--c) 0    0,
    var(--c) 50%  0,
    var(--c) 100% 0;
  background-size: 8px 8px;
  animation: l4-0 1s linear infinite alternate;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.loading .ani:before {
  content: "";
  position: absolute;
  width: 8px;
  height: 12px;
  background: #FFF;
  left: 0;
  top: 0;
  animation: 
    l4-1 1s  linear infinite alternate,
    l4-2 0.5s cubic-bezier(0,200,.8,200) infinite;
}
@keyframes l4-0 {
  0%      {background-position: 0  100%,50% 0   ,100% 0}
  8%,42%  {background-position: 0  0   ,50% 0   ,100% 0}
  50%     {background-position: 0  0   ,50% 100%,100% 0}
  58%,92% {background-position: 0  0   ,50% 0   ,100% 0}
  100%    {background-position: 0  0   ,50% 0   ,100% 100%}
}
@keyframes l4-1 {
  100% {left:calc(100% - 8px)}
}
@keyframes l4-2 {
  100% {top:-0.15px}
}

