/*
Theme Name:Arano-Building-Contractor
*/

.test{
	padding:1000px 0;
}

*{
  font-family: "Hina Mincho", serif;
  font-weight: 400;
  font-family: "Noto Sans JP", sans-serif;
  font-family: "Cardo", serif;
  font-weight: 400;
  font-weight: 700;
  margin: 0;
  padding: 0;
}

body{
  background-color: #FEFEFA;
}

/* パソコンで見たときは"pc"のclassがついた画像が表示される */
.pc { display: block !important; }
.sp { display: none !important; }

/* スマートフォンで見たときは"sp"のclassがついた画像が表示される */
@media only screen and (max-width: 480px) {
.pc { display: none !important; }
.sp { display: block !important; }
}

html {
  scroll-behavior: smooth;
}

section{
  max-width: 1500px;
  margin: 40px auto;
}

p{
  font-size: 13px;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.8em;
  color: #333333;
  font-weight: 400;
}

h2{
  font-family: "Hina Mincho", serif;
  font-weight: 300;
  color: #D08800;
  font-size: 40px;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
h2{
  font-family: "Hina Mincho", serif;
  font-weight: 300;
  color: #D08800;
  font-size: 35px;
}
}

h3{
  font-family: "Hina Mincho", serif;
  font-weight: 300;
  color: #333333;
}
h4{
  font-family: "Cardo", serif;
  font-weight: 200;
  color: #D08800;
  font-size: 12px;
}

body.has-welcome.is-loading{
  overflow: hidden;
}

.welcome{
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: #422c02;
  display: grid;
  place-items: center;
  opacity: 1;
  visibility: visible;
  transition: opacity .6s ease, visibility 0s linear .6s;
}

.welcome__inner{
  display: grid;
  place-items: center;
  gap: 18px;
}

.welcome__brand{
  display: flex;
  align-items: center;
}

.welcome__logo-wrap{
  position: relative;
  padding-right: 18px;
  display: flex;
  align-items: center;
}

.welcome__logo-wrap::after{
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: .5px;
  height: 20px;
  background: rgba(255, 255, 255, 0.641);
  opacity: 0;
  transform: translateY(-50%) translateX(-14px);
  animation: lineFadeLeftIn 1.3s cubic-bezier(.19,1,.22,1) .55s forwards;
}

@keyframes lineFadeLeftIn{
  to{
    opacity: 1;
    transform: translateY(-50%) translateX(0);
  }
}

.welcome__logo{
  width: 70px;
  display: block;
  opacity: 0;
  animation: fadeInOnly 0.9s ease .15s forwards;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
.welcome__logo{
  width: 60px;
  display: block;
  opacity: 0;
  animation: fadeInOnly 0.9s ease .15s forwards;
}
}

.welcome__name{
  padding-left: 18px;
  font-family: "Hina Mincho", serif;
  font-weight:100;
  font-size: 10px;
  letter-spacing: 2px;
  color: #ffffff;
  text-transform: uppercase;

  opacity: 0;
  transform: translate3d(-14px, 0, 0);
  animation: fadeLeftIn 1.3s cubic-bezier(.19,1,.22,1) .55s forwards;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
.welcome__name{
  padding-left: 18px;
  font-family: "Hina Mincho", serif;
  font-weight:100;
  font-size: 8px;
  letter-spacing: 2px;
  color: #ffffff;
  text-transform: uppercase;

  opacity: 0;
  transform: translate3d(-14px, 0, 0);
  animation: fadeLeftIn 1.3s cubic-bezier(.19,1,.22,1) .55s forwards;
}
}

