@charset "UTF-8";
*, *::before, *::after {
  box-sizing: border-box;
}

body, h1, h2, h3, h4, p, figure, blockquote, dl, dd {
  margin: 0;
}

ul[role=list], ol[role=list] {
  list-style: none;
}

html:focus-within {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

a:not([class]) {
  text-decoration-skip-ink: auto;
}

img, picture {
  max-width: 100%;
  display: block;
}

input, button, textarea, select {
  font: inherit;
}

html {
  font-size: 62.5%;
}

body {
  font-family: YakuHanJP, "Zen Kaku Gothic New", sans-serif;
  font-size: 1.6rem;
  color: #222;
  line-height: 1.75;
  text-align: left;
  font-weight: 500;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  vertical-align: bottom;
  border: none;
}

li {
  list-style: none;
}

@media all and (max-width: 750px) {
  .pcbr {
    display: none;
  }
}

.spbr {
  display: none;
}
@media all and (max-width: 960px) {
  .spbr {
    display: block;
  }
}

/*------------------------------------------------------------
ラッパー
------------------------------------------------------------*/
#wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.inner {
  width: 89%;
  max-width: 1090px;
  margin: 0 auto;
}

/*------------------------------------------------------------
header
------------------------------------------------------------*/
.smenu {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1200;
  display: block;
  width: 100%;
  color: white;
}
@media all and (max-width: 767px) {
  .smenu {
    padding: 0;
  }
}

.logow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  align-items: center;
  z-index: 10000;
}
.logow .logo {
  border-right: 1px solid white;
  box-sizing: border-box;
  transition: all 0.3s ease;
}
.logow .logo img {
  padding-right: 20px;
  box-sizing: border-box;
  transition: all 0.3s ease;
}
@media all and (max-width: 1024px) {
  .logow .logo img {
    height: 28px;
    width: auto;
  }
}
.logow .logo .bl {
  display: none;
}
.logow .logo:hover {
  opacity: 0.7;
}
.logow .tx {
  padding-left: 20px;
  box-sizing: border-box;
  font-size: 1.4rem;
  font-weight: normal;
}
@media all and (max-width: 767px) {
  .logow .logo img {
    padding-right: 10px;
  }
  .logow .tx {
    padding-left: 10px;
    font-size: 1.1rem;
  }
}

.entry_mini {
  display: none;
}
@media all and (max-width: 1024px) {
  .entry_mini {
    width: 95px;
    padding: 3px 10px;
    box-sizing: border-box;
    display: block;
    font-size: 1.5rem;
    font-weight: bold;
    font-family: "Roboto", sans-serif;
    border: 1px solid white;
    border-radius: 100px;
    text-align: center;
    margin-right: 53px;
    background: #D27F71;
    text-decoration: none;
    color: white;
    z-index: 10000;
  }
}

.logow.blk .logo {
  border-right: 1px solid #222;
}
.logow.blk .w {
  display: none;
}
.logow.blk .bl {
  display: block;
}
.logow.blk .tx {
  color: #222;
}

#nav-drawer {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  align-items: center;
  padding: 20px 30px 40px 30px;
  box-sizing: border-box;
  background: linear-gradient(to bottom, rgba(1, 1, 1, 0.6) 0%, transparent 100%);
}
@media all and (max-width: 1024px) {
  #nav-drawer {
    padding: 10px 0 20px 15px;
  }
}

#nav-open {
  display: none;
  width: 53px;
  height: 53px;
  vertical-align: middle;
  padding: 16px 11.5px;
  box-sizing: border-box;
  z-index: 10000;
  cursor: pointer;
  transition: all 0.5s ease;
  margin-left: 50px;
}
#nav-open span, #nav-open span:before, #nav-open span:after {
  position: absolute;
  height: 2px; /*線の太さ*/
  width: 30px; /*長さ*/
  border-radius: 10px;
  background: white;
  display: block;
  content: "";
  cursor: pointer;
  transition: all 0.3s ease;
}
#nav-open span:before {
  bottom: -10px;
}
#nav-open span:after {
  bottom: -20px;
}
@media all and (max-width: 1024px) {
  #nav-open {
    display: inline-block;
    position: absolute;
    right: 0;
    top: 0;
  }
}

#nav-close {
  display: block;
  position: fixed;
  z-index: 99;
  top: 0; /*全体に広がるように*/
  left: 0;
  width: 50%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease-in-out;
}

