@charset "UTF-8";
/* 1. ベース設定 */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
}

body {
  overflow-x: hidden;
}

html, body {
  overflow-x: hidden;
}

body {
  font-family: "fot-tsukuardgothic-std", sans-serif;
  font-weight: 600;
  font-style: normal;
  line-height: 1.6;
  color: #173180;
}

/* 2. レイアウト（モバイルファースト） */
.container {
  width: 82%;
  margin: 0 auto;
  padding: 0;
}

nav a {
  text-decoration: none;
  letter-spacing: 0.02em;
}

/* 3. レスポンシブ画像 */
img {
  max-width: 100%;
  height: auto;
}

/* 4. レスポンシブグリッド */
.grid {
  display: grid;
  grid-template-columns: 1fr;
}

body {
  position: relative;
}
body.open {
  overflow-y: hidden;
}

.sp_hide {
  display: none;
}

.sp-only {
  display: block;
}

.pc-only {
  display: none;
}

#loading {
  position: fixed;
  width: 100vw;
  height: 100vh;
  background-color: #def0fa;
  top: 0;
  left: 0;
  padding: 0 3em;
  z-index: 99;
  /* 順番に跳ねるディレイを設定 */
  /* バウンドアニメーション */
  /* フェードイン用のアニメーション */
}
#loading.fade-out {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}
#loading .loader {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100vh;
}
#loading .char {
  width: 28%; /* キャラのサイズ調整 */
  animation: bounce 1s infinite, fadeIn 1s forwards;
}
#loading .char img {
  max-width: 100%;
}
#loading .char:nth-child(1) {
  animation-delay: 0s, 0s;
}
#loading .char:nth-child(2) {
  animation-delay: 0.2s, 0s;
}
#loading .char:nth-child(3) {
  animation-delay: 0.4s, 0s;
}
@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-30px);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

ul {
  list-style: none;
}

a {
  color: #173180;
}

.sp-br {
  display: block;
}

body {
  padding-top: 4em;
}

header {
  position: relative;
  border-bottom: 1px #e5e5e5 solid;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 20;
  background-color: #fff;
}
header h1 {
  padding: 0.1em 0.5em 0.3em 0.5em;
}
header h1 img {
  max-width: 90px;
}
header #spMenu {
  position: absolute;
  width: 64px;
  height: 64px;
  right: 0;
  top: 0;
}
header #spMenu span {
  position: absolute;
  width: 28px;
  height: 1px;
  background-color: #004ea1;
  left: 0;
  right: 0;
  margin: auto;
  transition: 0.3s;
}
header #spMenu span:nth-child(1) {
  top: calc(50% - 5px);
}
header #spMenu span:nth-child(2) {
  top: calc(50% + 5px);
}
header #spMenu.open span {
  top: 50%;
}
header #spMenu.open span:nth-child(1) {
  transform: rotate(45deg);
}
header #spMenu.open span:nth-child(2) {
  transform: rotate(-225deg);
}
header #menu {
  width: 100%;
  border-bottom: 1px #b8b8b8 solid;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  display: none;
  background-color: #fff;
}
header #menu.open {
  opacity: 1;
  display: block;
  visibility: visible;
}
header #menu li {
  border-top: 1px #b8b8b8 solid;
}
header #menu li a {
  display: block;
  font-size: clamp(18px, 2vw, 18px);
  padding: 1.25em 1.5em;
  position: relative;
}
header #menu li a:after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 41%;
  right: 5%;
  width: 11px;
  height: 15px;
  background-size: 100% auto;
  background-image: url(../img/arrow.png);
}

/* モーダルのスタイル */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 9999;
}
.modal > div {
  justify-content: center;
  align-items: center;
  height: 100%;
}

.modal-content {
  position: relative;
  width: 92%;
  aspect-ratio: 16/9; /* ここで固定 */
  max-width: 800px;
}

.close-btn {
  position: absolute;
  top: -40px;
  right: 0;
  font-size: 30px;
  color: #fff;
  cursor: pointer;
}

.video-js {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain; /* 必要に応じて cover / contain */
}

.video-js {
  position: relative;
  padding-top: 56.25%; /* 16:9 の比率 */
  height: 0;
}