@keyframes fadeInOnly{
  to{ opacity: 1; }
}
@keyframes fadeLeftIn{
  to{
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@media (prefers-reduced-motion: reduce){
  .welcome__logo,
  .welcome__name,
  .welcome__logo-wrap::after{
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

.welcome__ring{
  width: 20px;
  height: 20px;
  display: block;
  margin-top: 24px;
}

.welcome__ring-base{
  fill: none;
  stroke: rgba(255, 255, 255, 0.12);
  stroke-width: 2.2;
}

.welcome__ring-line{
  fill: none;
  stroke: rgba(255, 255, 255, 0.85);
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-dasharray: 140;
  stroke-dashoffset: 140;
  animation: ringDraw 1.2s ease-in-out infinite;
}

@keyframes ringDraw{
  0%   { stroke-dashoffset: 140; opacity: .2; }
  30%  { opacity: 1; }
  60%  { stroke-dashoffset: 0;   opacity: 1; }
  100% { stroke-dashoffset: -140; opacity: .2; }
}

body.has-welcome.is-loaded .welcome{
  opacity: 0;
  visibility: hidden;
}

@media (prefers-reduced-motion: reduce){
  .welcome__ring-line{ animation: none; stroke-dashoffset: 0; }
  .welcome{ transition: none; }
}

.skip-welcome #welcome{
  display:none !important;
}
.skip-welcome body{
  overflow: auto !important;
}
.skip-welcome body.is-loading{
  /* is-loading が残っても画面を止めない */
  overflow: auto !important;
}


main{
  position: relative;
}

.header {
  position: fixed;
  top: 0;
  width: 92%;
  background: transparent;
  z-index: 1000;
  margin: 2% 4% 0;
  transition: transform 0.4s ease;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 820px) {
  .header {
  position: fixed;
  top: 0;
  width: 88%;
  background: transparent;
  z-index: 1000;
  margin: 6% 6% 0;
  transition: transform 0.4s ease;
}

}

.header.hide{
  transform: translateY(-300%);
}

.header{
  transition: transform .4s ease, opacity .4s ease;
}

.header.hidden{
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}

.header-inner{
  display:flex;
  align-items:center;
  gap: 18px;
}

.logo {
  height: 100px;
  transition: all 0.3s ease;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
.logo {
  height: 80px;
  transition: all 0.3s ease;
}
}

.logo-container{
  display: flex;
  align-items: center;
}

/* 初期：白ロゴのみ表示 */
.logo-default{ display: block; }
.logo-scroll{ display: none; }

/* スクロール後：黒ロゴのみ表示 */
.header.scrolled .logo-default{ display: none; }
.header.scrolled .logo-scroll{ display: block; }

.nav{
  margin-left: auto;
}

.nav-list {
  list-style: none;
  display: flex;
  gap: 24px;
}

.nav-list li a {
  text-decoration: none;
  color: white;
  transition: color 0.3s ease;
  font-size: 13px;
  font-weight: 300;
  font-family: "Noto Sans JP", sans-serif;
  position: relative;
  display: inline-block;
  padding-bottom: 6px;
}

/* タブレット*/
@media (min-width: 821px) and (max-width: 1024px) {
.nav-list li a {
  text-decoration: none;
  color: white;
  transition: color 0.3s ease;
  font-size: 10px;
  font-weight: 300;
  font-family: "Noto Sans JP", sans-serif;
  position: relative;
  display: inline-block;
  padding-bottom: 6px;
}
}


/* スマートフォン*/
@media (min-width: 0px) and (max-width: 820px) {
  .nav-list li a {
  display: none;
}
}

.nav-list a::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: .5px;
  background: #ffffff;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .4s ease;
}

.nav-list a:hover::after{
  transform: scaleX(1);
}


.header.scrolled .nav-list li a {
  color: #333333;
}

.header.scrolled .nav-list a::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: .5px;
  background: #333333;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .4s ease;
}

.header.scrolled .nav-list a:hover::after{
  transform: scaleX(1);
}

.headercontact {
  width: 200px;
}

.headercontact a{
  border: solid 1px #fff;
  padding: 6% 4%;
}

.hamburger-overlay span {
  background: #fff;
  transition: background 0.3s ease;
}


.header.scrolled .hamburger-overlay span {
  background: black;
}

.hamburger-overlay {
  z-index: 1000;
  width: 56px;
  height: 56px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  position: relative;
  flex: 0 0 auto;
  margin-right: 0;
  display: grid;
  place-items: center;
}

.hamburger-overlay::before{
  content:"";
  position:absolute;
  inset:-6px;        
}

.hamburger-overlay__line {
  position: absolute;
  left: 50%;
  width: 32px;       
  height: 1px;
  transform: translateX(-50%);
  transition: transform .4s ease, top .4s ease, opacity .2s ease, background-color .3s ease;
  background-color: #fff;
}

.hamburger-overlay__line:nth-of-type(1){ top: 24px; }
.hamburger-overlay__line:nth-of-type(2){ display:none; } 
.hamburger-overlay__line:nth-of-type(3){ top: 32px; }

.hamburger-overlay.active .hamburger-overlay__line {
  background-color: #000000;
}



.hamburger-overlay.active .hamburger-overlay__line:nth-of-type(1) {
 top: 28px;
  transform: translateX(-50%) rotate(20deg);
}

.hamburger-overlay.active .hamburger-overlay__line:nth-of-type(2) {
  opacity: 0;
}

.hamburger-overlay.active .hamburger-overlay__line:nth-of-type(3) {
  top: 28px;
  transform: translateX(-50%) rotate(-20deg);
}

.header-sns{
  position: absolute;
  right: 0;
  top: 100px; 
  list-style: none;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
.header-sns{
  position: absolute;
  right: 2%;
  top: 80px; 
  list-style: none;
}
}

.header-sns li{
  margin-bottom: 8px;
}

.header-sns li a{
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  transition:
  background 0.3s ease,
  border-color 0.3s ease;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
.header-sns li a{
  width: 35px;
  height: 35px;
  border-radius: 50%;
  border: 1px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  transition:
  background 0.3s ease,
  border-color 0.3s ease;
}

}

.header-sns li a:hover{
  border: 1px solid #ffffff5f;
  transition: .5s;
}

.header-sns li a img{
  width: 30px;
  height: 30px;
  object-fit: contain;
  transition: filter 0.3s ease;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
.header-sns li a img{
  width: 25px;
  height: 25px;
  object-fit: contain;
  transition: filter 0.3s ease;
}
}

.header.scrolled .header-sns li a{
  background: #de9815c9;
}


.header.scrolled .header-sns li a img{
  filter: brightness(0) invert(1);
}

.nav-overlay{
  position: fixed;
  inset: 0;
  z-index: 1500;
  background: rgba(0, 0, 0, 0.572);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .35s ease, visibility .35s ease;
}

.nav-overlay.active{
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.nav-overlay__content{
  position: absolute;
  top: 0;
  right: 0;
  width: 34%;
  height: 100vh;
  background: #F0EFE5;
  padding: 160px 8%;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  transform: translateX(100%);
  transition: transform .6s cubic-bezier(.77,0,.18,1);
}

/* タブレット */
@media (min-width: 481px) and (max-width: 1024px) {
.nav-overlay__content{
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100vh;
  background: #F0EFE5;
  padding: 160px 8%;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  transform: translateX(100%);
  transition: transform .6s cubic-bezier(.77,0,.18,1);
}
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
  .nav-overlay__content{
  position: absolute;
  top: 0;
  right: 0;
  width: 84%;
  height: 100vh;
  background: #F0EFE5;
  padding: 140px 8%;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  transform: translateX(100%);
  transition: transform .6s cubic-bezier(.77,0,.18,1);
}
}

.nav-overlay.active .nav-overlay__content{
  transform: translateX(0);
}

.hamburger-overlay{
  position: relative;
  z-index: 2000;
}

.nav-overlay__manu_list{
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 40px;
  row-gap: 12px;
	grid-template-rows: repeat(4, auto); 
    grid-auto-flow: column; 
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
.nav-overlay__manu_list{
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 2fr 1fr;
  column-gap: 0px;
  row-gap: 6px;
	grid-template-rows: repeat(4, auto); 
    grid-auto-flow: column; 
}
}

.nav-overlay__manu_list li{
  margin: 0;
}

.nav-overlay__manu_list li a{
  font-size: 13px;
  font-family: "Hina Mincho", serif;
  font-weight: 400;
  color: #333333;
  text-decoration: none;
  opacity: .92;
  transition: opacity .25s ease;
  position: relative;
  display: inline-block;
  padding-bottom: 6px;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
.nav-overlay__manu_list li a{
  font-size: 12px;
  font-family: "Hina Mincho", serif;
  font-weight: 400;
  color: #333333;
  text-decoration: none;
  opacity: .92;
  transition: opacity .25s ease;
  position: relative;
  display: inline-block;
  padding-bottom: 6px;
}
}

.nav-overlay__manu_list li a::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: .5px;
  background: #333333;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .4s ease;
}

.nav-overlay__manu_list li a:hover::after{
  transform: scaleX(1);
}

.nav-overlay__list_contact{
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.nav-overlay__list_contact li{
  margin: 0;
}

.nav-overlay__list_contact li a{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 32px;
  border: 1px solid #DE9915;
  background: transparent;
  font-size: 13px;
  font-family: "Hina Mincho", serif;
  font-weight: 400;
  color: #333333;
  text-decoration: none;
  transition: background .25s ease, color .25s ease, border-color .25s ease;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
.nav-overlay__list_contact li a{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 20px;
  border: 1px solid #DE9915;
  background: transparent;
  font-size: 12px;
  font-family: "Hina Mincho", serif;
  font-weight: 400;
  color: #333333;
  text-decoration: none;
  transition: background .25s ease, color .25s ease, border-color .25s ease;
}
}


.nav-overlay__list_contact li a .arrow{
  position: relative;
  width: 1.2em;     
  height: 1em;
  flex: 0 0 auto;
  overflow: hidden;  
}


.nav-overlay__list_contact li a .arrow__in,
.nav-overlay__list_contact li a .arrow__out{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  font-size: 13px;
  font-family: "Hina Mincho", serif;
  font-weight: 400;
  color: #333333;
  transition: transform .4s cubic-bezier(.23,1,.32,1),
              opacity .3s ease;
}


.nav-overlay__list_contact li a .arrow__out{
  transform: translate(0, -50%);
  opacity: 1;
}

.nav-overlay__list_contact li a .arrow__in{
  transform: translate(-120%, -50%);
  opacity: 1;
}


.nav-overlay__list_contact li a:hover .arrow__out{
  transform: translate(120%, -50%);
  opacity: 0.9;
}

.nav-overlay__list_contact li a:hover .arrow__in{
  transform: translate(0, -50%);
  opacity: 1;
}

.nav-overlay__list_sns{
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
  display: flex;
  gap: 20px;
  justify-content: flex-end;
  align-items: center;
}

.nav-overlay__list_sns li{
  margin: 0;
}

.nav-overlay__list_sns li a{
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  opacity: .95;
  transition: opacity .25s ease;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
.nav-overlay__list_sns li a{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  opacity: .95;
  transition: opacity .25s ease;
}
}

.nav-overlay__list_sns li a p{
  font-size: 13px;
  font-family: "Hina Mincho", serif;
  font-weight: 400;
  color: #333333;
}

.nav-overlay__list_sns li a:hover .nav-overlay__sns{
  background-color: #de981598;
  transition: .5s;
}

.nav-overlay__sns{
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid #DE9915;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  transition:
  background 0.3s ease,
  border-color 0.3s ease;
  background-color: #DE9915;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
.nav-overlay__sns{
  width: 35px;
  height: 35px;
  border-radius: 50%;
  border: 1px solid #DE9915;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  transition:
  background 0.3s ease,
  border-color 0.3s ease;
  background-color: #DE9915;
}
}

.nav-overlay__list_sns li a img{
  width: 30px;
  height: 30px;
  object-fit: contain;
  transition: filter 0.3s ease;
}
/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
.nav-overlay__list_sns li a img{
  width: 25px;
  height: 25px;
  object-fit: contain;
  transition: filter 0.3s ease;
}
}

.nav-overlay__list_sns li a p{
  margin: 0;
  white-space: nowrap;
  font-size: 12px;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
.nav-overlay__list_sns li a p{
  margin: 0;
  white-space: nowrap;
  font-size: 10px;
}
}

.nav-overlay{
  width: auto;
  height: auto;
}

.flexbanner{
  position: fixed;
  bottom: 6%;
  right: 4%;
  z-index: 2;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  background-color: #de9815cf;
  padding: 1% 2%;
  display: flex;
  list-style: none;
  justify-content:space-around;
  align-items: center;
  width: 40%;
}

/* タブレット*/
@media (min-width: 481px) and (max-width: 1024px) {
  .flexbanner{
  position: fixed;
  bottom: 6%;
  right: 4%;
  z-index: 2;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  background-color: #de9815cf;
  padding: 1% 2%;
  display: flex;
  list-style: none;
  justify-content:space-around;
  align-items: center;
  width: 60%;
}
 }

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
.flexbanner{
  position: fixed;
  bottom: 3%;
  right: 4%;
  z-index: 2;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  background-color: #de9815cf;
  padding: 3% 3%;
  display: flex;
  list-style: none;
  justify-content:space-around;
  align-items: center;
  margin-left: 4%;
  width: 92%;
}
}

