@charset "UTF-8";
@-webkit-keyframes load {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes load {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-webkit-keyframes fade_in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fade_in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fade_out {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fade_out {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes slide_down {
  0% {
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
  }
  100% {
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
  }
}
@keyframes slide_down {
  0% {
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
  }
  100% {
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
  }
}
html {
  background: #fff;
  color: #404253;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased;
  -webkit-font-variant-ligatures: none;
  font-variant-ligatures: none;
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  font-size: 62.5%;
  overflow-y: scroll;
}
@media screen and (max-width: 374px) {
  html {
    font-size: 56.3%;
  }
}

body {
  background: #fff;
  min-width: 1200px;
  color: #404253;
  font-family: "A1ゴシック L", "A1 Gothic L", sans-serif;
  font-size: 1.6rem;
  letter-spacing: 0.04em;
  line-height: 1;
  text-align: center;
  -webkit-text-size-adjust: 100% !important;
}
@media screen and (max-width: 480px) {
  body {
    min-width: 320px;
  }
}

body,
header,
main,
div,
ol, ul, li,
hgroup,
h1, h2, h3, h4, h5, h6,
form, input, textarea, button,
p,
blockquote,
figure,
picture,
img,
table, th, td {
  margin: 0;
  padding: 0;
}

article, aside, details, figcaption, figure, footer, header, main, menu, nav, section, summary {
  display: block;
}

audio, canvas, progress, video {
  display: inline-block;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

template, [hidden] {
  display: none;
}

code, kbd, pre, samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

abbr[title] {
  border-bottom: 1px dotted;
  text-decoration: none;
}

dfn {
  font-style: italic;
}

progress {
  vertical-align: baseline;
}

address {
  font-style: normal;
}

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

img {
  border: 0;
  vertical-align: top;
}

strong {
  font-family: "A1ゴシック M", "A1 Gothic M", sans-serif;
}

ol li,
ul li {
  list-style: none;
}

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

input,
textarea,
select,
button {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
}

input,
textarea {
  font-family: "Hiragino Sans", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", Meryo, "メイリオ", Osaka, "ＭＳ Ｐゴシック", "MS P Gothic", sans-serif;
  letter-spacing: 0.02em;
}

input,
textarea,
select,
button {
  *font-size: 100%;
}

button,
select {
  cursor: pointer;
}

button {
  border: none;
}

sup {
  font-size: 10px;
}

hr {
  height: 0;
  margin: 0;
  padding: 0;
  border: 0;
  border-top: 1px solid #e0dfec;
}

a {
  cursor: pointer;
  text-decoration: none;
  color: #5377b5;
}

br.pc {
  display: inline;
}
@media screen and (max-width: 480px) {
  br.pc {
    display: none;
  }
}
br.sp {
  display: none;
}
@media screen and (max-width: 480px) {
  br.sp {
    display: inline;
  }
}

.btn1 {
  display: inline-block;
  vertical-align: top;
  background-color: #404253;
  color: #fff;
  min-width: 250px;
  height: 60px;
  overflow: hidden;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 9999px;
  text-align: left;
  box-sizing: border-box;
  text-align: left;
  padding: 0 85px 0 25px;
  font-family: "A1ゴシック R", "A1 Gothic R", sans-serif;
  line-height: 60px;
  font-size: 1.8rem;
  letter-spacing: 0.08em;
  position: relative;
  border: none;
  outline: none !important;
}
@media screen and (max-width: 480px) {
  .btn1 {
    min-width: 200px;
    height: 48px;
    padding: 0 70px 0 25px;
    line-height: 48px;
    font-size: 1.4rem;
  }
}
.btn1::before {
  content: "";
  display: block;
  width: 60px;
  aspect-ratio: 1;
  border-radius: 9999px;
  position: absolute;
  top: 0;
  right: 0;
  background-color: #727485;
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
}
@media screen and (max-width: 480px) {
  .btn1::before {
    width: 48px;
  }
}
.btn1::after {
  content: "";
  display: block;
  width: 60px;
  aspect-ratio: 1;
  position: absolute;
  top: 0;
  right: 0;
  background: url("/assets/img/arr1_wh.svg") no-repeat center center/5px;
}
@media screen and (max-width: 480px) {
  .btn1::after {
    width: 48px;
  }
}
.btn1#more::after {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}
@media (any-hover: hover) and (min-width: 481px) {
  .btn1:hover::before {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
  }
}

.windows .btn1 {
  padding-top: 0.1em;
}

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

#layer {
  position: absolute;
  left: 0;
  top: 0;
  width: 1px;
  height: 1px;
  opacity: 0;
  -webkit-transition: opacity 0.25s;
  transition: opacity 0.25s;
  background-color: rgba(226, 223, 214, 0.9);
}

body.modal_open {
  position: fixed;
  width: 100%;
  overflow: hidden;
}
body.modal_open #layer {
  z-index: 99;
  right: 0;
  bottom: 0;
  width: auto;
  height: auto;
  opacity: 1;
}

header {
  position: absolute;
  z-index: 10;
  top: 40px;
  left: 3%;
  width: 92%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media screen and (max-width: 480px) {
  header {
    top: 0;
    left: 0;
    width: 100%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 15px 3%;
  }
}
header .logo {
  margin-right: auto;
  width: 230px;
}
@media screen and (max-width: 480px) {
  header .logo {
    width: 165px;
    position: relative;
    z-index: 2;
  }
}
header .logo a {
  display: block;
}
header .logo img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 480px) {
  header .all_menu {
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    height: 1px;
    overflow: hidden;
    opacity: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    background-color: #fdf6ed;
    padding: 105px 6.65% 60px;
    -webkit-transform-origin: center top;
    transform-origin: center top;
  }
  header .all_menu > * {
    opacity: 0;
    -webkit-transition: opacity 0.5s 0.5s;
    transition: opacity 0.5s 0.5s;
  }
}
header .glo_nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  margin-right: 15px;
}
@media screen and (max-width: 480px) {
  header .glo_nav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    margin-right: 0;
    gap: 35px;
  }
}
header .glo_nav a {
  text-decoration: none;
  color: #404253;
  font-family: "A1ゴシック R", "A1 Gothic R", sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.2em;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
}
@media (any-hover: hover) and (min-width: 481px) {
  header .glo_nav a:hover {
    text-decoration: underline;
  }
}
header .sns_list {
  display: none;
}
@media screen and (max-width: 480px) {
  header .sns_list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    margin-top: 40px;
    gap: 15px;
  }
}
header .sns_list a {
  display: block;
  text-indent: -9999px;
  overflow: hidden;
}
header .sns_list a.insta {
  width: 20px;
  aspect-ratio: 1;
  background: url("/assets/img/i_insta.svg") no-repeat center center/contain;
}
header .sns_list a.x {
  width: 18px;
  aspect-ratio: 26/30;
  background: url("/assets/img/i_x.svg") no-repeat center center/contain;
}
header .sns_list a.yt {
  aspect-ratio: 86/60;
  width: 28px;
  background: url("/assets/img/i_yt.svg") no-repeat center center/contain;
}

