@import url("https://netdna.bootstrapcdn.com/font-awesome/4.6.3/css/font-awesome.css");
p {
  margin: 0;
}

ul,
h1,
h2,
figure,
dl,
dd,
button {
  margin: 0;
  padding: 0;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  vertical-align: bottom;
  line-height: 1em;
}

a {
  text-decoration: none;
  color: inherit;
}
a:visited, a:active {
  color: inherit;
}
a:hover {
  opacity: 0.5;
}

button {
  color: currentColor;
  cursor: pointer;
  border: none;
  background-color: transparent;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 60px;
}

body {
  font-family: "Koburina Gothic W3 JIS2004", sans-serif;
  color: #1f1f1f;
  line-height: 1.5em;
  font-size: 16px;
  --sal-duration: 0.8s;
}
body#index {
  background-color: #cfd9d9;
  position: relative;
}
body#index::before {
  content: "";
  z-index: -1;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  height: 100lvh;
  background-image: url(../img/bg_main_sp.webp);
  background-size: cover;
  background-position: 50% 0%;
  transform: translateZ(0);
}
@media (min-width: 600px) {
  body#index::before {
    background-position: 50% 30%;
  }
}
@media (min-width: 992px) {
  body#index::before {
    background-image: url(../img/bg_main_pc.webp);
    background-position: 50% 100%;
  }
}
body#about {
  background-color: #D9D9D9;
}

.thumb,
.banner {
  overflow: hidden;
  display: block;
  max-width: 100%;
}
.thumb img,
.banner img {
  transition: all 0.3s;
  width: 100%;
}
.thumb img:hover,
.banner img:hover {
  transform: scale(1.1);
}

.yodogawa .container br, .product .container div br, .about .container br {
  display: none;
}
@media (min-width: 992px) {
  .yodogawa .container br, .product .container div br, .about .container br {
    display: block;
  }
}

header {
  position: fixed;
  z-index: 10;
  transition: 0.4s;
  top: -60px;
  opacity: 0;
}
body.view header {
  top: 0;
  opacity: 1;
}
header > div {
  position: relative;
  height: 60px;
  width: 100vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1.5px solid #1F1F1F;
  border-bottom: 1.5px solid #1F1F1F;
  background: rgba(240, 240, 240, 0.75);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  box-sizing: border-box;
  padding-right: 20px;
  padding-left: 20px;
}
@media (min-width: 992px) {
  header > div {
    padding-left: 40px;
  }
}
header > div a {
  position: relative;
  bottom: -6px;
}
@media (min-width: 992px) {
  header > div a {
    bottom: -12px;
  }
}
header > div a:hover {
  opacity: 1;
  bottom: -9px;
}
header > div img {
  height: 60px;
}
@media (min-width: 992px) {
  header > div img {
    height: 65px;
  }
}
header nav {
  position: relative;
  background: rgba(80, 80, 80, 0.9);
  width: 100%;
  color: #fff;
  font-size: 20px;
  line-height: 1;
  padding-bottom: 8px;
}
@media (min-width: 600px) {
  header nav {
    width: 400px;
    margin-left: auto;
  }
}
header nav::after {
  pointer-events: none;
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  background-repeat: no-repeat;
  background-size: contain;
  height: 78px;
  bottom: 0;
  left: 0;
  background-image: url(../img/tori_04.png);
  background-position: calc(100% - 36px) 100%;
}
header nav ul {
  margin-right: 70px;
  margin-left: 80px;
  padding-top: 20px;
  padding-bottom: 20px;
}
header nav ul + ul {
  border-top: 1px solid #fff;
}
header nav li a {
  display: block;
  padding-top: 20px;
  padding-bottom: 20px;
}

.menu-btn {
  display: block;
  position: relative;
  width: 40px;
  height: 40px;
}
.menu-btn span {
  position: absolute;
  width: 100%;
  height: 2px;
  left: 0%;
  background: #505050;
  transition: 0.4s;
}
.menu-btn span.top-bar {
  top: 11px;
}
.menu-btn span.center-bar {
  top: calc(50% - 1px);
}
.menu-btn span.under-bar {
  bottom: 11px;
}
.menu-btn.close .top-bar {
  top: calc(50% - 1px);
  transform: rotate(45deg);
}
.menu-btn.close .center-bar {
  opacity: 0;
}
.menu-btn.close .under-bar {
  top: calc(50% - 1px);
  transform: rotate(-45deg);
}

