* {
  margin: 0;
  padding: 0;
  outline: 0;
  --f-roundo: "SVN-Roundo";
  --f_optimum: "SVN-Optimum";
  --f_love: "SVN-Tirelessly Love You";
}

body {
  font-family: var(--f-roundo);
  overflow: hidden;
}
body.active {
  overflow: unset;
}
body.open_menu {
  overflow: hidden;
}

img {
  max-width: 100%;
}

#header {
  position: fixed;
  top: 0;
  z-index: 10;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
}
#header .logo {
  margin: 10px auto 0;
  padding: 0;
  display: table;
}
#header #btn_menu {
  cursor: pointer;
  width: 48px;
  height: 48px;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(252, 252, 251, 0.2);
  backdrop-filter: blur(25px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: 0.3s all;
  animation: header_btn 2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: 5s;
  opacity: 0;
  z-index: 2;
}
#header #btn_menu p {
  line-height: 1;
  margin: 0;
  padding: 0;
  width: 22px;
  height: 6px;
  position: relative;
}
#header #btn_menu span {
  height: 1px;
  background-color: #fff;
  transition: 0.3s all;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
}
#header #btn_menu span:nth-child(3) {
  top: 6px;
}
#header #btn_menu:hover {
  border: 1px solid rgba(0, 90, 74, 0.2);
  background: #fff;
}
#header #btn_menu:hover span {
  background-color: #005a4a;
}
#header #btn_menu.open_menu {
  border: 1px solid rgba(0, 90, 74, 0.2);
  background: #fff;
}
#header #btn_menu.open_menu span {
  background-color: #005a4a;
}
#header #btn_menu.open_menu p {
  height: 3px;
}
#header #btn_menu.open_menu span:nth-child(1) {
  transform: rotate(45deg);
}
#header #btn_menu.open_menu span:nth-child(2) {
  transform: rotate(-45deg);
}
#header #btn_menu.open_menu span:nth-child(3) {
  opacity: 0;
}
#header #btn_menu.open_menu:hover {
  background: #005a4a;
}
#header #btn_menu.open_menu:hover span {
  background-color: #fff;
}
#header .btn_contact {
  animation: header_btn 2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: 5s;
  opacity: 0;
}
#header .btn_contact a {
  width: 10em;
  height: 4em;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(252, 252, 251, 0.2);
  backdrop-filter: blur(25px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  color: #fff;
  transition: 0.3s all;
  font-weight: 600;
  font-size: 12px;
}
#header .btn_contact a:hover {
  background: white;
  color: #005a4a;
}
#header.active {
  background-color: #fff;
}
#header.active .logo {
  margin: 10px auto;
}
#header.active .logo img {
  content: url(../images/logo_active.svg);
  width: auto;
  height: 29px;
}
#header.active .btn_contact a {
  border: 1px solid rgba(0, 90, 74, 0.2);
  background: #fff;
  color: #005a4a;
}
#header.active .btn_contact a:hover {
  background: #005a4a;
  color: #fff;
}
#header.active #btn_menu {
  border: 1px solid rgba(0, 90, 74, 0.2);
  background: #fff;
}
#header.active #btn_menu span {
  background-color: #005a4a;
}
#header.active #btn_menu:hover {
  background: #005a4a;
}
#header.active #btn_menu:hover span {
  background-color: #fff;
}

