@charset "utf-8";

/*====================================================================
  clearfix
====================================================================*/
.clearfix:after {
  content: ".";
  display: block;
  clear: both;
  height: 0;
  visibility: hidden;
}
.clearfix {
  min-height: 1px;
  overflow: hidden;
}
* html .clearfix {
  height: 1px;
  overflow: hidden;
}

/*====================================================================
  common
====================================================================*/
html.fixed,
body.fixed {
  overflow: hidden;
  width: 100%;
}

.sp_view {
  display: none;
}

.pc_view {
  display: block;
}

.hover {
  transition: all 0.4s ease;
}
.hover:hover {
  opacity: 0.8;
  transition: all 0.4s ease;
  
}

a.tel {
  color: #2E2E2E;
  text-decoration: none;
}

/* 本番環境では復活 */
.grecaptcha-badge {
  display: none;
}

.js-fadeup {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.9s ease, transform 0.9s ease;
  will-change: opacity, transform;
}

.js-fadeup.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/*====================================================================
  base
====================================================================*/
html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
  overscroll-behavior: none;
}

@supports (height: 100dvh) {
  html,
  body {
    height: 100dvh;
  }
}

html {
  scroll-behavior: auto;
}

html.smooth-scroll {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  min-width: 1240px;
  background: #fff;
  /* overflow-x: hidden; */
}

@media screen and (min-width: 769px) and (max-width: 1439px) {
  body {
    min-width: 1240px;
  }
}

#wrapper {
  position: relative;
  width: 100%;
}

img {
  max-width: 100%;
  height: auto;
}

/*====================================================================
  Loading
====================================================================*/
#loading {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #111111;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.9s ease, visibility 0.9s ease;
}

#loading.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

#loading .loading_inner {
  text-align: center;
}

#loading .loading_logo {
  opacity: 0;
  transform: translateY(30px);
  animation: loadingLogoIn 1.2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

#loading .loading_logo img {
  display: block;
  width: min(140px, 26vw);
  height: auto;
  margin: 0 auto;
}

#loading .loading_line {
  width: 0;
  height: 3px;
  background: rgba(255, 255, 255, 0.7);
  margin: 24px auto 0;
  animation: loadingLine 1s cubic-bezier(0.77, 0, 0.175, 1) 0.45s forwards;
}

@keyframes loadingLogoIn {
  0% {
    opacity: 0;
    transform: translateY(30px);
    filter: blur(6px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes loadingLine {
  0% {
    width: 0;
    opacity: 0;
  }
  100% {
    width: min(180px, 36vw);
    opacity: 1;
  }
}

/*====================================================================
  MV 初期表示
====================================================================*/
#mv {
  opacity: 0;
   visibility: hidden;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

#mv.is-visible {
  opacity: 1;
 visibility: visible;
}

/*====================================================================
  MV
====================================================================*/
#mv {
  clear: both;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  background-image: url("../images/bg_mv.webp");
  background-size: cover;
  background-position: top center;
}

#mv_wrap {
  clear: both;
  width: 1240px;
  margin: 0 auto;
  position: relative;
  padding: 30px 0 0;
}
#mv h1 {
 margin-left: 2%; 
}

#mv_wrap a#bt_instagram {
  position: absolute;
  top: 30px;
  right: 3%;
}

#copy {
  position: absolute;
  top: 260px;
  left: 160px;
}

/*====================================================================
  navigator
====================================================================*/
#navigator {
  width: 100%;
  height: 100px;
  box-sizing: border-box;
  padding: 38px 0 0;
  background: linear-gradient(180deg, #314b6f 0%, #223b5c 50%, #1b2f4a 100%);
}

#navigator ul {
  width: 1200px;
  display: flex;
  justify-content: center;
  gap: 160px;
  margin: 0 auto;
  padding: 0;
}

#navigator ul li a {
  font-size: 24px;
  color: #FFFFFF;
  letter-spacing: 0.15em;
  font-weight: bold;
  transition: all 0.4s ease;
}
#navigator ul li a:hover {
  color: #FFFF00;
   transition: all 0.4s ease;
}

