@charset "utf-8";

@import url("https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New:wght@300;400;500;700;900&display=swap");
/*
.zen-kaku-gothic-new-regular {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
}
*/

body,
html {
  overflow-x: hidden;
}

body {
  background-color: #fff;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  line-height: 2em;
  color: #000;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.pc {
  display: block;
}
.sp {
  display: none;
}

img {
  vertical-align: bottom;
  height: auto;
}
a img {
  -webkit-transition: 0.8s;
  -moz-transition: 0.8s;
  -o-transition: 0.8s;
  -ms-transition: 0.8s;
  transition: 0.8s;
}
a img:hover {
  opacity: 0.6;
  filter: alpha(opacity=60);
  -moz-opacity: 0.6;
}

#content_wrapper {
  width: 100%;
  max-width: 750px;
  margin: 0 auto;
}
#content_wrapper img {
  width: 100%;
  height: auto;
}

/*FV*/
#fv {
  position: relative;
  width: 100%;
  background-color: #fe6276;
  animation: bgColorChange 16s ease-in-out infinite;
}

/* FV scroll_bg replacement */
#fv .scroll_bg {
  position: absolute;
  top: 2.8%;
  left: 0;
  width: 200%; /* 2倍にしてループ余白を防ぐ */
  height: 100px;
  background-image: url("../img/scroll_txt_thin.svg");
  background-repeat: repeat-x;
  background-size: auto 100%; /* 高さ基準で拡大縮小 */
  background-position: 0 center;

  opacity: 0.8;
  pointer-events: none;
  z-index: 0;

  animation: scrollBgLoop 12s linear infinite;
}

@keyframes scrollBgLoop {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes bgColorChange {
  0% {
    background-color: #fe6276;
  }
  50% {
    background-color: #eccd00;
  }
  100% {
    background-color: #fe6276;
  }
}

#fv .fv_photo {
  position: relative;
  width: 100%;
  z-index: 1;
  opacity: 0;
  animation: fadeIn 1.5s ease-out forwards;
}
#fv .fv_copy {
  position: absolute;
  bottom: 6.6%;
  left: 13.5%;
  width: 73%;
  z-index: 2;
}

/* indexmenu video */
#indexmenu {
  position: relative;
  width: 100%;
  max-width: 1050px;
  height: 940px;
  margin: 0 auto;
  box-sizing: border-box;
}
#indexmenu .indexmenu_line {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 120px;
  width: 1px;
  background-color: #fe6276;
}

#indexmenu .indexmenu_wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: nowrap;
  padding: 160px 0;
  align-items: flex-start;
}

#indexmenu .video_wrap {
  position: relative;
  width: 35%;
  max-width: 383px;
  margin: 0;
  aspect-ratio: 373 / 660;
  overflow: hidden;

  /* ★ マスク画像を適用（Safari / Chrome 両対応） */
  -webkit-mask-image: url("../img/movie_mask.png");
  mask-image: url("../img/movie_mask.png");

  -webkit-mask-size: contain;
  mask-size: contain;

  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;

  -webkit-mask-position: center;
  mask-position: center;
}

#indexmenu .video_wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  object-fit: cover; /* マスクいっぱいに動画をフィット */
}

#indexmenu .index_wrap {
  width: 55%;
  white-space: nowrap;
}

#indexmenu .indexmenu_txt {
  width: 100%;
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  color: #fe6276;
  margin-top: 5%;
  line-height: 2em;
}
#indexmenu .indexmenu_title {
  width: 100%;
  margin-top: 8%;
  line-height: 2em;
}
#indexmenu .index_menu_wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 5%;
}
#indexmenu .index_menu_wrap li {
  width: 30%;
  list-style: none;
}
#indexmenu .index_menu_wrap li img {
  width: 100%;
}

/*Side Menu*/
#float_menu {
  position: fixed;
  right: 0;
  top: 23%;
  display: flex;
  flex-wrap: wrap;
  width: 92px;
  height: auto;
  z-index: 2;

  /* ここを追加 */
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