.flexbanner.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.flexbanner li{
  text-align: center;
}

.flexbanner-i{
  height: 40px;
  width: .5px;
  background-color: #fff;
  display: block;
  margin: 0 2%;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
.flexbanner-i{
  height: 40px;
  width: 1px;
  background-color: #ffffffa3;
  display: block;
  margin: 0 12px;
}
}

.flexbanner a{
  font-size: 12px;
  font-weight: 300;
  font-family: "Noto Sans JP", sans-serif;
  color: #ffffff;
  text-decoration: none;
  line-height: 1.5em;
  display: block;
  letter-spacing: 1px;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
.flexbanner a{
  font-size: 10px;
  font-weight: 400;
  font-family: "Noto Sans JP", sans-serif;
  color: #ffffff;
  text-decoration: none;
  line-height: 1.2em;
  display: block;
  letter-spacing: 1px;
}
}

.flexbanner a:hover{
  opacity: .5;
  transition: .5s;

}


#top1{
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.hero{
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.hero-slides{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-slide{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transform: translateX(100%);
  visibility: hidden;
  transition: transform 1.5s ease;
  background: #000;
}

.hero-slide.is-active{
  transform: translateX(0);
  visibility: visible;
  z-index: 3;
}

.hero-slide.is-prev{
  transform: translateX(-100%);
  visibility: visible;
  z-index: 2;
}

.hero-slide .fv-img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1);
  transition: transform 6s ease;
}

.hero-slide.is-active .fv-img{
  transform: scale(1.2);
}

/* テキスト固定 */
.hero-copy,
.hero-copy__vertical,
.hero-scroll{
  position: absolute;
  z-index: 10;
}





















#top1 .fv-img{
  height: 100vh;
  height: 100svh;  
  height: 100dvh;
  width: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1);
  animation: fvZoom 18s ease-out forwards;
  will-change: transform;
}

@keyframes fvZoom{
  from { transform: scale(1); }
  to   { transform: scale(1.12); }
}

#top1::after{
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.229); 
  z-index:1; 
  height: 100vh; 
  height: 100svh;  
  height: 100dvh;
}

.hero{
  display: flex; 
  justify-content: center;
  align-items: center;
  overflow: hidden; 
  position: relative;
}

.hero-copy{
  position: absolute;
  z-index:2;
  top: 45%;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
.hero-copy{
  position: absolute;
  z-index:2;
  top: 48%;
}
}

.hero-copy img{
  width: 60vw;
}

/* タブレット*/
@media (min-width: 480px) and (max-width: 1024px) {
.hero-copy img{
  width: 70vw;
}
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
.hero-copy img{
  width: 300px;
}
}

.hero-copy__vertical{
  position: absolute;
  right: 20%;
  top: 25%;
  margin: 0;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-family: "Hina Mincho", serif;
  font-weight: 200;
  font-size: 1vw;
  letter-spacing: .2em;
  line-height: 2em;
  color: rgb(255, 255, 255);
  z-index:2;  
}

/* タブレット*/
@media (min-width: 481px) and (max-width: 1024px) {
.hero-copy__vertical{
  position: absolute;
  right: 20%;
  top: 30%;
  margin: 0;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-family: "Hina Mincho", serif;
  font-weight: 200;
  font-size: 1.5vw;
  letter-spacing: .2em;
  line-height: 2em;
  color: rgb(255, 255, 255);
  z-index:2;  
}
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
.hero-copy__vertical{
  position: absolute;
  right: auto;
  left: 10%;
  top: 20%;
  margin: 0;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-family: "Hina Mincho", serif;
  font-weight: 200;
  font-size: 11px;
  letter-spacing: .2em;
  line-height: 2em;
  color: rgb(255, 255, 255);
  z-index:2;  
}
}

.hero-copy__vertical .num{
  text-combine-upright: all;
  display: inline-block;      
  transform: translateX(-0.1em);
  font-weight: 200;
	margin-bottom: 2px;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
	.hero-copy__vertical .num{
  text-combine-upright: all;
  display: inline-block;      
  transform: translateX(-0em);
  font-weight: 200;
	margin-bottom: 2px;
}
}

.hero-scroll{
  position: absolute;
  bottom: -20px;
  left: 12%;
  font-family: "Cardo", serif;
  font-weight: 100;
  font-size: 12px;
  color: #ffffffd9;
  letter-spacing: 1px;
  z-index:2;  
  writing-mode: vertical-rl;
  display: flex;
  align-items: center;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
  .hero-scroll{
  position: absolute;
  bottom: -30px;
  left: 12%;
  font-family: "Cardo", serif;
  font-weight: 100;
  font-size: 10px;
  color: #ffffffd9;
  letter-spacing: 1px;
  z-index:2;  
  writing-mode: vertical-rl;
  display: flex;
  align-items: center;
}
}

.hero-scroll::after{
  content: "";
  width: 1px;
  height: 100px;
  background: rgba(255,255,255,.3);
  margin-top: 12px;
  position: relative;
}

.hero-scroll::before{
  content: "";
  position: absolute;
  left: calc(50% - 0.5px);
  top: 24px;
  width: 1px;
  height: 30px;
  background: #fff;
  animation: scrollLineOverlay 2s cubic-bezier(.4,0,.2,1) infinite;
}

@keyframes scrollLineOverlay{
  0%{
    transform: translateY(0);
    opacity: 0;
  }
  20%{
    opacity: 0;
  }
  80%{
    opacity: 1;
  }
  100%{
    transform: translateY(100px);
    opacity: 0;
  }
}


#top2{
  position: relative;
  overflow: hidden;  
}

.top2-b1{
  position: absolute;
  top: 0%;
  left: -10%;
  z-index: -1;
}

.top2-b1 img{
  width: 550px;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
.top2-b1 img{
  width: 300px;
}
}

.top2-b2{
  position: absolute;
  bottom: 0%;
  right: -10%;
  z-index: -1;
}

.top2-b2 img{
  width: 550px;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
.top2-b2 img{
  width: 300px;
}
}

/* top2 と top6 共通 */
.top2-b1,
.top2-b2,
.top6-b1,
.top6-b2{
  opacity: 0;
  transform: translate3d(0, 24px, 0);
  transition:
    opacity 1.6s cubic-bezier(.19,1,.22,1),
    transform 1.6s cubic-bezier(.19,1,.22,1);
  will-change: opacity, transform;
}