@keyframes header_btn {
  0% {
    opacity: 0;
    transform: translateY(-10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}
#loading {
  z-index: 100;
  position: fixed;
  inset: 0;
  font-size: 10px;
}
#loading .loading_left,
#loading .loading_right {
  position: absolute;
  background-color: #fff;
  top: 0;
  bottom: 0;
}
#loading .loading_left::after,
#loading .loading_right::after {
  content: "";
  position: absolute;
  bottom: 0;
  height: 0;
  animation: loading_border 2s forwards ease-in-out;
}
#loading .loading_left {
  width: calc(74.5% + 1px);
  left: 0;
  animation: loading_left 1.5s forwards ease-in-out;
  animation-delay: 3s;
  z-index: 1;
}
#loading .loading_left::after {
  right: 1px;
  border-right: 1px solid #005a4a;
}
#loading .loading_right {
  width: 25.5%;
  right: 0;
  animation: loading_right 1.5s forwards ease-in-out;
  animation-delay: 3s;
}
#loading .loading_right::after {
  left: 0;
  border-left: 1px solid #005a4a;
}
#loading .loading_div {
  width: 61.8em;
  height: 14em;
  display: flex;
  justify-content: space-between;
  align-items: center;
  right: -7em;
  position: absolute;
  z-index: 2;
  bottom: 25%;
}
#loading .loading_div .loading_text {
  width: 41.4em;
  animation: loading_text 1.5s steps(30) forwards;
  animation-delay: 1s;
  clip-path: inset(0 100% 0 0);
}
#loading .loading_div .loading_logo {
  width: 14em;
  transform: rotate(0deg);
  animation: loading_logo forwards 1s ease-in-out;
}
@media only screen and (max-width: 768px) {
  #loading {
    font-size: 1.25vw;
  }
}
#loading.active {
  opacity: 0;
  visibility: hidden;
}

@keyframes loading_text {
  from {
    clip-path: inset(0 100% 0 0);
  }
  to {
    clip-path: inset(0 0 0 0);
  }
}
@keyframes loading_border {
  0% {
    height: 0;
  }
  100% {
    height: 100%;
  }
}
@keyframes loading_logo {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(-360deg);
  }
}
@keyframes loading_left {
  0% {
    width: 74.5%;
  }
  100% {
    width: 0;
    visibility: hidden;
  }
}
@keyframes loading_right {
  0% {
    width: 25.5%;
  }
  100% {
    width: 0;
    visibility: hidden;
  }
}
@keyframes phone-ring {
  0% {
    transform: rotate(0);
  }
  5% {
    transform: rotate(15deg);
  }
  10% {
    transform: rotate(-15deg);
  }
  15% {
    transform: rotate(15deg);
  }
  20% {
    transform: rotate(-15deg);
  }
  25% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(0);
  }
}
#wrapper.open_menu {
  overflow: hidden;
  filter: blur(25px);
}

#menu {
  position: fixed;
  top: 0;
  left: -50%;
  bottom: 0;
  width: 35%;
  background: #fff;
  z-index: 1;
  max-width: 500px;
  visibility: hidden;
  opacity: 0;
  transition: 0.5s all;
  display: flex;
  align-items: flex-end;
  padding: 40px;
}
#menu::after {
  content: "";
  position: absolute;
  background: url(../images/loading_logo.svg) no-repeat center/contain;
  width: 14em;
  height: 14em;
  font-size: 10px;
  right: -70px;
  top: 25%;
}
#menu.open_menu {
  left: 0;
  opacity: 1;
  visibility: visible;
}
#menu.open_menu::after {
  animation: loading_logo forwards 1s ease-in-out;
}
#menu #lang {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 70px;
  height: 20px;
  position: absolute;
  z-index: 2;
  right: 40px;
  top: 40px;
  padding: 0;
  margin: 0;
}
#menu #lang li {
  list-style-type: none;
}
#menu #lang li a {
  text-decoration: none;
  color: #c6c0ad;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 14px;
}
#menu #lang li a.active {
  color: #005a4a;
}
#menu #lang li a:hover {
  opacity: 1;
  color: #005a4a;
}
#menu #lang li.char {
  width: 16px;
  height: 1px;
  background-color: #005a4a;
}
#menu .menu_link li {
  list-style-type: none;
  width: 100%;
}
#menu .menu_link li a {
  display: table;
  font-weight: 500;
  font-size: 32px;
  text-decoration: none;
  color: #005a4a;
  transition: 0.3s all;
}
#menu .menu_link li a:hover {
  color: #851F48;
}

