@charset "UTF-8";

/*-------------------------------------
RESET
---------------------------------------*/
html {
  overflow: auto;
}

body {
  /* -webkit-print-color-adjust: exact;
  -webkit-text-size-adjust: 100%; */
  text-align: left;
  font-family: sans-serif;
  margin: 0;
  padding: 0;
}

main {
  display: block;
}

div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
form,
fieldset,
input,
textarea,
p,
blockquote,
th,
td,
figure,
figcaption {
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
  margin: 0;
  padding: 0;
}

address,
caption,
cite,
code,
dfn,
em,
strong,
th,
var {
  font-style: normal;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption,
th {
  text-align: left;
}

q:before,
q:after {
  content: "";
}

object,
embed {
  vertical-align: top;
}

hr,
legend {
  display: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
}

img,
abbr,
acronym,
fieldset {
  border: none;
}

li {
  list-style-type: none;
}

a {
  text-decoration: none;
  border: none;
  outline: none;
}

/*-------------------------------------
BASE STYLE
---------------------------------------*/
html {
  font-size: 62.5%;
  /* 16px * 62.5% = 10px */
  width: 100%;
  box-sizing: border-box;
  scroll-behavior: smooth;
  /* フォントのちらつき対処 */
  visibility: hidden; 
}

html.wf-active, html.wfno-load {
  /* フォントのちらつき対処 */
  visibility: visible;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 2;
  text-align: left;    
  background-color: rgb(249, 249, 249);
}

p {
  font-size: 1.6rem;
  line-height: 2;
  font-family: "Noto Sans JP", sans-serif;
}

@media(max-width:760px) {
  body,p {
    font-size: 1.2rem;
  }
}

a {
  text-decoration: none;
  color: #333;
}

a:hover {
  opacity: 0.7;
  cursor: pointer;
  transition: 0.3s ease;
}

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

.pc-visible {
  display: block;
}

.sp-visible {
  display: none;
}

@media(max-width:760px) {

  .pc-visible {
    display: none;
  }

  .sp-visible {
    display: block;
  }
}

.serif {
  font-family: "minion-pro-subhead", serif;
  font-weight: 400;
}

/*-------------------------------------

C-STYLE

---------------------------------------*/
.c-inner {
  max-width: 1024px;
  margin: 0 auto;
  padding-top: 150px;
  padding-left: 20px;
  padding-right: 20px;
}

.c-ttl {
  font-size: 5.5rem;
  line-height: 1;
  margin-bottom: 40px;
  color: #333;
}

.c-ttl span {
  font-size: 1.8rem;
  padding-left: 18px;
  font-family: "Noto Sans JP", sans-serif;
}

.c-txt {
  font-size: 1.6rem;
  line-height: 2;
}

.c-btn {
  font-size: 1.6rem;
  display: flex;
  justify-content: center;
  margin-top: 60px;
}

.c-btn a {
  position: relative;
  width: 350px;
  color: rgb(249, 249, 249);
  background: #58554c;
  margin: 0 auto;
  padding: 15px 0px 15px 15px;
  box-sizing: border-box;
  border: solid 1px #58554c;
  transition: 0.3s ease;
}

.c-btn a:hover {
  color: #58554c;
  background: rgb(249, 249, 249);
  opacity: 1;
  transition: 0.3s ease;
}

.c-btn a::before {
  content: '';
  position: absolute;
  top: calc(50% - 2px);
  right: 2em;
  transform: translateY(calc(-50% - 1px)) rotate(30deg);
  width: 12px;
  height: 1px;
  background-color: rgb(249, 249, 249);
  transition: 0.3s ease;
}

.c-btn a::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 2em;
  transform: translateY(-50%);
  width: 60px;
  height: 1px;
  background-color: rgb(249, 249, 249);
  transition: 0.3s ease;
} 

.c-btn a:hover::before,.c-btn a:hover::after {
  right: 1em;
  background-color: #58554c;
  transition: 0.3s ease;
}

@media(max-width:760px) {
  .c-btn {
    width: 70%;    
    margin-top: 10vw;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.2rem;
  }
  
  .c-btn a {
    padding: 3vw 0px 3vw 3vw;
  }
  
  .c-inner {
    max-width: 100%;
    margin-left: 5.7%;
    margin-right: 5.7%;
    padding-top: 30vw;
    padding-left: 0;
    padding-right: 0;
  }
  .c-ttl {
    font-size: 4rem;
    font-weight: 400;
    margin-bottom: 5vw;
  }
  .c-ttl span {
    font-size: 1.4rem;
    padding-left: 3.7vw;
  }
  .c-txt {
    font-size: 1.2rem;
  }
}

/*-------------------------------------
HEADER
---------------------------------------*/
.header {
  width: 100%;
  position: fixed;
  z-index: 999;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 24px 0;
}

.header__logo {
  font-size: 2.0rem;
  line-height: 1;
  z-index: 999999;
}

.header__logo a {
  transition: 0.3s ease;
}

.header__nav {
  font-size: 2.0rem;
  line-height: 1;
  z-index: 999999;
}

.header__nav-list {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__nav-list .item {
  margin-left: 20px;
  font-size: 1.8rem;
}

.header__nav-list .item a:hover {
  opacity: 1;
  transition: 0.6s ease;
}

.header__nav-list .item:first-child {
  margin-left: 0;
}

.header__nav-list .item a {
  position: relative;
}

.header__nav-list .item a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: #333;
  transition: all .3s;
  transform: scale(0, 1);
  transform-origin: left top;
}

