@charset "UTF-8";
html {
  font-size: calc(10 / 375 * 100vw);
}

body {
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
  font-family: 'Zen Kaku Gothic New', '游ゴシック', YuGothic, 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', Verdana, 'メイリオ', Meiryo, Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
  color: #333333;
}

img {
  width: 100%;
}

@media (min-width: 768px) {
  a[href^='tel:'] {
    pointer-events: none;
  }
}

.fade {
  opacity: 0;
  filter: blur(10px);
  transition: all 0.6s;
  transition-delay: 0.2s;
}

.fade.active {
  opacity: 1;
  filter: blur(0);
}

.dib {
  display: inline-block;
}

.inner {
  padding: 0 2.4rem;
}

.sec {
  padding: 8rem 0;
}

br.pc_on {
  display: none;
}

.sp_none {
  display: none;
}

.primary_btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 4.8rem;
  margin: 0 auto;
  background-image: linear-gradient(to right, #00a5d9 0%, #00b3e6 100%);
  border-radius: 2.4rem;
  outline: 2px solid #fff;
  outline-offset: -0.4rem;
  color: #fff;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.05em;
  text-align: center;
  position: relative;
}

.primary_btn::after {
  content: '';
  width: 1.6rem;
  aspect-ratio: 16/12;
  background-image: url(../img/common/primary_btn_arrow.svg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  right: 1.6rem;
  top: 50%;
  transform: translateY(-50%);
}

/* header */
header {
  width: 100%;
  padding: 0.8rem;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  transition: all 0.4s;
}

header.fixed {
  background-color: rgba(255, 255, 255, 0.56);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

header .main_logo {
  width: 5.8rem;
  position: relative;
  z-index: 101;
}

header .header_wrap {
  padding: 5.6rem 2.4rem;
  background-image: url(../img/common/sp_nab_bg.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100dvh;
  z-index: 100;
  overflow: auto;
  opacity: 0;
  visibility: hidden;
  filter: blur(10px);
  transition: all 0.4s;
}

header.active .header_wrap {
  opacity: 1;
  visibility: visible;
  filter: blur(0);
}

header .header_nav {
  padding-top: 5.6rem;
}

header .header_nav .list {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
  margin-bottom: 4rem;
}

header .header_nav .list .item {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.1em;
}

header .header_nav .in_list {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}

header .hamburger {
  position: absolute;
  top: 50%;
  right: 0.8rem;
  transform: translateY(-50%);
  width: 5.6rem;
  aspect-ratio: 1/1;
  background-image: linear-gradient(to bottom, #0486bd, #00b3e6);
  border-radius: 50%;
  outline: 1px solid #fff;
  outline-offset: -0.3rem;
  cursor: pointer;
  z-index: 101;
}

header .hamburger::after {
  content: 'MENU';
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1;
  color: #fff;
  position: absolute;
  bottom: 1.2rem;
  left: 50%;
  transform: translateX(-50%);
}

header .hamburger.active::after {
  content: 'CLOSE';
}

header .hamburger .span_wrap {
  position: absolute;
  top: 1.3rem;
  left: 50%;
  transform: translateX(-50%);
  width: fit-content;
  height: 1.2rem;
}

header .hamburger .span_wrap span {
  display: block;
  width: 2.8rem;
  height: 0.2rem;
  background-color: #fff;
  border-radius: 0.2rem;
  transition: all 0.4s;
  position: absolute;
  left: 50%;
  transform: translateX(-50%) rotate(0);
}

header .hamburger .span_wrap span:first-child {
  top: 0;
}

header .hamburger .span_wrap span:last-child {
  bottom: 0;
}

header .hamburger.active .span_wrap span:first-child {
  top: 50%;
  transform: translateX(-50%) translateY(-50%) rotate(20deg);
}

header .hamburger.active .span_wrap span:last-child {
  top: 50%;
  transform: translateX(-50%) translateY(-50%) rotate(-20deg);
}

header .content_wrap {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}

header .content_wrap .tel_wrap {
  display: flex;
  flex-direction: column-reverse;
  gap: 0.4rem;
}

header .content_wrap .tel_wrap .text {
  text-align: center;
  font-size: 1.4rem;
  font-weight: 400;
}

header .content_wrap .tel_wrap .tel {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.2rem;
  height: 5.4rem;
  padding: 0 2.4rem;
  border-radius: 3.2rem;
  outline: 1px solid #fff;
  outline-offset: -0.3rem;
  background-image: linear-gradient(to right, #1ad1b2, #00a5d9);
  color: #fff;
  font-size: 2.2rem;
  font-weight: 900;
  letter-spacing: 0.05em;
}

header .content_wrap .tel_wrap .tel::before {
  content: '';
  display: block;
  width: 1.6rem;
  aspect-ratio: 1/1;
  background-image: url(../img/common/tel_btn_icon.svg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

header .content_wrap .reservation {
  padding: 1.6rem;
  background-color: rgba(255, 255, 255, 0.48);
  border: 1px solid #0486bd;
  border-radius: 1.6rem;
}

header .content_wrap .reservation .text {
  margin-bottom: 1.2rem;
  color: #0486bd;
  text-align: center;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.1em;
}

header .content_wrap .reservation .in_list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

header .content_wrap .reservation .in_list .in_item a {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.2rem;
  height: 5.4rem;
  background-color: #fff;
  border: 1px solid #0486bd;
  border-radius: 3.2rem;
  outline: 1px solid #fff;
  outline-offset: -0.3rem;
  color: #fff;
  background-image: linear-gradient(to right, #00a5d9 0%, #0486bd 50%, #0c6ac9 100%);
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.5;
}

header .content_wrap .reservation .in_list .in_item a::before {
  content: '';
  display: block;
  width: 2.4rem;
  aspect-ratio: 1/1;
  background-image: url(../img/common/reservation_icon.svg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* 共通セクション */

#access {
  background-image: url(../img/common/access_bg-sp.svg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

#access .content_wrap {
  display: flex;
  flex-direction: column;
  gap: 4.8rem;
}

#access .content {
  position: relative;
  z-index: 0;
}

#access .content::before {
  content: '';
  display: block;
  width: calc(100% + 1.6rem);
  height: calc(100% - 9.6rem);
  background-color: #e4f7fc;
  border-radius: 1.6rem;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}

#access .map {
  width: 100%;
  margin-bottom: 1.6rem;
  aspect-ratio: 327/181;
  border-radius: 1.6rem;
  overflow: hidden;
}

#access .map iframe {
  width: 100%;
  height: 100%;
}

#access .text_wrap {
  padding: 0 0.8rem 3.2rem;
}

#access .ttl {
  width: calc(100% + 3.2rem);
  margin-bottom: 1.6rem;
  padding: 0.8rem 1.6rem;
  color: #fff;
  background-image: linear-gradient(to right, #0486bd 0%, #00a5d9 50%, #3fc8ef 100%);
  border-radius: 0 0.8rem 0.8rem 0;
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: -0.03em;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

#access .ttl::before {
  content: '';
  display: block;
  width: 0.8rem;
  aspect-ratio: 1/1;
  background-color: #0486bd;
  clip-path: polygon(0% 100%, 100% 0, 100% 100%);
  position: absolute;
  left: 0;
  top: -0.7rem;
}

#access .text_wrap {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

#access .text {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.1em;
}

#access .data_wrap {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

#access .data_wrap .data {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

#access .data_wrap .data .data_ttl {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.8rem;
  width: 14rem;
  height: 3.2rem;
  color: #00a5d9;
  background-color: #fff;
  border-radius: 1.6rem;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.1em;
}

#access .data_wrap .data .data_ttl::before {
  content: '';
  width: 1.6rem;
  aspect-ratio: 1/1;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

#access .data_wrap .data .data_ttl.tel::before {
  background-image: url(../img/common/access_tel_icon.svg);
}

#access .data_wrap .data .data_ttl.time::before {
  background-image: url(../img/common/access_time_icon.svg);
}

#access .data_wrap .data .text {
  padding-left: 2.4rem;
}