/* 表示状態 */
.top2-b1.is-inview,
.top2-b2.is-inview,
.top6-b1.is-inview,
.top6-b2.is-inview{
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

/* 時間差（自然に） */
.top2-b2,
.top6-b2{
  transition-delay: .5s;
}

.top2-contents{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 160px 12%;
  list-style: none;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 820px) {
.top2-contents{
  align-items: flex-start;
  justify-content: space-between;
  padding: 24px 12% 80px;
  list-style: none;
  flex-direction: column-reverse;
}
}

.top2-contents li:nth-child(1){
  width:50%;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 820px) {
.top2-contents li:nth-child(1){
  width:100%;
}
}

.top2-contents li:nth-child(2){ 
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width:46%;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 820px) {
.top2-contents li:nth-child(2){ 
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width:100%;
}
}

.top2-contents li .top2-contents-img-left{
  width: 46%;
}

.top2-contents li .top2-contents-img-right{
  width: 46%;
  padding-bottom: 40px;
  padding-left: 4%;
}

.top2-contents-right{
  writing-mode: vertical-rl;
  text-orientation: mixed;
}

.top2-contents-right h2{
  letter-spacing: 1px;
  margin: 0 8px 0 24px;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 820px) {
.top2-contents-right h2{
  letter-spacing: 1px;
  margin: 0 8px 0 8px;
}
}

.top2-contents-left{
  margin-top: 40px;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 820px) {
.top2-contents-left{
  margin-top: 80px;
}
}

.top2-contents-left h3{
  font-size: 25px;
  font-weight: 200;
  line-height: 1.8em;
  margin-bottom: 24px;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 820px) {
.top2-contents-left h3{
  font-size: 20px;
  font-weight: 200;
  line-height: 1.8em;
  margin-bottom: 24px;
}
}

.pc-br{
  display: inline;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
  .pc-br{
    display: none;
  }
}

.top3-contents{
  display: flex;
  justify-content: space-between;
  background-image: url("img/top3-b.jpg");
  background-size: cover;       
  background-position: center;  
  background-repeat: no-repeat; 
  margin-left: 8%;
  padding: 80px 4% 80px 6%;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 820px) {
.top3-contents{
  display: block;
  justify-content: space-between;
  background-image: url("img/top3-b.jpg");
  background-size: cover;       
  background-position: center;  
  background-repeat: no-repeat; 
  margin-left: 8%;
  padding: 40px 4% 40px 6%;
  text-align: center;
}
}

.top3-contents .top3-left{
  writing-mode: vertical-rl;
  text-orientation: mixed;
  line-height: 3em;
  display:inline
}

.top3-contents .top3-left h1{
  font-family: "Hina Mincho", serif;
  font-weight: 300;
  color: #D08800;
  font-size: 40px;
  margin-top: 24px;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 820px) {
.top3-contents .top3-left h1{
  font-family: "Hina Mincho", serif;
  font-weight: 300;
  color: #D08800;
  font-size: 35px;
  margin-top: 24px;
}

.top3-contents .top3-left h4{
  text-align: left;
  margin-top: 32px;
}
}

.top3-right-contents{
  display: block;
  margin: 24px 12% 8px 40px;
  text-align: left;
}

/* タブレット*/
@media (min-width: 481px) and (max-width: 1024px) {
.top3-right-contents{
  display: block;
  margin: 24px 4% 8px 40px;
  text-align: left;
}
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
.top3-right-contents{
  display: block;
  margin: 24px 12% 8px 2%;
}
}

.top3-right-contents li{
  display: flex;
  align-items: center;
  margin-bottom: 32px;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
.top3-right-contents li{
  display: block;
  align-items: center;
  margin-bottom: 40px;
}
}

.top3-right-contents li img{
  width: 300px;
  margin-right: 40px;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
.top3-right-contents li img{
  width: 100%;
  margin-right: 0;
  margin-bottom: 8px;
}
}

.top3-right-contents li .top3-contents-text h3{
  font-size: 20px;
  font-weight: 200;
  line-height: 1.6em;
  margin-bottom: 12px;
  color: #16528E;
  text-decoration: underline;
  text-decoration-thickness: .5px;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
.top3-right-contents li .top3-contents-text h3{
  font-size: 18px;
  font-weight: 200;
  line-height: 1.6em;
  margin-bottom: 12px;
  color: #16528E;
  text-decoration: underline;
  text-decoration-thickness: .5px;
}
}

.top3 .top-link{
  justify-content: flex-end;
  margin-right: 12%;
}

/* タブレット*/
@media (min-width: 481px) and (max-width: 1024px) {
.top3 .top-link{
  justify-content: flex-end;
  margin-right: 4%;
}

}

.top-link{
  font-family: "Hina Mincho", serif;
  font-weight: 300;
  color: #333333;
  font-size: 14px;
  text-decoration: none;
  display: flex;
  align-items: center;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
.top-link{
  font-family: "Hina Mincho", serif;
  font-weight: 300;
  color: #333333;
  font-size: 13px;
  text-decoration: none;
  display: flex;
  align-items: center;
}
}
.top-link__circle{
  margin-left: 16px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 1px solid #DE9915;
  background: #DE9915;
  color: #ffffff;

  display: flex;
  align-items: center;
  justify-content: center;

  transition: background .35s ease, color .35s ease;
}

/* 矢印2本を重ねる箱 */
.top-link__circle .arrow{
  position: relative;
  width: 1.2em;
  height: 1em;
  overflow: hidden;
}

/* 矢印共通 */
.top-link__circle .arrow__in,
.top-link__circle .arrow__out{
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
  transition: transform .45s cubic-bezier(.23,1,.32,1);
}

/* 初期：out表示、inは左に隠す */
.top-link__circle .arrow__out{
  transform: translate(0, -50%);
}
.top-link__circle .arrow__in{
  transform: translate(-120%, -50%);
}

/* hover：背景が透明になり、矢印が入れ替わる */
.top-link:hover .top-link__circle{
  background: transparent;
  color: #DE9915;
}

.top-link:hover .top-link__circle .arrow__out{
  transform: translate(120%, -50%);
}
.top-link:hover .top-link__circle .arrow__in{
  transform: translate(0, -50%);
}

#top4{
  padding: 40px 0;
  text-align: center;
}

#top4 h2{
  margin-top: 16px;
}

.top4-contents{
  margin: 40px 12% 0;
  display: flex;
  gap: 60px;
  justify-content: center;
}

/* タブレット*/
@media (min-width: 481px) and (max-width: 1024px) {
  .top4-contents{
  margin: 40px 8% 0;
  display: flex;
  gap: 30px;
  justify-content: center;
}
 }

 /* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
.top4-contents{
  margin: 40px 12% 0;
  display: block;
  gap: 60px;
  justify-content: center;
}
}

.top4-contents li{
  list-style: none;
 background: url("img/top4-b1.jpg") center / cover no-repeat;
  padding: 30px;
  width: 49%;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
.top4-contents li{
  list-style: none;
  background: url("img/top4-b1.jpg") center / cover no-repeat;
  padding: 6%;
  width:88%;
  margin-bottom: 24px;
}
}

.top4-contents li:nth-child(2){
  list-style: none;
   background: url("img/top4-b2.jpg") center / cover no-repeat;
  padding: 30px;
  width: 49%;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
.top4-contents li:nth-child(2){
  list-style: none;
  background: url("img/top4-b2.jpg") center / cover no-repeat;
  padding: 6%;
  width:88%;
  margin-bottom: 0;
}
}

.top4-contents .card{
  background: #fff;
  padding: 40px 40px;
  text-align: center;
}

/* タブレット*/
@media (min-width: 481px) and (max-width: 1024px) {
.top4-contents .card{
  background: #fff;
  padding: 32px 20px;
  text-align: center;
}
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
.top4-contents .card{
  background: #fff;
  padding: 32px 16px;
  text-align: center;
}
}

.top4-contents h4{
  font-size: 10px;
  margin-bottom: 0;
  color: #333333;
}

.top4-contents h2{
  color: #333333;
  font-size: 20px;
  font-weight: 200;
  line-height: 1.4em;
  margin-bottom: 24px;
}

.top4-contents p{
  margin-bottom: 4px;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
.top4-contents p{
  margin-bottom: 4px;
  text-align: left;
}
}

.top4-contents img{
  width: 100%;
  margin-bottom: 4px;
}

.top4-contents li a{
  justify-content: center;
}

.top5-contents{
  display: flex;
  justify-content: space-between;
  background-image: url("img/top5-b.jpg");
  background-size: cover;       
  background-position: center;  
  background-repeat: no-repeat; 
  margin-right: 8%;
  padding: 100px 6% 100px 12%;
  align-items: center;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
.top5-contents{
  display: block;
  justify-content: space-between;
  background-image: url("img/top5-b.jpg");
  background-size: cover;       
  background-position: center;  
  background-repeat: no-repeat; 
  margin-right: 8%;
  padding: 64px 6% 64px 12%;
  align-items: center;
}
}

.top5-left{
  width: 60%;
}

/* タブレット*/
@media (min-width: 481px) and (max-width: 1024px) {
.top5-left{
  width: 50%;
}
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
.top5-left{
  width: 94%;
  margin-bottom: 24px;
}
}

.top5-left img{
  width: 100%;
}

.top5-right {
  width: 32%;
}

/* タブレット*/
@media (min-width: 481px) and (max-width: 1024px) {
.top5-right {
  width: 44%;
}
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
.top5-right {
  width: 94%;
}
}

.top5-right a{
  border-bottom: solid .5px #ffffff;
  list-style: none;
  justify-content:space-between;
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #ffffff;
  padding-bottom: 16px;
}

.top5-right a li h4{
  color: #ffffff;
}

.top5-right a li h2{
  color: #ffffff;
  margin-top: 16px;
}

/* 矢印コンテナ */
.top5-right .arrow{
  position: relative;
  width: 1.2em;
  height: 1em;
  overflow: hidden;
}