.video-js iframe,
.video-js video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.infomation_modal {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
}
.infomation_modal .modal-content {
  width: 90%;
  height: 84vh !important;
  background-color: #fff;
  border: 3px #173180 solid;
  border-radius: 8px;
}
.infomation_modal .modal-content .close-btn {
  z-index: 10;
  top: -1px;
  right: 0;
  background-color: #173180;
  width: 10vw;
  height: 10vw;
  line-height: 1.2;
  text-align: center;
  border-bottom-left-radius: 5px;
  min-width: 40px;
  min-height: 40px;
  max-width: 80px;
  max-height: 80px;
  font-size: clamp(32px, 8vw, 60px);
}
.infomation_modal .modal-content .modal-scroll-area {
  height: 100%;
  padding: 0 0.7em 2em 0.7em;
  overflow-y: auto;
  overflow-x: hidden;
}
.infomation_modal .modal-content h3 {
  margin-top: 2em;
  text-align: center;
  margin-bottom: 1.5em;
  line-height: 1.3;
  letter-spacing: -0.9px;
}
.infomation_modal .modal-content h3 span {
  display: inline-block;
  font-size: clamp(28px, 3.5vw, 32px);
  border-bottom: 2px #173180 solid;
}
.infomation_modal .modal-content .information_contents div {
  text-align: center;
  margin-bottom: 0.2em;
}
.infomation_modal .modal-content .information_contents .arrow_img {
  width: 8vw;
}
.infomation_modal .modal-content .information_contents .img02 {
  margin-top: -2em;
}
.infomation_modal .modal-content p.note,
.infomation_modal .modal-content p.text {
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  font-weight: normal;
}
.infomation_modal .modal-content p.noteLast {
  text-align: right;
}
.infomation_modal .modal-content p.text {
  font-size: clamp(14px, 1.8vw, 16px);
  text-align: center;
}
.infomation_modal .modal-content .video_grid {
  margin-top: 2em;
}
.infomation_modal .modal-content .video_grid > div {
  margin-bottom: 1.5em;
}
.infomation_modal .modal-content .video_grid p.title {
  text-align: center;
  margin-top: 0.25em;
  font-size: clamp(14px, 1.8vw, 16px);
}