#contact {
  padding: 8rem 0;
  background-image: url(../img/common/contact_bg-sp.svg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

#contact .content_wrap {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

#contact .sec_ttl {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-bottom: 4.8rem;
}

#contact .sec_ttl .en {
  padding-bottom: 0;
  margin-bottom: 0;
}

#contact .sec_ttl .en::after {
  display: none;
}

#contact .sec_ttl .en img {
  width: auto;
  height: 7.5rem;
}

#contact .sec_ttl .ja {
  color: #0486bd;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.05em;
}

#contact .content {
  padding: 2.4rem;
  background-color: #fff;
  border-radius: 1.6rem;
}

#contact .content .ttl {
  padding-bottom: 1.6rem;
  margin-bottom: 1.6rem;
  border-bottom: 1px solid #e4f7fc;
  color: #00a5d9;
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.05em;
}

#contact .content .text {
  margin-bottom: 1.6rem;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.5;
}

#contact .content .link_wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2.4rem;
}

#contact .content .link_wrap .link {
  display: block;
  width: 18.4rem;
  padding-bottom: 0.8rem;

  border-bottom: 1px solid #0486bd;
  color: #0486bd;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.5;
}

#contact .content .link_wrap .link span {
  position: relative;
  display: block;
}

#contact .content .link_wrap .link span::after {
  content: '';
  display: block;
  width: 1.6rem;
  aspect-ratio: 16 / 12;
  background-image: url(../img/common/arrow_right.svg);
  background-size: cover;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