main {
  position: relative;
}
@media (min-width: 992px) {
  main::after {
    content: "";
    z-index: -1;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    height: 100lvh;
    background-image: url(../img/bg_main_pc.webp);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 50% 0%;
    transform: translateZ(0);
  }
  .view main::after {
    content: none;
  }
}
@media (min-width: 1200px) {
  main::after {
    background-position: 50% 0%;
  }
}

.about {
  max-width: 588px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.8);
  font-size: 18px;
  line-height: 34px;
  padding-top: 9px;
  padding-bottom: 17px;
  padding-right: 6px;
  padding-left: 6px;
  margin-top: 130px;
  margin-right: 20px;
  margin-left: 20px;
  margin-bottom: 64px;
}
@media (min-width: 600px) {
  .about {
    margin-right: auto;
    margin-left: auto;
  }
}
@media (min-width: 992px) {
  .about {
    padding-top: 10px;
    padding-bottom: 19px;
    padding-right: 16px;
    padding-left: 16px;
  }
}
.about .container {
  padding-right: 20px;
  padding-left: 20px;
  padding-top: 40px;
  padding-bottom: 40px;
}
@media (min-width: 992px) {
  .about .container {
    padding-top: 48px;
    padding-bottom: 48px;
  }
}
.about .container div {
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 992px) {
  .about .container div {
    width: -moz-max-content;
    width: max-content;
  }
}
.about p {
  margin-bottom: 1.5em;
}
.about small {
  font-size: 15px;
}
.about_ttl {
  width: 220px;
  display: block;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 24px;
}
@media (min-width: 992px) {
  .about_ttl {
    margin-bottom: 30px;
  }
}

.hero .container {
  width: calc(100% - 100px);
  max-width: 960px;
  height: calc(100vh - 10px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: end;
  gap: 72px;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 10px;
}
@media (min-width: 600px) {
  .hero .container {
    justify-content: end;
  }
}
@media (min-width: 992px) {
  .hero .container {
    gap: 44px;
  }
}
.hero .ico_now {
  width: 100px;
  margin-bottom: 80px;
}
@media (min-width: 1200px) {
  .hero .ico_now {
    margin-bottom: 100px;
  }
}

.yodogawa {
  padding-right: 20px;
  padding-left: 20px;
  padding-bottom: 112px;
  margin-bottom: 60px;
}
@media (min-width: 992px) {
  .yodogawa {
    padding-bottom: 30px;
  }
}
@media (min-width: 1200px) {
  .yodogawa {
    padding-bottom: 112px;
  }
}
.yodogawa .container {
  max-width: 660px;
  position: relative;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.8);
  font-size: 18px;
  line-height: 34px;
  padding-right: 20px;
  padding-left: 20px;
  margin-right: auto;
  margin-left: auto;
}
.yodogawa .container div {
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 992px) {
  .yodogawa .container div {
    width: -moz-max-content;
    width: max-content;
    padding-top: 55px;
    padding-bottom: 55px;
  }
}
.yodogawa .container:before, .yodogawa .container:after {
  content: "";
  display: block;
  width: 100%;
  background-repeat: no-repeat;
  background-size: contain;
  position: relative;
}
@media (min-width: 992px) {
  .yodogawa .container:before, .yodogawa .container:after {
    position: absolute;
    width: 30%;
  }
}
.yodogawa .container::before {
  background-image: url(../img/tori_01.png);
  height: 83px;
  left: -10px;
}
@media (min-width: 992px) {
  .yodogawa .container::before {
    height: 103px;
    top: 20px;
    left: 42px;
  }
}
.yodogawa .container::after {
  background-image: url(../img/tori_02.png);
  height: 60px;
  background-position: 100% 100%;
  bottom: 6px;
}
@media (min-width: 992px) {
  .yodogawa .container::after {
    height: 84px;
    right: 36px;
  }
}
.yodogawa small {
  font-size: 15px;
  display: block;
  margin-top: 34px;
  margin-bottom: 1em;
}