/*====================================================================
  section common
====================================================================*/
.sec {
  clear: both;
  width: 1200px;
  margin: 0 auto;
}

/*====================================================================
  concept
====================================================================*/
#concept {
  clear: both;
  width: 100%;
  background: url("../images/bg_concept.webp") no-repeat 0 0;
  background-size: 100% auto;
  padding: 100px 0;
}

#concept .title {
  text-align: center;
  margin: 0 0 90px;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s ease, transform 1s ease;
}

#concept .title.is-show {
  opacity: 1;
  transform: translateY(0);
}


#concept p.txt {
  text-align: center;
  font-size: 20px;
  line-height: 2.2em;
  margin-bottom: 50px;
}

/*====================================================================
  photo section
====================================================================*/
.photo-section {
  width: 100%;
  padding: 80px 20px;
  box-sizing: border-box;
}

.photo-grid {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  gap: 30px;
}

.photo-card {
  flex: 1;
  overflow: hidden;
  border-radius: 12px;
}

.photo-grid .photo-card:nth-child(1) {
  margin-top: 20px;
}

.photo-grid .photo-card:nth-child(2) {
  margin-top: 60px;
}

.photo-card:nth-child(1).is-visible {
  transition-delay: 0s;
}

.photo-card:nth-child(3).is-visible {
  transition-delay: 0.2s;
}

.photo-card:nth-child(2).is-visible {
  transition-delay: 0.4s;
}

.photo-card img {
  display: block;
  object-fit: cover;
}

/*====================================================================
  contact box
====================================================================*/
.contact_box {
  clear: both;
  width: 1200px;
  height: 340px;
  color: #FFFFFF;
  text-align: center;
  box-sizing: border-box;
  padding: 60px 0 0;
  background: url("../images/bg_soudan.webp") no-repeat 0 0;
  background-color: #243a5e;
  margin: 0 auto 30px;
}

.contact_box h3 {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 20px;
}

.contact_box .tel {
  font-size: 45px;
  font-weight: 700;
  line-height: 1;
  font-family: "Zen Old Mincho", serif;
  margin-bottom: 5px;
}

.contact_box .tel::before {
  content: '　';
  width: 26px;
  height: 40px;
  background: url("../images/ic_tel.svg") no-repeat 10px 19px;
  background-size: 26px auto;
}

.contact_box .open {
  font-size: 16px;
  line-height: 1.4em;
  margin-bottom: 30px;
}

.contact_box .bt_insta {
  clear: both;
  width: 560px;
  margin: 0 auto;
}

.contact_box .bt_insta a {
  display: block;
  width: 100%;
  text-align: center;
  font-size: 20px;
  color: #FFFFFF;
  letter-spacing: 0.025em;
  padding: 20px 0;
  position: relative;
  border: 2px solid #FFFFFF;
  border-radius: 10px;
  box-sizing: border-box;
  transition: all 0.4s ease;
}

.contact_box .bt_insta a::before {
  content: "";
  position: absolute;
  left: calc(50% - 240px);
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  background-color: #fff;
  -webkit-mask: url("../images/ic_instagram.svg") no-repeat center / contain;
  mask: url("../images/ic_instagram.svg") no-repeat center / contain;
  transition: background-color 0.4s ease;
}

.contact_box .bt_insta a:hover {
  color: #243a5e;
  background-color: #FFFFFF;
  transition: all 0.4s ease;
}

.contact_box .bt_insta a:hover::before {
  background-color: #243a5e;
}

/*====================================================================
  shijyou
====================================================================*/
#shijyou {
  background: linear-gradient(90deg, #314b6f 0%, #0f2f5d 100%);
  padding: 110px 0 120px;
  position: relative;
  overflow: hidden;
}

#shijyou .sec {
  width: min(1200px, 90%);
  margin: 0 auto;
  background: #FFFFFF;
  border-radius: 24px;
  box-sizing: border-box;
  padding: 75px 80px 80px;
  box-shadow: 0 14px 40px rgba(24, 44, 74, 0.08);
  position: relative;
  z-index: 2;
}

