@charset "UTF-8";
/*------------------------------------------
reset.scss
-----------------------------------------*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

ol,
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

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

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/*------------------------------------------
base.scss
-----------------------------------------*/
html {
  font-size: 62.5%;
  /* 16px x 0.625 = 10px(=1rem) */
}

/* 全体のリセット */
body,
html {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  /* PCでは全体スクロールなし */
}

body {
  margin: 0;
  padding: 0;
  color: #333;
  font-family: "Roboto", sans-serif;
  font-feature-settings: "palt";
  letter-spacing: 1px;
  font-size: 1.4rem; /* 16px */
  font-weight: 400;
  line-height: 2.2;
  text-align: justify;
  text-justify: inter-ideograph;
  transition: 1s;
}
@media screen and (min-width: 1300px) {
  body {
    font-size: 1.6rem;
  }
}

a {
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  color: #333;
  text-decoration: none;
}
a:hover {
  opacity: 0.6;
}

.bgblack a,
.bgblack02 a {
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  color: #fff;
  text-decoration: none;
  font-size: 1.4rem;
}
.bgblack a:hover,
.bgblack02 a:hover {
  opacity: 0.6;
}

img {
  width: 100%;
  vertical-align: bottom;
}

/*----responsive---------*/
.pc {
  display: none !important;
}
@media screen and (min-width: 1300px) {
  .pc {
    display: block !important;
  }
}

.sp {
  display: block !important;
}
@media screen and (min-width: 1300px) {
  .sp {
    display: none !important;
  }
}

/*----------box---------*/
.container {
  margin: 0 auto;
}
.container__full {
  width: 100%;
}
.container__xl {
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
}
.container__l {
  max-width: 980px;
  margin: 0 auto;
  width: 100%;
}
.container__m {
  margin: 8% auto;
  max-width: 780px;
  width: 80%;
}
.container__m--ver01 {
  display: flex;
  flex-direction: column;
  margin: 8% auto;
  max-width: 780px;
  width: 80%;
}
.container__m--ver01 .box01 {
  width: 80%;
  margin: 0 auto 0 0;
  z-index: 10;
  max-width: 500px;
  height: auto;
  position: relative;
  overflow: hidden;
}
.container__m--ver01 .box02 {
  width: 80%;
  margin: -20% 0 0 auto;
  max-width: 500px;
  height: auto;
  position: relative;
  overflow: hidden;
}
.container__s {
  margin: 8% auto;
  max-width: 460px;
  width: 64%;
}

.block-bg {
  transition: all 1s ease;
  margin-top: 120px;
}
@media screen and (min-width: 768px) {
  .block-bg {
    margin-top: 200px;
  }
}

.block {
  padding: 120px 0;
}
.block .credit,
.block .credit a {
  color: #fff;
}

.wrap-mgt-l {
  margin-top: 100px;
}
@media screen and (min-width: 768px) {
  .wrap-mgt-l {
    margin-top: 200px;
  }
}

.u-txt-vertical {
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  font-size: 1rem;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .u-txt-vertical {
    font-size: 1.2rem;
  }
}

.box {
  max-width: 540px;
  width: 92%;
  margin: 16px auto 0;
}

/*------------------------------------------
main.scss
-----------------------------------------*/
/*------pc left-----*/
.left__sidebar {
  display: none;
}
@media screen and (min-width: 1300px) {
  .left__sidebar {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #fbffe0;
    width: calc((100vw - 520px) / 2);
  }
}
.left__logo {
  max-width: 320px;
  width: 70%;
  margin: 0 auto;
}

/*------pc right-----*/
.right__sidebar {
  display: none;
}
@media screen and (min-width: 1300px) {
  .right__sidebar {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #fbffe0;
    width: calc((100vw - 520px) / 2);
  }
}
.right__logo {
  max-width: 200px;
  margin: 0 auto;
  width: 40%;
}

/*------main-----*/
.container {
  display: flex;
  flex-direction: column;
  width: 100vw;
  height: 100vh;
}
@media screen and (min-width: 768px) {
  .container {
    flex-direction: row;
  }
}

.main-content {
  margin: 0 auto;
  width: 100vw;
  height: 100vh;
  overflow-y: scroll;
  box-sizing: border-box;
  overflow-x: hidden;
}
@media screen and (min-width: 768px) {
  .main-content {
    width: 520px;
    max-width: 520px;
  }
}