/* 矢印共通 */
.top5-right .arrow__in,
.top5-right .arrow__out{
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
  transition: transform .45s cubic-bezier(.23,1,.32,1);
}

/* 初期状態 */
.top5-right .arrow__out{
  transform: translate(0, -50%);
}
.top5-right .arrow__in{
  transform: translate(-120%, -50%);
}

/* hover時：矢印が入れ替わる */
.top5-right a:hover .arrow__out{
  transform: translate(120%, -50%);
}
.top5-right a:hover .arrow__in{
  transform: translate(0, -50%);
}

/* opacityは削除（矢印動きと競合するため） */
.top5-right a{
  transition: color .3s ease;
}

#top6{
  position: relative;
  overflow: hidden;  
}

.top6-b1{
  position: absolute;
  top: 20%;
  left: -10%;
  z-index: -1;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
.top6-b1{
  position: absolute;
  top: 3%;
  left: -15%;
  z-index: -1;
}
}

.top6-b1 img{
  width: 450px;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
.top6-b1 img{
  width: 300px;
}
}

.top6-b2{
  position: absolute;
  bottom: -5%;
  right: -10%;
  z-index: -1;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
.top6-b2{
  position: absolute;
  bottom: -1%;
  right: -20%;
  z-index: -1;
}
}

.top6-b2 img{
  width: 450px;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
.top6-b2 img{
  width: 300px;
}
}

.top6-contents{
  display: flex;
  padding: 40px 12%;
}

/* タブレット*/
@media (min-width: 481px) and (max-width: 1024px) {
.top6-contents{
  display: flex;
  padding: 40px 8%;
}
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
.top6-contents{
  display: block;
  padding: 24px 12% 40px;
  text-align: right;
}
}

.top6-contents-left{
  writing-mode: vertical-rl;
  text-orientation: mixed;
  line-height: 3em;
  display:inline
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
.top6-contents-left h4{
  text-align: left;
}
}

.top6-contents-left h2{
  margin-top: 24px;
}

.top6-contents-right{
 display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  padding: 0;
  margin-left: 40px;
}

/* タブレット*/
@media (min-width: 481px) and (max-width: 1024px) {
.top6-contents-right{
 display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  padding: 0;
  margin-left: 24px;
}
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
.top6-contents-right{
 display:block;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  padding: 0;
  margin-left: 0;
  margin-top: 40px;
}
}

.top6-contents-right > li{
  list-style: none;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
.top6-contents-right > li{
  list-style: none;
  text-align: left;
  margin-bottom: 24px;
}
}

.top6-contents-right li:nth-child(3){
  margin-bottom: 0;
}

.work-card{
  display: block;
  text-decoration: none;
  border: 1px solid #B1AA95;       
  padding: 32px;         
}

/* タブレット*/
@media (min-width: 481px) and (max-width: 1024px) {
.work-card{
  display: block;
  text-decoration: none;
  border: 1px solid #B1AA95;       
  padding: 20px;         
}
}

.work-card .details{
  display: inline-block;
  background: linear-gradient(to bottom, #16528E, #3774B1);
  color: #fff;         
  padding: 10px 20px; 
  display: inline-block; 
  font-size: 10px;
  padding: 8px 16px;
  margin-bottom: 16px;
  font-weight: 300;
  font-family: "Noto Sans JP", sans-serif;
}

.work-img {
  width: 100%;
  overflow: hidden;
}

.work-img img{
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  height: auto;
  transform: scale(1);
  transition: transform .8s cubic-bezier(.22,.61,.36,1);
}

.work-card:hover .work-img img{
  transform: scale(1.1);
}

.work-title{
  font-size: 13px;
  line-height: 1.5em;
  margin: 8px 0 16px;
  font-family: "Hina Mincho", serif;
  font-weight: 300;
  color: #333333;
}

.work-tag{
  display: flex;
  gap: 4px;
  padding: 0;
  margin: 0 0 16px;
  flex-wrap: wrap;
}

.work-tag li{
  list-style: none;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-size: 10px;
  padding: 4px 12px;
  border: .5px solid #16528E;
  color: #16528E;
  background: transparent;
}

.work-more{
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 16px;
}

.work-more .line{
  flex: 1;
  height: .5px;
  background: #33333382; 
  display: inline-block;
  width: 60px;
  height: .5px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .6s cubic-bezier(.22,.61,.36,1);
}

.work-card:hover .line{
  transform: scaleX(1);
}

.work-more .more-text{
  font-size: 12px;
  color: #333;
  font-family: "Cardo", serif;
  font-weight: 200;
}

.work-more{
  display: flex;
  align-items: center;
  gap: 12px;
}

.work-more .arrow{
  font-size: 12px;
  color: #333333af;
  font-family: "Cardo", serif;
  position: relative;
  display: inline-block;
  overflow: hidden;
  width: 1em;
  height: 1em;
}

.work-more .arrow::before{
  content: "→";
  position: absolute;
  left: 0;
  top: 0;
  transition: transform .4s cubic-bezier(.22,.61,.36,1);
}

.work-more .arrow::after{
  content: "→";
  position: absolute;
  left: -1.2em;
  top: 0;
  transition: transform .4s cubic-bezier(.22,.61,.36,1);
}

.work-card:hover .arrow::before{
  transform: translateX(1.2em);
}

.work-card:hover .arrow::after{
  transform: translateX(1.2em);
}

.top6-link a{
  margin-left: 12%;
}

/* タブレット*/
@media (min-width: 481px) and (max-width: 1024px) {
.top6-link a{
  margin-left: 8%;
}
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
.top6-link a{
  margin-left: 12%;
}
}

#top7{
  padding: 40px 12%;
  display: flex;
  justify-content: center;
  gap: 120px;
  position: relative;
}

/* タブレット*/
@media (min-width: 481px) and (max-width: 1024px) {
#top7{
  padding: 40px 8%;
  display: flex;
  justify-content: center;
  gap: 100px;
  position: relative;
}
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
#top7{
  padding: 40px 12%;
  display:block;
  justify-content: center;
  gap: 120px;
  position: relative;
}
}

#top7 .top7-contents{
  width: 42vw;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
#top7 .top7-contents{
  width: 100%;
}

.top7-contents-left{
  margin-bottom: 40px;
}
}

#top7::after{
  content:"";
  position:absolute;
  top: 20px;
  bottom: 20px;
  left: 50%;
  width: .5px;
  background: #B1AA95;
  transform: translateX(-50%);
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
#top7::after{
  content:"";
  position:absolute;
  top: 20px;
  bottom: 20px;
  left: 50%;
  width: .5px;
  background: #B1AA95;
  transform: translateX(-50%);
  display: none;
}
}

.top7-contents-title{
  display: flex;
  align-items: center;
}

.top7-contents-title h2{
  margin-right: 16px;
}

.top7-contents-article{
  border-top: .5px solid #B1AA95;
  margin: 40px 0;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
.top7-contents-article{
  border-top: 1px solid #B1AA957e;
  margin: 24px 0;
}
}

.top7-contents-article li{
  list-style: none;
  border-bottom: .5px solid #B1AA95;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
.top7-contents-article li{
  list-style: none;
  border-bottom: 1px solid #b1aa957e;
}
}

.top7-contents-article li a{
  display: flex;
  align-items: center;
  gap: 24px;
  text-decoration: none;
  color: #222;
  position: relative;
  overflow: hidden;
  z-index: 0;
  background: transparent;
}

/* タブレット*/
@media (min-width: 481px) and (max-width: 1024px) {
.top7-contents-article li a{
  display: flex;
  align-items: center;
  gap: 20px;
  text-decoration: none;
  color: #222;
  position: relative;
  overflow: hidden;
  z-index: 0;
  background: transparent;
}
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
.top7-contents-article li a{
  display: flex;
  align-items: center;
  gap: 20px;
  text-decoration: none;
  color: #222;
  position: relative;
  overflow: hidden;
  z-index: 0;
  background: transparent;
}
}

.top7-contents-article li a::before{
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
   270deg,
    transparent 49.5%,
    #F8F8EF 50%
  );
  background-size: 220% 220%;
  background-position: 100% 100%;
  transition: background-position .7s cubic-bezier(.22,.61,.36,1);
}

.top7-contents-article li a:hover::before{
  background-position: 0% 0%;
}

.top7-contents-article-img{
  width: 40%;
  display: flex;
  overflow: hidden;
}