@media only screen and (max-width: 768px) {
  body {
    min-height: 1000px;
  }
  #header {
    padding: 20px 10px;
  }
  #header .logo {
    position: absolute;
    left: calc(50% - 50px);
    top: 20px;
    width: 100px;
    margin: 0;
  }
  #header .logo img {
    width: 100%;
    height: auto;
  }
  #header #btn_menu {
    width: 36px;
    height: 36px;
  }
  #header .btn_contact a {
    width: 6em;
    height: 3em;
  }
  #header.active {
    padding: 10px;
  }
  #header.active .logo {
    top: 8px;
    margin: 0;
  }
  #header.active .logo img {
    width: 100%;
    height: auto;
  }
  #menu {
    width: 100%;
    padding: 20px;
  }
  #menu::after {
    right: 20px;
    font-size: 6px;
  }
}
@keyframes zoomOutSmooth {
  0% {
    transform: scale(1.2);
    filter: blur(3px);
  }
  100% {
    transform: scale(1);
    filter: blur(0);
  }
}
.h_ttl1 {
  color: #005a4a;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
}
.h_ttl1.white {
  color: #fff;
}

.h_ttl2 {
  font-family: var(--f_optimum);
  font-size: 32px;
  color: #005a4a;
  margin: 30px auto;
}

h3 {
  line-height: 125%;
  font-size: 48px;
  font-family: var(--f_optimum);
  color: #005a4a;
}
h3.white {
  color: #fff;
}
@media only screen and (min-width: 769px) and (max-width: 1366px) {
  h3 {
    font-size: 36px;
  }
}

.key {
  position: relative;
  z-index: 1;
  overflow: hidden;
  height: 53.75vw;
}
.key::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: url(../images/idx_key_bg.jpg) no-repeat top center/cover;
  filter: blur(3px);
  animation: zoomOutSmooth 5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  will-change: transform, filter;
  animation-delay: 3s;
}