.product {
  background-color: #fff;
}
.product .container {
  max-width: 772px;
  padding-top: 46px;
  padding-bottom: 64px;
  padding-right: 50px;
  padding-left: 50px;
  margin-right: auto;
  margin-left: auto;
}
.product ul {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (min-width: 600px) {
  .product ul {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
  }
}
.product li {
  display: flex;
  flex-direction: column;
  gap: 1em;
}
.product h2 {
  font-size: inherit;
  font-family: "Koburina Gothic W6 JIS2004";
}
.product .more {
  border-radius: 5px;
  background: #51D09B;
  font-family: "Koburina Gothic W6 JIS2004";
  color: #fff;
  display: flex;
  align-items: center;
  width: -moz-max-content;
  width: max-content;
  height: 36px;
  gap: 5px;
  padding-right: 0.5em;
  padding-left: 0.5em;
}
.product .more::after {
  content: "";
  background-image: url(../img/ico_arrow.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: 50% 50%;
  display: inline-block;
  height: 9px;
  width: 8px;
}

.content {
  background: #F0F0F0;
  color: #505050;
  margin-bottom: 40px;
}
.content .container {
  max-width: 832px;
  padding-top: 40px;
  padding-bottom: 40px;
  padding-right: 50px;
  padding-left: 50px;
  margin-right: auto;
  margin-left: auto;
}
.content h2 {
  max-width: 468px;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 40px;
}
.content ul {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media (min-width: 600px) {
  .content ul {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px 32px;
  }
}
@media (min-width: 600px) {
  .content .sp_only {
    display: none;
  }
}
.content .banner {
  margin-bottom: 1em;
}

.staff {
  background: rgba(255, 255, 255, 0.8);
  margin-bottom: 40px;
  line-height: 30px;
  padding-top: 26px;
  padding-bottom: 40px;
  padding-right: 50px;
  padding-left: 50px;
}
.staff .container {
  width: 12em;
  white-space: nowrap;
  margin-right: auto;
  margin-left: auto;
}
.staff .container div {
  text-align: center;
  font-family: "Koburina Gothic W6 JIS2004";
}
@media (min-width: 992px) {
  .staff .container div {
    font-size: 18px;
    margin-bottom: 8px;
  }
}
.staff dt {
  float: left;
}

.footer {
  background: rgba(255, 255, 255, 0.8);
}
.footer .container {
  padding-right: 42px;
  padding-left: 42px;
  padding-top: 64px;
  padding-bottom: 64px;
}
@media (min-width: 600px) {
  .footer .container {
    display: flex;
    align-items: start;
    justify-content: center;
    gap: 100px;
  }
}
.footer .sns {
  margin-bottom: 40px;
  display: flex;
  gap: 40px;
}
@media (min-width: 992px) {
  .footer .sns {
    margin-bottom: 32px;
    gap: 36px;
  }
}
.footer .sns dt {
  margin-bottom: 24px;
}
@media (min-width: 600px) {
  .footer .sns dt {
    margin-bottom: 0;
  }
}
.footer .sns ul {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}
.footer .sns ul img {
  width: auto;
  height: 40px;
}
@media (min-width: 992px) {
  .footer .sns ul {
    gap: 36px;
  }
}
.footer .contact {
  font-family: "Koburina Gothic W6 JIS2004";
  margin-bottom: 40px;
}
.footer .contact li:not(:last-child) {
  margin-bottom: 1.5em;
}
@media (min-width: 600px) {
  .footer .contact {
    margin-bottom: initial;
  }
}
.footer .info {
  font-size: 14px;
  line-height: 30px;
}
.footer .info li:not(:last-child) {
  margin-bottom: 8px;
}
.footer .info li:last-child {
  margin-top: calc(1em + 8px);
}
.footer .info a {
  text-decoration: underline;
}/*# sourceMappingURL=style.css.map */