@charset "utf-8";

/*color*/
:root {
  --color-main: #3B4B5A;
  --color-text: #494949;
  --color-white: #fff;
  
  --color-bg-concept: #dcccd2;
  --color-bg-service-top: #f2f2f2;
  --color-bg-service-bottom: #EAE6DC;
  --color-bg-gallery-top: #f1f9f9;
  --color-bg-gallery-bottom: #a0b3b3;
}

/*reset*/
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
img {
  vertical-align: bottom;
  width: 100%; 
  height: 100%;
  object-fit: cover;
}
a {
  text-decoration: none;
  color: inherit;
}
ul,li{
  list-style: none;
}

html {
  font-size: 16px;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  text-align: left;
}
h1 {
  font-size: 0;
}
p {
    font-feature-settings: "halt"; /*open typeのみ*/
    font-family: "Noto Serif JP";
}

button{
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
}

/* font設定*/
.roboto {
  font-family: "Roboto", sans-serif;
}
.NotoSerifJP {
  font-family: "Noto Serif JP", serif;
}
.NotoSansJP {
  font-family: "Noto Sans JP", sans-serif;
}

/*utility*/
.d-flex-column {
  display: flex;
  flex-direction: column;
}
.d-flex-row {
  display: flex;
  flex-direction: row;
}

.sp-display-none {
  display: none;
}
.pc-display-none {
  display: block;
}

@media screen and (min-width: 768px) {
    .sp-display-none {
      display: block;
    }
    .pc-display-none {
      display: none;
    }
} 

/*************************
  section共通 
*****************************/
.section__inner {
    padding-top: 50px;
    padding-bottom: 50px;
    width: 400px ;
    max-width: calc(100% - 80px);
    margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .section__inner {
    width: calc(100% - 340px);
    max-width: 720px;
    padding-bottom: 80px;
  }
}
.section__title {
  padding-bottom: 60px;
  text-align: center;
  color: #222B42;
  font-family: "Noto Sans JP";
  font-size: 24px;
  font-weight: 400;
  text-shadow: 1px 1px 2px #89817F;
}

@media screen and (min-width: 768px) {
  .section__title {
    padding-top: 40px;
    padding-bottom: 100px;
    font-size: 28px;
  }
}

.section__title:before,
.section__title:after {
  content: '-';
  display: inline-block;
  padding-right: 8px;
  padding-left: 8px;
}

/* header 
*****************************/
header {
  background-color: var(--color-main);
  width: 100%;
  position: fixed;
  height: 80px;
  z-index: 10;
}

.header__inner {
  width: calc(100% - 40px);
  padding-top: 20px;
  padding-bottom: 20px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: inherit;
}
@media screen and (min-width: 768px) {
  .header {
    height: 120px;
  }
  .header__inner {
    width: calc(100% - 120px);
  }  
}

.header__logo {
  width: 120px;
  height: 40px;
}

@media screen and (min-width: 768px) {
  .header__logo {
    width: 30vw;
    height: auto;
  }
}

.header__logo img {
  width: 100%;
  color: var(--color-white);
}

.header__nav-list {
  display: flex;
  column-gap: 4.5vw;
  height: inherit;
}

.header__nav-item a {
    height: inherit;
    display: flex;
    font-family: "Roboto";
    align-items: center; 
    font-weight: 200;
    font-size: 18px;
    letter-spacing: .1em;
    color: var(--color-white);
}
@media (hover: hover) { 
  .header__nav-item a:hover {
    text-decoration: underline;
  }
}

.header__hamburger {
  padding: 15px 10px;
}

.header__hamburger span {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    display: block;
    width: 26px;
    height: 1px;
    background-color: var(--color-white);
    transition: .5s;
}

.header__hamburger span:nth-of-type(1) {
    top: -8px;
}
.header__hamburger span:nth-of-type(2) {
    top: 0;
}
.header__hamburger span:nth-of-type(3) {
    top: 8px;
}
.js-drawer {
  color: var(--color-white);
  width: 50vw;
  height: 50vh;
  background-color: var(--color-main);
  text-align: center;
  line-height: 3;
  font-size: 24px;
  font-weight: 300;
  margin-left: auto;
  position: relative;
  top: 0;
  right: -100%;
  transition: all .5s;
}

.js-drawer.panelActive {
  right: 0;
}
.header__drawer-nav {
  display: inline-block;
  vertical-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50% , -50%);
}

/* hero-area
*****************************/
.hero {
  position: relative;
}

.hero__img-area {
  width: 100%;
  height: 100%;
}

.hero__img-area img {
  width: 100%;
  vertical-align: bottom;
  object-fit: cover;
}

.hero__title-area {
  position: absolute;
  background: rgba(59, 75, 90, 0.6);
  width: auto;
  color: var(--color-white);
  padding-inline: 20px;
  padding-top: 10px;
  padding-bottom: 10px;
  top: calc(50% + 40px) ;
  transform: translateY(-50%);
  left: 7.8vw;
}