.idx1 {
  background: url(../images/idx1_bg.jpg) no-repeat top center/cover;
  padding: 10em 0;
  min-height: 227.797619048vw;
  position: relative;
  z-index: 1;
  font-size: min(0.55vw, 10px);
}
@media only screen and (min-width: 2000px) {
  .idx1 {
    font-size: 0.6vw;
  }
}
.idx1 .idx1_svg {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 71.5476190476vw;
}
.idx1 .idx1_svg svg {
  width: 100%;
  height: auto;
}
.idx1::after {
  content: "";
  position: absolute;
  bottom: 56vw;
  left: 0;
  right: 0;
  height: 31.7261904762vw;
  background: url(../images/idx1_bg_bottom.png) no-repeat bottom center/contain;
}
.idx1 .idx1_logo {
  animation: idx1_logo infinite 0.5s alternate;
  will-change: transform;
}
.idx1 .line2 path {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  animation: line1 3s linear infinite;
}
.idx1 .idx1_txt {
  position: absolute;
  bottom: 10em;
  left: 10em;
}
.idx1 .idx1_menu {
  margin: 0;
  padding: 0;
  font-size: 10px;
}
.idx1 .idx1_menu li {
  list-style-type: none;
  font-size: 1.1em;
  font-weight: 700;
  color: #005a4a;
  position: relative;
  padding-left: 10em;
}
.idx1 .idx1_menu li:not(:last-child) {
  margin-bottom: 15px;
}
.idx1 .idx1_menu li::before {
  content: "";
  position: absolute;
  left: 0;
  background: url(../images/idx1_icon1.svg) no-repeat center/contain;
  width: 9.0909em;
  height: 2em;
  top: calc(50% - 1em);
}
.idx1 .idx1_menu li:nth-child(1)::before {
  background-image: url(../images/idx1_icon1.svg);
}
.idx1 .idx1_menu li:nth-child(2)::before {
  background-image: url(../images/idx1_icon2.svg);
}
.idx1 .idx1_menu li:nth-child(3)::before {
  background-image: url(../images/idx1_icon3.svg);
}
.idx1 .idx1_menu li:nth-child(4)::before {
  background-image: url(../images/idx1_icon4.svg);
}
.idx1 .idx1_menu li:nth-child(5)::before {
  background-image: url(../images/idx1_icon5.svg);
}
.idx1 .idx1_menu li:nth-child(4)::before, .idx1 .idx1_menu li:nth-child(5)::before {
  background-size: auto 3px;
}
.idx1 h3 {
  font-size: 4.8em;
}
.idx1 h3 .ttl {
  display: block;
  font-family: var(--f_love);
  font-weight: 400;
  color: #851f48;
  font-size: 1.6667em;
}
.idx1 .idx1_ttl1 {
  color: #c6c0ad;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 1.4em;
  display: flex;
  align-items: center;
}
.idx1 .idx1_ttl1.text-center {
  justify-content: center;
  text-align: center;
}
.idx1 .idx1_ttl1 span {
  font-size: 0.7143em;
  margin: 0 5px;
  position: relative;
}
.idx1 .idx1_ttl1 span::after {
  content: "";
  position: absolute;
  height: 2px;
  bottom: 0;
  background-color: #c6c0ad;
  left: 0;
  right: 0;
}
.idx1 .idx1_ttl2 {
  text-align: center;
  color: #c6c0ad;
  font-size: 8em;
  font-family: var(--f_love);
}
.idx1 .idx1_ttl3 {
  text-align: center;
  max-width: 52em;
  margin: 0 auto;
}
.idx1 .idx1_ttl3 p {
  font-size: 1.4em;
  line-height: 175%;
  font-weight: 500;
}
.idx1 .idx1_box {
  max-width: 76em;
  margin: 8em auto 0;
  display: flex;
  flex-wrap: wrap;
  text-align: center;
  font-size: 1em;
}
.idx1 .idx1_box .item {
  padding: 2em 10px;
}
.idx1 .idx1_box .item1 {
  width: 50%;
}
.idx1 .idx1_box .item2 {
  width: 50%;
  border-left: 1px solid #fff;
}
.idx1 .idx1_box .item2 .ttl2 {
  font-size: 5.6em;
  line-height: 1.3929em;
}
.idx1 .idx1_box .item1,
.idx1 .idx1_box .item2 {
  border-bottom: 1px solid #fff;
}
.idx1 .idx1_box .item4 {
  width: 36%;
  border-left: 1px solid #fff;
}
.idx1 .idx1_box .item3 {
  width: 64%;
}
.idx1 .idx1_box .ttl1 {
  text-transform: uppercase;
  line-height: 1;
  color: #005a4a;
  font-size: 1.4em;
  font-weight: 600;
}
.idx1 .idx1_box .ttl2 {
  line-height: 1;
  color: #851f48;
  font-size: 6.4em;
  line-height: 1.25em;
  font-family: var(--f_optimum);
}
.idx1 .idx1_box .ttl3 {
  font-size: 1.4em;
  font-weight: 500;
}
.idx1 .idx1_img {
  max-width: 105em;
  margin: 6em auto 0;
  display: table;
}
.idx1 .idx1_content {
  max-width: 52em;
  margin: 72em 10vw 0 0;
  position: relative;
  z-index: 10;
  margin-left: auto;
  width: 80%;
}
@media only screen and (min-width: 2000px) {
  .idx1 .idx1_content {
    margin-right: 0;
  }
}
.idx1 .idx1_content h3 {
  color: #fff;
}
.idx1 .idx1_content .idx1_ttl2 {
  text-align: left;
  color: #fff;
}
.idx1 .idx1_content .txt p {
  color: #fff;
  font-size: 1.4em;
  line-height: 175%;
}
.idx1 .idx1_ttl5 {
  font-family: var(--f_optimum);
  color: #fff;
  line-height: 150%;
  font-size: 3.2em;
  margin: 1em 0;
}