#nav-content {
  overflow: auto;
  top: 0;
  right: 0;
  z-index: 9999; /*最前面に*/
  width: auto; /*右側に隙間を作る（閉じるカバーを表示）*/
  max-width: none; /*最大幅（調整してください）*/
  height: 100%;
  transition: 0.3s ease-in-out; /*滑らかに表示*/
  -webkit-overflow-scrolling: touch;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  align-items: center;
}
#nav-content a {
  text-decoration: none;
  font-size: 1.4rem;
  font-weight: bold;
  color: white;
  margin-right: 30px;
  transition: all 0.3s ease;
  white-space: nowrap;
}
#nav-content a:hover {
  opacity: 0.6;
}
#nav-content .entry a {
  width: 143px;
  padding: 6px 10px;
  box-sizing: border-box;
  display: block;
  font-size: 1.5rem;
  font-weight: bold;
  font-family: "Roboto", sans-serif;
  border: 1px solid white;
  border-radius: 100px;
  text-align: center;
  margin-right: 0;
  background: #D27F71;
}
#nav-content .entry a:hover {
  opacity: 1;
  background: #c65c4a;
}
#nav-content .homes {
  display: none;
}
@media all and (max-width: 1024px) {
  #nav-content {
    opacity: 0;
    visibility: hidden;
    position: fixed;
    z-index: 100;
    width: 100%;
    background: linear-gradient(180deg, #F5F0EF 0%, #E1D5D5 100%);
    display: block;
    text-align: center;
    padding-top: 90px;
  }
  #nav-content a {
    display: block;
    font-size: 1.8rem;
    padding: 10px 0;
    color: #222;
    box-sizing: border-box;
    margin-right: 0;
  }
  #nav-content .homes {
    display: block;
  }
  #nav-content .entry a {
    width: 200px;
    padding: 9px 10px;
    color: white;
    font-size: 1.6rem;
    margin: 30px auto 0 auto;
  }
}

#nav-input:checked ~ #nav-close {
  visibility: visible;
  opacity: 1;
}
#nav-input:checked ~ #nav-content {
  opacity: 1;
  visibility: visible;
}
#nav-input:checked ~ #nav-open span {
  transform: rotate(40deg);
  top: 26px;
  background: #222;
}
#nav-input:checked ~ #nav-open span:before {
  bottom: 0;
  transform: rotate(100deg);
  background: #222;
}
#nav-input:checked ~ #nav-open span:after {
  right: -100px;
  opacity: 0;
}

.nav-unshown {
  display: none;
}

.gpt {
  display: block;
  position: fixed;
  right: 25px;
  bottom: 25px;
  z-index: 100;
  transition: all 0.3s ease;
}
.gpt:hover {
  bottom: 30px;
}
.gpt img {
  width: 45px;
  height: auto;
}
@media all and (max-width: 767px) {
  .gpt {
    right: 5px;
    bottom: 5px;
  }
  .gpt:hover {
    bottom: 10px;
  }
  .gpt img {
    width: 55px;
    min-width: 55px;
    height: auto;
  }
}

.btnw {
  text-align: right;
}
@media all and (max-width: 767px) {
  .btnw {
    text-align: center;
  }
}

.btn_more {
  display: inline-block;
  text-decoration: none;
  color: #222;
  font-weight: bold;
  position: relative;
  width: 182px;
  text-align: center;
  border: 1px solid #CCCCCC;
  box-sizing: border-box;
  padding: 7px 10px 13px 10px;
  transition: all 0.3s ease;
  margin-right: 15px;
}
.btn_more:before {
  content: "";
  width: 30px;
  height: 1px;
  background: #ccc;
  position: absolute;
  top: 50%;
  right: -14px;
  transition: all 0.3s ease;
}
.btn_more:hover {
  background: #222;
  border: 1px solid #222;
  color: white;
}
.btn_more:hover:before {
  right: 0;
}
@media all and (max-width: 767px) {
  .btn_more {
    width: 224px;
  }
}

/*------------------------------------------------------------
footer
------------------------------------------------------------*/
footer {
  /*margin-top: 140px;*/
}
@media all and (max-width: 767px) {
  footer {
   /* margin-top: 100px;*/
  }
}

.fti {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  align-items: center;
  padding: 20px 30px;
  box-sizing: border-box;
  /*border-top: 1px solid #ddd;*/
}
@media all and (max-width: 767px) {
  .fti {
    display: block;
    padding: 12px;
    text-align: center;
  }
}

