@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New:wght@300;400;500;700;900&family=Zen+Maru+Gothic:wght@300;400;500;700;900&display=swap");
/*
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-family: "Zen Maru Gothic", sans-serif;
*/
/* automatic size vw */
/* automatic size vh */
/* text clamp */
/* anime In order */
/*
    Line height auto
*/
/* automatic width vw */
/* automatic height vw */
/*
    Button
*/
a.button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: auto;
}

button.hamburger {
  padding: 0;
  border: none;
  outline: none;
  background: transparent;
  background-image: none;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  border-radius: 0;
  width: 5.8666666667vw;
  height: 5.8666666667vw;
  position: relative;
}
button.hamburger > span {
  display: block;
  width: 100%;
  height: 0.8vw;
  background-color: #F00001;
  position: absolute;
  top: 50%;
  left: 50%;
  opacity: 1;
  transform: translate(-50%, -50%) rotate(0);
  transition: 0.3s ease-in-out;
}
button.hamburger > span:nth-of-type(1) {
  top: 20%;
}
button.hamburger > span:nth-of-type(3) {
  top: 83%;
}
button.hamburger.active > span:nth-of-type(1) {
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}
button.hamburger.active > span:nth-of-type(2) {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(90deg);
}
button.hamburger.active > span:nth-of-type(3) {
  top: 50%;
  transform: translate(-50%, -50%) rotate(135deg);
}

@keyframes slideTitle {
  0% {
    opacity: 0;
    transform: translate(0, 20px);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}
@keyframes slideTitle2 {
  0% {
    opacity: 0;
    transform: translate(-50%, 20px);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}
@keyframes slideTitle3 {
  0% {
    opacity: 0;
    transform: translate(0, 20px);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}
@keyframes slideIn {
  0% {
    opacity: 0;
    transform: translate(20px, 0);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeInEnlarge {
  0% {
    opacity: 0;
    transform: scale(0.9);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes fadeInEnlarge2 {
  0% {
    opacity: 0;
    transform: scale(1.2);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes flashlight {
  0% {
    transform: translate(-100%, 0);
  }
  100% {
    transform: translate(100%, 0);
  }
}
@keyframes fadeinObj {
  0% {
    display: block;
    opacity: 0;
  }
  5% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeoutObj {
  0% {
    opacity: 1;
  }
  95% {
    opacity: 0;
  }
  100% {
    opacity: 0;
    display: none;
  }
}
/*
    common
*/
html.hidden, body.hidden {
  overflow: hidden;
}

#ouchigohan {
  font-family: "Zen Kaku Gothic New", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "メイリオ", "Meiryo", "Helvetica Neue", Arial, sans-serif;
  font-weight: 500;
}
#ouchigohan * {
  box-sizing: border-box;
}
#ouchigohan img {
  width: auto;
  height: auto;
  max-width: 100%;
  -webkit-touch-callout: none;
}
#ouchigohan ul,
#ouchigohan ol {
  list-style: none;
}
#ouchigohan a {
  outline: none;
  text-decoration: none;
  opacity: 1;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  transition: 0.3s ease-in-out;
}
#ouchigohan sup {
  vertical-align: super;
  font-size: 80%;
}
#ouchigohan .util_sp {
  display: none !important;
}
@media screen and (max-width: 750px) {
  #ouchigohan .util_sp {
    display: block !important;
  }
}
#ouchigohan .util_pc {
  display: block !important;
}
@media screen and (max-width: 750px) {
  #ouchigohan .util_pc {
    display: none !important;
  }
}

@media print {
  img {
    display: none;
  }
}
/*
    loader
*/
/*
    header
*/
#ouchigohan header#header {
  width: 100%;
  height: 70px;
  background-color: #FFC800;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 1440px) {
  #ouchigohan header#header {
    height: 4.8611111111vw;
  }
}
@media screen and (max-width: 750px) {
  #ouchigohan header#header {
    height: auto;
  }
}
#ouchigohan header#header > .inner {
  width: 1440px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 0 0 50px;
}
@media screen and (max-width: 1440px) {
  #ouchigohan header#header > .inner {
    width: 100vw;
    padding: 0 0 0 3.4722222222vw;
  }
}
@media screen and (max-width: 750px) {
  #ouchigohan header#header > .inner {
    padding: 0;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
  }
}
#ouchigohan header#header > .inner > .container_logo {
  width: 166px;
}
@media screen and (max-width: 1440px) {
  #ouchigohan header#header > .inner > .container_logo {
    width: 11.5277777778vw;
  }
}
@media screen and (max-width: 750px) {
  #ouchigohan header#header > .inner > .container_logo {
    width: 44.2666666667vw;
    padding: 4vw 0;
  }
}
@media screen and (max-width: 750px) {
  #ouchigohan header#header > .inner > .container_logo img {
    width: 100%;
  }
}
#ouchigohan header#header > .inner > .container_hamburger {
  display: none;
}
@media screen and (max-width: 750px) {
  #ouchigohan header#header > .inner > .container_hamburger {
    display: block;
    position: absolute;
    top: 7.4666666667vw;
    right: 5.3333333333vw;
    transform: translate(0, -50%);
  }
}

/*
    Navigation
*/
#ouchigohan nav#nav {
  width: 1055px;
}
@media screen and (max-width: 1440px) {
  #ouchigohan nav#nav {
    width: 73.2638888889vw;
  }
}
@media screen and (max-width: 750px) {
  #ouchigohan nav#nav {
    visibility: hidden;
    width: 100%;
    background-image: url("../images/bg_nav.jpg");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 200% auto;
  }
}
#ouchigohan nav#nav ul {
  display: flex;
  align-items: center;
  gap: 0 75px;
}
@media screen and (max-width: 1440px) {
  #ouchigohan nav#nav ul {
    gap: 0 5.2083333333vw;
  }
}
@media screen and (max-width: 750px) {
  #ouchigohan nav#nav ul {
    display: block;
    padding: 0 5.3333333333vw;
  }
}
@media screen and (max-width: 750px) {
  #ouchigohan nav#nav ul > li {
    padding: 4.8vw 0 6.1333333333vw;
    background-image: url("../images/nav_line.png");
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: contain;
  }
}
#ouchigohan nav#nav ul > li:nth-of-type(1) {
  width: 220px;
}
@media screen and (max-width: 1440px) {
  #ouchigohan nav#nav ul > li:nth-of-type(1) {
    width: 15.2777777778vw;
  }
}
@media screen and (max-width: 750px) {
  #ouchigohan nav#nav ul > li:nth-of-type(1) {
    width: 100%;
  }
}
@media screen and (max-width: 750px) {
  #ouchigohan nav#nav ul > li:nth-of-type(1) img {
    width: 58.6666666667vw;
  }
}
#ouchigohan nav#nav ul > li:nth-of-type(2) {
  width: 54px;
}
@media screen and (max-width: 1440px) {
  #ouchigohan nav#nav ul > li:nth-of-type(2) {
    width: 3.75vw;
  }
}
@media screen and (max-width: 750px) {
  #ouchigohan nav#nav ul > li:nth-of-type(2) {
    width: 100%;
  }
}
@media screen and (max-width: 750px) {
  #ouchigohan nav#nav ul > li:nth-of-type(2) img {
    width: 14.4vw;
  }
}
#ouchigohan nav#nav ul > li:nth-of-type(3) {
  width: 215px;
}
@media screen and (max-width: 1440px) {
  #ouchigohan nav#nav ul > li:nth-of-type(3) {
    width: 14.9305555556vw;
  }
}
@media screen and (max-width: 750px) {
  #ouchigohan nav#nav ul > li:nth-of-type(3) {
    width: 100%;
    background: none;
    padding: 4.8vw 0;
  }
}
@media screen and (max-width: 750px) {
  #ouchigohan nav#nav ul > li:nth-of-type(3) img {
    width: 57.3333333333vw;
  }
}
#ouchigohan nav#nav ul > li a {
  display: block;
  transform: scale(1);
  transition: 0.3s ease-in-out;
}
#ouchigohan nav#nav ul > li a:hover {
  transform: scale(1.2);
}
@media screen and (max-width: 750px) {
  #ouchigohan nav#nav ul > li a:hover {
    transform: scale(1);
  }
}