@keyframes line1 {
  to {
    stroke-dashoffset: 0;
  }
}
@keyframes idx1_logo {
  0% {
    transform: translateY(-2px);
  }
  100% {
    transform: translateY(2px);
  }
}
.idx2 {
  position: relative;
}
.idx2 .idx2_slider {
  height: 51.1904761905vw;
}
.idx2 .idx2_slider .item {
  position: relative;
  z-index: 1;
}
.idx2 .idx2_slider .item::after {
  content: "";
  position: absolute;
  z-index: -1;
  background: url(../images/idx2_img1.jpg) no-repeat top center/cover;
  inset: 0;
}
.idx2 .idx2_slider .item .ttl {
  font-size: 14px;
  line-height: 175%;
  color: #fff;
  margin-top: 25px;
}
.idx2 .idx2_slider .item .txt {
  position: absolute;
  max-width: 520px;
  bottom: 40px;
  left: 40px;
}
.idx2 .idx2_slider .item1::after {
  background-image: url(../images/idx2_img1.jpg);
}

.slick-dots {
  display: flex !important;
  padding: 0;
  margin: 0;
  position: relative;
  z-index: 1;
}

.slick-dots li {
  flex: 1;
  margin: 0;
  position: relative;
}
.slick-dots li::before {
  content: "";
  position: absolute;
  height: 1px;
  background: rgba(255, 255, 255, 0.5);
  width: 100%;
  left: 0;
  top: 50%;
  transition: 0.3s all;
}
.slick-dots li::after {
  content: "";
  position: absolute;
  mask-size: contain;
  mask-image: url(../images/idx2_dot.svg);
  mask-size: contain;
  background-color: #fff;
  width: 26px;
  height: 16px;
  top: calc(50% - 7px);
  right: 5px;
  opacity: 0;
  transition: 0.3s all;
}
.slick-dots li.slick-active::before {
  width: calc(100% - 40px);
  background: #fff;
}
.slick-dots li.slick-active::after {
  opacity: 1;
}

.slick-dots li button {
  width: 100%;
  color: transparent;
}

.slick_control {
  width: 65em;
  height: 4.8em;
  position: absolute;
  bottom: 4em;
  right: 4em;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 10px;
}