/* 表示用クラス */
#float_menu.is-visible {
  opacity: 1;
  pointer-events: auto;
}
#float_menu::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;

  background-image: url(../img/side_menu01_r.png), url(../img/side_menu02_r.png), url(../img/side_menu03_r.png);
}
#float_menu li a {
  display: block;
  width: 100%;
  height: 100%;
}
#float_menu li.menu01 {
  width: 92px;
  height: 120px;
  background-image: url(../img/side_menu01.png);
  background-size: cover;
  margin-bottom: 3px;
}
#float_menu li.menu01:hover {
  width: 92px;
  height: 120px;
  background-image: url(../img/side_menu01_r.png);
  background-size: cover;
  margin-bottom: 3px;
}

#float_menu li.menu02 {
  width: 92px;
  height: 120px;
  background-image: url(../img/side_menu02.png);
  background-size: cover;
  margin-bottom: 3px;
}
#float_menu li.menu02:hover {
  width: 92px;
  height: 120px;
  background-image: url(../img/side_menu02_r.png);
  background-size: cover;
  margin-bottom: 3px;
}

#float_menu li.menu03 {
  width: 92px;
  height: 120px;
  background-image: url(../img/side_menu03.png);
  background-size: cover;
}
#float_menu li.menu03:hover {
  width: 92px;
  height: 120px;
  background-image: url(../img/side_menu03_r.png);
  background-size: cover;
  margin-bottom: 3px;
}

/*ITEM01*/
#item01 {
  position: relative;
  background-color: #fe6276;
  width: 100%;
  height: 860px;
  background-image: url(../img/item01_bg.png);
  background-size: cover;
  background-position: center center;
  animation: bgColorChange 16s ease-in-out infinite;
  padding: 15px 0 0 0;
}

#item01 .scroll_bg_item {
  position: absolute;
  top: 240px;
  left: 0;
  width: 200%;
  height: 100px;

  background-image: url("../img/scroll_txt.svg");
  background-repeat: repeat-x;
  background-size: auto 100%;
  background-position: 0 center;

  opacity: 0.8;
  pointer-events: none;
  z-index: 0;

  animation: scrollLoop2 12s linear infinite;
}

@keyframes scrollLoop2 {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

#item01 .item01_inner {
  max-width: 1240px;
  width: 90%;
  min-width: 1000px;
  margin: 0 auto;
}
#item01 .item01_inner .item01_anysis {
  width: 19%;
  margin: 50px 40.5%;
}
#item01 .item01_midashi_wrap {
  display: flex;
  justify-content: flex-start;
  flex-wrap: nowrap;
  margin: 86px 0 0 0;
}
#item01 .item01_midashi_wrap li:first-child {
  width: 50%;
}
#item01 .item01_midashi_wrap li:first-child img {
  width: 100%;
}

#item01 .item01_midashi_wrap li:last-child {
  position: relative;
  width: 50%;
}
#item01 .item01_midashi_wrap li:last-child .item01_midashi {
  width: 306px;
  margin: 40px 0 0 19%;
}
#item01 .item01_midashi_wrap li:last-child .txt {
  position: relative;
  width: 76%;
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  line-height: 1.9em;
  white-space: nowrap;
  margin: 50px 0 0 50px;
}
#item01 .item01_midashi_wrap li:last-child .txt .double_quote_l {
  position: absolute;
  top: -30px;
  left: 0;
  width: 37px;
}
#item01 .item01_midashi_wrap li:last-child .txt .double_quote_r {
  position: absolute;
  bottom: -30px;
  right: 0;
  width: 37px;
}

/*ITEM01 content*/
#item01_content {
  background-image: url(../img/item01_content_bg.png);
  background-size: auto 100%;
  background-position: center center;
}
#item01_content #item01_1,
#item01_content #item01_2,
#item01_content #item01_3 {
  position: relative;
  max-width: 1200px;
  min-width: 1000px;
  width: 100%;
  margin: 0 auto;
}