.hero__title {
  font-family: "Noto Sans JP", sans-serif; ;
  font-weight: 500;
  font-size: 24px;
  line-height: 1.666;
}
@media screen and (min-width: 768px) {
  .hero__title {
    font-weight: 400;
    font-size: 44px;
  }
}

.hero_title-first-bottom {
  letter-spacing: .4em;
}
.hero__text-small {
  font-size: .75em;
}
@media screen and (min-width: 768px) {
  .hero_title-first-bottom {
    letter-spacing: .5em;
  }
}

.hero__subtitle {
  font-weight: 300;
  line-height: 1.17;
  letter-spacing: .08em;
  margin-top: 10px;
}
@media screen and (min-width: 768px) {
  .hero__subtitle {
    font-size: 24px;
    padding-top: 12px;
    padding-bottom: 12px;
  }
}

/* concept 
*****************************/
.concept {
  background-image: -webkit-linear-gradient(bottom, var(--color-bg-concept) 0%, white 100%);
  background-image: -moz-linear-gradient(bottom, var(--color-bg-concept) 0%, white 100%);
  background-image: -o-linear-gradient(bottom, var(--color-bg-concept) 0%, white 100%);
  background-image: linear-gradient(to top, var(--color-bg-concept) 0%, white 100%);
}

.concept__inner {
  width: 400px ;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .concept__inner {
    width: calc(100% - 180px);
    max-width: 800px;
  }
}

.concept__media {
  display: flex;
  flex-direction: column;
}
.concept__media:last-child {
  padding-bottom: 36px;
}
  
@media screen and (min-width: 768px) {
  .concept__media {
    flex-direction: row;
    gap: 30px ;
  }
  .media--reverse {
  flex-direction: row-reverse;
  }
  .concept__media:last-child {
    padding-bottom: 60px;
  }
}
.concept__media + .concept__media {
  margin-top: 50px;
}
@media screen and (min-width: 768px) {
  .concept__media + .concept__media {
    margin-top: 80px;
  }
}
.concept__img-container {
  max-width: calc(100vw - 40px);
  overflow: hidden;
  box-shadow: 0 5px 10px #999;
  aspect-ratio: 3 / 2;
}

.concept__media:nth-child(2)>.concept__img-container {
  border-radius: 55% 45% 60% 40% / 30% 43% 57% 70% ;
} 
.concept__media:nth-child(3)>.concept__img-container {
  border-radius: 80% 30% 50% 50%/50%;
} 
.concept__media:nth-child(4)>.concept__img-container {
  border-radius: 48% 52% 60% 40% / 30% 43% 57% 70% ;
  aspect-ratio: 96 / 55;
} 

.concept__img-container img {
  width: 100%; 
  height: 100%;
  object-fit: cover;
}
.concept__media-text {
  color: var(--color-text);
}
.concept__media-title {
  font-family: "Noto Serif JP";
  margin-top: 40px;
  margin-bottom: 16px;
  padding-left: 0.5em;
  vertical-align: middle;
  border-left: solid 5px #5f9ea0;
}
.concept__media-contents {
  line-height: 1.8;
  letter-spacing: .1em;
}

.concept .text-shopname {
  background: linear-gradient(transparent 95%, #999 95%);
  font-size: 18px; 
}

/* service
*****************************/
.services {
  background-image: linear-gradient(to top, var(--color-bg-service-bottom) 0%, var(--color-bg-service-top) 100%);  
}

.services__cards-wrapper {
  display: grid;
    grid-template-columns: 1fr;
    gap: 36px;
    justify-content: center;
}
@media screen and (min-width: 768px){
  .services__cards-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 32px;
    justify-content: center;
  }
}
.services__card {
  position: relative;
  /* border: 1px solid #555; */
  padding: 4px;
  background-color: var(--color-white);
}

.services__img-container {
  display: block;
  overflow: hidden;
  margin: 0 auto;
  position: relative;
}
.services__img-container img {
  filter: brightness(60%) blur(1px);
  margin: 0 auto;
  transition: all ease .3s;
}
@media (hover: hover) {
  .services__img-container:hover img {
    filter: brightness(90%) blur(1px);
    transform: scale(1.1);
  }
}

/*角のボーダー*/
.services__card:before,
.services__card:after {
content: '';
display: inline-block;
position: absolute;
}
.services__card:before{
width: 40px;
height: 65px;
border-top: 1px solid #555;
border-left: 1px solid #555;
top: -6px;
left: -6px;
}
.services__card:after{
width: 40px;
height: 65px;
border-bottom: 1px solid #555;
border-right: 1px solid #555;
bottom: -6px;
right: -6px;
}