.slick_arr {
  width: 10.4em;
  height: 4.8em;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.slick_arr > div {
  height: 100%;
  width: 4.8em;
  background-color: rgba(0, 0, 0, 0.2);
  border: 0.1em solid rgba(252, 252, 251, 0.2);
  backdrop-filter: blur(2.5em);
  transition: 0.3s all;
  cursor: pointer;
}
.slick_arr > div:hover {
  background-color: #005a4a;
}
.slick_arr .idx2_prev {
  background: url(../images/idx2_prev.svg) no-repeat center/1.7em;
}
.slick_arr .idx2_next {
  background: url(../images/idx2_next.svg) no-repeat center/1.7em;
}

.slick_left {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0;
  padding: 0;
  width: 53em;
}

.slick-dots {
  width: 47em;
}
.slick-dots li {
  list-style-type: none;
}
.slick-dots li button {
  background: transparent;
  border: 0;
}

.slick_num,
.slick_total {
  color: #fff;
  font-size: 1.4em;
  font-weight: 600;
  line-height: 1;
}

.idx3 {
  padding: 120px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.idx3 .idx3_l {
  width: 33%;
  padding-left: 40px;
  padding-right: 30px;
  position: relative;
}
.idx3 .idx3_r {
  width: 66.6666666667%;
}
.idx3 .idx3_slider .item {
  margin-right: 16px;
  width: 82% !important;
}
.idx3 .idx3_slider .item img {
  max-width: 917px;
}
.idx3 .h_ttl1 {
  color: #c6c0ad;
}
.idx3 h3 .h3_span {
  display: block;
  line-height: 1;
  font-size: 80px;
  color: #c6c0ad;
  font-family: var(--f_love);
}
.idx3 .txt {
  margin-top: 6.5em;
}
.idx3 .txt p {
  font-size: 14px;
  line-height: 175%;
  font-weight: 500;
}
.idx3 .slick_control {
  bottom: 0;
  left: 40px;
  right: 40px;
}
.idx3 .slick_control .slick_num,
.idx3 .slick_control .slick_total {
  color: #005a4a;
}
.idx3 .slick_control .slick-dots li::before {
  background: rgba(0, 90, 74, 0.35);
}
.idx3 .slick_control .slick-dots li.slick-active::after {
  background-color: #005a4a;
}
.idx3 .content {
  display: none;
  opacity: 0;
  transition: all 0.4s ease;
}
.idx3 .content.active {
  display: block;
  opacity: 1;
}

.slick-list,
.slick-track,
.slick-slide {
  height: 100%;
}

.slick-slide div:not(.txt) {
  height: 100%;
  display: block !important;
}

.idx_bg {
  background: linear-gradient(180deg, #eaf2f8 26.93%, #c2cad5 46.54%);
}

.idx4 {
  position: relative;
  background: url(../images/idx4_bg.png) no-repeat top center/cover;
  aspect-ratio: 1680/905;
}
.idx4 .idx4_svg {
  display: table;
  position: absolute;
  top: 13.8%;
  left: 2.2%;
  aspect-ratio: 1540/656;
  width: 91.6666666667%;
}
.idx4 .idx4_svg svg {
  width: 100%;
}
.idx4 .path1 {
  opacity: 0.2;
  transition: 0.3s all;
}
.idx4 .path1:hover {
  opacity: 0.5;
}
.idx4 .path2 {
  opacity: 0.2;
  transition: 0.3s all;
}
.idx4 .path2:hover {
  opacity: 0.5;
}
.idx4 .path3 {
  opacity: 0.2;
  transition: 0.3s all;
}
.idx4 .path3:hover {
  opacity: 0.5;
}
.idx4 .path4 {
  opacity: 0.35;
  transition: 0.3s all;
}
.idx4 .path4:hover {
  opacity: 0.5;
}
.idx4 .idx4_btn {
  font-size: 0.5952380952vw;
}
.idx4 .idx4_btn a {
  width: 12em;
  height: 12em;
  position: absolute;
  z-index: 1;
}
.idx4 .idx4_btn1 a {
  background: url(../images/idx4_btn1.svg) no-repeat center/contain;
  right: 8.2%;
  bottom: 33%;
}
.idx4 .idx4_btn2 a {
  background: url(../images/idx4_btn2.svg) no-repeat center/contain;
  right: 41.6%;
  bottom: 46.5%;
}
.idx4 .idx4_btn3 a {
  background: url(../images/idx4_btn3.svg) no-repeat center/contain;
  right: 44.5%;
  bottom: 72.5%;
  width: 20.8em;
  height: 4.8em;
}
.idx4 .idx4_btn4 a {
  background: url(../images/idx4_btn4.svg) no-repeat center/contain;
  left: 10.5%;
  top: 22%;
}

.idx5 {
  position: relative;
}
.idx5 .item {
  position: relative;
}
.idx5 .item .txt {
  position: absolute;
  bottom: 40px;
  left: 40px;
}
.idx5 h3 {
  line-height: 1;
}
.idx5 h3 span {
  font-family: var(--f_love);
  font-size: 1.6667em;
  line-height: 1;
  position: relative;
  left: 0.35em;
  top: 0.1em;
}
.idx5 .idx5_ttl1 {
  color: #fff;
  line-height: 1.5;
  font-family: var(--f_optimum);
  font-size: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
  margin: 30px auto 10px;
}
.idx5 .idx5_ttl1::before {
  content: "";
  display: block;
  background: url("data:image/svg+xml,%3Csvg width='20' height='12' viewBox='0 0 20 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4.96248 4.73737L0.0230551 5.97048C-0.00768504 5.97824 -0.00768504 6.02191 0.0230551 6.02952L4.96248 7.26263L6.284 11.9777C6.29222 12.0074 6.33422 12.0074 6.34259 11.9777L7.66411 7.26263L19.0139 6.03029C19.0501 6.02633 19.0501 5.97367 19.0139 5.96972L7.66411 4.73737L6.34259 0.0222562C6.33422 -0.00741873 6.29222 -0.00741873 6.284 0.0222562L4.96248 4.73737Z' fill='white'/%3E%3C/svg%3E%0A") no-repeat center/contain;
  width: 20px;
  height: 11px;
  margin-right: 5px;
}
.idx5 .idx5_ttl2 {
  color: rgba(255, 255, 255, 0.5);
  font-weight: 600;
  line-height: 2;
  font-size: 12px;
  text-transform: uppercase;
}
.idx5 .slick_control {
  bottom: 28em;
}

@media only screen and (max-width: 768px) {
  #wrapper {
    overflow-x: hidden;
  }
  .key {
    height: 105vw;
  }
  h3 {
    font-size: min(7vw, 36px) !important;
  }
}
@media only screen and (max-width: 768px) {
  .idx1 {
    font-size: 10px;
    padding: 40px 0;
  }
  .idx1::after {
    display: none;
  }
  .idx1 .txt {
    background: rgba(255, 255, 255, 0.7);
    padding: 20px 10px;
  }
  .idx1 .idx1_ttl2 {
    font-size: 6em;
  }
  .idx1 .idx1_box {
    margin-top: 40px;
  }
  .idx1 .idx1_box .item {
    padding: 20px 10px;
  }
  .idx1 .idx1_box .item .ttl2 {
    font-size: 4em;
    margin-bottom: 0;
  }
  .idx1 .idx1_box .item .ttl1 {
    font-size: 1em;
    margin-bottom: 10px;
  }
  .idx1 .idx1_box .item .ttl3 {
    font-size: 1.2em;
  }
  .idx1 .idx1_box .item3 {
    width: 55%;
  }
  .idx1 .idx1_box .item4 {
    width: 45%;
  }
  .idx1 .idx1_img {
    margin-top: 40px;
  }
  .idx1 .idx1_content {
    max-width: 100%;
    width: 100%;
    margin: 40px auto 0;
    background: rgba(0, 0, 0, 0.3);
    padding: 20px 10px;
  }
  .idx1 .idx1_content .txt {
    background: transparent;
    padding: 0;
  }
  .idx1 .idx1_svg {
    position: static;
    margin-top: -10px;
    height: auto;
  }
  .idx1 .idx1_svg svg {
    width: 140vw;
    margin-left: -22vw;
  }
  .idx1 .idx1_txt {
    position: static;
    padding: 0 20px 20px;
  }
}
@media only screen and (max-width: 768px) {
  .idx2 .idx2_slider {
    height: 120vw;
  }
  .idx2 .idx2_slider .item .txt {
    bottom: 50px;
    left: 10px;
    width: calc(100% - 20px);
  }
  .slick_control {
    bottom: 2em;
    right: 0;
    font-size: 1.458vw;
    width: 100%;
    padding: 0 10px;
  }
}
@media only screen and (max-width: 768px) {
  .idx3 {
    padding: 60px 0;
  }
  .idx3 .idx3_l,
  .idx3 .idx3_r {
    max-width: 100%;
    width: 100%;
  }
  .idx3 .txt {
    margin: 25px 0 50px;
  }
  .idx3 .idx3_l {
    padding: 0 20px;
  }
  .idx3 .idx3_r {
    padding-top: 25px;
  }
}
@media (min-width: 1400px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 1600px;
  }
}