#item01_content #item01_1 .item01_1_photo {
  width: 96%;
  margin: 200px 0 0 4%;
}
#item01_content #item01_1 .item01_1 {
  position: absolute;
  top: 5%;
  left: 37%;
  width: 40%;
}
#item01_content #item01_1 .copy_txt {
  position: absolute;
  top: 19%;
  left: 55%;
  width: 40%;
  font-size: 18px;
  font-weight: 500;
  text-align: center;
}
#item01_content #item01_1 .copy_txt .dq_l {
  position: absolute;
  top: -27%;
  left: 18%;
  width: 37px;
}
#item01_content #item01_1 .copy_txt .dq_r {
  position: absolute;
  bottom: -30%;
  right: 6%;
  width: 37px;
}
#item01_content #item01_1 .size-table {
  position: absolute;
  bottom: 10%;
  right: 10%;
  width: 385px;
  border-collapse: collapse;
}
#item01_content #item01_1 .size-table th {
  text-align: left;
  font-size: 11px;
  line-height: 1.5em;
  font-weight: 500;
}
#item01_content #item01_1 .size-table th span {
  text-align: left;
  font-size: 18px;
  font-weight: 500;
}
#item01_content #item01_1 .size-table td {
  width: 90px;
  height: 32px;
  padding: 5px 0 5px 6px;
}
#item01_content #item01_1 .size-table td a {
  display: block;
  width: 100%;
  height: 100%;
  background-color: #fe6277;
  text-decoration: none;
  color: #fff;
  font-size: 16px;
  font-weight: 900;
  text-align: center;
  border-radius: 4px;
}
#item01_content #item01_1 .size-table td a:hover {
  opacity: 0.7;
}
#item01_content #item01_1 .size-table th.other {
  padding: 17px 0 0 0;
  font-size: 15px;
  font-weight: 500;
}
#item01_content #item01_1 .size-table th.other a {
  color: #000;
  font-size: 13px;
  font-weight: 500;
}

#item01_content #item01_2 .item01_2_photo {
  width: 96%;
  margin: 195px 0 0 4%;
}
#item01_content #item01_2 .item01_2 {
  position: absolute;
  top: 7%;
  left: 16%;
  width: 40%;
}
#item01_content #item01_2 .copy_txt {
  position: absolute;
  top: 27%;
  left: 6%;
  width: 40%;
  font-size: 18px;
  font-weight: 500;
  text-align: center;
}
#item01_content #item01_2 .copy_txt .dq_l {
  position: absolute;
  top: -27%;
  left: 7%;
  width: 37px;
}
#item01_content #item01_2 .copy_txt .dq_r {
  position: absolute;
  bottom: -30%;
  right: 2%;
  width: 37px;
}
#item01_content #item01_2 .size-table {
  position: absolute;
  top: 79%;
  left: 16%;
  width: 385px;
  border-collapse: collapse;
}
#item01_content #item01_2 .size-table th {
  text-align: left;
  font-size: 11px;
  line-height: 1.5em;
  font-weight: 500;
}
#item01_content #item01_2 .size-table th span {
  text-align: left;
  font-size: 18px;
}
#item01_content #item01_2 .size-table td {
  width: 90px;
  height: 32px;
  padding: 5px 0 5px 6px;
}
#item01_content #item01_2 .size-table td a {
  display: block;
  width: 100%;
  height: 100%;
  background-color: #c6be97;
  text-decoration: none;
  color: #fff;
  font-size: 16px;
  font-weight: 900;
  text-align: center;
  border-radius: 4px;
}
#item01_content #item01_2 .size-table td a:hover {
  opacity: 0.7;
}
#item01_content #item01_2 .size-table th.other {
  padding: 17px 0 0 0;
  font-size: 15px;
  font-weight: 500;
}
#item01_content #item01_2 .size-table th.other a {
  color: #000;
  font-size: 13px;
  font-weight: 500;
}