.services h3 {
  font-family: "Noto Serif JP";
  /*text-align: center;*/
  color: var(--color-white);
  text-shadow: 5px 0px 5px rgba(150, 150, 25, 0.9);
  font-size: 28px;
  position: absolute;
  padding-left: 10%;
  top: 50%;
  transform: translateY(-50%);
}
.services h3>span {
  font-size: 16px;
  font-weight: 300;
  display: block;
}
.services__card p {
  font-family: "Noto Serif JP";
  text-align: left;
  padding: 12px 16px;
  line-height: 1.8;
}

/* gallery
*****************************/
.gallery {
  background-image: -webkit-linear-gradient(bottom, var(--color-bg-gallery-bottom) 0%, var(--color-bg-gallery-top) 100%);
  background-image: -moz-linear-gradient(bottom, var(--color-bg-gallery-bottom) 0%, var(--color-bg-gallery-top) 100%);
  background-image: -o-linear-gradient(bottom, var(--color-bg-gallery-bottom) 0%, var(--color-bg-gallery-top) 100%);
  background-image: linear-gradient(to top, var(--color-bg-gallery-bottom) 0%, var(--color-bg-gallery-top) 100%);
  
  padding-bottom: 40px;
}

.gallery__inner {
  width: 600px ;
  max-width: calc(100% - 80px);
  height: auto;
  overflow-x: hidden;
}

@media screen and (min-width: 768px) {
  .gallery__inner {
    width: 800px;
  max-width: calc(100% - 180px);

    overflow-x: visible;
  }
}

/* splide カスタマイズ 
-------------------------*/
.splide__slide__container {
  height: 300px;
  width: 100%;
}

@media screen and (min-width: 768px) {
  .splide__slide__container {
    height: 500px;
  }
}

.splide__slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* 矢印ボタンのカスタマイズ */
.splide__slide.is-prev,
.splide__slide.is-next {
  opacity: .5;
}
.splide__arrow {
  background-color: #efefef;
}
@media screen and (min-width: 768px) {
  .splide__arrow.splide__arrow--prev {
    transform: translateX(-48px);
  }
  .splide__arrow.splide__arrow--next {
    transform: translateX(48px);
  }
}

/*pagenationのカスタマイズ*/
.splide__pagination {
  transform: translateY(36px);
}
@media screen and (min-width: 768px) {
  .splide__pagination {
    transform: translateY(36px);
  }
}

.splide__pagination__page.is-active {
  background-color: #fff;
  width: 10px;
  height: 10px;
}

/* footer
*****************************/
.footer {
  background: #F4F3DF;
  margin: 0 auto;
}
.footer__inner {
  padding-top: 60px;
  padding-bottom: 40px;
  max-width: 80%;
  margin: 0 auto;
}

@media screen and (min-width: 768px){
  .footer__inner {
    padding-top: 40px; 
  } 

  .footer_top {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
  }
}

.footer__logo {
  width: 200px;
  margin: 0 auto;
}

@media screen and (min-width: 768px){
  .footer__logo  {
    width: 25vw;
    height: auto;
    margin: 0;
  }
  .footer__logo img {
    width: 100%;
    height: auto;
  }
}

.footer-information {
  width: 500px;
}

.footer__information table {
    border-collapse: collapse;
    margin: 50px auto;
    width: 100%;
    text-align: left;
}

@media screen and (min-width: 768px){
  .footer-information table{
    margin: 0;
    width: 100%;
  } 
}  
.footer__information th,
.footer__information td {
  padding-top: 20px;
}
.footer__information th {
  font-weight: normal;
  padding-left: 15%;
}

.footer__information td {
  width: 50%;
  font-weight: normal;
}

@media screen and (min-width: 768px){
  .footer__information th {
    padding-top: 20px;
    padding-left: 0; 
  }
  .footer__information td {
    padding-top: 20px;
    padding-left: 35px;
    width: 25vw;
  }
}  
.footer__sns-icons {
  margin: 0 auto;
  text-align: center;
  align-items: center;
}
.footer__sns-icons a {
  height: 30px;
  font-size: 30px;
  cursor: pointer;
}

.footer__sns-icons a:not(:last-child){
  padding-right: 40px;
}
.bi.bi-instagram {
  color: rgba(231, 151, 58, 1);
  font-size: inherit;
}
.bi.bi-twitter-x {
  color: #333;
}
.bi.bi-facebook {
  color: #1877f2;
}

.footer__copyright{
  background-color: var(--color-main);
}

small {
  padding-top: 28px;
  color: var(--color-white);
  font-weight: 300;
  display: block;
  margin: 0 auto;
  text-align: center;
}

.footer__credit {
  padding-top: 20px;
  padding-bottom: 20px;
  color: var(--color-white);
  text-align: center;
  font-size: 14px;
}

.footer__credit a {
  text-decoration: underline;
  text-align: center;
}