#shijyou .title {
  position: relative;
  margin: 0 0 42px;
  padding-bottom: 24px;
  text-align: center;
  font-size: 38px;
  line-height: 1.5em;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #0f2f5d;
}

#shijyou .title::after {
  content: "";
  width: 120px;
  height: 3px;
  background: linear-gradient(90deg, #314b6f 0%, #0f2f5d 100%);
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
}

#shijyou p {
  margin: 0 0 26px;
  font-size: 16px;
  line-height: 2.0em;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #353535;
  text-align: center;
}

#shijyou p:last-child {
  margin-bottom: 0;
  margin-top: 42px;
  padding-top: 34px;
  border-top: 1px solid #d7dfe8;
  font-size: 24px;
  line-height: 1.8;
  font-weight: 700;
  color: #0f2f5d;
}

#shijyou p span {
  color: #DC0000;
  font-size: 20px;
  font-weight: bold;
}

#shijyou .bt_insta {
  clear: both;
  width: 560px;
  margin: 0 auto;
}

#shijyou .bt_insta a {
  display: block;
  width: 100%;
  text-align: center;
  font-size: 20px;
  color: #243a5e;
  letter-spacing: 0.025em;
  padding: 20px 0;
  position: relative;
  border: 2px solid #243a5e;
  border-radius: 10px;
  box-sizing: border-box;
  transition: all 0.4s ease;
}

#shijyou .bt_insta a::before {
  content: "";
  position: absolute;
  left: calc(50% - 240px);
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  background-color: #243a5e;
  -webkit-mask: url("../images/ic_instagram.svg") no-repeat center / contain;
  mask: url("../images/ic_instagram.svg") no-repeat center / contain;
  transition: background-color 0.4s ease;
}

#shijyou .bt_insta a:hover {
  color: #FFFFFF;
  background-color: #666666;
  transition: all 0.4s ease;
  border: 2px solid #666666;
}

#shijyou .bt_insta a:hover::before {
  background-color: #FFFFFF;
}



/*====================================================================
  tablet only
====================================================================*/
@media screen and (min-width: 769px) and (max-width: 1000px) {
  #shijyou {
    padding: 90px 0 100px;
  }

  #shijyou .sec {
    padding: 60px 42px 64px;
    border-radius: 20px;
  }

  #shijyou .sec::before {
    border-radius: 20px 20px 0 0;
  }

  #shijyou .title {
    margin-bottom: 34px;
    padding-bottom: 20px;
    font-size: clamp(26px, 3.2vw, 34px);
  }

  #shijyou p {
    font-size: 16px;
    line-height: 2;
    margin-bottom: 22px;
  }

  #shijyou p:last-child {
    margin-top: 34px;
    padding-top: 26px;
    font-size: 21px;
  }

  #shijyou p span {
    padding: 9px 18px;
  }
}

/*====================================================================
  sp
====================================================================*/
@media screen and (max-width: 768px) {
  #shijyou {
    padding: 70px 0 80px;
  }

  #shijyou::before {
    width: 100%;
  }

  #shijyou .sec {
    width: calc(100% - 30px);
    padding: 42px 22px 46px;
    border-radius: 18px;
  }

  #shijyou .sec::before {
    height: 6px;
    border-radius: 18px 18px 0 0;
  }

  #shijyou .title {
    margin: 0 0 28px;
    padding-bottom: 18px;
    font-size: 24px;
    line-height: 1.6;
    letter-spacing: 0.06em;
  }

  #shijyou .title::after {
    width: 56px;
  }

  #shijyou p {
    font-size: 15px;
    line-height: 2;
    text-align: left;
    margin-bottom: 18px;
  }

  #shijyou p br {
    display: none;
  }

  #shijyou p:last-child {
    margin-top: 28px;
    padding-top: 22px;
    font-size: 18px;
    line-height: 1.8;
    text-align: center;
  }

  #shijyou p span {
    padding: 8px 16px;
    font-size: 16px;
    line-height: 1.6;
    border-radius: 999px;
  }
}



/*====================================================================
  company
====================================================================*/
#company {
  background: #FFFFFF;
  padding: 110px 0 120px;
}

#company .sec {
  width: min(1200px, 90%);
  margin: 0 auto;
}