#item01_content #item01_3 .item01_3_photo {
  width: 90%;
  margin: 277px 5% 340px 5%;
}
#item01_content #item01_3 .item01_3 {
  position: absolute;
  top: 8%;
  left: 28%;
  width: 42%;
}
#item01_content #item01_3 .copy_txt {
  position: absolute;
  bottom: 11%;
  left: 10%;
  width: 40%;
  font-size: 18px;
  font-weight: 500;
  text-align: center;
}
#item01_content #item01_3 .copy_txt .dq_l {
  position: absolute;
  top: -27%;
  left: 7%;
  width: 37px;
}
#item01_content #item01_3 .copy_txt .dq_r {
  position: absolute;
  bottom: -20%;
  right: 22%;
  width: 37px;
}
#item01_content #item01_3 .size-table {
  position: absolute;
  bottom: 8%;
  right: 14%;
  width: 385px;
  border-collapse: collapse;
}
#item01_content #item01_3 .size-table th {
  text-align: left;
  font-size: 11px;
  line-height: 1.5em;
  font-weight: 500;
}
#item01_content #item01_3 .size-table th span {
  text-align: left;
  font-size: 18px;
  font-weight: 500;
}
#item01_content #item01_3 .size-table td {
  width: 90px;
  height: 32px;
  padding: 5px 0 5px 6px;
}
#item01_content #item01_3 .size-table td a {
  display: block;
  width: 100%;
  height: 100%;
  background-color: #2d3476;
  text-decoration: none;
  color: #fff;
  font-size: 16px;
  font-weight: 900;
  text-align: center;
  border-radius: 4px;
}
#item01_content #item01_3 .size-table td a:hover {
  opacity: 0.7;
}
#item01_content #item01_3 .size-table th.other {
  padding: 17px 0 0 0;
  font-size: 15px;
  font-weight: 500;
}
#item01_content #item01_3 .size-table th.other a {
  color: #000;
  font-size: 13px;
  font-weight: 500;
}

/*ITEM02*/
#item02 {
  position: relative;
  background-color: #fe6276;
  width: 100%;
  height: 700px;
  background-image: url(../img/item02_bg.png);
  background-size: cover;
  background-position: center center;
  animation: bgColorChange 16s ease-in-out infinite;
}

#item02 .scroll_bg_item {
  position: absolute;
  top: 80px;
  left: 0;
  width: 200%;
  height: 100px;

  background-image: url("../img/scroll_txt.svg");
  background-repeat: repeat-x;
  background-size: auto 100%;
  background-position: 0 center;

  opacity: 0.8;
  pointer-events: none;
  z-index: 0;

  animation: scrollLoop2 12s linear infinite;
}

#item02 .item02_inner {
  max-width: 1240px;
  width: 90%;
  min-width: 1000px;
  margin: 0 auto;
  padding: 120px 0 0 0;
}
#item02 .item02_midashi_wrap {
  display: flex;
  justify-content: flex-start;
  flex-wrap: nowrap;
  margin: 45px 0 0 0;
}
#item02 .item02_midashi_wrap li:first-child {
  width: 50%;
}
#item02 .item02_midashi_wrap li:first-child img {
  width: 100%;
}

#item02 .item02_midashi_wrap li:last-child {
  position: relative;
  width: 50%;
}
#item02 .item02_midashi_wrap li:last-child .item02_midashi {
  width: 306px;
  margin: 40px 0 0 19%;
}
#item02 .item02_midashi_wrap li:last-child .txt {
  position: relative;
  width: 76%;
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  line-height: 1.9em;
  white-space: nowrap;
  margin: 50px 0 0 50px;
}
#item02 .item02_midashi_wrap li:last-child .txt .double_quote_l {
  position: absolute;
  top: -20px;
  left: 70px;
  width: 37px;
}
#item02 .item02_midashi_wrap li:last-child .txt .double_quote_r {
  position: absolute;
  bottom: -30px;
  right: 0;
  width: 37px;
}

/*ITEM02 content*/
#item02_content {
  background-image: url(../img/item02_content_bg.png);
  background-size: auto 100%;
  background-position: center center;
}
#item02_content #item02_1,
#item02_content #item02_2,
#item02_content #item02_3 {
  position: relative;
  max-width: 1200px;
  min-width: 1000px;
  width: 100%;
  margin: 0 auto;
}