.top7-contents-article-img img{
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  
  height: auto;
  display: block;

  transform: scale(1);
  transition: transform .7s cubic-bezier(.22,.61,.36,1);
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
	.top7-contents-article-img img{
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  
  height: auto;
  display: block;

  transform: scale(1);
  transition: transform .7s cubic-bezier(.22,.61,.36,1);
}
}

.top7-contents-article-info {
    width: 56%;
    padding: 16px 0;
}

.top7-contents-article li a:hover .top7-contents-article-img img{
  transform: scale(1.1);
}

.article-day{
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-size: 12px;
  margin-bottom: 4px;
  color: #333;
  letter-spacing: 1px;
}

.article-title{
  font-family: "Hina Mincho", serif;
  font-weight: 300;
  color: #333;
  font-size: 13px;
}


#top7 .top-link{
  justify-content: flex-end;
}


#top8{
  padding: 40px 0 0;
  margin-bottom: 0;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
#top8{
  padding: 0 0 0;
  margin-bottom: 0;
}
}

.top8-arch{
  display: block;  
  width: 100%;
  height: auto;
}

.top8-bg{
  background-color: #F8F8EF;
  padding: 40px 12% 64px;  
}

/* タブレット*/
@media (min-width: 481px) and (max-width: 1024px) {
.top8-bg{
  background-color: #F8F8EF;
  padding: 40px 8% 64px;  
}
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
.top8-bg{
  background-color: #F8F8EF;
  padding: 40px 8% 16px;  
}
}

.top8-contents{
  background:url(img/top8-b.jpg) center / cover no-repeat,#F8F8EF;
  padding: 25px;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
.top8-contents{
  background:url(img/top8-b.jpg) center / cover no-repeat,#F8F8EF;
  padding: 6%;
}
}

.card2{
  background: #fff;
  padding: 60px;
  text-align: center;
}

/* タブレット*/
@media (min-width: 481px) and (max-width: 1024px) {
.card2{
  background: #fff;
  padding: 30px;
  text-align: center;
}
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
.card2{
  background: #fff;
  padding: 32px 16px;
  text-align: center;
}
}

.top8-contents h2{
  margin-top: 16px;
}

.top8-contents  h5 {
  color: #333333;
  font-size: 20px;
  font-weight: 200;
  line-height: 1.6em;
  margin: 32px 0 16px;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
.top8-contents  h5 {
  color: #333333;
  font-size: 16px;
  font-weight: 200;
  line-height: 1.6em;
  margin: 32px 0 8px;
  text-align: left;
}

.top8-contents p{
  text-align: left;
}
}

.top8-contents-contact{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 40px;
}

/* タブレット*/
@media (min-width: 481px) and (max-width: 1024px) {
.top8-contents-contact{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 40px;
}
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
.top8-contents-contact{
  display: block;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 24px;
}

}

.top8-contents-left li,
.top8-contents-right li{
  list-style: none;
  background: #fff;
  border: 1px solid #d89216;
  padding: 32px;
  text-align: center;
}

/* タブレット*/
@media (min-width: 481px) and (max-width: 1024px) {
.top8-contents-left li,
.top8-contents-right li{
  list-style: none;
  background: #fff;
  border: 1px solid #d89216;
  padding: 16px;
  text-align: center;
}
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
.top8-contents-left li,
.top8-contents-right li{
  list-style: none;
  background: #fff;
  border: 1px solid #d89216;
  padding: 16px 8px;
  text-align: center;
  margin-bottom: 16px;
}

.top8-contents-right li{
  margin-bottom: 0;
}
}

.top8-contents-left h3{
  font-size: 18px;
  font-weight: 200;
  margin-bottom: 4px;
  font-family: "Hina Mincho", serif;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
.top8-contents-left h3{
  font-size: 16px;
  font-weight: 200;
  margin-bottom: 4px;
  font-family: "Hina Mincho", serif;
}
}

.top8-contents-left p{
  margin-bottom: 24px;
  font-family: "Hina Mincho", serif;
}

/* タブレット*/
@media (min-width: 481px) and (max-width: 1024px) {
.top8-contents-left p{
  margin-bottom: 16px;
  font-family: "Hina Mincho", serif;
}
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
.top8-contents-left p{
  margin-bottom: 16px;
  font-family: "Hina Mincho", serif;
  text-align: center;
}
}

.top8-contents-left a,
.top8-contents-right li > a{
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
  color: #fff;
  text-align: left;
  padding: 24px;
  margin-top: 16px;
  background: url(img/top8-b2.jpg) center / cover no-repeat;
  transition: .3s;
  font-size: 14px;
  font-weight: 200;
  font-family: "Hina Mincho", serif;
}

/* タブレット*/
@media (min-width: 481px) and (max-width: 1024px) {
.top8-contents-left a,
.top8-contents-right li > a{
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
  color: #fff;
  text-align: left;
  padding: 20px;
  margin-top: 8px;
  background: url(img/top8-b2.jpg) center / cover no-repeat;
  transition: .3s;
  font-size: 12px;
  font-weight: 200;
  font-family: "Hina Mincho", serif;
}
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
.top8-contents-left a,
.top8-contents-right li > a{
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
  color: #fff;
  text-align: left;
  padding: 16px 16px;
  margin-top: 8px;
  background: url(img/top8-b2.jpg) center / cover no-repeat;
  transition: .3s;
  font-size: 13px;
  font-weight: 200;
  font-family: "Hina Mincho", serif;
}
}

.top8-contents-left a,
.top8-contents-right li > a{
  position: relative;
  overflow: hidden;
  z-index: 0;
  background: none;          
  opacity: 1;                
}

.top8-contents-left a::before,
.top8-contents-right li > a::before{
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: url(img/top8-b2.jpg) center / cover no-repeat;
  transform: scale(1);
  transition: transform .8s cubic-bezier(.19,1,.22,1);
}

.top8-contents-left a:hover::before,
.top8-contents-right li > a:hover::before{
  transform: scale(1.1);
}

.top8-contents-left a:hover,
.top8-contents-right li > a:hover{
  opacity: .9;
  transition: .5s;
}

.top8-contents-left a span{
  font-size: 14px;
  font-weight: 200;
  font-family: "Hina Mincho", serif;
}

.top8-contents-right li > a:first-child{
  display: block;
  text-align: center;
  padding: 24px;
  margin-bottom: 16px;
  line-height: 1.5em;
}

/* タブレット*/
@media (min-width: 481px) and (max-width: 1024px) {
.top8-contents-right li > a:first-child{
  display: block;
  text-align: center;
  padding: 20px;
  margin-bottom: 8px;
  line-height: 1.5em;
  margin-top: 0;
}
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
.top8-contents-right li > a:first-child{
  display: block;
  text-align: center;
  padding: 16px 16px;
  margin-bottom: 8px;
  line-height: 1.5em;
	margin: 0;
}
}

.top8-contents-right h3{
  color: #fff;
  font-size: 16px;
  font-weight: 200;
  margin-bottom: 4px;
  font-family: "Hina Mincho", serif;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
.top8-contents-right h3{
  color: #fff;
  font-size: 13px;
  font-weight: 200;
  margin-bottom: 4px;
  font-family: "Hina Mincho", serif;
}
}

.top8-contents-right li a b{
  font-size: 25px;
  letter-spacing: 2px;
   font-weight: 200;
  font-family: "Hina Mincho", serif;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* タブレット*/
@media (min-width: 481px) and (max-width: 1024px) {
.top8-contents-right li a b{
  font-size: 25px;
  letter-spacing: 2px;
   font-weight: 200;
  font-family: "Hina Mincho", serif;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
}
}
/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
.top8-contents-right li a b{
  font-size: 19px;
  letter-spacing: 1px;
   font-weight: 200;
  font-family: "Hina Mincho", serif;
  display: flex;
  align-items: center;
  justify-content: center;
}
}

.top8-contents-right li a b span{
  font-size: 10px;
  display: inline-block;
  letter-spacing: 1px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  margin-right: 4px;
  margin-top: 4px;
}

.top8-contents-right li a span{
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 10px;
}

.top8-contents-right .x-small{
  font-size: 8px;
  margin-top:6px;
  text-align: left;
  line-height: 1.6em;
  display: inline-block;
}

/* タブレット*/
@media (min-width: 481px) and (max-width: 1024px) {
.top8-contents-right .x-small{
  font-size: 8px;
  margin-top:6px;
  text-align: left;
  line-height: 1.5em;
  display: inline-block;
}
}