#company .title {
  text-align: center;
  margin: 0 0 90px;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s ease, transform 1s ease;
}

#company .title.is-show {
  opacity: 1;
  transform: translateY(0);
}

#company .title img {
  width: min(240px, 62vw);
  height: auto;
  display: inline-block;
}

#company .flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 4.5%;
}

#company .textbox {
  width: 47%;
}

#company .photobox {
  width: 48%;
  position: relative;
  min-height: 520px;
}

#company table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

#company table tr {
  border-bottom: 1px solid #d8d8d8;
}

#company table tr:first-child {
  border-top: 1px solid #d8d8d8;
}

#company table th,
#company table td {
  padding: 28px 16px;
  vertical-align: top;
  font-size: 16px;
  line-height: 2;
  color: #222222;
}

#company table th {
  width: 22%;
  font-weight: 700;
  text-align: left;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

#company table td {
  width: 78%;
  font-weight: 500;
  letter-spacing: 0.04em;
}

#company table td br {
  display: block;
}

#company table tr:last-child th,
#company table tr:last-child td {
  padding: 18px 16px;
}

#company .nest_photo {
  position: relative;
  width: 100%;
  min-height: 520px;
}

#company .nest_photo img {
  display: block;
  height: auto;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

#company .nest_photo img:first-child {
  width: min(438px, 78%);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

#company .nest_photo img:last-child {
  width: min(262px, 48%);
  position: absolute;
  right: 0;
  bottom: -48px;
  z-index: 2;
}

/*====================================================================
  business
====================================================================*/
#business {
  background: #f3f3f3;
  padding: 110px 0 120px;
}

#business .sec {
  width: min(1200px, 90%);
  margin: 0 auto;
}

#business .title {
  text-align: center;
  margin: 0 0 90px;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s ease, transform 1s ease;
}

#business .title.is-show {
  opacity: 1;
  transform: translateY(0);
}

#business .title img {
  width: min(240px, 62vw);
  height: auto;
  display: inline-block;
}

#business .business_list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 7%;
  row-gap: 90px;
}

#business .business_item {
  width: 100%;
}

#business .photo {
  margin-bottom: 10px;
  overflow: hidden;
}

#business .photo img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 550 / 350;
  object-fit: cover;
}

#business .textbox h3 {
  font-size: 30px;
  line-height: 1.4;
  font-weight: 700;
  color: #222222;
  letter-spacing: 0.04em;
  margin: 0 0 10px;
}

#business .textbox .address {
  font-size: 16px;
  line-height: 1.8;
  font-weight: 500;
  color: #222222;
  letter-spacing: 0.06em;
  margin: 0;
  padding: 0 0 16px;
  border-bottom: 1px solid #d3d3d3;
}

#business .textbox .text {
  font-size: 16px;
  line-height: 1.8em;
  font-weight: 500;
  color: #222222;
  letter-spacing: 0.05em;
  margin: 18px 0 0;
}

/*====================================================================
  contact
====================================================================*/
#contact {
  background: #dcdcdc;
  padding: 110px 0 140px;
}

#contact .sec {
  width: min(1200px, 90%);
  margin: 0 auto;
}

#contact .title {
  text-align: center;
  margin: 0 0 55px;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s ease, transform 1s ease;
}

#contact .title.is-show {
  opacity: 1;
  transform: translateY(0);
}

#contact .title img {
  width: min(344px, 72vw);
  height: auto;
  display: inline-block;
}

#contact .contact_lead {
  width: min(700px, 100%);
  margin: 0 auto 60px;
  background: #243d6d;
  color: #ffffff;
  text-align: center;
  font-size: 18px;
  line-height: 1.6em;
  font-weight: 500;
  letter-spacing: 0.05em;
  border-radius: 20px;
  padding: 26px 20px;
  box-sizing: border-box;
}

/*====================================================================
  footer
====================================================================*/
#footer {
  background: #1f1f1f;
  color: #ffffff;
  overflow: hidden;
}

#footer .footer_main {
  position: relative;
  background: #252525;
}