#item02_content #item02_1 .item02_1_photo {
  width: 98%;
  margin: 153px 1% 0 1%;
}
#item02_content #item02_1 .item02_1 {
  position: absolute;
  top: 10.5%;
  left: 51.8%;
  width: 45.8%;
}
#item02_content #item02_1 .copy_txt {
  position: absolute;
  top: 36%;
  left: 57%;
  width: 40%;
  font-size: 18px;
  font-weight: 500;
  text-align: center;
}
#item02_content #item02_1 .copy_txt .dq_l {
  position: absolute;
  top: -27%;
  left: 12%;
  width: 37px;
}
#item02_content #item02_1 .copy_txt .dq_r {
  position: absolute;
  bottom: -10%;
  right: 19%;
  width: 37px;
}
#item02_content #item02_1 .size-table {
  position: absolute;
  bottom: 16.5%;
  left: 13.7%;
  width: 385px;
  border-collapse: collapse;
}
#item02_content #item02_1 .size-table th {
  text-align: left;
  font-size: 11px;
  line-height: 1.5em;
  font-weight: 500;
}
#item02_content #item02_1 .size-table th span {
  text-align: left;
  font-size: 18px;
  font-weight: 500;
}
#item02_content #item02_1 .size-table td {
  width: 90px;
  height: 32px;
  padding: 5px 0 5px 6px;
}
#item02_content #item02_1 .size-table td a {
  display: block;
  width: 100%;
  height: 100%;
  background-color: #efd163;
  text-decoration: none;
  color: #fff;
  font-size: 16px;
  font-weight: 900;
  text-align: center;
  border-radius: 4px;
}
#item02_content #item02_1 .size-table td a:hover {
  opacity: 0.7;
}
#item02_content #item02_1 .size-table th.other {
  padding: 17px 0 0 0;
  font-size: 15px;
  font-weight: 500;
}
#item02_content #item02_1 .size-table th.other a {
  color: #000;
  font-size: 13px;
  font-weight: 500;
}

#item02_content #item02_2 .item02_2_photo {
  width: 96%;
  margin: 180px 0 0 4%;
}
#item02_content #item02_2 .item02_2 {
  position: absolute;
  top: 9%;
  left: 12%;
  width: 47.4%;
}
#item02_content #item02_2 .copy_txt {
  position: absolute;
  top: 29.8%;
  left: 4%;
  width: 40%;
  font-size: 18px;
  font-weight: 500;
  text-align: center;
}
#item02_content #item02_2 .copy_txt .dq_l {
  position: absolute;
  top: -25%;
  left: 4.6%;
  width: 37px;
}
#item02_content #item02_2 .copy_txt .dq_r {
  position: absolute;
  bottom: -27%;
  right: 17%;
  width: 37px;
}
#item02_content #item02_2 .size-table {
  position: absolute;
  top: 82.1%;
  left: 13%;
  width: 385px;
  border-collapse: collapse;
}
#item02_content #item02_2 .size-table th {
  text-align: left;
  font-size: 11px;
  line-height: 1.5em;
  font-weight: 500;
}
#item02_content #item02_2 .size-table th span {
  text-align: left;
  font-size: 18px;
}
#item02_content #item02_2 .size-table td {
  width: 90px;
  height: 32px;
  padding: 5px 0 5px 6px;
}
#item02_content #item02_2 .size-table td a {
  display: block;
  width: 100%;
  height: 100%;
  background-color: #9eb5df;
  text-decoration: none;
  color: #fff;
  font-size: 16px;
  font-weight: 900;
  text-align: center;
  border-radius: 4px;
}
#item02_content #item02_2 .size-table td a:hover {
  opacity: 0.7;
}
#item02_content #item02_2 .size-table th.other {
  padding: 17px 0 0 0;
  font-size: 15px;
  font-weight: 500;
}
#item02_content #item02_2 .size-table th.other a {
  color: #000;
  font-size: 13px;
  font-weight: 500;
}