/*
    Style
*/
#ouchigohan #fv {
  margin: 0 auto;
  width: 100%;
  height: 917px;
  position: relative;
  z-index: 4;
  overflow: hidden;
  background-image: url("../images/bg_kv_pc.png");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 100% 100%;
}
@media screen and (max-width: 1440px) {
  #ouchigohan #fv {
    height: 63.6805555556vw;
  }
}
@media screen and (max-width: 750px) {
  #ouchigohan #fv {
    background-image: url("../images/bg_kv_sp.png");
    height: 177.6vw;
  }
}
#ouchigohan #fv > .container_fv_inner {
  margin: 0 auto;
  position: relative;
  width: 1440px;
  height: 100%;
}
@media screen and (max-width: 1440px) {
  #ouchigohan #fv > .container_fv_inner {
    width: 100%;
  }
}
#ouchigohan #fv .container_fv_h1 {
  position: absolute;
  top: 37px;
  left: 80px;
  width: 547px;
  z-index: 1;
}
@media screen and (max-width: 1440px) {
  #ouchigohan #fv .container_fv_h1 {
    top: 2.5694444444vw;
    left: 5.5555555556vw;
    width: 37.9861111111vw;
  }
}
@media screen and (max-width: 750px) {
  #ouchigohan #fv .container_fv_h1 {
    width: 74.6666666667vw;
    top: 5.3333333333vw;
    left: 12.5333333333vw;
  }
}
#ouchigohan #fv .container_fv_img01 {
  position: absolute;
  width: 983px;
  top: 101px;
  right: 15px;
}
@media screen and (max-width: 1440px) {
  #ouchigohan #fv .container_fv_img01 {
    top: 7.0138888889vw;
    right: 1.0416666667vw;
    width: 68.2638888889vw;
  }
}
@media screen and (max-width: 750px) {
  #ouchigohan #fv .container_fv_img01 {
    width: 105.0666666667vw;
    top: 66.4vw;
    right: -2.1333333333vw;
  }
}
#ouchigohan #fv .container_img_item01 {
  position: absolute;
  width: 214px;
  right: 77px;
  bottom: 126px;
}
@media screen and (max-width: 1440px) {
  #ouchigohan #fv .container_img_item01 {
    bottom: 8.75vw;
    right: 5.3472222222vw;
    width: 14.8611111111vw;
  }
}
@media screen and (max-width: 750px) {
  #ouchigohan #fv .container_img_item01 {
    display: none;
  }
}
#ouchigohan #fv .img_kirakira_01 {
  position: absolute;
  width: 91px;
  top: 76px;
  right: 105px;
}
@media screen and (max-width: 1440px) {
  #ouchigohan #fv .img_kirakira_01 {
    top: 5.2777777778vw;
    right: 7.2916666667vw;
    width: 6.3194444444vw;
  }
}
@media screen and (max-width: 750px) {
  #ouchigohan #fv .img_kirakira_01 {
    top: 63.7333333333vw;
    right: 2.9333333333vw;
    width: 12vw;
  }
}
#ouchigohan #fv .img_kirakira_02 {
  position: absolute;
  width: 84px;
  bottom: 162px;
  left: 552px;
}
@media screen and (max-width: 1440px) {
  #ouchigohan #fv .img_kirakira_02 {
    bottom: 11.25vw;
    left: 38.3333333333vw;
    width: 5.8333333333vw;
  }
}
@media screen and (max-width: 750px) {
  #ouchigohan #fv .img_kirakira_02 {
    width: 11.2vw;
    left: 3.2vw;
    bottom: 45.8666666667vw;
  }
}
#ouchigohan #fv .img_kv_photo02 {
  position: absolute;
  width: 290px;
  left: 72px;
  bottom: 61px;
}
@media screen and (max-width: 1440px) {
  #ouchigohan #fv .img_kv_photo02 {
    bottom: 4.2361111111vw;
    left: 5vw;
    width: 20.1388888889vw;
  }
}
@media screen and (max-width: 750px) {
  #ouchigohan #fv .img_kv_photo02 {
    width: 40.8vw;
    left: 5.3333333333vw;
    bottom: 12.2666666667vw;
  }
}
#ouchigohan #fv .img_fv_name {
  position: absolute;
  width: 226px;
  left: 299px;
  bottom: 223px;
}
@media screen and (max-width: 1440px) {
  #ouchigohan #fv .img_fv_name {
    bottom: 15.4861111111vw;
    left: 20.7638888889vw;
    width: 15.6944444444vw;
  }
}
@media screen and (max-width: 750px) {
  #ouchigohan #fv .img_fv_name {
    width: 45.8666666667vw;
    bottom: 24vw;
    left: 46.6666666667vw;
  }
}
#ouchigohan #about {
  margin: -160px auto 0;
  width: 100%;
  position: relative;
  z-index: 3;
  background-image: url("../images/bg_about_pc.png");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 100% 100%;
}
@media screen and (max-width: 1440px) {
  #ouchigohan #about {
    margin-top: -11.1111111111vw;
  }
}
@media screen and (max-width: 750px) {
  #ouchigohan #about {
    margin-top: -16vw;
    background-image: url("../images/bg_about_sp.png");
  }
}
#ouchigohan #about > .inner {
  margin: 0 auto;
  width: 1440px;
  padding: 160px 0 274px;
}
@media screen and (max-width: 1440px) {
  #ouchigohan #about > .inner {
    width: 100%;
    padding: 11.1111111111vw 0 19.0277777778vw;
  }
}
@media screen and (max-width: 750px) {
  #ouchigohan #about > .inner {
    padding: 24vw 0 37.3333333333vw;
  }
}
#ouchigohan #about > .inner .ttl_section_h2 {
  margin: 0 auto 40px;
  width: 790px;
}
@media screen and (max-width: 1440px) {
  #ouchigohan #about > .inner .ttl_section_h2 {
    margin-bottom: 2.7777777778vw;
    width: 54.8611111111vw;
  }
}
@media screen and (max-width: 750px) {
  #ouchigohan #about > .inner .ttl_section_h2 {
    margin-bottom: 6.6666666667vw;
    width: 96vw;
  }
}
#ouchigohan #about > .inner .container_about_upper {
  margin: 0 auto 80px;
  width: 1000px;
  position: relative;
}
@media screen and (max-width: 1440px) {
  #ouchigohan #about > .inner .container_about_upper {
    margin-bottom: 5.5555555556vw;
    width: 69.4444444444vw;
  }
}
@media screen and (max-width: 750px) {
  #ouchigohan #about > .inner .container_about_upper {
    margin-bottom: 12vw;
    width: 89.3333333333vw;
  }
}
#ouchigohan #about > .inner .container_about_upper > p {
  font-size: 20px;
  font-weight: bold;
  color: #F00001;
  line-height: 2.5;
}
@media screen and (max-width: 1440px) {
  #ouchigohan #about > .inner .container_about_upper > p {
    font-size: 1.3888888889vw;
  }
}
@media screen and (max-width: 750px) {
  #ouchigohan #about > .inner .container_about_upper > p {
    font-size: 14px;
    font-size: 3.5623409669vw;
    line-height: 2.1428571429;
  }
}
#ouchigohan #about > .inner .container_about_movie {
  margin: 0 auto 80px;
  width: 1000px;
  position: relative;
  overflow: hidden;
  border-radius: 30px;
}
@media screen and (max-width: 1440px) {
  #ouchigohan #about > .inner .container_about_movie {
    margin-bottom: 5.5555555556vw;
    width: 69.4444444444vw;
    border-radius: 2.0833333333vw;
  }
}
@media screen and (max-width: 750px) {
  #ouchigohan #about > .inner .container_about_movie {
    margin-bottom: 13.3333333333vw;
    width: 89.3333333333vw;
    border-radius: 5.3333333333vw;
  }
}
#ouchigohan #about > .inner .container_about_movie:before {
  content: "";
  display: block;
  width: 100%;
  padding-top: 56.2%;
}
#ouchigohan #about > .inner .container_about_movie iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#ouchigohan #about > .inner .container_about_profile {
  margin: 0 auto;
  padding: 50px;
  width: 1000px;
  min-height: 424px;
  display: flex;
  justify-content: space-between;
  position: relative;
  background-image: url("../images/bg_about_profile_pc.png");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 100% 100%;
}
@media screen and (max-width: 1440px) {
  #ouchigohan #about > .inner .container_about_profile {
    padding: 3.4722222222vw;
    width: 69.4444444444vw;
    min-height: 29.4444444444vw;
  }
}
@media screen and (max-width: 750px) {
  #ouchigohan #about > .inner .container_about_profile {
    width: 89.3333333333vw;
    background-image: url("../images/bg_about_profile_sp.png");
    min-height: 188.5333333333vw;
    padding: 8vw 5.3333333333vw;
    display: block;
    text-align: center;
  }
}
#ouchigohan #about > .inner .container_about_profile > .content_profile_img {
  width: 178px;
  padding-top: 35px;
}
@media screen and (max-width: 1440px) {
  #ouchigohan #about > .inner .container_about_profile > .content_profile_img {
    width: 12.3611111111vw;
    padding-top: 2.4305555556vw;
  }
}
@media screen and (max-width: 750px) {
  #ouchigohan #about > .inner .container_about_profile > .content_profile_img {
    margin: 0 auto 8vw;
    padding-top: 0;
    width: 37.3333333333vw;
  }
}
#ouchigohan #about > .inner .container_about_profile .content_profile_desc {
  width: 685px;
  text-align: left;
}
@media screen and (max-width: 1440px) {
  #ouchigohan #about > .inner .container_about_profile .content_profile_desc {
    width: 47.5694444444vw;
  }
}
@media screen and (max-width: 750px) {
  #ouchigohan #about > .inner .container_about_profile .content_profile_desc {
    width: 100%;
    text-align: center;
  }
}
#ouchigohan #about > .inner .container_about_profile .content_profile_desc > .ttl_section_h3 {
  margin-bottom: 25px;
}
@media screen and (max-width: 1440px) {
  #ouchigohan #about > .inner .container_about_profile .content_profile_desc > .ttl_section_h3 {
    margin-bottom: 1.7361111111vw;
  }
}
@media screen and (max-width: 750px) {
  #ouchigohan #about > .inner .container_about_profile .content_profile_desc > .ttl_section_h3 {
    margin-bottom: 6.1333333333vw;
  }
}
#ouchigohan #about > .inner .container_about_profile .content_profile_desc > .ttl_section_h3 img {
  width: 331px;
}
@media screen and (max-width: 1440px) {
  #ouchigohan #about > .inner .container_about_profile .content_profile_desc > .ttl_section_h3 img {
    width: 22.9861111111vw;
  }
}
@media screen and (max-width: 750px) {
  #ouchigohan #about > .inner .container_about_profile .content_profile_desc > .ttl_section_h3 img {
    width: 64vw;
  }
}
#ouchigohan #about > .inner .container_about_profile .content_profile_desc > p {
  font-size: 15px;
  font-weight: 500;
  line-height: 2;
  margin-bottom: 40px;
}
@media screen and (max-width: 1440px) {
  #ouchigohan #about > .inner .container_about_profile .content_profile_desc > p {
    font-size: 1.0416666667vw;
    margin-bottom: 2.7777777778vw;
  }
}
@media screen and (max-width: 750px) {
  #ouchigohan #about > .inner .container_about_profile .content_profile_desc > p {
    font-size: 14px;
    font-size: 3.5623409669vw;
    text-align: left;
    line-height: 1.8571428571;
    margin-bottom: 8vw;
  }
}
#ouchigohan #about > .inner .container_about_profile .content_profile_desc ul.container_profile_sns {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0;
}
@media screen and (max-width: 1440px) {
  #ouchigohan #about > .inner .container_about_profile .content_profile_desc ul.container_profile_sns {
    font-size: 0.9722222222vw;
  }
}
@media screen and (max-width: 750px) {
  #ouchigohan #about > .inner .container_about_profile .content_profile_desc ul.container_profile_sns {
    display: block;
    font-size: 14px;
    font-size: 3.5623409669vw;
  }
}
#ouchigohan #about > .inner .container_about_profile .content_profile_desc ul.container_profile_sns > li {
  text-align: left;
}
@media screen and (max-width: 750px) {
  #ouchigohan #about > .inner .container_about_profile .content_profile_desc ul.container_profile_sns > li {
    margin-top: 5.3333333333vw;
  }
}
#ouchigohan #about > .inner .container_about_profile .content_profile_desc ul.container_profile_sns > li > p.ttl {
  width: 90px;
  height: 25px;
}
@media screen and (max-width: 1440px) {
  #ouchigohan #about > .inner .container_about_profile .content_profile_desc ul.container_profile_sns > li > p.ttl {
    width: 6.25vw;
    height: 1.7361111111vw;
  }
}
@media screen and (max-width: 750px) {
  #ouchigohan #about > .inner .container_about_profile .content_profile_desc ul.container_profile_sns > li > p.ttl {
    width: 22.6666666667vw;
    height: 6.6666666667vw;
  }
}
#ouchigohan #about > .inner .container_about_img {
  position: absolute;
}
#ouchigohan #about > .inner .container_about_img.no1 {
  width: 328px;
  top: -30px;
  left: -180px;
}
@media screen and (max-width: 1440px) {
  #ouchigohan #about > .inner .container_about_img.no1 {
    width: 22.7777777778vw;
    top: -2.0833333333vw;
    left: -12.5vw;
  }
}
@media screen and (max-width: 750px) {
  #ouchigohan #about > .inner .container_about_img.no1 {
    width: 23.7333333333vw;
    top: -5.3333333333vw;
    left: -6.4vw;
  }
}
#ouchigohan #about > .inner .container_about_img.no2 {
  width: 327px;
  top: 30px;
  right: -210px;
}
@media screen and (max-width: 1440px) {
  #ouchigohan #about > .inner .container_about_img.no2 {
    width: 22.7083333333vw;
    top: 2.0833333333vw;
    right: -14.5833333333vw;
  }
}
@media screen and (max-width: 750px) {
  #ouchigohan #about > .inner .container_about_img.no2 {
    width: 26.9333333333vw;
    top: auto;
    bottom: -12.8vw;
    right: -2.6666666667vw;
  }
}
#ouchigohan #about > .inner .container_about_img.no3 {
  width: 227px;
  top: -75px;
  left: -265px;
}
@media screen and (max-width: 1440px) {
  #ouchigohan #about > .inner .container_about_img.no3 {
    width: 15.7638888889vw;
    top: -5.2083333333vw;
    left: -18.4027777778vw;
  }
}
@media screen and (max-width: 750px) {
  #ouchigohan #about > .inner .container_about_img.no3 {
    width: 20.2666666667vw;
    top: 19.7333333333vw;
    left: -5.3333333333vw;
  }
}
#ouchigohan #about > .inner .container_about_img.no4 {
  width: 260px;
  bottom: -135px;
  right: -200px;
}
@media screen and (max-width: 1440px) {
  #ouchigohan #about > .inner .container_about_img.no4 {
    width: 18.0555555556vw;
    bottom: -9.375vw;
    right: -13.8888888889vw;
  }
}
@media screen and (max-width: 750px) {
  #ouchigohan #about > .inner .container_about_img.no4 {
    width: 24vw;
    bottom: -5.8666666667vw;
    right: -2.9333333333vw;
  }
}
#ouchigohan #recipe {
  margin: -90px auto 0;
  width: 100%;
  position: relative;
  z-index: 2;
  overflow: hidden;
  background-image: url("../images/bg_recipe_pc.png");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: auto 100%;
}
@media screen and (max-width: 1440px) {
  #ouchigohan #recipe {
    margin-top: -6.25vw;
  }
}
@media screen and (max-width: 750px) {
  #ouchigohan #recipe {
    margin-top: -14.6666666667vw;
  }
}
#ouchigohan #recipe > .inner {
  min-height: 1494px;
  padding: 160px 0 0;
}
@media screen and (max-width: 1440px) {
  #ouchigohan #recipe > .inner {
    min-height: 103.75vw;
    padding: 11.1111111111vw 0 0;
  }
}
@media screen and (max-width: 750px) {
  #ouchigohan #recipe > .inner {
    min-height: 233.8666666667vw;
    padding: 24vw 0 0;
  }
}
#ouchigohan #recipe > .inner > .ttl_section_h2 {
  margin: 0 auto 80px;
  width: 512px;
}
@media screen and (max-width: 1440px) {
  #ouchigohan #recipe > .inner > .ttl_section_h2 {
    margin-bottom: 5.5555555556vw;
    width: 35.5555555556vw;
  }
}
@media screen and (max-width: 750px) {
  #ouchigohan #recipe > .inner > .ttl_section_h2 {
    width: 72.8vw;
    margin-bottom: 17.0666666667vw;
  }
}
#ouchigohan #recipe > .inner > .container_recipe_slider_wrapper {
  position: relative;
}
#ouchigohan #recipe > .inner > .container_recipe_slider_wrapper .container_recipe_slider .swiper-slide {
  width: 540px; /* 内側要素に合わせて固定 */
}
@media screen and (max-width: 1440px) {
  #ouchigohan #recipe > .inner > .container_recipe_slider_wrapper .container_recipe_slider .swiper-slide {
    width: 37.5vw;
  }
}
@media screen and (max-width: 750px) {
  #ouchigohan #recipe > .inner > .container_recipe_slider_wrapper .container_recipe_slider .swiper-slide {
    width: 72vw;
  }
}
#ouchigohan #recipe > .inner > .container_recipe_slider_wrapper .container_recipe_slider .content_recipe_slide {
  width: 540px;
  margin: 0;
}
@media screen and (max-width: 1440px) {
  #ouchigohan #recipe > .inner > .container_recipe_slider_wrapper .container_recipe_slider .content_recipe_slide {
    width: 37.5vw;
  }
}
@media screen and (max-width: 750px) {
  #ouchigohan #recipe > .inner > .container_recipe_slider_wrapper .container_recipe_slider .content_recipe_slide {
    width: 72vw;
  }
}
#ouchigohan #recipe > .inner > .container_recipe_slider_wrapper .container_recipe_slider .content_recipe_slide > .content_recipe_slide_inner {
  margin: 0 auto;
  width: 480px;
  background-color: #fff;
  border-radius: 30px;
  padding: 20px 20px 30px;
}
@media screen and (max-width: 1440px) {
  #ouchigohan #recipe > .inner > .container_recipe_slider_wrapper .container_recipe_slider .content_recipe_slide > .content_recipe_slide_inner {
    width: 33.3333333333vw;
    border-radius: 2.0833333333vw;
    padding: 1.3888888889vw 1.3888888889vw 2.0833333333vw;
  }
}
@media screen and (max-width: 750px) {
  #ouchigohan #recipe > .inner > .container_recipe_slider_wrapper .container_recipe_slider .content_recipe_slide > .content_recipe_slide_inner {
    width: 66.6666666667vw;
    border-radius: 4vw;
    padding: 4vw 4vw 5.3333333333vw;
  }
}
#ouchigohan #recipe > .inner > .container_recipe_slider_wrapper .container_recipe_slider .content_recipe_slide > .content_recipe_slide_inner > .content_recipe_img {
  line-height: 0;
  margin-bottom: 25px;
}
@media screen and (max-width: 1440px) {
  #ouchigohan #recipe > .inner > .container_recipe_slider_wrapper .container_recipe_slider .content_recipe_slide > .content_recipe_slide_inner > .content_recipe_img {
    margin-bottom: 1.7361111111vw;
  }
}
@media screen and (max-width: 750px) {
  #ouchigohan #recipe > .inner > .container_recipe_slider_wrapper .container_recipe_slider .content_recipe_slide > .content_recipe_slide_inner > .content_recipe_img {
    margin-bottom: 5.3333333333vw;
  }
}
#ouchigohan #recipe > .inner > .container_recipe_slider_wrapper .container_recipe_slider .content_recipe_slide > .content_recipe_slide_inner > .content_recipe_title {
  line-height: 0;
  padding: 0 10px;
}
@media screen and (max-width: 1440px) {
  #ouchigohan #recipe > .inner > .container_recipe_slider_wrapper .container_recipe_slider .content_recipe_slide > .content_recipe_slide_inner > .content_recipe_title {
    padding: 0 0.6944444444vw;
  }
}
@media screen and (max-width: 750px) {
  #ouchigohan #recipe > .inner > .container_recipe_slider_wrapper .container_recipe_slider .content_recipe_slide > .content_recipe_slide_inner > .content_recipe_title {
    padding: 0;
  }
}
@media screen and (max-width: 750px) {
  #ouchigohan #recipe > .inner > .container_recipe_slider_wrapper .container_recipe_slider .content_recipe_slide > .content_recipe_slide_inner > .content_recipe_title img {
    max-width: calc(100% + 16vw);
    margin: 0 -8vw;
  }
}
#ouchigohan #recipe > .inner > .container_recipe_slider_wrapper .container_recipe_slider .content_recipe_slide > .content_recipe_slide_inner > .content_recipe_link {
  margin-top: 25px;
}
@media screen and (max-width: 1440px) {
  #ouchigohan #recipe > .inner > .container_recipe_slider_wrapper .container_recipe_slider .content_recipe_slide > .content_recipe_slide_inner > .content_recipe_link {
    margin-top: 1.7361111111vw;
  }
}
@media screen and (max-width: 750px) {
  #ouchigohan #recipe > .inner > .container_recipe_slider_wrapper .container_recipe_slider .content_recipe_slide > .content_recipe_slide_inner > .content_recipe_link {
    margin-top: 4vw;
  }
}
#ouchigohan #recipe > .inner > .container_recipe_slider_wrapper .container_recipe_slider .content_recipe_slide > .content_recipe_slide_inner > .content_recipe_link button.modal_button {
  border: none;
  outline: none;
  background: transparent;
  background-image: none;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  border-radius: 0;
  line-height: 0;
  border-radius: 31px;
  width: 300px;
  height: 60px;
  background-color: #FFCD00;
  box-shadow: 0px 4px 0px 0px #F00001;
  cursor: pointer;
}
@media screen and (max-width: 1440px) {
  #ouchigohan #recipe > .inner > .container_recipe_slider_wrapper .container_recipe_slider .content_recipe_slide > .content_recipe_slide_inner > .content_recipe_link button.modal_button {
    border-radius: 2.1527777778vw;
    width: 20.8333333333vw;
    height: 4.1666666667vw;
    box-shadow: 0px 0.2777777778vw 0px 0px #F00001;
  }
}
@media screen and (max-width: 750px) {
  #ouchigohan #recipe > .inner > .container_recipe_slider_wrapper .container_recipe_slider .content_recipe_slide > .content_recipe_slide_inner > .content_recipe_link button.modal_button {
    border-radius: 8.2666666667vw;
    width: 53.3333333333vw;
    height: 12vw;
    box-shadow: 0px 1.0666666667vw 0px 0px #F00001;
  }
}
#ouchigohan #recipe > .inner > .container_recipe_slider_wrapper .container_recipe_slider .content_recipe_slide > .content_recipe_slide_inner > .content_recipe_link button.modal_button img {
  width: 179px;
}
@media screen and (max-width: 1440px) {
  #ouchigohan #recipe > .inner > .container_recipe_slider_wrapper .container_recipe_slider .content_recipe_slide > .content_recipe_slide_inner > .content_recipe_link button.modal_button img {
    width: 12.4305555556vw;
  }
}
@media screen and (max-width: 750px) {
  #ouchigohan #recipe > .inner > .container_recipe_slider_wrapper .container_recipe_slider .content_recipe_slide > .content_recipe_slide_inner > .content_recipe_link button.modal_button img {
    width: 36.8vw;
  }
}
#ouchigohan #recipe > .inner > .container_recipe_slider_wrapper .container_recipe_slider .container_recipe_slider_navigation {
  margin: 55px auto 0;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 50px;
}
@media screen and (max-width: 1440px) {
  #ouchigohan #recipe > .inner > .container_recipe_slider_wrapper .container_recipe_slider .container_recipe_slider_navigation {
    margin-top: 3.8194444444vw;
    height: 4.1666666667vw;
    gap: 0 3.4722222222vw;
  }
}
@media screen and (max-width: 750px) {
  #ouchigohan #recipe > .inner > .container_recipe_slider_wrapper .container_recipe_slider .container_recipe_slider_navigation {
    margin-top: 8vw;
    height: 10.6666666667vw;
    gap: 0 5.3333333333vw;
  }
}
#ouchigohan #recipe > .inner > .container_recipe_slider_wrapper .container_recipe_slider .container_recipe_slider_navigation > .swiper-button-prev {
  position: static;
  width: 60px;
  height: 60px;
  margin-top: 0;
  background-image: url("../images/img_arrow_prev.png");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: contain;
}
@media screen and (max-width: 1440px) {
  #ouchigohan #recipe > .inner > .container_recipe_slider_wrapper .container_recipe_slider .container_recipe_slider_navigation > .swiper-button-prev {
    width: 4.1666666667vw;
    height: 4.1666666667vw;
  }
}
@media screen and (max-width: 750px) {
  #ouchigohan #recipe > .inner > .container_recipe_slider_wrapper .container_recipe_slider .container_recipe_slider_navigation > .swiper-button-prev {
    width: 10.6666666667vw;
    height: 10.6666666667vw;
  }
}
#ouchigohan #recipe > .inner > .container_recipe_slider_wrapper .container_recipe_slider .container_recipe_slider_navigation > .swiper-button-prev:after {
  content: none;
}
#ouchigohan #recipe > .inner > .container_recipe_slider_wrapper .container_recipe_slider .container_recipe_slider_navigation > .swiper-pagination {
  position: static;
  width: auto;
  display: flex;
  gap: 0 50px;
}
@media screen and (max-width: 1440px) {
  #ouchigohan #recipe > .inner > .container_recipe_slider_wrapper .container_recipe_slider .container_recipe_slider_navigation > .swiper-pagination {
    gap: 0 3.4722222222vw;
  }
}
@media screen and (max-width: 750px) {
  #ouchigohan #recipe > .inner > .container_recipe_slider_wrapper .container_recipe_slider .container_recipe_slider_navigation > .swiper-pagination {
    gap: 0 5.3333333333vw;
  }
}
#ouchigohan #recipe > .inner > .container_recipe_slider_wrapper .container_recipe_slider .container_recipe_slider_navigation > .swiper-pagination > .swiper-pagination-bullet {
  width: 20px;
  height: 20px;
  background-color: #fff;
  opacity: 1;
  margin: 0;
}
@media screen and (max-width: 1440px) {
  #ouchigohan #recipe > .inner > .container_recipe_slider_wrapper .container_recipe_slider .container_recipe_slider_navigation > .swiper-pagination > .swiper-pagination-bullet {
    width: 1.3888888889vw;
    height: 1.3888888889vw;
  }
}
@media screen and (max-width: 750px) {
  #ouchigohan #recipe > .inner > .container_recipe_slider_wrapper .container_recipe_slider .container_recipe_slider_navigation > .swiper-pagination > .swiper-pagination-bullet {
    width: 2.6666666667vw;
    height: 2.6666666667vw;
  }
}
#ouchigohan #recipe > .inner > .container_recipe_slider_wrapper .container_recipe_slider .container_recipe_slider_navigation > .swiper-pagination > .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #0047A5;
}
#ouchigohan #recipe > .inner > .container_recipe_slider_wrapper .container_recipe_slider .container_recipe_slider_navigation > .swiper-button-next {
  position: static;
  width: 60px;
  height: 60px;
  margin-top: 0;
  background-image: url("../images/img_arrow_next.png");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: contain;
}
@media screen and (max-width: 1440px) {
  #ouchigohan #recipe > .inner > .container_recipe_slider_wrapper .container_recipe_slider .container_recipe_slider_navigation > .swiper-button-next {
    width: 4.1666666667vw;
    height: 4.1666666667vw;
  }
}
@media screen and (max-width: 750px) {
  #ouchigohan #recipe > .inner > .container_recipe_slider_wrapper .container_recipe_slider .container_recipe_slider_navigation > .swiper-button-next {
    width: 10.6666666667vw;
    height: 10.6666666667vw;
  }
}
#ouchigohan #recipe > .inner > .container_recipe_slider_wrapper .container_recipe_slider .container_recipe_slider_navigation > .swiper-button-next:after {
  content: none;
}
#ouchigohan #recipe > .inner > .container_recipe_slider_wrapper .container_recipe_img {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
  width: 1000px;
}
@media screen and (max-width: 1440px) {
  #ouchigohan #recipe > .inner > .container_recipe_slider_wrapper .container_recipe_img {
    width: 69.4444444444vw;
  }
}
@media screen and (max-width: 750px) {
  #ouchigohan #recipe > .inner > .container_recipe_slider_wrapper .container_recipe_img {
    width: 24vw;
    z-index: 1;
  }
}
#ouchigohan #recipe > .inner > .container_recipe_slider_wrapper .container_recipe_img > .container_recipe_img_inner {
  width: 100%;
  position: relative;
}
#ouchigohan #recipe > .inner > .container_recipe_slider_wrapper .container_recipe_img > .container_recipe_img_inner img {
  width: 262px;
  position: absolute;
  bottom: 80px;
  right: -85px;
}
@media screen and (max-width: 1440px) {
  #ouchigohan #recipe > .inner > .container_recipe_slider_wrapper .container_recipe_img > .container_recipe_img_inner img {
    width: 18.1944444444vw;
    bottom: 5.5555555556vw;
    right: -5.9027777778vw;
  }
}
@media screen and (max-width: 750px) {
  #ouchigohan #recipe > .inner > .container_recipe_slider_wrapper .container_recipe_img > .container_recipe_img_inner img {
    width: 100%;
    bottom: -0.8vw;
    right: -2.6666666667vw;
  }
}
#ouchigohan #secret {
  margin: -90px auto 0;
  width: 100%;
  min-height: 1523px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  background-image: url("../images/bg_secret_pc.png");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 100% 100%;
}
@media screen and (max-width: 1440px) {
  #ouchigohan #secret {
    margin-top: -6.25vw;
    min-height: 105.7638888889vw;
  }
}
@media screen and (max-width: 750px) {
  #ouchigohan #secret {
    margin-top: -8.8vw;
    min-height: 421.3333333333vw;
    background-image: url("../images/bg_secret_sp.png");
  }
}
#ouchigohan #secret > .inner {
  margin: 0 auto;
  width: 1440px;
  position: relative;
  padding: 160px 0 0;
}
@media screen and (max-width: 1440px) {
  #ouchigohan #secret > .inner {
    width: 100%;
    padding: 11.1111111111vw 0 0;
  }
}
@media screen and (max-width: 750px) {
  #ouchigohan #secret > .inner {
    width: 89.3333333333vw;
    padding: 24vw 0 0;
  }
}
#ouchigohan #secret > .inner > .ttl_section_h2 {
  margin: 0 auto 35px;
  width: 504px;
}
@media screen and (max-width: 1440px) {
  #ouchigohan #secret > .inner > .ttl_section_h2 {
    margin-bottom: 2.4305555556vw;
    width: 35vw;
  }
}
@media screen and (max-width: 750px) {
  #ouchigohan #secret > .inner > .ttl_section_h2 {
    width: 80.8vw;
    margin-bottom: 4vw;
  }
}
#ouchigohan #secret > .inner > .ttl_section_h2 img {
  max-width: 100%;
  height: auto;
}
#ouchigohan #secret > .inner > .container_secret_inner {
  margin: 0 auto;
  width: 1000px;
}
@media screen and (max-width: 1440px) {
  #ouchigohan #secret > .inner > .container_secret_inner {
    width: 69.4444444444vw;
  }
}
@media screen and (max-width: 750px) {
  #ouchigohan #secret > .inner > .container_secret_inner {
    width: 100%;
  }
}
#ouchigohan #secret > .inner > .container_secret_inner > .content_secret_faq {
  padding: 45px 0;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 1440px) {
  #ouchigohan #secret > .inner > .container_secret_inner > .content_secret_faq {
    padding: 3.125vw 0;
  }
}
@media screen and (max-width: 750px) {
  #ouchigohan #secret > .inner > .container_secret_inner > .content_secret_faq {
    display: block;
    padding: 6.6666666667vw 0;
  }
}
#ouchigohan #secret > .inner > .container_secret_inner > .content_secret_faq > .content_secret_image {
  width: 460px;
}
@media screen and (max-width: 1440px) {
  #ouchigohan #secret > .inner > .container_secret_inner > .content_secret_faq > .content_secret_image {
    width: 31.9444444444vw;
  }
}
@media screen and (max-width: 750px) {
  #ouchigohan #secret > .inner > .container_secret_inner > .content_secret_faq > .content_secret_image {
    width: 100%;
    margin-bottom: 8vw;
  }
}
#ouchigohan #secret > .inner > .container_secret_inner > .content_secret_faq > .content_secret_desc {
  width: 500px;
  text-align: left;
}
@media screen and (max-width: 1440px) {
  #ouchigohan #secret > .inner > .container_secret_inner > .content_secret_faq > .content_secret_desc {
    width: 34.7222222222vw;
  }
}
@media screen and (max-width: 750px) {
  #ouchigohan #secret > .inner > .container_secret_inner > .content_secret_faq > .content_secret_desc {
    width: 100%;
  }
}
#ouchigohan #secret > .inner > .container_secret_inner > .content_secret_faq > .content_secret_desc > .content_secret_question {
  margin-bottom: 40px;
  padding-left: 65px;
  position: relative;
}
@media screen and (max-width: 1440px) {
  #ouchigohan #secret > .inner > .container_secret_inner > .content_secret_faq > .content_secret_desc > .content_secret_question {
    margin-bottom: 2.7777777778vw;
    padding-left: 4.5138888889vw;
  }
}
@media screen and (max-width: 750px) {
  #ouchigohan #secret > .inner > .container_secret_inner > .content_secret_faq > .content_secret_desc > .content_secret_question {
    margin-bottom: 6.6666666667vw;
    padding-left: 13.3333333333vw;
  }
}
#ouchigohan #secret > .inner > .container_secret_inner > .content_secret_faq > .content_secret_desc > .content_secret_question:before {
  content: "";
  display: block;
  width: 54px;
  height: 54px;
  position: absolute;
  top: -0.75em;
  left: 0;
  background-image: url("../images/icon_question.png");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: contain;
}
@media screen and (max-width: 1440px) {
  #ouchigohan #secret > .inner > .container_secret_inner > .content_secret_faq > .content_secret_desc > .content_secret_question:before {
    width: 3.75vw;
    height: 3.75vw;
  }
}
@media screen and (max-width: 750px) {
  #ouchigohan #secret > .inner > .container_secret_inner > .content_secret_faq > .content_secret_desc > .content_secret_question:before {
    top: -0.5em;
    width: 10.4vw;
    height: 10.4vw;
  }
}
@media screen and (max-width: 1440px) {
  #ouchigohan #secret > .inner > .container_secret_inner > .content_secret_faq > .content_secret_desc > .content_secret_question img {
    width: 21.9444444444vw;
  }
}
@media screen and (max-width: 750px) {
  #ouchigohan #secret > .inner > .container_secret_inner > .content_secret_faq > .content_secret_desc > .content_secret_question img {
    width: 100%;
  }
}
#ouchigohan #secret > .inner > .container_secret_inner > .content_secret_faq > .content_secret_desc > .content_secret_answer {
  padding-left: 65px;
  font-size: 16px;
  font-weight: 500;
  font-family: "Zen Maru Gothic", "Zen Kaku Gothic New", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "メイリオ", "Meiryo", "Helvetica Neue", Arial, sans-serif;
  line-height: 1.875;
  position: relative;
}
@media screen and (max-width: 1440px) {
  #ouchigohan #secret > .inner > .container_secret_inner > .content_secret_faq > .content_secret_desc > .content_secret_answer {
    padding-left: 4.5138888889vw;
    font-size: 1.1111111111vw;
  }
}
@media screen and (max-width: 750px) {
  #ouchigohan #secret > .inner > .container_secret_inner > .content_secret_faq > .content_secret_desc > .content_secret_answer {
    font-size: 14px;
    font-size: 3.5623409669vw;
    line-height: 1.7142857143;
    padding-left: 13.3333333333vw;
  }
}
#ouchigohan #secret > .inner > .container_secret_inner > .content_secret_faq > .content_secret_desc > .content_secret_answer:before {
  content: "";
  display: block;
  width: 54px;
  height: 54px;
  position: absolute;
  top: -0.75em;
  left: 0;
  background-image: url("../images/icon_answer.png");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: contain;
}
@media screen and (max-width: 1440px) {
  #ouchigohan #secret > .inner > .container_secret_inner > .content_secret_faq > .content_secret_desc > .content_secret_answer:before {
    width: 3.75vw;
    height: 3.75vw;
  }
}
@media screen and (max-width: 750px) {
  #ouchigohan #secret > .inner > .container_secret_inner > .content_secret_faq > .content_secret_desc > .content_secret_answer:before {
    top: -0.5em;
    width: 10.4vw;
    height: 10.4vw;
  }
}
#ouchigohan #secret > .inner > .container_secret_inner > .content_secret_faq:nth-of-type(2n) {
  flex-direction: row-reverse;
}
@media screen and (max-width: 1440px) {
  #ouchigohan #secret > .inner > .container_secret_inner > .content_secret_faq:nth-of-type(2n) > .content_secret_desc img {
    width: 23.8888888889vw;
  }
}
@media screen and (max-width: 750px) {
  #ouchigohan #secret > .inner > .container_secret_inner > .content_secret_faq:nth-of-type(2n) > .content_secret_desc img {
    width: 100%;
  }
}
#ouchigohan #secret .container_bg_image {
  position: absolute;
  width: 184px;
}
@media screen and (max-width: 1440px) {
  #ouchigohan #secret .container_bg_image {
    width: 12.7777777778vw;
  }
}
@media screen and (max-width: 750px) {
  #ouchigohan #secret .container_bg_image {
    display: none;
  }
}
#ouchigohan #secret .container_bg_image.no1 {
  transform: rotate(-52deg);
  top: 172px;
  left: -62px;
}
@media screen and (max-width: 1440px) {
  #ouchigohan #secret .container_bg_image.no1 {
    top: 11.9444444444vw;
    left: -4.3055555556vw;
  }
}
#ouchigohan #secret .container_bg_image.no2 {
  transform: rotate(-7deg);
  top: 622px;
  left: -62px;
}
@media screen and (max-width: 1440px) {
  #ouchigohan #secret .container_bg_image.no2 {
    top: 43.1944444444vw;
    left: -4.3055555556vw;
  }
}
#ouchigohan #secret .container_bg_image.no3 {
  transform: rotate(33deg);
  top: 1054px;
  left: -29px;
}
@media screen and (max-width: 1440px) {
  #ouchigohan #secret .container_bg_image.no3 {
    top: 73.1944444444vw;
    left: -2.0138888889vw;
  }
}
#ouchigohan #secret .container_bg_image.no4 {
  transform: rotate(10deg);
  top: 223px;
  right: -73px;
}
@media screen and (max-width: 1440px) {
  #ouchigohan #secret .container_bg_image.no4 {
    top: 15.4861111111vw;
    right: -5.0694444444vw;
  }
}
#ouchigohan #secret .container_bg_image.no5 {
  transform: rotate(75deg);
  top: 645px;
  right: -38px;
}
@media screen and (max-width: 1440px) {
  #ouchigohan #secret .container_bg_image.no5 {
    top: 44.7916666667vw;
    right: -2.6388888889vw;
  }
}
#ouchigohan #secret .container_bg_image.no6 {
  transform: rotate(-223deg);
  top: 1057px;
  right: -106px;
}
@media screen and (max-width: 1440px) {
  #ouchigohan #secret .container_bg_image.no6 {
    top: 73.4027777778vw;
    right: -7.3611111111vw;
  }
}
#ouchigohan #campaign {
  margin: -100px auto 0;
  width: 100%;
  background-color: #FFECBC;
  min-height: 1867px;
  background-image: url("../images/bg_campaign.png");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
}
@media screen and (max-width: 1440px) {
  #ouchigohan #campaign {
    margin-top: -6.9444444444vw;
    min-height: 129.6527777778vw;
  }
}
@media screen and (max-width: 750px) {
  #ouchigohan #campaign {
    margin-top: -26.6666666667vw;
  }
}
#ouchigohan #campaign > .inner {
  margin: 0 auto;
  width: 1000px;
  padding: 160px 0 120px;
}
@media screen and (max-width: 1440px) {
  #ouchigohan #campaign > .inner {
    width: 69.4444444444vw;
    padding: 11.1111111111vw 0 8.3333333333vw;
  }
}
@media screen and (max-width: 750px) {
  #ouchigohan #campaign > .inner {
    width: 89.3333333333vw;
    padding: 24vw 0 24vw;
  }
}
#ouchigohan #campaign > .inner > .container_campaign_title {
  position: relative;
  margin-bottom: 54px;
}
@media screen and (max-width: 1440px) {
  #ouchigohan #campaign > .inner > .container_campaign_title {
    margin-bottom: 3.75vw;
  }
}
@media screen and (max-width: 750px) {
  #ouchigohan #campaign > .inner > .container_campaign_title {
    margin-bottom: 2.9333333333vw;
  }
}
#ouchigohan #campaign > .inner > .container_campaign_title > .ttl_section_h2 {
  margin: 0 auto;
  width: 547px;
}
@media screen and (max-width: 1440px) {
  #ouchigohan #campaign > .inner > .container_campaign_title > .ttl_section_h2 {
    width: 37.9861111111vw;
  }
}
@media screen and (max-width: 750px) {
  #ouchigohan #campaign > .inner > .container_campaign_title > .ttl_section_h2 {
    width: 66.4vw;
    padding-bottom: 10.6666666667vw;
  }
}
#ouchigohan #campaign > .inner > .container_campaign_title > .ttl_campaign_img {
  position: absolute;
  line-height: 0;
}
#ouchigohan #campaign > .inner > .container_campaign_title > .ttl_campaign_img.no1 {
  width: 218px;
  bottom: 23px;
  left: -5px;
}
@media screen and (max-width: 1440px) {
  #ouchigohan #campaign > .inner > .container_campaign_title > .ttl_campaign_img.no1 {
    width: 15.1388888889vw;
    bottom: 1.5972222222vw;
    left: -0.3472222222vw;
  }
}
@media screen and (max-width: 750px) {
  #ouchigohan #campaign > .inner > .container_campaign_title > .ttl_campaign_img.no1 {
    width: 22.4vw;
    left: -5.3333333333vw;
    bottom: 0;
  }
}
#ouchigohan #campaign > .inner > .container_campaign_title > .ttl_campaign_img.no2 {
  width: 214px;
  bottom: 23px;
  right: 0;
}
@media screen and (max-width: 1440px) {
  #ouchigohan #campaign > .inner > .container_campaign_title > .ttl_campaign_img.no2 {
    width: 14.8611111111vw;
    bottom: 1.5972222222vw;
    right: -0.3472222222vw;
  }
}
@media screen and (max-width: 750px) {
  #ouchigohan #campaign > .inner > .container_campaign_title > .ttl_campaign_img.no2 {
    width: 20.8vw;
    right: -5.3333333333vw;
    bottom: 0;
  }
}
#ouchigohan #campaign > .inner > p {
  text-align: center;
  margin-bottom: 100px;
}
@media screen and (max-width: 1440px) {
  #ouchigohan #campaign > .inner > p {
    margin-bottom: 6.9444444444vw;
  }
}
@media screen and (max-width: 750px) {
  #ouchigohan #campaign > .inner > p {
    margin-bottom: 18.6666666667vw;
  }
}
#ouchigohan #campaign > .inner > p img {
  width: 677px;
}
@media screen and (max-width: 1440px) {
  #ouchigohan #campaign > .inner > p img {
    width: 47.0138888889vw;
  }
}
@media screen and (max-width: 750px) {
  #ouchigohan #campaign > .inner > p img {
    width: 100%;
  }
}
#ouchigohan #campaign > .inner > .container_campaign_details {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 80px;
}
@media screen and (max-width: 1440px) {
  #ouchigohan #campaign > .inner > .container_campaign_details {
    margin-bottom: 5.5555555556vw;
  }
}
@media screen and (max-width: 750px) {
  #ouchigohan #campaign > .inner > .container_campaign_details {
    display: block;
    margin-bottom: 16vw;
  }
}
#ouchigohan #campaign > .inner > .container_campaign_details > .content_campaign_detail {
  background-color: #fff;
  border-radius: 30px;
  padding: 70px 30px 40px;
  width: 480px;
  position: relative;
}
@media screen and (max-width: 1440px) {
  #ouchigohan #campaign > .inner > .container_campaign_details > .content_campaign_detail {
    width: 33.3333333333vw;
    border-radius: 2.0833333333vw;
    padding: 4.8611111111vw 2.0833333333vw 2.7777777778vw;
  }
}
@media screen and (max-width: 750px) {
  #ouchigohan #campaign > .inner > .container_campaign_details > .content_campaign_detail {
    width: 100%;
    border-radius: 8vw;
    padding: 15.4666666667vw 5.3333333333vw 8vw;
  }
}
#ouchigohan #campaign > .inner > .container_campaign_details > .content_campaign_detail > p.ttl {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
}
#ouchigohan #campaign > .inner > .container_campaign_details > .content_campaign_detail > .content_campaign_items > .content_campaign_item {
  margin-bottom: 40px;
  position: relative;
  padding: 0 0 0 30px;
  text-align: left;
}
@media screen and (max-width: 1440px) {
  #ouchigohan #campaign > .inner > .container_campaign_details > .content_campaign_detail > .content_campaign_items > .content_campaign_item {
    margin-bottom: 2.7777777778vw;
    padding-left: 2.0833333333vw;
  }
}
@media screen and (max-width: 750px) {
  #ouchigohan #campaign > .inner > .container_campaign_details > .content_campaign_detail > .content_campaign_items > .content_campaign_item {
    margin-bottom: 8vw;
    padding-left: 5.3333333333vw;
  }
}
#ouchigohan #campaign > .inner > .container_campaign_details > .content_campaign_detail > .content_campaign_items > .content_campaign_item:before {
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  position: absolute;
  top: 0.3em;
  left: 0;
  background-image: url("../images/icon_circle.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}
@media screen and (max-width: 1440px) {
  #ouchigohan #campaign > .inner > .container_campaign_details > .content_campaign_detail > .content_campaign_items > .content_campaign_item:before {
    width: 0.9722222222vw;
    height: 0.9722222222vw;
  }
}
@media screen and (max-width: 750px) {
  #ouchigohan #campaign > .inner > .container_campaign_details > .content_campaign_detail > .content_campaign_items > .content_campaign_item:before {
    width: 3.2vw;
    height: 3.2vw;
  }
}
#ouchigohan #campaign > .inner > .container_campaign_details > .content_campaign_detail > .content_campaign_items > .content_campaign_item > p {
  font-size: 13px;
  line-height: 1.6923076923;
}
@media screen and (max-width: 1440px) {
  #ouchigohan #campaign > .inner > .container_campaign_details > .content_campaign_detail > .content_campaign_items > .content_campaign_item > p {
    font-size: 0.9027777778vw;
  }
}
@media screen and (max-width: 750px) {
  #ouchigohan #campaign > .inner > .container_campaign_details > .content_campaign_detail > .content_campaign_items > .content_campaign_item > p {
    font-size: 12px;
    font-size: 3.0534351145vw;
    line-height: 1.6666666667;
  }
}
#ouchigohan #campaign > .inner > .container_campaign_details > .content_campaign_detail > .content_campaign_items > .content_campaign_item > p.ttl {
  margin-bottom: 0.5em;
}
#ouchigohan #campaign > .inner > .container_campaign_details > .content_campaign_detail > .content_campaign_items > .content_campaign_item .content_campaign_item_img {
  position: absolute;
}
@media screen and (max-width: 750px) {
  #ouchigohan #campaign > .inner > .container_campaign_details > .content_campaign_detail.no1 {
    margin-bottom: 22.6666666667vw;
  }
}
#ouchigohan #campaign > .inner > .container_campaign_details > .content_campaign_detail.no1 > p.ttl {
  width: 181px;
}
@media screen and (max-width: 1440px) {
  #ouchigohan #campaign > .inner > .container_campaign_details > .content_campaign_detail.no1 > p.ttl {
    width: 12.5694444444vw;
  }
}
@media screen and (max-width: 750px) {
  #ouchigohan #campaign > .inner > .container_campaign_details > .content_campaign_detail.no1 > p.ttl {
    width: 33.3333333333vw;
  }
}
#ouchigohan #campaign > .inner > .container_campaign_details > .content_campaign_detail.no1 > .content_campaign_items > .content_campaign_item .content_campaign_item_img {
  top: 0;
  right: 0;
  width: 111px;
}
@media screen and (max-width: 1440px) {
  #ouchigohan #campaign > .inner > .container_campaign_details > .content_campaign_detail.no1 > .content_campaign_items > .content_campaign_item .content_campaign_item_img {
    width: 7.7083333333vw;
  }
}
@media screen and (max-width: 750px) {
  #ouchigohan #campaign > .inner > .container_campaign_details > .content_campaign_detail.no1 > .content_campaign_items > .content_campaign_item .content_campaign_item_img {
    width: 18.9333333333vw;
  }
}
#ouchigohan #campaign > .inner > .container_campaign_details > .content_campaign_detail.no1 > .content_campaign_items_winners {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#ouchigohan #campaign > .inner > .container_campaign_details > .content_campaign_detail.no1 > .content_campaign_items_winners > .content_campaign_winners_number {
  width: 144px;
}
@media screen and (max-width: 1440px) {
  #ouchigohan #campaign > .inner > .container_campaign_details > .content_campaign_detail.no1 > .content_campaign_items_winners > .content_campaign_winners_number {
    width: 10vw;
  }
}
@media screen and (max-width: 750px) {
  #ouchigohan #campaign > .inner > .container_campaign_details > .content_campaign_detail.no1 > .content_campaign_items_winners > .content_campaign_winners_number {
    width: 32vw;
  }
}
#ouchigohan #campaign > .inner > .container_campaign_details > .content_campaign_detail.no1 > .content_campaign_items_winners > .content_campaign_baloon {
  width: 258px;
  height: 102px;
  background-image: url("../images/img_baloon.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  display: flex;
  align-items: center;
  text-align: left;
  padding: 0 16px 0 32px;
}
@media screen and (max-width: 1440px) {
  #ouchigohan #campaign > .inner > .container_campaign_details > .content_campaign_detail.no1 > .content_campaign_items_winners > .content_campaign_baloon {
    width: 17.9166666667vw;
    height: 7.0833333333vw;
    padding: 0 1.1111111111vw 0 2.2222222222vw;
  }
}
@media screen and (max-width: 750px) {
  #ouchigohan #campaign > .inner > .container_campaign_details > .content_campaign_detail.no1 > .content_campaign_items_winners > .content_campaign_baloon {
    width: 45.3333333333vw;
    height: 23.2vw;
    padding: 0 2.6666666667vw 0 6.4vw;
    background-size: 100% 100%;
  }
}
#ouchigohan #campaign > .inner > .container_campaign_details > .content_campaign_detail.no1 > .content_campaign_items_winners > .content_campaign_baloon > p {
  font-size: 16px;
  line-height: 1.5;
}
@media screen and (max-width: 1440px) {
  #ouchigohan #campaign > .inner > .container_campaign_details > .content_campaign_detail.no1 > .content_campaign_items_winners > .content_campaign_baloon > p {
    font-size: 1.1111111111vw;
  }
}
@media screen and (max-width: 750px) {
  #ouchigohan #campaign > .inner > .container_campaign_details > .content_campaign_detail.no1 > .content_campaign_items_winners > .content_campaign_baloon > p {
    font-size: 12px;
    font-size: 3.0534351145vw;
    line-height: 1.8461538462;
    letter-spacing: -0.08em;
  }
}
#ouchigohan #campaign > .inner > .container_campaign_details > .content_campaign_detail.no2 > p.ttl {
  width: 340px;
}
@media screen and (max-width: 1440px) {
  #ouchigohan #campaign > .inner > .container_campaign_details > .content_campaign_detail.no2 > p.ttl {
    width: 23.6111111111vw;
  }
}
@media screen and (max-width: 750px) {
  #ouchigohan #campaign > .inner > .container_campaign_details > .content_campaign_detail.no2 > p.ttl {
    width: 63.2vw;
  }
}
#ouchigohan #campaign > .inner > .container_campaign_details > .content_campaign_detail.no2 > .content_campaign_items_winners img {
  width: 142px;
}
@media screen and (max-width: 1440px) {
  #ouchigohan #campaign > .inner > .container_campaign_details > .content_campaign_detail.no2 > .content_campaign_items_winners img {
    width: 9.8611111111vw;
  }
}
@media screen and (max-width: 750px) {
  #ouchigohan #campaign > .inner > .container_campaign_details > .content_campaign_detail.no2 > .content_campaign_items_winners img {
    width: 32vw;
  }
}
#ouchigohan #campaign > .inner > .container_campaign_desc {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 750px) {
  #ouchigohan #campaign > .inner > .container_campaign_desc {
    display: block;
  }
}
#ouchigohan #campaign > .inner > .container_campaign_desc > .content_campaign_desc_01 {
  width: 480px;
  text-align: left;
}
@media screen and (max-width: 1440px) {
  #ouchigohan #campaign > .inner > .container_campaign_desc > .content_campaign_desc_01 {
    width: 33.3333333333vw;
  }
}
@media screen and (max-width: 750px) {
  #ouchigohan #campaign > .inner > .container_campaign_desc > .content_campaign_desc_01 {
    width: 100%;
    margin-bottom: 16vw;
  }
}
#ouchigohan #campaign > .inner > .container_campaign_desc > .content_campaign_desc_01 > p.ttl {
  margin-bottom: 35px;
}
@media screen and (max-width: 1440px) {
  #ouchigohan #campaign > .inner > .container_campaign_desc > .content_campaign_desc_01 > p.ttl {
    margin-bottom: 2.4305555556vw;
  }
}
#ouchigohan #campaign > .inner > .container_campaign_desc > .content_campaign_desc_01 > ul.content_campaign_conditions > li {
  padding: 10px 0 10px 30px;
  font-size: 16px;
  position: relative;
}
@media screen and (max-width: 1440px) {
  #ouchigohan #campaign > .inner > .container_campaign_desc > .content_campaign_desc_01 > ul.content_campaign_conditions > li {
    padding: 0.6944444444vw 0 0.6944444444vw 2.0833333333vw;
    font-size: 1.1111111111vw;
  }
}
@media screen and (max-width: 750px) {
  #ouchigohan #campaign > .inner > .container_campaign_desc > .content_campaign_desc_01 > ul.content_campaign_conditions > li {
    font-size: 14px;
    font-size: 3.5623409669vw;
    line-height: 2.1428571429;
    padding: 0.5333333333vw 0 0.5333333333vw 4.8vw;
  }
}
#ouchigohan #campaign > .inner > .container_campaign_desc > .content_campaign_desc_01 > ul.content_campaign_conditions > li:before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  position: absolute;
  top: 1em;
  left: 0;
  background-image: url("../images/icon_circle.svg");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: contain;
}
@media screen and (max-width: 1440px) {
  #ouchigohan #campaign > .inner > .container_campaign_desc > .content_campaign_desc_01 > ul.content_campaign_conditions > li:before {
    width: 0.6944444444vw;
    height: 0.6944444444vw;
  }
}
@media screen and (max-width: 750px) {
  #ouchigohan #campaign > .inner > .container_campaign_desc > .content_campaign_desc_01 > ul.content_campaign_conditions > li:before {
    width: 2.1333333333vw;
    height: 2.1333333333vw;
  }
}
#ouchigohan #campaign > .inner > .container_campaign_desc > .content_campaign_desc_01 > ul.content_campaign_attend {
  margin-top: 20px;
  font-size: 14px;
}
@media screen and (max-width: 1440px) {
  #ouchigohan #campaign > .inner > .container_campaign_desc > .content_campaign_desc_01 > ul.content_campaign_attend {
    margin-top: 1.3888888889vw;
    font-size: 0.9722222222vw;
  }
}
@media screen and (max-width: 750px) {
  #ouchigohan #campaign > .inner > .container_campaign_desc > .content_campaign_desc_01 > ul.content_campaign_attend {
    font-size: 12px;
    font-size: 3.0534351145vw;
  }
}
#ouchigohan #campaign > .inner > .container_campaign_desc > .content_campaign_desc_01 > ul.content_campaign_attend > li {
  line-height: 1.7142857143;
  margin-left: 1em;
  text-indent: -1em;
}
@media screen and (max-width: 750px) {
  #ouchigohan #campaign > .inner > .container_campaign_desc > .content_campaign_desc_01 > ul.content_campaign_attend > li {
    line-height: 1.8333333333;
  }
}
#ouchigohan #campaign > .inner > .container_campaign_desc > .content_campaign_desc_02 {
  width: 480px;
  text-align: left;
}
@media screen and (max-width: 1440px) {
  #ouchigohan #campaign > .inner > .container_campaign_desc > .content_campaign_desc_02 {
    width: 33.3333333333vw;
  }
}
@media screen and (max-width: 750px) {
  #ouchigohan #campaign > .inner > .container_campaign_desc > .content_campaign_desc_02 {
    width: 100%;
  }
}
#ouchigohan #campaign > .inner > .container_campaign_desc > .content_campaign_desc_02 > p.ttl {
  margin-bottom: 35px;
}
@media screen and (max-width: 1440px) {
  #ouchigohan #campaign > .inner > .container_campaign_desc > .content_campaign_desc_02 > p.ttl {
    margin-bottom: 2.4305555556vw;
  }
}
#ouchigohan #campaign > .inner > .container_campaign_desc > .content_campaign_desc_02 > ul.content_campaign_conditions > li {
  font-size: 16px;
  font-weight: 500;
  text-align: left;
  position: relative;
  line-height: 1.875;
  padding: 15px 0 15px 40px;
}
@media screen and (max-width: 1440px) {
  #ouchigohan #campaign > .inner > .container_campaign_desc > .content_campaign_desc_02 > ul.content_campaign_conditions > li {
    font-size: 1.1111111111vw;
    padding: 1.0416666667vw 0 1.0416666667vw 2.7777777778vw;
  }
}
@media screen and (max-width: 750px) {
  #ouchigohan #campaign > .inner > .container_campaign_desc > .content_campaign_desc_02 > ul.content_campaign_conditions > li {
    font-size: 14px;
    font-size: 3.5623409669vw;
    line-height: 2.1428571429;
    padding: 1.8666666667vw 0 1.8666666667vw 8.5333333333vw;
  }
}
#ouchigohan #campaign > .inner > .container_campaign_desc > .content_campaign_desc_02 > ul.content_campaign_conditions > li img {
  position: absolute;
  top: 0.9em;
  left: 0;
  width: 30px;
  height: 30px;
}
@media screen and (max-width: 1440px) {
  #ouchigohan #campaign > .inner > .container_campaign_desc > .content_campaign_desc_02 > ul.content_campaign_conditions > li img {
    width: 2.0833333333vw;
    height: 2.0833333333vw;
  }
}
@media screen and (max-width: 750px) {
  #ouchigohan #campaign > .inner > .container_campaign_desc > .content_campaign_desc_02 > ul.content_campaign_conditions > li img {
    top: 0.7em;
    width: 6.4vw;
    height: 6.4vw;
  }
}
#ouchigohan #campaign > .inner > .container_campaign_desc > .content_campaign_desc_02 > ul.content_campaign_conditions > li a {
  text-decoration: underline;
}