main .btn {
  margin-top: 1.5em;
}
main .btn a {
  border: 1px #173180 solid;
  text-decoration: none;
  font-size: clamp(14px, 1.8vw, 16px);
  display: inline-block;
  text-align: center;
  padding: 0.45em 1em;
  border-radius: 40px;
  letter-spacing: -1px;
  line-height: 1;
}
main #first_view {
  padding: 2em 0;
  text-align: center;
}
main #first_view .obi {
  margin-bottom: 1em;
  opacity: 0;
  transition: 0.3s;
}
main #first_view .obi.view {
  opacity: 1;
}
main #first_view .obi p {
  font-size: clamp(16px, 2vw, 28px);
  display: inline-block;
  background-color: #173180;
  color: #fff;
  line-height: 1;
  padding: 0.25em 1em 0.4em;
  border-radius: 16px;
}
main #first_view .anim_text {
  font-size: clamp(35px, 5vw, 70px);
  line-height: 1.3;
  margin-bottom: 1em;
  opacity: 0;
  transition: 0.3s;
}
main #first_view .anim_text.view {
  opacity: 1;
}
main #first_view .anim_text span {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px) scale(0.8);
}
main #first_view .anim_text span:nth-child(1) {
  animation-delay: 0.1s;
}
main #first_view .anim_text span:nth-child(2) {
  animation-delay: 0.3s;
}
main #first_view .anim_text span:nth-child(3) {
  animation-delay: 0.5s;
}
main #first_view .anim_text span:nth-child(4) {
  animation-delay: 0.7s;
}
main #first_view .anim_text span:nth-child(5) {
  animation-delay: 0.9s;
}
main #first_view .anim_text span:nth-child(6) {
  animation-delay: 1.1s;
}
@keyframes popIn {
  0% {
    opacity: 0;
    transform: translateY(20px) scale(0.8);
  }
  50% {
    opacity: 1;
    transform: translateY(-10px) scale(1.2);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
main #first_view #movie {
  width: 92vw;
  margin: auto;
}
main #first_view #movie video {
  border-radius: 5px;
  width: 100%; /* 幅は画面に合わせる */
  aspect-ratio: 16/9; /* アスペクト比を固定 */
  -o-object-fit: cover;
     object-fit: cover; /* トリミングして中央表示（必要に応じて） */
  display: block;
}
main #first_view .full_movie_btn {
  width: 64vw;
  margin: 2em auto;
}
main section {
  padding-top: 8em;
  padding-bottom: 8em;
}
main section h2 {
  font-size: clamp(28px, 3.2vw, 40px);
  margin-bottom: 0.5em;
  letter-spacing: normal;
}
main section h3 {
  font-size: clamp(28px, 2vw, 28px);
}
main .anim_img01 {
  transform: scale(0.2);
  transition: all 0.5s ease-out;
  opacity: 0;
}
main .anim_img01.active {
  animation: anim_img01 0.4s forwards, fadeIn 0s forwards;
}
@keyframes anim_img01 {
  0% {
    opacity: 0;
    transform: scale(0.2);
  }
  60% {
    opacity: 1;
    transform: scale(1.2); /* ちょっと大きく弾む */
  }
  100% {
    transform: scale(1); /* 最終的に通常サイズ */
  }
}
main #neorest {
  padding-top: 5em;
}
main #neorest .container {
  position: relative;
}
main #neorest p {
  font-size: clamp(14px, 1.6vw, 18px);
  line-height: 1.8;
}
main #neorest p.intro {
  margin-top: 1em;
}
main #three_technology {
  padding-top: 5em;
  padding-bottom: 0;
  background-color: #def0fa;
}
main #three_technology .container {
  width: 92%;
  text-align: center;
}
main #three_technology .container h2 {
  margin-bottom: 0.5em;
}
main #three_technology .container p {
  font-size: clamp(14px, 2vw, 16px);
  line-height: 2;
  margin-bottom: 3em;
}
main #three_technology .container .grid div {
  margin-bottom: 1em;
}
main #three_technology #bnr {
  width: 89%;
  margin: 5em auto 0 auto;
  position: relative;
}
main #three_technology #views {
  margin-top: 7em;
}
main #three_technology #views .in_white {
  background-color: #fff;
  border: 2px #173180 solid;
  border-radius: 6px;
  padding: 3em 1em;
  position: relative;
}
main #three_technology #views .in_white h2 {
  letter-spacing: -1px;
}
main #three_technology #views .in_white:before, main #three_technology #views .in_white:after {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  background-image: url(../img/pin.png);
  background-size: 100% auto;
  position: absolute;
  top: 1%;
  left: 3%;
}
main #three_technology #views .in_white:after {
  left: auto;
  right: 3%;
}
main #three_technology #views .in_white .btm_in_white p {
  line-height: 1.8;
}
main #three_technology #views .in_white .btm_in_white .charactor .chara .grid {
  grid-template-columns: 3fr 2fr;
  margin-bottom: 0;
  position: relative;
}
main #three_technology #views .in_white .btm_in_white .charactor .chara .grid div {
  margin-bottom: 0;
}
main #three_technology #views .in_white .btm_in_white .charactor .chara .grid div img {
  position: relative;
  z-index: 2;
}
main #three_technology #views .in_white .btm_in_white .charactor .chara .grid div h3 {
  letter-spacing: normal;
  margin-top: -5px;
}
main #three_technology #views .in_white .btm_in_white .charactor .chara .grid div .srf {
  padding: 0 0.5em;
  padding-top: 1.4em;
}
main #three_technology #views .in_white .btm_in_white .charactor .chara .grid:after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #173180;
  position: absolute;
  top: 80%;
  left: 0;
  z-index: 0;
}
main #three_technology #views .in_white .btm_in_white .charactor .chara p.text {
  font-family: "Noto Sans JP", sans-serif;
  text-align: left;
  color: #000;
  margin-top: -8%;
}
main #three_technology #views .in_white .btm_in_white .charactor .chara p.text span {
  font-size: 120%;
  font-weight: bold;
  color: #173180;
  background: linear-gradient(transparent 60%, #def0fa 60%);
}
main #three_technology #views .in_white .btm_in_white .charactor .chara:last-child {
  margin-bottom: 0;
}
main #three_technology #views .in_white .btm_in_white .charactor .chara:last-child .text {
  margin-bottom: 0;
}
main #three_technology #views #cm_gallery {
  margin-top: 8em;
}
main #three_technology #views #cm_gallery .in_white {
  background-color: #fff;
  border: 2px #173180 solid;
  border-radius: 6px;
  padding: 1em 1em 2em 1em;
  position: relative;
}
main #three_technology #views #cm_gallery .in_white:before, main #three_technology #views #cm_gallery .in_white:after {
  display: none;
}
main #three_technology #views #cm_gallery .in_white h3 {
  font-size: clamp(24px, 2vw, 22px);
  margin-top: 1em;
}
main #three_technology #views #cm_gallery .in_white span.sec {
  margin-top: 1em;
  display: inline-block;
  border: 1px #173180 solid;
  font-size: clamp(14px, 2vw, 18px);
  font-weight: normal;
  padding: 0.15em 0.5em;
  line-height: 1.25;
}
main #recommends {
  padding-top: 3em;
  padding-bottom: 3em;
}
main #recommends h2 {
  text-align: center;
}
main #recommends .slides {
  margin-bottom: 3em;
}
main #recommends .slides .slick-slide {
  margin: 0 15px;
  text-align: center;
}
main #recommends .slides .slick-prev,
main #recommends .slides .slick-next {
  text-indent: -9999px;
  width: 35px;
  height: 35px;
  background: none;
  background-image: url(../img/prev.png);
  outline: none;
  background-size: 100% auto;
  border: none;
  position: absolute;
  top: 40%;
  left: 3%;
  z-index: 10;
}
main #recommends .slides .slick-next {
  background-image: url(../img/next.png);
  left: auto;
  right: 3%;
}
main #recommends .slides .product-name {
  margin-top: 0.8em;
}
main #recommends .slides .btn a {
  display: inline-block;
  padding: 0.8em 1.5em;
}
main #recommends .slides .note {
  font-size: clamp(12px, 2vw, 12px);
  font-weight: normal;
  color: #000;
  margin-top: 0.7em;
}
main #recommends .slides .slick-dots {
  display: flex;
  justify-content: center;
  margin-top: 2em;
}
main #recommends .slides .slick-dots li {
  margin-right: 1em;
}
main #recommends .slides .slick-dots li:last-child {
  margin-right: 0;
}
main #recommends .slides .slick-dots li button {
  text-indent: -9999px;
  width: 10px;
  height: 10px;
  border-radius: 5px;
  border: 1px #173180 solid;
  background-color: #fff;
}
main #recommends .slides .slick-dots li.slick-active button {
  background-color: #173180;
}
main #recommends .container {
  width: 90%;
}
main #recommends .container * {
  font-family: "Noto Sans JP", sans-serif;
  color: #303030;
  font-weight: normal;
  font-size: clamp(12px, 2vw, 14px);
}
main #recommends .container .accodion_wrap .acc_tit {
  margin: 2em 0 1.5em 0;
  text-align: center;
  font-size: clamp(13px, 2vw, 20px);
  border: 1px #303030 solid;
  padding: 1em 2em 1em 1em;
  font-weight: bold;
  position: relative;
  cursor: pointer;
}
main #recommends .container .accodion_wrap .acc_tit:before, main #recommends .container .accodion_wrap .acc_tit:after {
  content: "";
  width: 17px;
  height: 1px;
  background-color: #303030;
  position: absolute;
  right: 5%;
  top: 50%;
  transition: 0.3s;
}
main #recommends .container .accodion_wrap .acc_tit:after {
  transform: rotate(90deg);
}
main #recommends .container .accodion_wrap .acc_tit.open:after {
  transform: rotate(0deg);
}
main #recommends .container .accodion_wrap .acc_content {
  display: none;
}
main .container {
  position: relative;
}
main .anim_img {
  position: absolute;
  opacity: 0;
}
main .anim_img.anim_img01 {
  max-width: 90px;
  left: 0;
  top: -5em;
}
main .anim_img.anim_img02 {
  max-width: 100px;
  left: auto;
  right: 1em;
  top: -10.5em;
}
main .anim_img.anim_img02.active {
  animation: bell 0.4s forwards;
}
main .anim_img.anim_img03 {
  left: 0;
  top: auto;
  bottom: -7.5em;
}
main .anim_img.anim_img04 {
  left: auto;
  right: 0;
  top: -7em;
}
main .anim_img050607 {
  align-items: flex-end;
  position: relative;
  grid-auto-flow: column;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  grid-template-columns: 1fr 1fr 1fr;
  margin-top: 8em;
  width: 80%;
}
main .anim_img050607:before {
  content: "";
  display: block;
  width: 120vw;
  height: 30px;
  background-color: #fff;
  position: absolute;
  left: -5em;
  bottom: 0;
}
main .anim_img050607 > div {
  padding: 0 0.5em;
  margin-bottom: 0 !important;
}
main .anim_img050607 .srf_box {
  position: absolute;
  top: -5em;
  width: 90px;
  z-index: 2;
  left: 2em;
  animation-delay: 0.8s;
}
main .anim_img050607 .anim_img06 {
  animation-delay: 0.3s;
}
main .anim_img050607 .anim_img07 {
  animation-delay: 0.5s;
}
@keyframes bell {
  0% {
    opacity: 1;
    transform: rotate(0deg);
  }
  10% {
    opacity: 1;
    transform: rotate(15deg);
  }
  20% {
    opacity: 1;
    transform: rotate(-15deg);
  }
  30% {
    opacity: 1;
    transform: rotate(5deg);
  }
  40% {
    opacity: 1;
    transform: rotate(-5deg);
  }
  50% {
    opacity: 1;
    transform: rotate(1deg);
  }
  60% {
    opacity: 1;
    transform: rotate(-1deg);
  }
  70% {
    opacity: 1;
    transform: rotate(0deg);
  }
  80% {
    opacity: 1;
    transform: rotate(0deg);
  }
  90% {
    opacity: 1;
    transform: rotate(0deg);
  }
  to {
    opacity: 1;
    transform: rotate(0deg);
  }
}