#ham {
  display: none;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  aspect-ratio: 1;
  width: 40px;
  border-radius: 50%;
  background-color: #404253;
  z-index: 2;
}
@media screen and (max-width: 480px) {
  #ham {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
#ham span {
  position: relative;
  background-color: white;
  width: 13px;
  height: 1px;
  -webkit-transition: background-color 0.5s;
  transition: background-color 0.5s;
}
#ham span::before, #ham span::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
}
#ham span::before {
  -webkit-transform: translateY(-5px);
  transform: translateY(-5px);
}
#ham span::after {
  -webkit-transform: translateY(5px);
  transform: translateY(5px);
}

body.nav_open #layer {
  right: 0;
  bottom: 0;
  width: auto;
  height: auto;
  opacity: 1;
  background: transparent;
  z-index: 9;
}
@media screen and (max-width: 480px) {
  body.nav_open header .all_menu {
    top: 0;
    height: auto;
    opacity: 1;
    -webkit-animation: slide_down 0.5s forwards;
    animation: slide_down 0.5s forwards;
  }
  body.nav_open header .all_menu > * {
    -webkit-animation: fade_in 0.5s 0.4s forwards;
    animation: fade_in 0.5s 0.4s forwards;
  }
}
body.nav_open #ham span {
  background-color: rgba(255, 255, 255, 0);
}
body.nav_open #ham span::before {
  -webkit-transform: translateY(0) rotate(45deg);
  transform: translateY(0) rotate(45deg);
}
body.nav_open #ham span::after {
  -webkit-transform: translateY(0) rotate(-45deg);
  transform: translateY(0) rotate(-45deg);
}

main {
  background: #fdf6ed;
}

#pelaod {
  position: absolute;
  font-size: 10px;
  opacity: 0;
  bottom: 0;
  left: 0;
  width: 1px;
  height: 1px;
  overflow: hidden;
  text-indent: -9999px;
}