@media screen and (max-width: 750px) {
  #main {
    overflow: hidden;
  }
}

.container_modal_wrapper {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  height: 100%;
  font-family: "Zen Kaku Gothic New", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "メイリオ", "Meiryo", "Helvetica Neue", Arial, sans-serif;
  font-weight: 500;
}
.container_modal_wrapper * {
  box-sizing: border-box;
}
.container_modal_wrapper > .container_modal_bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
.container_modal_wrapper > .container_modal_content {
  margin: 0 auto;
  position: relative;
  width: 1000px;
  padding: 60px 70px;
  background-color: #fff;
  border-radius: 30px;
}
.container_modal_wrapper > .container_modal_content img {
  max-width: 100%;
  height: auto;
}
@media screen and (max-width: 1440px) {
  .container_modal_wrapper > .container_modal_content {
    width: 69.4444444444vw;
    padding: 4.1666666667vw 4.8611111111vw;
    border-radius: 2.0833333333vw;
  }
}
@media screen and (max-width: 750px) {
  .container_modal_wrapper > .container_modal_content {
    width: 89.3333333333vw;
    padding: 5.3333333333vw;
    border-radius: 5.3333333333vw;
  }
}
.container_modal_wrapper > .container_modal_content .content_modal_0 {
  display: none;
}
.container_modal_wrapper > .container_modal_content .content_modal_0 > .content_modal_image {
  line-height: 0;
  margin-bottom: 60px;
}
@media screen and (max-width: 1440px) {
  .container_modal_wrapper > .container_modal_content .content_modal_0 > .content_modal_image {
    margin-bottom: 4.1666666667vw;
  }
}
@media screen and (max-width: 750px) {
  .container_modal_wrapper > .container_modal_content .content_modal_0 > .content_modal_image {
    margin-bottom: 5.3333333333vw;
  }
}
.container_modal_wrapper > .container_modal_content .content_modal_0 > .content_modal_title {
  line-height: 0;
  margin-bottom: 60px;
}
@media screen and (max-width: 1440px) {
  .container_modal_wrapper > .container_modal_content .content_modal_0 > .content_modal_title {
    margin-bottom: 4.1666666667vw;
  }
}
@media screen and (max-width: 750px) {
  .container_modal_wrapper > .container_modal_content .content_modal_0 > .content_modal_title {
    margin-bottom: 10.1333333333vw;
  }
}
.container_modal_wrapper > .container_modal_content .content_modal_0 > .content_modal_movie {
  margin: 0 auto 75px;
  position: relative;
  width: 420px;
  overflow: hidden;
  border-radius: 20px;
}
@media screen and (max-width: 1440px) {
  .container_modal_wrapper > .container_modal_content .content_modal_0 > .content_modal_movie {
    width: 29.1666666667vw;
    border-radius: 1.3888888889vw;
    margin-bottom: 5.2083333333vw;
  }
}
@media screen and (max-width: 750px) {
  .container_modal_wrapper > .container_modal_content .content_modal_0 > .content_modal_movie {
    width: 100%;
    border-radius: 5.3333333333vw;
    margin-bottom: 10.1333333333vw;
  }
}
.container_modal_wrapper > .container_modal_content .content_modal_0 > .content_modal_movie:before {
  content: "";
  display: block;
  width: 100%;
  padding-top: 100%;
}
.container_modal_wrapper > .container_modal_content .content_modal_0 > .content_modal_movie iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.container_modal_wrapper > .container_modal_content .content_modal_0 > .content_modal_etc {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 750px) {
  .container_modal_wrapper > .container_modal_content .content_modal_0 > .content_modal_etc {
    display: block;
  }
}
.container_modal_wrapper > .container_modal_content .content_modal_0 > .content_modal_etc > .content_modal_materials {
  width: 410px;
}
@media screen and (max-width: 1440px) {
  .container_modal_wrapper > .container_modal_content .content_modal_0 > .content_modal_etc > .content_modal_materials {
    width: 28.4722222222vw;
  }
}
@media screen and (max-width: 750px) {
  .container_modal_wrapper > .container_modal_content .content_modal_0 > .content_modal_etc > .content_modal_materials {
    width: 100%;
    margin-bottom: 8vw;
  }
}
.container_modal_wrapper > .container_modal_content .content_modal_0 > .content_modal_etc > .content_modal_materials > p.ttl {
  margin-bottom: 20px;
}
@media screen and (max-width: 1440px) {
  .container_modal_wrapper > .container_modal_content .content_modal_0 > .content_modal_etc > .content_modal_materials > p.ttl {
    margin-bottom: 1.3888888889vw;
  }
}
@media screen and (max-width: 750px) {
  .container_modal_wrapper > .container_modal_content .content_modal_0 > .content_modal_etc > .content_modal_materials > p.ttl {
    margin-bottom: 4vw;
  }
}
.container_modal_wrapper > .container_modal_content .content_modal_0 > .content_modal_etc > .content_modal_materials > p.ttl img {
  width: 100%;
  height: auto;
}
.container_modal_wrapper > .container_modal_content .content_modal_0 > .content_modal_etc > .content_modal_materials > ul > li {
  padding: 10px 0 10px 28px;
  font-size: 16px;
  font-weight: 500;
  text-align: left;
  position: relative;
}
@media screen and (max-width: 1440px) {
  .container_modal_wrapper > .container_modal_content .content_modal_0 > .content_modal_etc > .content_modal_materials > ul > li {
    padding: 0.6944444444vw 0 0.6944444444vw 1.9444444444vw;
    font-size: 1.1111111111vw;
  }
}
@media screen and (max-width: 750px) {
  .container_modal_wrapper > .container_modal_content .content_modal_0 > .content_modal_etc > .content_modal_materials > ul > li {
    padding: 1.8666666667vw 0 1.8666666667vw 4.2666666667vw;
    font-size: 14px;
    font-size: 3.5623409669vw;
  }
}
.container_modal_wrapper > .container_modal_content .content_modal_0 > .content_modal_etc > .content_modal_materials > ul > li:before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  position: absolute;
  top: 0.8em;
  left: 0;
  background-image: url("../images/icon_circle.svg");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: contain;
}
@media screen and (max-width: 750px) {
  .container_modal_wrapper > .container_modal_content .content_modal_0 > .content_modal_etc > .content_modal_materials > ul > li:before {
    width: 2.1333333333vw;
    height: 2.1333333333vw;
  }
}
.container_modal_wrapper > .container_modal_content .content_modal_0 > .content_modal_etc > .content_modal_procedure {
  width: 410px;
}
@media screen and (max-width: 1440px) {
  .container_modal_wrapper > .container_modal_content .content_modal_0 > .content_modal_etc > .content_modal_procedure {
    width: 28.4722222222vw;
  }
}
@media screen and (max-width: 750px) {
  .container_modal_wrapper > .container_modal_content .content_modal_0 > .content_modal_etc > .content_modal_procedure {
    width: 100%;
  }
}
.container_modal_wrapper > .container_modal_content .content_modal_0 > .content_modal_etc > .content_modal_procedure > p.ttl {
  margin-bottom: 20px;
}
@media screen and (max-width: 1440px) {
  .container_modal_wrapper > .container_modal_content .content_modal_0 > .content_modal_etc > .content_modal_procedure > p.ttl {
    margin-bottom: 1.3888888889vw;
  }
}
@media screen and (max-width: 750px) {
  .container_modal_wrapper > .container_modal_content .content_modal_0 > .content_modal_etc > .content_modal_procedure > p.ttl {
    margin-bottom: 4vw;
  }
}
.container_modal_wrapper > .container_modal_content .content_modal_0 > .content_modal_etc > .content_modal_procedure > p.ttl img {
  width: 100%;
  height: auto;
}
.container_modal_wrapper > .container_modal_content .content_modal_0 > .content_modal_etc > .content_modal_procedure > ul {
  margin-top: -10px;
}
@media screen and (max-width: 1440px) {
  .container_modal_wrapper > .container_modal_content .content_modal_0 > .content_modal_etc > .content_modal_procedure > ul {
    margin-top: -0.6944444444vw;
  }
}
.container_modal_wrapper > .container_modal_content .content_modal_0 > .content_modal_etc > .content_modal_procedure > ul > li {
  font-size: 16px;
  font-weight: 500;
  text-align: left;
  position: relative;
  line-height: 1.875;
  padding: 15px 0 15px 40px;
}
@media screen and (max-width: 1440px) {
  .container_modal_wrapper > .container_modal_content .content_modal_0 > .content_modal_etc > .content_modal_procedure > ul > li {
    font-size: 1.1111111111vw;
    padding: 1.0416666667vw 0 1.0416666667vw 2.7777777778vw;
  }
}
@media screen and (max-width: 750px) {
  .container_modal_wrapper > .container_modal_content .content_modal_0 > .content_modal_etc > .content_modal_procedure > ul > li {
    font-size: 14px;
    font-size: 3.5623409669vw;
    line-height: 2.1428571429;
    padding: 1.8666666667vw 0 1.8666666667vw 8.5333333333vw;
  }
}
.container_modal_wrapper > .container_modal_content .content_modal_0 > .content_modal_etc > .content_modal_procedure > ul > li img {
  position: absolute;
  top: 0.9em;
  left: 0;
  width: 30px;
  height: 30px;
}
@media screen and (max-width: 1440px) {
  .container_modal_wrapper > .container_modal_content .content_modal_0 > .content_modal_etc > .content_modal_procedure > ul > li img {
    width: 2.0833333333vw;
    height: 2.0833333333vw;
  }
}
@media screen and (max-width: 750px) {
  .container_modal_wrapper > .container_modal_content .content_modal_0 > .content_modal_etc > .content_modal_procedure > ul > li img {
    top: 0.7em;
    width: 6.4vw;
    height: 6.4vw;
  }
}
.container_modal_wrapper > .container_modal_content .container_modal_close {
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  transform: translate(50%, -50%);
}
@media screen and (max-width: 1440px) {
  .container_modal_wrapper > .container_modal_content .container_modal_close {
    width: 6.9444444444vw;
  }
}
@media screen and (max-width: 750px) {
  .container_modal_wrapper > .container_modal_content .container_modal_close {
    width: 10.6666666667vw;
    transform: translate(40%, -40%);
  }
}
.container_modal_wrapper > .container_modal_content .container_modal_close .content_modal_closebtn {
  border: none;
  outline: none;
  background: transparent;
  background-image: none;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  border-radius: 0;
  padding: 0;
  width: 100px;
  cursor: pointer;
}
@media screen and (max-width: 1440px) {
  .container_modal_wrapper > .container_modal_content .container_modal_close .content_modal_closebtn {
    width: 6.9444444444vw;
  }
}
@media screen and (max-width: 750px) {
  .container_modal_wrapper > .container_modal_content .container_modal_close .content_modal_closebtn {
    width: 10.6666666667vw;
  }
}
.container_modal_wrapper > .container_modal_content .container_modal_close .content_modal_closebtn img {
  width: 100%;
  height: auto;
}

.container_pagetop {
  display: none;
  line-height: 0;
}
@media screen and (max-width: 750px) {
  .container_pagetop {
    display: block;
    position: fixed;
    bottom: 5.3333333333vw;
    right: 5.3333333333vw;
    z-index: 5;
    width: 10.6666666667vw;
  }
}/*# sourceMappingURL=style.css.map */