#footer .footer_bg {
  position: absolute;
  inset: 0;
  background-image: url("../images/bg_footer.webp");
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: auto 90%;
  opacity: 0.5;
  pointer-events: none;
}

#footer .footer_inner {
  position: relative;
  z-index: 2;
  width: min(1200px, 92%);
  margin: 0 auto;
  padding: 56px 0 70px;
  text-align: center;
}

#footer .footer_logo {
  margin: 0 auto 28px;
  width: fit-content;
}

#footer .footer_logo img {
  display: block;
  width: min(144px, 24vw);
  height: auto;
}

#footer .footer_info {
  margin-bottom: 52px;
}

#footer .footer_name {
  margin: 0 0 20px;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.4;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #ffffff;
}

#footer .footer_name span {
  font-size: 1.35em;
}

#footer .footer_address {
  margin: 0 0 8px;
  font-size: 18px;
  line-height: 1.8;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: #ffffff;
}

#footer .footer_tel {
  margin: 0 0 8px;
  line-height: 1;
}

#footer .footer_tel a {
  display: inline-block;
  position: relative;
  color: #ffffff;
  font-size: 45px;
  font-weight: 700;
  line-height: 1;
  font-family: "Zen Old Mincho", serif;
  margin-bottom: 5px;
}

#footer .footer_tel a::before {
  content: '　';
  width: 26px;
  height: 40px;
  background: url("../images/ic_tel.svg") no-repeat 10px 19px;
  background-size: 26px auto;
}

#footer .footer_time {
  font-size: 16px;
  line-height: 1.4em;
  margin-bottom: 30px;
  color: #ffffff;
}

#footer .footer_nav ul {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

#footer .footer_nav li {
  position: relative;
  padding: 0 22px;
}

#footer .footer_nav li:not(:last-child)::after {
  content: "";
  width: 1px;
  height: 22px;
  background: rgba(255, 255, 255, 0.7);
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

#footer .footer_nav a {
  color: #ffffff;
  text-decoration: none;
  font-size: 18px;
  line-height: 1.6;
  font-weight: 700;
  letter-spacing: 0.05em;
  transition: opacity 0.3s ease;
}

#footer .footer_nav a:hover {
  opacity: 0.7;
}

#footer .footer_copy {
  background: #0f2f5d;
  text-align: center;
  padding: 24px 15px;
}

#footer .footer_copy p {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #ffffff;
}

/*====================================================================
  tablet only
====================================================================*/
@media screen and (min-width: 769px) and (max-width: 1000px) {
  #company {
    padding: 90px 0 100px;
  }

  #company .title {
    margin: 0 0 65px;
  }

  #company .flex {
    flex-direction: column;
    gap: 55px;
  }

  #company .textbox,
  #company .photobox {
    width: 100%;
  }

  #company .photobox {
    min-height: auto;
  }

  #company .nest_photo {
    min-height: 0;
    padding-bottom: 90px;
  }

  #company .nest_photo img:first-child {
    position: relative;
    top: auto;
    left: auto;
    width: min(438px, 82%);
  }

  #company .nest_photo img:last-child {
    width: min(262px, 46%);
    right: 0;
    bottom: 0;
  }

  #company table th,
  #company table td {
    padding: 22px 10px;
    font-size: 15px;
    line-height: 1.9;
  }

  #company table th {
    width: 24%;
  }

  #company table td {
    width: 76%;
  }

  #business {
    padding: 90px 0 100px;
  }

  #business .title {
    margin: 0 0 65px;
  }

  #business .business_list {
    column-gap: 5%;
    row-gap: 70px;
  }

  #business .photo {
    margin-bottom: 22px;
  }

  #business .textbox h3 {
    font-size: clamp(22px, 2.8vw, 30px);
    margin: 0 0 10px;
  }

  #business .textbox .address {
    font-size: 13px;
    padding: 0 0 14px;
  }

  #business .textbox .text {
    font-size: 15px;
    line-height: 2;
    margin-top: 16px;
  }

  #footer .footer_bg {
    background-size: auto 90%;
    background-position: right -60px center;
    opacity: 0.28;
  }

  #footer .footer_inner {
    padding: 50px 0 60px;
  }

  #footer .footer_logo {
    margin-bottom: 24px;
  }

  #footer .footer_info {
    margin-bottom: 42px;
  }

  #footer .footer_address {
    font-size: 16px;
  }

  #footer .footer_time {
    font-size: 14px;
  }

  #footer .footer_nav li {
    padding: 0 16px;
  }

  #footer .footer_nav a {
    font-size: 16px;
  }
}