#item02_content #item02_3 .item02_3_photo {
  width: 93%;
  margin: 155px 2% 340px 5%;
}
#item02_content #item02_3 .item02_3 {
  position: absolute;
  top: 14.9%;
  left: 42.2%;
  width: 45.9%;
}
#item02_content #item02_3 .copy_txt {
  position: absolute;
  top: 33%;
  right: 10%;
  width: 40%;
  font-size: 18px;
  font-weight: 500;
  text-align: center;
}
#item02_content #item02_3 .copy_txt .dq_l {
  position: absolute;
  top: -25%;
  left: 12%;
  width: 37px;
}
#item02_content #item02_3 .copy_txt .dq_r {
  position: absolute;
  bottom: -22%;
  right: 20%;
  width: 37px;
}
#item02_content #item02_3 .size-table {
  position: absolute;
  bottom: 8%;
  left: 12%;
  width: 385px;
  border-collapse: collapse;
}
#item02_content #item02_3 .size-table th {
  text-align: left;
  font-size: 11px;
  line-height: 1.5em;
  font-weight: 500;
}
#item02_content #item02_3 .size-table th span {
  text-align: left;
  font-size: 18px;
  font-weight: 500;
}
#item02_content #item02_3 .size-table td {
  width: 90px;
  height: 32px;
  padding: 5px 0 5px 6px;
}
#item02_content #item02_3 .size-table td a {
  display: block;
  width: 100%;
  height: 100%;
  background-color: #c8beb1;
  text-decoration: none;
  color: #fff;
  font-size: 16px;
  font-weight: 900;
  text-align: center;
  border-radius: 4px;
}
#item02_content #item02_3 .size-table td a:hover {
  opacity: 0.7;
}
#item02_content #item02_3 .size-table th.other {
  padding: 17px 0 0 0;
  font-size: 15px;
  font-weight: 500;
}
#item02_content #item02_3 .size-table th.other a {
  color: #000;
  font-size: 13px;
  font-weight: 500;
}

/*ITEM03*/
#item03 {
  position: relative;
  background-color: #fe6276;
  width: 100%;
  height: 860px;
  background-image: url(../img/item03_bg.png);
  background-size: cover;
  background-position: center center;
  animation: bgColorChange 16s ease-in-out infinite;
}

#item03 .scroll_bg_item {
  position: absolute;
  top: 230px;
  left: 0;
  width: 200%;
  height: 120px;

  background-image: url("../img/scroll_txt.svg");
  background-repeat: repeat-x;
  background-size: auto 100%;
  background-position: 0 center;

  opacity: 0.8;
  pointer-events: none;
  z-index: 0;

  animation: scrollLoop2 12s linear infinite;
}

#item03 .item03_inner {
  max-width: 1240px;
  width: 90%;
  min-width: 1000px;
  margin: 0 auto;
}
#item03 .item03_inner .item03_anysis {
  width: 19%;
  margin: 60px 40.5%;
  padding: 50px 0 0 0;
}
#item03 .item03_midashi_wrap {
  display: flex;
  justify-content: flex-start;
  flex-wrap: nowrap;
  margin: 110px 0 0 0;
}
#item03 .item03_midashi_wrap li:first-child {
  width: 52%;
}
#item03 .item03_midashi_wrap li:first-child img {
  width: 100%;
}

#item03 .item03_midashi_wrap li:last-child {
  position: relative;
  width: 48%;
}
#item03 .item03_midashi_wrap li:last-child .item03_midashi {
  width: 306px;
  margin: 40px 0 0 19%;
}
#item03 .item03_midashi_wrap li:last-child .txt {
  position: relative;
  width: 76%;
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  line-height: 1.9em;
  white-space: nowrap;
  margin: 50px 0 0 50px;
}
#item03 .item03_midashi_wrap li:last-child .txt .double_quote_l {
  position: absolute;
  top: -30px;
  left: 30px;
  width: 37px;
}
#item03 .item03_midashi_wrap li:last-child .txt .double_quote_r {
  position: absolute;
  bottom: -26px;
  right: 53px;
  width: 37px;
}

/*item03 content*/
#item03_content {
  position: relative;
  background-image: url(../img/item03_content_bg.png);
  background-size: auto 100%;
  background-position: center center;
}
#item03_content #item03_1,
#item03_content #item03_2,
#item03_content #item03_3 {
  position: relative;
  max-width: 1200px;
  min-width: 1000px;
  width: 100%;
  margin: 0 auto;
}