/* footer */
.footer {
  padding: 4.8rem 0;
  background-image: linear-gradient(to bottom, #00b3e6 0%, #01a1d5 45%, #0486bd 100%);
}

.footer .footer_nav .list {
  display: flex;
  flex-wrap: wrap;
  gap: 1.6rem 2.4rem;
}

.footer .footer_nav .list .item {
  width: calc(50% - 1.2rem);
}

.footer .footer_nav .list .item.policy {
  width: 100%;
}

.footer .footer_nav .list .item a {
  display: block;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 400;
}

.footer hr {
  background-color: #fff;
  margin: 4rem 0 2.4rem;
}

.footer .copyright {
  margin-top: 2.4rem;
  color: #fff;
  text-align: center;
  font-size: 1.6rem;
  font-weight: 400;
}

/* 下層 */
.lower_header {
  height: 42.9rem;
  padding-top: 11.2rem;
  background-image: url(../img/common/lower_header_bg-sp.svg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.lower_ttl {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.lower_ttl .en {
  height: 8.4rem;
  margin-bottom: 0.8rem;
}
.lower_ttl .en img {
  width: auto;
  height: 100%;
}

.lower_ttl .ja {
  color: #0486bd;
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.05em;
}

.bread_rail {
  display: flex;
  scrollbar-width: none;
  position: absolute;
  right: 0.8rem;
  bottom: 0.8rem;
}

.bread_rail::-webkit-scrollbar {
  display: none;
}

.bread_rail li {
  display: block;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.75;
  white-space: nowrap;
}

.bread_rail li a {
  transition: all 0.4s;
}

.bread_rail li a:hover {
  color: #0486bd;
}

.bread_rail li:not(:last-child) {
  padding-right: 2.4rem;
  margin-right: 1.6rem;
  position: relative;
}

.bread_rail li:not(:last-child)::after {
  content: '';
  width: 0.4rem;
  height: 0.8rem;
  background-image: url(../img/common/bread_rail_arrow.svg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

.lower_main {
  background-color: #f1fafa;
}

.lower_main .sec {
  padding: 6.4rem 0;
}

.sec_ttl {
  margin-bottom: 4.8rem;
}

.sec_ttl .en {
  display: block;
  padding-bottom: 1.6rem;
  margin-bottom: 0.8rem;
  color: #21b7e5;
  font-size: 4.8rem;
  font-weight: 300;
  line-height: 1;
  position: relative;
}

.sec_ttl .en::after {
  content: '';
  width: 100%;
  height: 1px;
  background-image: linear-gradient(to right, #1ad1b2 0%, #21b7e5 30%, #0486bd 60%, #0c6ac9 100%);
  position: absolute;
  bottom: 0;
  left: 0;
}

.sec_ttl .ja {
  display: block;
  color: #0486bd;
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.05em;
}

@media (min-width: 768px) {
  html {
    font-size: min(calc(10 / 1360 * 100vw), 10px);
  }

  .inner {
    width: 100%;
    max-width: 112.8rem;
    margin: 0 auto;
  }

  .primary_btn {
    width: 35.2rem;
    transition: all 0.4s;
  }

  .primary_btn:hover {
    outline-offset: 0;
  }

  .primary_btn::after {
    transform: translate(0, -50%);
    transition: all 0.4s;
  }

  .primary_btn:hover::after {
    transform: translate(0.4rem, -50%);
  }

  .pc_none {
    display: none;
  }

  br.pc_on {
    display: inline;
  }

  .sp_none {
    display: block;
  }

  .sec {
    padding: 8rem 0;
  }

  /* header */

  header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
    padding: 0 2.4rem;
  }

  header .main_logo {
    transition: all 0.4s;
  }

  header .main_logo:hover {
    opacity: 0.7;
  }

  header .header_wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    position: static;
    height: auto;
    padding: 0;
    overflow: visible;
    visibility: visible;
    opacity: 1;
    filter: blur(0);
    background-image: none;
  }

  header .header_nav {
    padding: 0;
  }

  header .header_nav .list {
    flex-direction: row;
    margin: 0;
    gap: 4rem;
  }

  header .header_nav .list .item {
    height: 100%;
    font-size: 1.8rem;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: normal;
  }

  header .header_nav .list .item a,
  header .header_nav .list .item.have_list p {
    display: block;
    padding: 2.4rem 0;
    transition: all 0.4s;
    position: relative;
  }

  header .header_nav .list .item.have_list p {
    display: flex;
    align-items: center;
    gap: 0.8rem;
  }

  header .header_nav .list .item.have_list p::after {
    content: '';
    /* 下向き三角形アイコン（w12 h6 #00A5D9） clip-path使用 */
    display: block;
    width: 1.2rem;
    aspect-ratio: 12/6;
    background-color: #00a5d9;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
  }

  header .header_nav .list .item a:hover {
    color: #00a5d9;
  }

  header .have_list {
    cursor: pointer;
    position: relative;
  }

  .in_list {
    padding: 2.4rem 3.2rem;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 0.8rem;
    position: absolute;
    top: calc(100% + 0.8rem);
    left: 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s;
    filter: blur(10px);
  }

  header .have_list:hover .in_list {
    opacity: 1;
    visibility: visible;
    filter: blur(0);
  }

  .in_list::before {
    content: '';
    display: block;
    width: 1.6rem;
    aspect-ratio: 1 / 1;
    background-color: rgba(255, 255, 255, 0.48);
    clip-path: polygon(50% 0, 0 100%, 100% 100%);
    position: absolute;
    top: -1.6rem;
    left: 2.4rem;
  }

  header .header_nav .in_list {
    width: fit-content;
    flex-direction: row;
  }

  header .header_nav .in_list .in_item a {
    display: flex;
    padding: 0.8rem 1.6rem;
    flex-direction: column;
    color: #0486bd;
    border: 1px solid #0486bd;
    border-radius: 0.2rem;
    text-align: center;
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 0.1em;
    white-space: nowrap;
    position: relative;
    z-index: 0;
  }

  header .header_nav .in_list .in_item a::before {
    content: '';
    display: block;
    width: calc(100% - 0.8rem);
    height: calc(100% - 0.8rem);
    background-color: #e4f7fc;
    border: 1px solid #80def7;
    border-radius: 0.2rem;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    z-index: -1;
    transition: all 0.2s;
  }

  header .header_nav .in_list .in_item a:hover::before {
    width: 100%;
    height: 100%;
  }

  header .header_nav .in_list .in_item a span {
    display: block;
    height: 1.4rem;
    text-align: center;
  }

  header .header_nav .in_list .in_item a span img {
    width: auto;
    height: 100%;
    vertical-align: top;
  }

  header .content_wrap .reservation .in_list {
    flex-direction: row;
    left: auto;
    right: 0;
  }

  header .content_wrap .reservation .in_list .in_item a {
    width: 27.6rem;
    height: 6.4rem;
    border-radius: 0.2rem;
    outline: none;
    background: none;
    position: relative;
    z-index: 0;
    text-align: center;
    font-weight: 500;
    letter-spacing: 0.1em;
  }

  header .content_wrap .reservation .in_list .in_item a::before {
    content: '';
    display: block;
    width: calc(100% - 0.8rem);
    height: calc(100% - 0.8rem);
    background-image: linear-gradient(to right, #00a5d9 0%, #0486bd 50%, #0c6ac9 100%);
    border: 1px solid #80def7;
    border-radius: 0.2rem;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    z-index: -1;
    transition: all 0.2s;
  }

  header .content_wrap .reservation .in_list .in_item a:hover::before {
    width: 100%;
    height: 100%;
  }

  header .content_wrap {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 3.2rem;
  }

  header .content_wrap .tel_wrap {
    flex-direction: column;
    gap: 0.2rem;
  }

  header .content_wrap .tel_wrap .tel {
    height: auto;
    background-image: none;
    outline: none;
    color: inherit;
  }

  header .content_wrap .tel_wrap .tel::before {
    width: 2.4rem;
    background-image: url(../img/common/tel_icon.svg);
  }

  header .content_wrap .reservation {
    display: flex;
    align-items: center;
    padding: 1.2rem 2rem;
    border: none;
    border-radius: 3.2rem;
    background-image: linear-gradient(to right, #00a5d9 0%, #0486bd 50%, #0c6ac9 100%);
    outline: 1px solid #fff;
    outline-offset: -0.4rem;
  }

  header .content_wrap .reservation::before {
    content: '';
    display: block;
    width: 2.4rem;
    margin-right: 0.8rem;
    aspect-ratio: 1/1;
    background-image: url(../img/common/reservation_icon.svg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }

  header .content_wrap .reservation::after {
    content: '';
    display: block;
    width: 1.2rem;
    aspect-ratio: 1.2/0.6;
    background: #fff;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    margin-left: 0.8rem;
  }

  header .content_wrap .reservation .text {
    margin: 0;
    color: #fff;
    font-weight: 500;
    letter-spacing: normal;
  }

  /* 共通セクション */
  #access {
    background-image: url(../img/common/access_bg-pc.svg);
  }

  #access .content_wrap {
    max-width: 112.8rem;
    margin: 0 auto;
    gap: 6.4rem;
  }

  #access .content {
    position: relative;
    padding-top: 120px;
  }

  #access .content::before {
    width: 82.4rem;
    height: 36.4rem;
    left: 0.8rem;
    transform: translateX(0);
  }

  #access .content .map {
    width: 54.4rem;
    aspect-ratio: 544 / 300;
    position: absolute;
    top: 0;
    right: 0;
  }

  #access .ttl {
    width: 48.8rem;
    margin: 0 0 3.2rem;
    left: 0;
    transform: translateX(0);
  }

  #access .text_wrap {
    padding: 0 0 4.8rem 4rem;
  }

  #access .text {
    font-size: 1.8rem;
  }

  #access .data_wrap .data {
    flex-direction: row;
    align-items: center;
    gap: 2.2rem;
  }

  #access .data_wrap .data .text {
    padding-left: 0;
  }

  #contact {
    background-image: url(../img/common/contact_bg-pc.svg);
  }

  #contact .inner {
    display: flex;
    justify-content: space-between;
    gap: 3.2rem;
  }

  #contact .content_wrap {
    width: 64rem;
  }

  #contact .content_wrap .content {
    padding: 2.4rem 4.8rem;
  }

  #contact .content .text {
    letter-spacing: normal;
  }

  #contact .content .link_wrap {
    align-items: stretch;
    justify-content: flex-end;
    flex-direction: row;
    gap: 4rem;
  }

  #contact .content .link_wrap .link {
    transition: all 0.4s;
  }

  #contact .content .link_wrap .link {
    opacity: 0.7;
  }

  #contact .content .link_wrap .link span::after {
    transition: all 0.4s;
    transform: translate(0, -50%);
  }

  #contact .content .link_wrap .link:hover span:after {
    transform: translate(0.4rem, -50%);
  }

  .footer .footer_nav .list {
    flex-wrap: nowrap;
    justify-content: flex-end;
  }

  .footer .footer_nav .list .item,
  .footer .footer_nav .list .item.policy {
    width: auto;
  }

  .footer .footer_nav .list .item a {
    transition: all 0.4s;
  }

  .footer .footer_nav .list .item a:hover {
    opacity: 0.7;
  }

  .footer hr {
    margin: 2.4rem 0;
  }

  .footer .copy_wrap {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center;
  }

  .footer .copyright {
    margin-top: 0;
  }

  /* 下層 */
  .lower_header {
    height: 32.5rem;
    padding-top: 13.6rem;
    background-image: url(../img/common/lower_header_bg-pc.jpg);
  }

  .lower_main .sec {
    padding: 8rem 0;
  }

  .lower_main .inner {
    width: 116.8rem;
    max-width: none;
  }

  .lower_ttl {
    gap: 1.6rem;
  }

  .lower_ttl .en {
    height: 9.8rem;
  }

  .lower_ttl .ja {
    font-size: 2.4rem;
  }

  .bread_rail {
    right: 2.4rem;
  }

  .sec_ttl .en {
    font-size: 4.8rem;
    padding-left: 2.4rem;
  }

  .sec_ttl .ja {
    padding-left: 2.4rem;
  }
}