/* =========================================
   thanks page only
========================================= */
#thanks_page {
  background: #f8f6f1;
  padding: 120px 20px 140px;
}

#thanks_page .sec {
  max-width: 980px;
  margin: 0 auto;
}

.thanks_box {
  background: #FFFFFF;
  border-radius: 20px;
  padding: 80px 60px;
  box-sizing: border-box;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
  text-align: center;
}

.thanks_icon {
  width: 88px;
  height: 88px;
  margin: 0 auto 30px;
  border-radius: 50%;
  background: #0f2f5d;
  position: relative;
}

.thanks_icon::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 22px;
  height: 40px;
  border-right: 4px solid #FFFFFF;
  border-bottom: 4px solid #FFFFFF;
  transform: translate(-50%, -62%) rotate(45deg);
  box-sizing: border-box;
}

.thanks_title {
  font-family: "Zen Old Mincho", serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.5;
  color: #111111;
  margin-bottom: 24px;
  letter-spacing: 0.08em;
}

.thanks_text {
  font-size: 17px;
  line-height: 2.1;
  color: #333333;
  margin-bottom: 18px;
}

.thanks_note {
  font-size: 14px;
  line-height: 2;
  color: #666666;
  margin-top: 30px;
}

.thanks_btns {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 50px;
}

.thanks_btns a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 260px;
  height: 64px;
  padding: 0 30px;
  border-radius: 999px;
  text-decoration: none;
  box-sizing: border-box;
  transition: all 0.35s ease;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.thanks_btns a.bt_home {
  background: #0f2f5d;
  color: #FFFFFF;
}

.thanks_btns a.bt_home:hover {
  opacity: 0.85;
  transform: translateY(-2px);
}

.thanks_btns a.bt_instagram {
  background: #FFFFFF;
  color: #0f2f5d;
  border: 1px solid #0f2f5d;
}

.thanks_btns a.bt_instagram:hover {
  background: #0f2f5d;
  color: #FFFFFF;
  transform: translateY(-2px);
}

.thanks_tel {
  margin-top: 45px;
  padding-top: 35px;
  border-top: 1px solid #E5E2DA;
}

.thanks_tel .lead {
  font-size: 16px;
  color: #333333;
  margin-bottom: 14px;
}

.thanks_tel .number {
  font-family: "Zen Old Mincho", serif;
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
}

.thanks_tel .number a {
  color: #111111;
  text-decoration: none;
}

.thanks_tel .time {
  margin-top: 10px;
  font-size: 14px;
  color: #666666;
  line-height: 1.8;
}

@media screen and (max-width: 767px) {
  #thanks_page {
    padding: 80px 15px 100px;
  }

  .thanks_box {
    padding: 55px 22px;
    border-radius: 16px;
  }

  .thanks_icon {
    width: 72px;
    height: 72px;
    margin-bottom: 24px;
  }

  .thanks_icon::before {
    width: 18px;
    height: 32px;
  }

  .thanks_title {
    font-size: 28px;
    line-height: 1.6;
    margin-bottom: 20px;
  }

  .thanks_text {
    font-size: 15px;
    line-height: 2;
    text-align: left;
  }

  .thanks_note {
    font-size: 13px;
    text-align: left;
  }

  .thanks_btns {
    gap: 14px;
    margin-top: 36px;
  }

  .thanks_btns a {
    width: 100%;
    min-width: 0;
    height: 58px;
    font-size: 15px;
  }

  .thanks_tel {
    margin-top: 36px;
    padding-top: 28px;
  }

  .thanks_tel .lead {
    font-size: 14px;
  }

  .thanks_tel .number {
    font-size: 32px;
  }

  .thanks_tel .time {
    font-size: 13px;
  }
}