#footer {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: normal;
  background-color: #0a163e;
  color: #fff;
  padding: 3em 0;
  font-size: clamp(12px, 2vw, 14px);
}
#footer .ftInr {
  flex-direction: column;
  justify-content: center;
}
#footer .ftInr .snsWrap {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1000px) {
  #footer .ftInr .snsWrap {
    justify-content: center;
    margin-bottom: 2em;
  }
}
@media screen and (max-width: 820px) {
  #footer .ftInr .snsWrap {
    justify-content: flex-start;
    padding-left: 1em;
    padding-right: 1em;
  }
}
#footer .ftInr .snsWrap .ttl {
  margin-right: 1em;
}
#footer .ftInr .snsWrap .icnWrap {
  display: flex;
  list-style: none;
}
#footer .ftInr .snsWrap .icnWrap .item {
  padding: 0 1em;
}
#footer .ftInr .snsWrap .icnWrap .item img {
  width: 36px;
}
#footer .ftInr .ancColWrap {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding-left: 1em;
  padding-right: 1em;
}
#footer .ftInr .ancColWrap p {
  margin-bottom: 1.25em;
}
#footer .ftInr .ancColWrap p a {
  color: #fff;
  text-decoration: none;
}
#footer .ftInr .ancColWrap .txtLast {
  margin-top: 1em;
}