/*------styling------*/
.styling__wrap {
  margin-top: 160px;
}
.styling__img img {
  margin-top: 40px;
}
.styling__txt {
  width: 75%;
  margin: 24px auto 0;
  font-size: 1.4rem;
  line-height: 1.5;
}
.styling__txt p {
  margin-top: 24px;
}
.styling__credit {
  margin-top: 24px;
  list-style: disc;
  list-style-position: inside;
}
.styling__credit li {
  margin-top: 8px;
  line-height: 1.2;
}
.styling__credit li span {
  border: solid 1px #333;
  padding: 0 8px;
  font-size: 80%;
  margin-left: 16px;
}
.styling__credit li span:hover {
  background-color: #333;
  color: #fff;
}

/*------staff------*/
.profile {
  display: grid;
  grid-template-columns: 100px auto;
  grid-template-rows: 1fr 1fr;
  gap: 16px;
  align-content: space-between;
  max-width: 400px;
  margin-bottom: 16px;
  border: solid 1px #333;
  padding: 16px;
  border-radius: 5px;
}
.profile__image {
  grid-column: 1/2;
  grid-row: 1/3;
}
.profile img {
  border-radius: 50%;
}
.profile__name {
  grid-column: 2/3;
  grid-row: 1/2;
  font-size: 2rem;
  font-weight: bold;
}
.profile__name span {
  font-size: 1.4rem;
}
.profile__links {
  grid-column: 2/3;
  grid-row: 2/3;
  font-size: 1.4rem;
  align-self: end;
  line-height: 1.5;
}

.staff__info.main {
  max-width: 400px;
  width: 80%;
  margin: 160px auto 0;
}

.staff__info .info {
  text-align: center;
  line-height: 1.5;
  margin-top: 40px;
  font-size: 1.4rem;
}

/*--------credit--------*/
.credit {
  font-size: 1rem;
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  line-height: 1;
  margin-top: 16px;
}
.credit a {
  color: #fff;
}
@media screen and (min-width: 768px) {
  .credit {
    font-size: 1.2rem;
  }
}

.credit li {
  margin-top: 12px;
}

/*--------swipe--------*/
.swipe__area {
  margin: 64px auto;
}

.credit-info {
  position: absolute;
  bottom: 10px; /* 画像の下部に配置 */
  left: 50%;
  transform: translateX(-50%);
  color: white;
  padding: 8px 12px;
  font-size: 1.2rem;
  border-radius: 5px;
  width: 90%; /* 幅を80%にして中央揃え */
  text-align: left;
  font-family: "Noto Serif JP", serif;
}

.credit-info li {
  line-height: 1.8;
}

.credit-info a {
  color: #fff;
}

/*--------styling slider-------*/
.styling__wrap {
  margin-top: 80px;
}

/*--------staff--------*/
.staff {
  text-align: center;
  font-family: "Roboto", sans-serif;
  font-size: 1.4rem;
  margin-top: 80px;
}

.leeep {
  margin: 160px auto 0;
}

/*--------footer--------*/
footer {
  width: 100%;
  margin: 0;
  text-align: center;
  font-size: 1.1rem;
  padding-bottom: 10px;
}

.footer__brandlogo {
  width: 150px;
  margin: 80px auto 10px;
}
@media screen and (min-width: 768px) {
  .footer__brandlogo {
    margin: 80px auto 0;
  }
}

.footer__theme {
  font-size: 32px;
  font-weight: 300;
  line-height: 1.2;
}

.footer__message {
  margin-top: 40px;
  text-align: center;
}

small {
  display: block;
  margin: 60px auto 15px;
  font-size: 1rem;
}

/*------------------------------------------
animation.scss
-----------------------------------------*/
.fadein {
  transition: 1s;
  opacity: 0;
}

.fadein.animated {
  opacity: 1;
}

.fadein--up {
  transform: translate3d(0, 24px, 0);
  transition: 1s;
  opacity: 0;
}

.fadein--up.animated {
  transform: translate3d(0, 0, 0);
  opacity: 1;
}

.fadein--down {
  transform: translate3d(0, -24px, 0);
  transition: 1s;
  opacity: 0;
}

.fadein--down.animated {
  transform: translate3d(0, 0, 0);
  opacity: 1;
}

.fadein--left {
  transform: translate3d(-24px, 0, 0);
  transition: 1s;
  opacity: 0;
}

.fadein--left.animated {
  transform: translate3d(0, 0, 0);
  opacity: 1;
}

.fadein--right {
  transform: translate3d(24px, 0, 0);
  transition: 1s;
  opacity: 0;
}

.fadein--right.animated {
  transform: translate3d(0, 0, 0);
  opacity: 1;
}

/*----------page top icon---------*/
#page-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 100;
}

#page-top a {
  width: 18px;
  padding: 0;
  display: block;
}

#page-top a:hover {
  text-decoration: none;
}/*# sourceMappingURL=style.css.map */