@charset "UTF-8";
/*
 * 参考
 * https://github.com/Andy-set-studio/modern-css-reset/blob/master/src/reset.css
*/
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
blockquote,
dl,
dd,
ul {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
  width: 100v;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/*****************************************
 * 数値から単位を取り除く
 * 参考
 * https://css-tricks.com/snippets/sass/
******************************************/
/*****************************************
 * px→remの計算
 * 参考
 * https://webdou.net/sass-rem/
 * Sassではmath.div関数の使用が推奨のため、スラッシュ(/)演算子から変更
******************************************/
/*****************************************
 * vwの計算
 * 参考
 * https://webdou.net/sass-vw/
 * Sassではmath.div関数の使用が推奨のため、スラッシュ(/)演算子から変更
******************************************/
html {
  font-size: 16px;
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}
@media screen and (min-width: 768px) {
  html {
    font-size: 1.3333333333vw;
  }
}
@media (min-width: 1200px) {
  html {
    font-size: 16px;
  }
}

body {
  font-family: "Yu Gothic", sans-serif;
  font-weight: 400;
  color: #595757;
}

a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s;
}

@media screen and (min-width: 768px) {
  a:hover {
    opacity: 1;
  }
}


.btn_more{
  margin-top: 30px;
}

.title_01 img{
  width: 40%;
  text-align: center;
  margin: 0 auto;
  margin-top: 60px;
  margin-bottom: 40px;
}

.title_01_sp {
  display: none;
}

.sp {
    display: none;
  }

@media screen and (max-width: 768px) {
  .title_01_sp {
    display: block !important;
    width:70%;
    margin: 0 auto;
    margin-top: 40px;
    margin-bottom: 40px;
  }
  .title_01 {
    display: none;
  }
  .sp{
    display: block;
  }
  .pc{
    display: none;
  }
}

.p-footer {
  padding-top: 3.125rem;
}

.footer-other{
  background-color: rgba(218, 188, 138, 0.2);
  padding-top: 3.125rem;
  padding-bottom: 3.125rem;
}

@media screen and (min-width: 768px) {
  .p-footer {
    padding-top: 3.75rem;
  }
}

.p-footer__inner {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  max-width: 31.25rem;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 3.125rem;
}
@media screen and (min-width: 768px) {
  .p-footer__inner {
    max-width: 67.5rem;
  }
}

.p-footer__top-text {
  max-width: -moz-fit-content;
  max-width: fit-content;
  margin-left: auto;
  margin-right: auto;
  font-size: 0.75rem;
  line-height: 2;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .p-footer__top-text {
    font-size: 0.875rem;
  }
}

.p-footer__menu {
  margin-top: 3.125rem;
}
@media screen and (min-width: 768px) {
  .p-footer__menu {
    margin-top: initial;
    display: flex;
    justify-content: center;
    margin-top: 3.75rem;
  }
}

.p-footer__logo {
  max-width: 11rem;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 768px) {
  .p-footer__logo {
    max-width: 11.125rem;
    margin-left: initial;
  }
}

.p-footer__lists {
  display: flex;
  flex-wrap: wrap;
  flex-basis: calc(50% - 10px / 2);
  justify-content: space-between;
  margin-top: 2.5rem;
  max-width: 80vw;
  width: 100%;
  margin-left: 5vw;
  margin-right: auto;
}

.p-footer__lists2 {
  display: block;
  flex-wrap: wrap;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .p-footer__lists {
    display: flex;
    justify-content: right;
    align-items: flex-start;
    max-width: 51.328125%;
    margin-right: initial;
    margin-top: initial;
  }
  .p-footer__lists2 {
    max-width: 20vw;
    display: flex;
  }
}



.p-footer__list {
  font-size: 0.75rem;
  line-height: 2;
}

.p-footer__list a {
  display: block;
  font-weight: 500;
}

.p-footer__list span {
  display: block;
  font-weight: 700;
}



@media screen and (min-width: 768px) {
  .p-footer__list:nth-child(n+2) {
    margin-top: initial;
    margin-left: 4vw;
  }
}

.p-footer__copyright {
  font-size: 0.75rem;
  text-align: center;
  color: #595757;
  margin-top: 3.125rem;
}

.p-product__movie {
  max-width: 38vw;
  width: 100%;
  text-align: center;
  margin: 0 auto;
  margin-bottom: 20px;
  margin-top: 20px;
}

.p-product__movie img{
  width: 100%;
}

@media screen and (min-width: 768px) {
  .p-product__movie {
    max-width: 10vw;
    text-align: center;
  }
}

.p-product__movie__item {
  max-width: 77vw !important;
  justify-content: center;
  width: 100%;
  display: block;
  text-align: center;
  margin: 0 auto;
  margin-bottom: 50px;
}

.container {
  display: flex;
  justify-content: space-between;
  margin-bottom:60px;
}
@media screen and (max-width: 768px) {
  .container {
    display: block;
    margin: 0 auto;
}
}

@media screen and (min-width: 768px) {
  .p-product__movie__item {
    display: block;
    max-width: 23vw !important;
    text-align: center;
    justify-content: space-between;
    margin: 0 auto;
  }
}

.img-container2{
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
}

.img-container2 img {
  width: 100%;
  max-width: none;
  position: relative;
  left: 50%; /**中央揃え固定**/
  transform: translateX(-50%); /**中央揃え固定**/
}

.p-fv{
  position: relative;
}


@media (max-width: 768px) {
  .img-container2 img {
    width: 100%;
    height: auto;
    left: 0;
    transform: none;
  }
  .img-container2 img {
   display: block;
  }
}

.accordion{
  background-color: #F8F2E866;
  padding-bottom:160px;
  padding-top:80px;
}

.accordion-003 {
    max-width: 870px;
    margin-bottom: 7px;
    border-bottom: 2px solid #d0d0d0;
    display: block;
    align-items: center;
    margin: 0 auto;
}

.accordion-003 summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 1em 2em;
    color: #505050;
    font-weight: 600;
    cursor: pointer;
    font-size: 28px;
    line-height: 160%;
    font-family: "fot-tsukuardgothic-std", sans-serif;
    font-weight: 700;
    font-style: normal;
}

.accordion-003 summary::-webkit-details-marker {
    display: none;
}

.accordion-003 summary::after {
    transform: translateY(-25%) rotate(45deg);
    width: 7px;
    height: 7px;
    margin-left: 20px;
    border-bottom: 2px solid #505050;
    border-right: 2px solid #505050;
    content: '';
    transition: transform .3s;
}

.accordion-003[open] summary::after {
    transform: rotate(225deg);
}

.accordion-003 p {
    transform: translateY(-10px);
    opacity: 0;
    margin: 0;
    padding: .3em 2em 1.5em;
    color: #505050;
    transition: transform .5s, opacity .5s;
    font-size: 26px;
    line-height: 160%;
    font-family: "fot-tsukuardgothic-std", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.accordion-003[open] p {
    transform: none;
    opacity: 1;
}

.title_02 img{
  width: 20%;
  text-align: center;
  margin: 0 auto;
  margin-top: 60px;
  margin-bottom: 40px;
}

@media (max-width: 820px) {
.accordion{
  background-color: #F8F2E866;
  padding-bottom:40px;
  padding-top:40px;
}

.accordion-003 summary {
    font-size: 18px;
}

.accordion-003 p {
    font-size: 16px;
}

.title_02 img{
  width: 50%;
  margin-top: 40px;
}
}

.cta_description{
  width: 80%;
  margin: 0 auto;
  margin-bottom: 60px;
}

@media (max-width: 820px) {
  .cta_description{
    width: 90%;
  }
}