#cursor-icon {
  display: none;
}
#cursor-icon.active {
  display: none;
}

sup {
  font-size: 80% !important;
  top: -0.25em;
}

@media (min-width: 768px) {
  #cursor-icon {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    font-size: 24px;
    transform: translate(-40%, -40%);
    z-index: 9999;
  }
  #cursor-icon.active {
    display: flex;
  }
  .sp-br {
    display: none;
  }
  .sp-only {
    display: none;
  }
  .pc-only {
    display: block;
  }
  header {
    background-color: #173180;
    padding: 0.5em 0px;
  }
  header .grid {
    grid-template-columns: 2fr 5fr;
  }
  header #spMenu {
    display: none;
  }
  header #menu {
    background-color: transparent;
    display: block;
    visibility: visible;
    opacity: 1;
    border: none;
    padding-right: 1em;
  }
  header #menu ul {
    display: flex;
    justify-content: flex-end;
  }
  header #menu ul li {
    border: none;
  }
  header #menu ul li a {
    padding: 1.1em 1em;
    color: #fff;
    font-size: 16px;
  }
  header h1 svg image {
    fill: #fff;
  }
  main .btn a {
    font-size: 22px;
  }
  main #first_view {
    padding-top: 5em;
    position: relative;
  }
  main #first_view .obi {
    margin-bottom: 2.6em;
  }
  main #first_view .obi p {
    border-radius: 32px;
  }
  main #first_view .full_movie_btn {
    max-width: 415px;
    position: absolute;
    bottom: -15%;
    right: 5.7%;
  }
  main #neorest {
    padding-top: 15.5em;
    padding-bottom: 12.5em;
  }
  main #neorest p.intro {
    margin-top: 0;
  }
  main #neorest .container {
    max-width: 1200px;
  }
  main #neorest .container .grid {
    align-items: center;
    grid-template-columns: 3fr 2fr;
  }
  main #three_technology {
    padding-bottom: 11.5em;
  }
  main #three_technology .container {
    max-width: 1555px;
  }
  main #three_technology .container > p {
    font-weight: normal;
    margin-bottom: 6.5em;
  }
  main #three_technology .grid {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2em;
  }
  main #three_technology .border-box {
    border: 3px #173180 solid;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    box-shadow: 6.691px 7.431px 0px 0px rgba(208, 226, 236, 0.58);
    max-width: 496px;
  }
  main #three_technology .border-box img {
    vertical-align: bottom;
  }
  main #three_technology .border-box > img {
    position: relative;
    z-index: 1;
  }
  main #three_technology .border-box .bg-zoom_box {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 0;
    margin-bottom: 0 !important;
    transition: 1s;
  }
  main #three_technology .border-box:hover .bg-zoom_box {
    transform: scale(1.1, 1.1);
  }
  main #three_technology #bnr {
    margin-top: 9em;
  }
  main #three_technology #views {
    margin-top: 9.5em;
  }
  main #three_technology #views .in_white {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 6.25em;
    padding-right: 6.25em;
    border-width: 3px;
    padding-top: 5.5em;
  }
  main #three_technology #views .in_white:before, main #three_technology #views .in_white:after {
    background-image: url(../img/pin_pc.png);
    width: 24px;
    height: 24px;
    top: 3%;
  }
  main #three_technology #views .in_white .btm_in_white .charactor {
    gap: 4.5em;
  }
  main #three_technology #views .in_white .btm_in_white .charactor .chara .grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  main #three_technology #views .in_white .btm_in_white .charactor .chara .grid:after {
    display: none;
  }
  main #three_technology #views .in_white .btm_in_white .charactor .chara .charactor_img {
    max-width: 275px;
  }
  main #three_technology #views .in_white .btm_in_white .charactor .chara p.text {
    margin-top: 0;
  }
  main #three_technology #views .in_white .btm_in_white .charactor .chara h3 {
    font-size: 32px;
    margin-top: 0.5em;
    border-bottom: 2px #173180 solid;
    margin-bottom: 0.5em;
    padding-bottom: 0.25em;
  }
  main #three_technology #views #cm_gallery {
    margin-top: 11em;
  }
  main #three_technology #views #cm_gallery .in_white {
    max-width: 680px;
    padding: 2em 0em 2em 2em;
    border-width: 3px;
  }
  main #three_technology #views #cm_gallery .in_white span.sec {
    font-weight: bold;
  }
  main #three_technology #views #cm_gallery .pc-grid {
    display: grid;
    grid-template-columns: 3fr 2fr;
    align-items: center;
    justify-content: center;
  }
  main #three_technology #views #cm_gallery .pc-grid figure {
    max-width: 380px;
  }
  main #three_technology #views #cm_gallery .pc-grid h3 {
    margin-top: 0;
  }
  main #recommends {
    padding-top: 7em;
    padding-bottom: 7em;
  }
  main #recommends h2 {
    margin-bottom: 2em;
  }
  main #recommends .container {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
  }
  main #recommends .slider-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    overflow: visible; /* はみ出しOKにする */
    padding: 0; /* 中央に余白を作って左右を見せる */
    margin-bottom: 6em;
  }
  main #recommends .slick-list {
    overflow: visible;
  }
  main #recommends .slides .product-name {
    font-size: 18px;
    letter-spacing: 0;
  }
  main #recommends .slides .slick-slide {
    margin: 0 20px; /* 左右の隙間を小さく */
  }
  main #recommends .slides .slick-slide .btn a {
    font-size: 16px;
  }
  main #recommends .slides .btn a {
    padding: 0.5em 1em 0.6em 1em;
  }
  main #recommends .slides .slick-next,
  main #recommends .slides .slick-prev {
    width: 70px;
    height: 70px;
    top: 21%;
    cursor: pointer;
  }
  main #recommends .slides .slick-next {
    background-image: url(../img/next_pc.png);
  }
  main #recommends .slides .slick-prev {
    background-image: url(../img/prev_pc.png);
  }
  main .anim_img {
    position: absolute;
    opacity: 0;
  }
  main .anim_img.anim_img01 {
    max-width: 146px;
    top: -40%;
    left: -13%;
  }
  main .anim_img.anim_img02 {
    max-width: 151px;
    left: auto;
    right: 7%;
    top: -5%;
  }
  main .anim_img.anim_img02.active {
    animation: bell 0.4s forwards;
  }
  main .anim_img.anim_img03 {
    top: auto;
    left: 6%;
    bottom: -31%;
  }
  main .anim_img.anim_img04 {
    left: auto;
    right: 5%;
    top: 2%;
  }
  main .anim_img050607 {
    max-width: 340px;
    position: absolute;
    align-items: flex-end;
    gap: 1em;
    bottom: -7.5%;
    gap: 0 !important;
  }
  main .anim_img050607 .srf_box {
    position: absolute;
    top: -64%;
    width: 100px;
    z-index: 2;
    left: 11%;
    animation-delay: 0.8s;
  }
  main .anim_img050607 .anim_img06 {
    animation-delay: 0.3s;
  }
  main .anim_img050607 .anim_img07 {
    animation-delay: 0.5s;
  }
  #footer .ftInr {
    display: grid;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    grid-auto-flow: column;
    justify-content: space-between;
    grid-template-columns: 5fr 5fr;
    align-items: center;
  }
  #footer .ftInr .ancColWrap {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  #footer .ftInr .ancColWrap p {
    margin: 0;
  }
  #footer .ftInr .ancColWrap .txtLast {
    margin: 0;
  }
  .infomation_modal .modal-content {
    width: 760px;
  }
  .infomation_modal .modal-content .modal-scroll-area {
    padding: 0 2em 2em 2em;
  }
  .infomation_modal .modal-content .close-btn {
    width: 50px;
    height: 50px;
    font-size: 40px;
  }
  .infomation_modal .modal-content h3 {
    margin-bottom: 2.5em;
    letter-spacing: 0;
  }
  .infomation_modal .modal-content .video_grid {
    grid-template-columns: 1fr 1fr;
    gap: 2em;
    margin-top: 2.5em;
  }
  .infomation_modal .modal-content .information_contents {
    grid-auto-flow: column;
    justify-content: center;
    grid-template-columns: 300px 38px 340px;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
  }
  .infomation_modal .modal-content .information_contents .arrow_img {
    width: 38px;
    position: relative;
    right: -10px;
    top: 50px;
  }
  .infomation_modal .modal-content .information_contents .img02 {
    margin-top: 0;
  }
}
@media (min-width: 1000px) {
  #loading .loader {
    max-width: 380px;
    margin: auto;
  }
  #loading img.char {
    max-width: 111px;
  }
}
@media (max-width: 1200px) and (min-width: 768px) {
  main #neorest .grid {
    gap: 1em;
  }
  main #three_technology #views .in_white {
    padding-left: 4vw;
    padding-right: 4vw;
  }
  main #three_technology #views .in_white .btm_in_white .charactor {
    gap: 4vw;
  }
  main .anim_img.anim_img04 {
    top: -11vw;
  }
}/*# sourceMappingURL=common.css.map */