.ft_link {
  font-size: 1.2rem;
}
.ft_link a {
  text-decoration: none;
  color: #222;
  padding-right: 32px;
  box-sizing: border-box;
  position: relative;
  transition: all 0.3s ease;
}
.ft_link a:before {
  content: "";
  top: 0;
  right: 16px;
  width: 1px;
  height: 100%;
  background: #222;
  position: absolute;
}
.ft_link a:last-of-type {
  padding-right: 0;
}
.ft_link a:last-of-type:before {
  content: none;
}
.ft_link a:hover {
  opacity: 0.5;
}
@media all and (max-width: 767px) {
  .ft_link {
    display: inline-block;
  }
}

.copyright {
  font-size: 1.1rem;
}
@media all and (max-width: 767px) {
  .copyright {
    margin-top: 20px;
  }
}

.mv {
  position: relative;
}
.mv .navs {
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}
.mv .navs a {
  text-decoration: none;
  display: block;
  color: white;
  font-size: 1.4rem;
  text-align: center;
  font-weight: bold;
  padding: 28px 10px;
  box-sizing: border-box;
  background: rgba(0, 0, 0, 0.44);
  border-right: 1px solid white;
  transition: all 0.3s ease;
}
.mv .navs a:hover {
  background: rgba(0, 0, 0, 0.8);
}
.mv .navs a:last-of-type {
  border-right: none;
}
@media all and (max-width: 767px) {
  .mv .navs {
    display: none;
  }
}

.mv_under {
  padding: 167px 0;
  box-sizing: border-box;
}
.mv_under .page_ttl {
  max-width: 1090px;
  width: 89%;
  margin: 0 auto;
  color: white;
}
.mv_under .page_ttl h1 {
  font-size: 3.2rem;
  letter-spacing: 0.1em;
  line-height: 1.2;
  text-shadow: 0 0 6px rgba(0, 0, 0, 0.5);
}
.mv_under .page_ttl .eg {
  font-family: "Roboto Slab", serif;
  font-size: 1.6rem;
  font-weight: bold;
  text-shadow: 0 0 6px rgba(0, 0, 0, 0.5);
}
@media all and (max-width: 767px) {
  .mv_under {
    padding: 72px 0;
  }
}

.bread {
  font-size: 1.2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  align-items: center;
  padding: 15px 30px;
  box-sizing: border-box;
}
.bread a {
  text-decoration: none;
  color: #222;
  position: relative;
  padding-right: 20px;
  box-sizing: border-box;
}
.bread a:before {
  content: ">";
  position: absolute;
  right: 6px;
  top: -1px;
}
@media all and (max-width: 767px) {
  .bread {
    padding: 10px 5.5%;
  }
}

/*------------------------------------------------------------
inview css
------------------------------------------------------------*/
.anm {
  opacity: 0;
}

.trigger {
  opacity: 0;
}
.trigger.up {
  animation: up 0.8s ease 0.1s 1 normal forwards;
}
.trigger .delay0 {
  animation-delay: 0ms;
}
.trigger.delay1 {
  animation-delay: 100ms;
}
.trigger.delay2 {
  animation-delay: 200ms;
}
.trigger.delay3 {
  animation-delay: 300ms;
}
.trigger.delay4 {
  animation-delay: 400ms;
}
.trigger .delay5 {
  animation-delay: 500ms;
}
.trigger .delay6 {
  animation-delay: 600ms;
}
.trigger .delay7 {
  animation-delay: 700ms;
}
.trigger .delay8 {
  animation-delay: 800ms;
}
.trigger .delay9 {
  animation-delay: 900ms;
}
.trigger .delay10 {
  animation-delay: 1000ms;
}

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

/*fotter上リンク追加*/
.sec_link{
  padding:30px 0;
  margin-top: 140px;
  background-color:#F5f5f5;
  font-size:13px;
}

.sec_link .inlink{
  max-width:1100px;
  margin:0 auto;
}
.sec_link .inlink_ttl{
    font-weight:bold;
    margin-top:10px;
}
.sec_link a,
.sec_link a:hover,
.sec_link a:visited{
  color:#222;
  text-decoration:none;
}
.sec_link a:after{
  content: "/"
}

@media screen and (min-width: 640px) and (max-width: 1100px) {
     .sec_link .inlink{
      width: 89%;
      margin: 0 auto;
  }
}
@media (max-width: 767px) {
    .sec_link .inlink{
      width: 89%;
      margin: 0 auto;
  }
}