#item03_content #item03_1 .item03_1_photo {
  width: 95%;
  margin: 170px 0 260px 5%;
}
#item03_content #item03_1 .item03_1 {
  position: absolute;
  top: 6%;
  left: 31%;
  width: 40%;
}
#item03_content #item03_1 .copy_txt {
  position: absolute;
  top: 85.3%;
  left: 14%;
  width: 40%;
  font-size: 18px;
  font-weight: 500;
  text-align: center;
}
#item03_content #item03_1 .copy_txt .dq_l {
  position: absolute;
  top: -24%;
  left: 13%;
  width: 37px;
}
#item03_content #item03_1 .copy_txt .dq_r {
  position: absolute;
  bottom: -20%;
  right: 17%;
  width: 37px;
}
#item03_content #item03_1 .size-table {
  position: absolute;
  bottom: 1.3%;
  right: 17.6%;
  width: 300px;
  border-collapse: collapse;
}
#item03_content #item03_1 .size-table th {
  text-align: left;
  font-size: 11px;
  line-height: 1.5em;
  font-weight: 500;
}
#item03_content #item03_1 .size-table th span {
  text-align: left;
  font-size: 18px;
  font-weight: 500;
}
#item03_content #item03_1 .size-table td {
  width: 90px;
  height: 32px;
  padding: 5px 0 5px 6px;
}
#item03_content #item03_1 .size-table td a {
  display: block;
  width: 100%;
  height: 100%;
  background-color: #d8daa5;
  text-decoration: none;
  color: #fff;
  font-size: 16px;
  font-weight: 900;
  text-align: center;
  border-radius: 4px;
}
#item03_content #item03_1 .size-table td a:hover {
  opacity: 0.7;
}
#item03_content #item03_1 .size-table th.other {
  padding: 17px 0 0 0;
  font-size: 15px;
  font-weight: 500;
}
#item03_content #item03_1 .size-table th.other a {
  color: #000;
  font-size: 13px;
  font-weight: 500;
}

#item03_content #item03_2 .item03_2_photo {
  width: 96%;
  margin: 185px 0 0 4%;
}
#item03_content #item03_2 .item03_2 {
  position: absolute;
  top: 8.7%;
  left: 12%;
  width: 47.2%;
}
#item03_content #item03_2 .copy_txt {
  position: absolute;
  top: 28.9%;
  left: 6%;
  width: 40%;
  font-size: 18px;
  font-weight: 500;
  text-align: center;
}
#item03_content #item03_2 .copy_txt .dq_l {
  position: absolute;
  top: -13%;
  left: 13%;
  width: 37px;
}
#item03_content #item03_2 .copy_txt .dq_r {
  position: absolute;
  bottom: -19%;
  right: 20%;
  width: 37px;
}
#item03_content #item03_2 .size-table {
  position: absolute;
  top: 80.6%;
  left: 20.2%;
  width: 300px;
  border-collapse: collapse;
}
#item03_content #item03_2 .size-table th {
  text-align: left;
  font-size: 11px;
  line-height: 1.5em;
  font-weight: 500;
}
#item03_content #item03_2 .size-table th span {
  text-align: left;
  font-size: 18px;
}
#item03_content #item03_2 .size-table td {
  width: 90px;
  height: 32px;
  padding: 5px 0 5px 6px;
}
#item03_content #item03_2 .size-table td a {
  display: block;
  width: 100%;
  height: 100%;
  background-color: #b0d4dc;
  text-decoration: none;
  color: #fff;
  font-size: 16px;
  font-weight: 900;
  text-align: center;
  border-radius: 4px;
}
#item03_content #item03_2 .size-table td a:hover {
  opacity: 0.7;
}
#item03_content #item03_2 .size-table th.other {
  padding: 17px 0 0 0;
  font-size: 15px;
  font-weight: 500;
}
#item03_content #item03_2 .size-table th.other a {
  color: #000;
  font-size: 13px;
  font-weight: 500;
}