.header__nav-list .item a:hover::after {
  transform: scale(1, 1);
  transition: 0.6s ease;
}

/*-------------------------------------
MENU
---------------------------------------*/
@media(max-width:760px) {
  
  .sp-nav__btn {
    position: fixed;
    width: 50px;
    height: 50px;
    top: 10px;
    right: 10px;
    z-index: 1000;
    cursor: pointer;
  }
  
  .sp-nav__btn span {
    display: inline-block;
    transition: all .4s;
    position: absolute;
    width: 45%;
    left: 20px;
    height: 1px;
    border-radius: 2px;
    background: #333;
  }
  
  .sp-nav__btn span:nth-of-type(1) {
    top: 15px;
  }
  
  .sp-nav__btn span:nth-of-type(2) {
    top: 23px;
  }
  
  .sp-nav__btn span:nth-of-type(3) {
    top: 31px;
  }
  
  .sp-nav__btn.is-menuactive span:nth-of-type(1) {
    width: 30%;
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
  }
  
  .sp-nav__btn.is-menuactive span:nth-of-type(2) {
    opacity: 0;
  }
  
  .sp-nav__btn.is-menuactive span:nth-of-type(3) {
    width: 30%;
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
  }
  
  #sp-nav.is-open #sp-nav-list {
    position: fixed;
    width: 100%;
    height: 100vh;
    overflow: auto;
    z-index: 999;
  }
  
  #sp-nav-list ul {
    position: absolute;
    width: 80%;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    z-index: 999;
    display: flex;
    flex-direction: column;
  }
  
  #sp-nav-list ul li {
    font-size: 2.0rem;
    padding-bottom: 5vw;
    margin-bottom: 5vw;
    border-bottom: 1px solid #333;
  }
  
  #sp-nav-list ul li:first-child {
    padding-top: 5vw;
    border-top: 1px solid #333;
  }
  
  #sp-nav {
    position: fixed;
    top: 0;
    right: -120%;
    width: 100%;
    height: 100vh;
    background: rgb(249, 249, 249);
    transition: all .6s;
    z-index: 999;
    
  }
  
  #sp-nav.is-open {
    right: 0;
  }
}

/*-------------------------------------
FOOTER
---------------------------------------*/
.footer {
  background-color: rgb(164,158,142);
  color: #333;
}

.footer__inner {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  padding: 80px 20px 50px;
}

.footer .footer__ttl {
  font-size: 4.0rem;
  line-height: 1;
  margin-bottom: 20px;
}

.footer .footer__ttl a {
  transition: 0.3s ease;
}

.footer .footer__list {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}

.footer .footer__item {
  font-size: 2rem;
  margin-right: 20px;
}

.footer .footer__item a {
  position: relative;
}

.footer .footer__item a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: #333;
  transition: all .3s;
  transform: scale(0, 1);
  transform-origin: left top;
}

.footer .footer__item a:hover {
  opacity: 1;
}

.footer .footer__item a:hover::after {
  transform: scale(1, 1);
  transition: 0.6s ease;
}

.footer .footer__copyright {    
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 20px 20px;
  font-size: 1.2rem;
}

@media(max-width:760px) {
  
}

/*-------------------------------------
PAGE TOP
---------------------------------------*/
.footer__pageTop {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 2;
  opacity: 0;
  transform: translateY(100px);
  transition: all .7s ease;
}

.footer__pageTop.is-up {
  opacity: 1;
  transform: translateY(0);
}

.footer__pageTop.is-down {
  opacity: 1;
  transform: translateY(100px);
}

.footer__pageTop.is-up {
  transform: translateX(0);
}

.footer__pageTop a {
  display: flex;
  justify-content: center;
  align-items: center;   
  width: 40px;
  height: 40px;
  background: #58554c;
  border-radius: 50%;
  padding: 10px;
  transition: all 0.3s;
}

.footer__pageTop a:hover {
  opacity: 1;
}

.footer__pageTop .arrow {
  font-size: 2.5rem;
  text-align: center;
  color: #FFF;
  transition: all 0.3s;
}

.footer__pageTop a:hover .arrow {
  transform: scale(1.1);
}

@media(max-width:760px) {
  .footer__inner {
    padding: 15vw 0 10vw;
  }
  
  .footer .footer__ttl {
    font-size: 3rem;   
    line-height: 1.4;
    margin-bottom: 5vw;
  }
  
  .footer .footer__item {
    font-size: 1.8rem;   
    margin-bottom: 5vw;
  }
}


/*-------------------------------------
ANIMATION
---------------------------------------*/
.js-anm {
  opacity: 0;
  transition: opacity .7s ease-in-out,all .7s ease;
}

.fv-anm {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.fv-anm.is-done {
  opacity: 1;
  transform: translateY(0);
}

.fade-in {
  transform: translate(0, 5px);
  transition: opacity .5s ease-in-out,all .5s ease;
}

.fade-in.is-done {
  opacity: 1;
  transform: translate(0, 0);
}

.fade-up {
  transform: translate(0, 20px);
}

.fade-up.is-done {
  opacity: 1;
  transform: translate(0, 0);
}

.fade-left {
  transform: translate(-20px, 0);
}

.fade-left.is-done {
  opacity: 1;
  transform: translate(0, 0);
}

.fade-right {
  transform: translate(20px, 0);
} 

.fade-right.is-done {
  opacity: 1;
  transform: translate(0, 0);
}

.fade-down {
  transform: translate(0, -20px);
}

.fade-down.is-done {
  opacity: 1;
  transform: translate(0, 0);
} 