footer {
  background-color: #fff;
  display: grid;
  text-align: left;
  padding: 190px 7.14% 100px;
  gap: 105px 0;
}
@media screen and (max-width: 480px) {
  footer {
    padding: 55px 0 25px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
    text-align: center;
    gap: 0;
  }
}
footer .contact {
  grid-column: 1/2;
  grid-row: 1/2;
}
footer .contact .ttl {
  font-family: "A1ゴシック M", "A1 Gothic M", sans-serif;
  font-size: 2rem;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 480px) {
  footer .contact .ttl {
    font-size: 1.6rem;
  }
}
footer .contact .txt {
  margin-top: 2em;
  font-family: "A1ゴシック R", "A1 Gothic R", sans-serif;
  font-size: 1.6rem;
  line-height: 1.7;
}
@media screen and (max-width: 480px) {
  footer .contact .txt {
    margin-top: 1.5em;
    font-size: 1.4rem;
  }
}
footer .contact .btn1 {
  margin-top: 20px;
  width: 300px;
}
@media screen and (max-width: 480px) {
  footer .contact .btn1 {
    width: 240px;
  }
}
footer .link {
  grid-column: 1/2;
  grid-row: 2/3;
}
@media screen and (max-width: 480px) {
  footer .link {
    margin-top: 60px;
  }
}
footer .link .ttl {
  font-family: "A1ゴシック M", "A1 Gothic M", sans-serif;
  font-size: 2rem;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 480px) {
  footer .link .ttl {
    font-size: 1.6rem;
  }
}
footer .link_list {
  margin-top: 30px;
}
@media screen and (max-width: 480px) {
  footer .link_list {
    margin-top: 25px;
  }
}
footer .link_list li + li {
  margin-top: 20px;
}
@media screen and (max-width: 480px) {
  footer .link_list li + li {
    margin-top: 15px;
  }
}
footer .link_list a {
  display: inline-block;
  padding-left: 20px;
  position: relative;
  font-family: "A1ゴシック R", "A1 Gothic R", sans-serif;
  font-size: 1.5rem;
}
@media screen and (max-width: 480px) {
  footer .link_list a {
    font-size: 1.4rem;
  }
}
footer .link_list a[target=_blank]::before {
  content: "";
  display: block;
  aspect-ratio: 1;
  width: 12px;
  background: url("/assets/img/i_blank.svg") no-repeat center center/contain;
  position: absolute;
  left: 0;
  top: calc(0.5em - 6px);
}
@media (any-hover: hover) and (min-width: 481px) {
  footer .link_list a:hover {
    text-decoration: underline;
  }
}
footer .us {
  grid-column: 2/3;
  grid-row: 1/3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column;
  flex-flow: column;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  position: relative;
}
@media screen and (max-width: 480px) {
  footer .us {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}
footer .tagline {
  position: absolute;
  top: -50px;
  right: 0;
}
@media screen and (max-width: 480px) {
  footer .tagline {
    margin-top: 64px;
    position: relative;
    top: auto;
  }
  footer .tagline img {
    width: 124px;
    height: auto;
  }
}
footer .logo {
  margin-top: auto;
}
@media screen and (max-width: 480px) {
  footer .logo {
    margin: 42px auto 0;
  }
  footer .logo img {
    width: 195px;
    height: auto;
  }
}
footer .sns_list {
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}
@media screen and (max-width: 480px) {
  footer .sns_list {
    margin-top: 22px;
    gap: 14px;
  }
}
footer .sns_list a {
  display: block;
  text-indent: -9999px;
  overflow: hidden;
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
}
footer .sns_list a.insta {
  width: 30px;
  aspect-ratio: 1;
  background: url("/assets/img/i_insta.svg") no-repeat center center/contain;
}
@media screen and (max-width: 480px) {
  footer .sns_list a.insta {
    width: 20px;
  }
}
footer .sns_list a.x {
  width: 26px;
  aspect-ratio: 26/30;
  background: url("/assets/img/i_x.svg") no-repeat center center/contain;
}
@media screen and (max-width: 480px) {
  footer .sns_list a.x {
    width: 18px;
  }
}
footer .sns_list a.yt {
  aspect-ratio: 86/60;
  width: 43px;
  background: url("/assets/img/i_yt.svg") no-repeat center center/contain;
}
@media screen and (max-width: 480px) {
  footer .sns_list a.yt {
    width: 28px;
  }
}
@media (any-hover: hover) and (min-width: 481px) {
  footer .sns_list a:hover {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }
}
footer .copyright {
  margin-top: 35px;
}
@media screen and (max-width: 480px) {
  footer .copyright {
    margin-top: 25px;
  }
  footer .copyright img {
    width: 270px;
    height: auto;
  }
}