#item03_content #item03_3 .item03_3_photo {
  width: 92%;
  margin: 277px 2% 340px 6%;
}
#item03_content #item03_3 .item03_3 {
  position: absolute;
  top: 11.3%;
  left: 44.6%;
  width: 42%;
}
#item03_content #item03_3 .copy_txt {
  position: absolute;
  top: 26.8%;
  right: 7%;
  width: 40%;
  font-size: 18px;
  font-weight: 500;
  text-align: center;
}
#item03_content #item03_3 .copy_txt .dq_l {
  position: absolute;
  top: -27%;
  left: 14%;
  width: 37px;
}
#item03_content #item03_3 .copy_txt .dq_r {
  position: absolute;
  bottom: -20%;
  right: 13%;
  width: 37px;
}
#item03_content #item03_3 .size-table {
  position: absolute;
  bottom: 20%;
  right: 18.5%;
  width: 300px;
  border-collapse: collapse;
}
#item03_content #item03_3 .size-table th {
  text-align: left;
  font-size: 11px;
  line-height: 1.5em;
  font-weight: 500;
}
#item03_content #item03_3 .size-table th span {
  text-align: left;
  font-size: 18px;
  font-weight: 500;
}
#item03_content #item03_3 .size-table td {
  width: 90px;
  height: 32px;
  padding: 5px 0 5px 6px;
}
#item03_content #item03_3 .size-table td a {
  display: block;
  width: 100%;
  height: 100%;
  background-color: #ffb3a6;
  text-decoration: none;
  color: #fff;
  font-size: 16px;
  font-weight: 900;
  text-align: center;
  border-radius: 4px;
}
#item03_content #item03_3 .size-table td a:hover {
  opacity: 0.7;
}
#item03_content #item03_3 .size-table th.other {
  padding: 17px 0 0 0;
  font-size: 15px;
  font-weight: 500;
}
#item03_content #item03_3 .size-table th.other a {
  color: #000;
  font-size: 13px;
  font-weight: 500;
}
#item03_content .item_list {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 150px;
  display: block;

  width: 380px;
  height: 84px;
  background-color: #fe6276;
  border-radius: 4px;
  margin: 0 auto;
  text-align: center;
  line-height: 80px;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  color: #fff;
}
#item03_content .item_list:hover {
  opacity: 0.75;
}

footer .onward {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 50px;
  width: 151px;
}

/*Footer*/

footer {
  position: relative;
  width: 100%;
  height: 545px;
  background-color: #fe6276;
  text-align: center;
  padding: 67px 0 0 0;
}
footer .insta_icon {
  display: block;
  width: 30px;
  margin: 45px auto 0;
}
footer .bottom_logo {
  width: 260px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: nowrap;
  align-items: flex-start;
  gap:10px;
}
footer .bottom_logo img {
  height: 40px;
  width: auto;
}

footer .footer_txt {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 352px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
}

/*Page Top*/
#pagetop {
  position: fixed;
  right: 26px;
  bottom: 4%;
  width: 27px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
/* 表示用 */
#pagetop.is-visible {
  opacity: 1;
  pointer-events: auto;
}

/*アコーディオンメニュー*/
.accordion-row {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 227px;
  display: flex;
  width: 1100px;
  gap: 2%;
  z-index: 2;
}

.accordion-item {
  border-top: 1px solid #fff;
  flex: 1;
}

.accordion-item:last-child {
  border-right: none;
}

.accordion-header {
  position: relative;
  width: 100%;
  padding: 20px;
  background: none;
  border: none;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.1em;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.accordion-header a {
  text-decoration: none;
  color: #fff;
}
.accordion-header .icon {
  position: absolute;
  right: 10px;
  transition: transform 0.3s;
  font-size: 22px;
  font-weight: 400;
}

.accordion-item.is-open .icon {
  transform: rotate(45deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  background-color: #fe6276;
  border-bottom: 1px solid #fff;
}
.accordion-content a {
  color: #fff;
  text-decoration: none;
}
.accordion-content > * {
  padding: 20px;
  color: #fff;
}