.top8-contents-right li > a:last-child{
  justify-content: center;
  font-size: 16px;
  padding: 24px;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
.top8-contents-right li > a:last-child{
  justify-content: center;
  font-size: 14px;
  padding: 16px 16px;
}
}

footer{
  background-color: #F8F8EF;
  padding: 80px 10% 64px;
  position: relative;
  overflow: hidden; 
}

/* タブレット*/
@media (min-width: 481px) and (max-width: 1024px) {
footer{
  background-color: #F8F8EF;
  padding: 80px 8% 64px;
  position: relative;
  overflow: hidden; 
}
}

.footer-bg{
  position: absolute;
  bottom:-60%;
  left: -2%;
  width:600px;
  pointer-events: none;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
.footer-bg{
  position: absolute;
  bottom:-8%;
  left: -50%;
  width:600px;
  pointer-events: none;
}
}

.footer-contents{
  display: flex;
  justify-content: space-between;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
.footer-contents{
  display: block;
  justify-content: space-between;
}
}

.footer-menu{
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 40px;
  row-gap: 12px;
  margin-bottom: 64px;
	grid-template-rows: repeat(4, auto); 
    grid-auto-flow: column; 
}

/* タブレット*/
@media (min-width: 481px) and (max-width: 1024px) {
.footer-menu{
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 40px;
  row-gap: 4px;
  margin-bottom: 64px;
	grid-template-rows: repeat(4, auto); 
    grid-auto-flow: column; 
}
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
.footer-menu{
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 2fr 1fr;
  column-gap: 0px;
  row-gap: 4px;
  margin-bottom: 40px;
}
}

.footer-menu li {
    margin: 0;
}

.footer-menu li a{
  font-size: 13px;
  text-decoration: none;
  color: #333333;
  font-weight: 400;
  font-family: "Noto Sans JP", sans-serif;
  position: relative;
  display: inline-block;
  padding-bottom: 6px;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
.footer-menu li a{
  font-size: 12px;
  text-decoration: none;
  color: #333333;
  font-weight: 400;
  font-family: "Noto Sans JP", sans-serif;
  position: relative;
  display: inline-block;
  padding-bottom: 6px;
}
}

.footer-menu li a::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: .5px;
  background: #333333;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .4s ease;
}

.footer-menu li a:hover::after{
  transform: scaleX(1);
}

.footer-address img{
  width: 250px;
  margin-bottom: 16px;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
.footer-address img{
  width: 200px;
  margin-bottom: 16px;
}
}

.footer-address p {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-size: 13px;
  color: #333333;
}

.footer-address p a{
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-size: 13px;
  text-decoration: none;
  color: #333333;
}

.footer-address p a:hover{
  transition: .5s;
  opacity: .5;
}

.footer-contact {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 10px;
}

/* タブレット*/
@media (min-width: 481px) and (max-width: 1024px) {
.footer-contact {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 10px;
  width: 80%;
  margin-left: 20%;
}
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
.footer-contact {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 4px;
  margin-top: 40px;
}
}

.footer-contact li {
  margin: 0;
}

.footer-contact li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 32px;
  border: 1px solid #DE9915;
  background: transparent;
  font-size: 13px;
  font-family: "Hina Mincho", serif;
  font-weight: 400;
  color: #333333;
  text-decoration: none;
  transition: background .25s ease, color .25s ease, border-color .25s ease;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
.footer-contact li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 24px;
  border: 1px solid #DE9915;
  background: transparent;
  font-size: 13px;
  font-family: "Hina Mincho", serif;
  font-weight: 400;
  color: #333333;
  text-decoration: none;
  transition: background .25s ease, color .25s ease, border-color .25s ease;
}
}

.footer-contact a .arrow{
  position: relative;
  width: 1.2em;
  height: 1em;
  flex: 0 0 auto;
  overflow: hidden;
  margin-left: 10px; 
}

.footer-contact a .arrow__in,
.footer-contact a .arrow__out{
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
  font-family: "Hina Mincho", serif;
  font-size: 13px;
  color: currentColor;
  transition:
    transform .4s cubic-bezier(.23,1,.32,1),
    opacity .3s ease;
}

.footer-contact a .arrow__out{
  transform: translate(0, -50%);
  opacity: 1;
}

.footer-contact a .arrow__in{
  transform: translate(-120%, -50%);
  opacity: 1;
}

.footer-contact a:hover .arrow__out{
  transform: translate(120%, -50%);
  opacity: 0.9;
}

.footer-contact a:hover .arrow__in{
  transform: translate(0, -50%);
  opacity: 1;
}

.footer-sns{
  display: flex;
  align-items: center;
  justify-content: flex-end;
  list-style: none;
  gap: 20px;
  margin-top: 40px;
}

/* タブレット*/
@media (min-width: 481px) and (max-width: 1024px) {
.footer-sns{
  display: flex;
  align-items: center;
  justify-content: flex-end;
  list-style: none;
  gap: 10px;
  margin-top: 32px;
}
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
.footer-sns{
  display: flex;
  align-items: center;
  justify-content: center;
  list-style: none;
  gap: 20px;
  margin-top: 40px;
  flex-wrap: wrap; 
}
.footer-sns li:first-child{
  width: 100%;
}
}

.footer-sns li {
  margin: 0;
}

.footer-sns li a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  opacity: .95;
  transition: opacity .25s ease;
}

.footer-overlay__sns {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid #DE9915;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  transition: background 0.3s ease, border-color 0.3s ease;
  background-color: #DE9915;
}

/* タブレット*/
@media (min-width: 481px) and (max-width: 1024px) {
.footer-overlay__sns {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #DE9915;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  transition: background 0.3s ease, border-color 0.3s ease;
  background-color: #DE9915;
}
}

.footer-overlay__sns img {
  width: 30px;
  height: 30px;
  object-fit: contain;
  transition: filter 0.3s ease;
}

/* タブレット*/
@media (min-width: 481px) and (max-width: 1024px) {
.footer-overlay__sns img {
  width: 25px;
  height: 25px;
  object-fit: contain;
  transition: filter 0.3s ease;
}
}

.footer-sns li a p {
  margin: 0;
  white-space: nowrap;
  font-size: 12px;
  font-family: "Hina Mincho", serif;
  font-weight: 400;
  color: #333333;
}

.footer-sns li a:hover .footer-overlay__sns{
  background-color: #de981598;
  transition: .5s;
}


.footer-sns li:nth-of-type(1){
  font-size: 13px;
  font-family: "Hina Mincho", serif;
  font-weight: 400;
  color: #DE9915;
  position: relative;
  padding-right: 20px; 
}

/* タブレット*/
@media (min-width: 481px) and (max-width: 1024px) {
.footer-sns li:nth-of-type(1){
  font-size: 13px;
  font-family: "Hina Mincho", serif;
  font-weight: 400;
  color: #DE9915;
  position: relative;
  padding-right: 12px; 
}
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
.footer-sns li:nth-of-type(1){
  font-size: 13px;
  font-family: "Hina Mincho", serif;
  font-weight: 400;
  color: #DE9915;
  position: relative;
  padding-right:0;
  text-align: center; 
}
}

.footer-sns li:nth-of-type(1)::after{
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: .5px;
  height: 30px; 
  background: #DE9915; 
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
.footer-sns li:nth-of-type(1)::after{
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: .5px;
  height: 30px; 
  background: #DE9915; 
  display: none;
}
}

.footer-bottom{
  border-top: solid .5px #B1AA95;
  margin-top: 40px;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
.footer-bottom{
  border-top: solid 1px #b1aa9564;
  margin-top: 40px;
  padding-top: 16px;
  display: block;
  justify-content: space-between;
  align-items: center;
  text-align: center;
}
}

.footer-bottom a{
  font-size: 10px;
  color: #333333;
  text-decoration: none;
  font-weight: 300;
  font-family: "Noto Sans JP", sans-serif;
}

.footer-bottom p{
  font-size: 10px;
  color: #333333;
  font-weight: 300;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-family: "Noto Sans JP", sans-serif;
}

.footer-bottom a:hover{
  transition: .5s;
  opacity: .5;
}



/*article singleページ*/
#article-page1{
  text-align: center;
  padding: 104px 0 0;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
#article-page1{
  text-align: center;
  padding: 80px 0 0;
}
}

#article-page1 h1 {
    font-family: "Hina Mincho", serif;
    font-weight: 300;
    color: #D08800;
    font-size: 40px;
}

@media (min-width: 0px) and (max-width: 480px) {
#article-page1 h1 {
        font-family: "Hina Mincho", serif;
        font-weight: 300;
        color: #D08800;
        font-size: 30px;
	line-height:1.4em;
    }
}

#article-page2{
  padding: 40px 12% 104px;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
#article-page2{
  padding: 0px 12% 104px;
}
}

#article-page2 .works-contents{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  padding: 0;
  list-style: none;
}

/* タブレット*/
@media (min-width: 481px) and (max-width: 1024px) {
#article-page2 .works-contents{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding: 0;
  list-style: none;
}
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
#article-page2 .works-contents{
  display: block;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  padding: 0;
  list-style: none;
}

#article-page2 .works-contents li{
  margin-bottom: 24px;
}
	
	#article-page2 .works-contents .work-tag li{
		margin-bottom: 0;
}
}

#single-page1{
  padding: 160px 20% 80px;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
#single-page1{
  padding: 104px 12% 40px;
}
}

#single-page1 .details {
  display: inline-block;
  background: linear-gradient(to bottom, #16528E, #3774B1);
  color: #fff;
  padding: 10px 20px;
  display: inline-block;
  font-size: 10px;
  padding: 8px 16px;
  margin-bottom: 8px;
  font-weight: 300;
  font-family: "Noto Sans JP", sans-serif;
}

#single-page1 h1{
  font-size: 20px;
  font-weight: 200;
  line-height: 1.6em;
  margin-bottom: 8px;
  color: #333333;
}

#single-page1 .work-img{
  margin: 24px 0;
}

#single-page1 .work-img img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.single-info{
  border: solid 1px #d087009e;
  padding: 4% 6%;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
.single-info{
  border: solid 1px #d087009e;
  padding: 6% 8%;
}
}

#single-page1 h2{
  font-size: 16px;
  margin-bottom: 24px;
}

.single-info .info-b{
  display: flex;
  margin-bottom: 16px;
  list-style: none;
}

.single-info li{
  border: none;
  color: #333333;
  font-weight: 400;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 13px;
  padding: 0;
}

.single-info li:nth-child(1){
  width: 20%;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
.single-info li:nth-child(1){
  width: 30%;
}
}

.single-info li:nth-child(2){
  width: 78%;
  font-weight: 300;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
.single-info li:nth-child(2){
  width: 68%;
  font-weight: 300;
}
}

.single-gallery{
  margin:64px 0 40px;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
.single-gallery{
  margin:40px 0 40px;
}
}

.single-gallery .info-b2{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding: 0;
  list-style: none;
}
/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
.single-gallery .info-b2{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px 8px;
  padding: 0;
  list-style: none;
}
}

.single-gallery .info-b2 li img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

#article-page3{
  margin:40px 20% 104px;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
#article-page3{
  margin: 40px 12% 80px;
}
}

#article-page3 .top7-contents-article-img {
  width: 30%;
  display: flex;
  overflow: hidden;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
	#article-page3 .top7-contents-article-img {
  width: 40%;
  display: flex;
  overflow: hidden;
}
	
#article-page3 .top7-contents-article-img img{
  aspect-ratio: 1 / 1;
}
}

.single-text{
  margin-bottom: 40px;
}

.single-text h1{
  font-size: 30px;
  font-weight: 200;
  line-height: 1.6em;
  color: #333333;
  padding:4px 8px;
  background-color: #d0870053;
}

.single-text h2{
  font-size: 28px;
  font-weight: 200;
  line-height: 1.6em;
  color: #333333;
  padding:4px 8px;
  background-color: #d0870053;
}

.single-text h3{
  font-size: 20px;
  font-weight: 200;
  line-height: 1.6em;
  color: #333333;
  border-bottom: solid 1px #d08700b9;
  display: inline;
}

.single-text h4{
  font-size: 18px;
  font-weight: 200;
  line-height: 1.6em;
  color: #333333;
}

.single-text h5{
  font-size: 16px;
  font-weight: 200;
  line-height: 1.6em;
  color: #333333;
}

.single-text h6{
  font-size: 16px;
  font-weight: 200;
  line-height: 1.6em;
  color: #333333;
}

.single-text b{
  font-size: 16px;
  line-height: 1.6em;
  color: #333333;
}

.single-text a{
  color: #333333;
  font-weight: 400;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 13px;
}

.page-link a{
  justify-content: center;
}

.page-link a .top-link__circle{
  margin-right: 16px;
  margin-left: 0;
}


.pagenation{
  margin: 40px 0;
  text-align: center;
  font-size: 12px;
  color: #333333;
  font-weight: 300;
  text-transform: uppercase;
  font-family: "Noto Sans JP", sans-serif;
}

.pagenation a{
  font-size: 12px;
  color: #333333;
  font-weight: 300;
  text-transform: uppercase;
  font-family: "Noto Sans JP", sans-serif;
}

.page-title h1{
    font-family: "Hina Mincho", serif;
    font-weight: 300;
    color: #D08800;
    font-size: 40px;
}


@media (min-width: 0px) and (max-width: 480px) {
.page-title h1{
  font-family: "Hina Mincho", serif;
  font-weight: 300;
  color: #D08800;
 font-size: 30px;
  line-height: 1.3em;
}
}

#sub-page{
  max-width: none;
  margin: 0;
  position: relative;
}

#sub-page img{
  width: 100%;
	filter: brightness(80%);
	height: 50vh;
  object-fit: cover;
	
}

.custiom-p{
	object-position: top;
}

@media (min-width: 0px) and (max-width: 480px) {
.custiom-p{
	object-position: center;
}
}

#sub-page .page-title{
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 100%;
}


#sub-page .page-title h4{
  color: #ffffff;
}

#sub-page .page-title h1{
  color: #ffffff;
}

.non-page{
	text-align:center;
}

.non-page p{
	margin-bottom:40px;
}


/*コンタクト*/
#contact-1 {
    margin: 40px 16% 0;
}

@media (min-width: 0px) and (max-width: 480px) {
	#contact-1 {
    margin: 40px 8% 0;
}

}

.contact-info  {
    margin: 40px 0;
    display: flex;
    border: 1px solid #d89216;
    padding: 32px;
    text-align: center;
    list-style: none;
	justify-content: space-between;
}

#contact-1 .top8-contents-right li{
	display:flex;
	justify-content: space-between;
	margin: 40px 0;
}

@media (min-width: 0px) and (max-width: 480px) {
	#contact-1 .top8-contents-right li{
	display:block;
	justify-content: space-between;
	margin: 24px 0;
}

}

#contact-1 .top8-contents-right li a{
	width:43%;
	margin:0;
}

/* タブレット*/
@media (min-width: 481px) and (max-width: 1024px) {
	#contact-1 .top8-contents-right li a{
	width:41%;
	margin:0;
}
 }

@media (min-width: 0px) and (max-width: 480px) {
	#contact-1 .top8-contents-right li a{
	width:84%;
	margin:0;
}

}


#contact-1 .top8-contents-right li > a:first-child {
    display: block;
    text-align: center;
    padding: 24px;
    margin-bottom: 0;
    line-height: 1.5em;
}

@media (min-width: 0px) and (max-width: 480px) {
	#contact-1 .top8-contents-right li > a:first-child {
    display: block;
    text-align: center;
    padding: 8%;
    margin-bottom: 8px;#contact-2 {
    border: 1px solid #d89216;
    margin: 40px 12% 80px;
    padding: 24px 4%;
}
    line-height: 1.5em;
}
	
	#contact-1 .top8-contents-right li > a {
    display: block;
    text-align: center;
    padding: 8%;
    margin-bottom: 0;
    line-height: 1.5em;
}
}

#contact-2 {
    border: 1px solid #d89216;
	margin: 40px 16% 80px;
	padding: 40px 12%;
}

/* タブレット*/
@media (min-width: 481px) and (max-width: 1024px) {
	#contact-2 {
    border: 1px solid #d89216;
	margin: 40px 16% 80px;
	padding: 40px 8%;
}
}

@media (min-width: 0px) and (max-width: 480px) {
	#contact-2 {
    border: 1px solid #d89216;
    margin: 40px 8% 80px;
    padding: 24px 4%;
}
}