@charset "UTF-8";
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* 追加 */
a {
  text-decoration: none;
}

/* base
------------------------------------------------------------*/
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}
html body {
  font-family: YakuHanMP, "source-han-serif-jp-subset", sans-serif;
  color: #2F5EAB;
  min-width: 320px;
  max-width: 2500px;
  margin: 0 auto;
  font-size: 15px;
  font-size: 1.5rem;
}
@media (max-width: 768px) {
  html body {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

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

span.text {
  display: inline-block;
}

a {
  color: #2F5EAB;
}

#panlist {
  padding: 3rem 0;
  background-color: #005f99;
}
#panlist.bg-white {
  background-color: #fff;
}
#panlist .container {
  width: 1200px;
  max-width: 90%;
  height: auto;
  margin: 0 auto;
}
#panlist .container ul {
  display: flex;
  flex-wrap: wrap;
}
#panlist .container ul li {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.6;
}
@media (max-width: 640px) {
  #panlist .container ul li {
    font-size: 14px;
    font-size: 1.4rem;
  }
}
#panlist .container ul li.home a {
  text-decoration: underline;
  color: #2F5EAB;
}
#panlist .container ul li a {
  transition: color 0.5s;
}
#panlist .container ul li a:hover, #panlist .container ul li a:active {
  color: #2F5EAB;
}

/* パソコンで見たときは"pc"のclassがついた画像が表示される */
.pc {
  display: inline !important;
}

.sp {
  display: none !important;
}

/* スマートフォンで見たときは"sp"のclassがついた画像が表示される */
@media only screen and (max-width: 768px) {
  .pc {
    display: none !important;
  }
  .sp {
    display: inline !important;
  }
}
/* 900px以下で見たときは表示を消す・表示する */
@media only screen and (max-width: 900px) {
  .tab-none {
    display: none !important;
  }
  .tab-appear {
    display: inline !important;
  }
}
@media only screen and (min-width: 901px) {
  .tab-appear {
    display: none !important;
  }
}
section {
  width: 100%;
  overflow-x: hidden;
}
section .container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}
section .container .sec-ttl {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-bottom: 5rem;
}
section .container .sec-ttl h2 {
  font-size: min(5vw, 36px);
}
section .container .sec-ttl .sub {
  font-weight: 600;
  margin-top: 0.5rem;
}
section .container .lead {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  line-height: 2.5rem;
}
section:not(:first-of-type) .container {
  padding: 20rem 0;
  box-sizing: border-box;
}

div.more-button {
  width: -moz-fit-content;
  width: fit-content;
}
div.more-button a {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  padding: 0.5rem 5rem;
  box-sizing: border-box;
  background-color: #2F5EAB;
  border-radius: 5px;
  max-width: 300px;
}
div.more-button a .text {
  color: #fff;
  -webkit-text-decoration: underline #fff;
          text-decoration: underline #fff;
  text-underline-offset: 0.3rem;
}

.genno-serif {
  font-family: YakuHanMP, "source-han-serif-jp-subset", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.din {
  font-family: YakuHanJP, "din-2014", sans-serif;
  font-weight: 400;
  font-style: italic;
}

.din-nar {
  font-family: YakuHanJP, "din-2014-narrow", sans-serif;
  font-weight: 400;
  font-style: italic;
}

.fadeUpTrigger,
.fadeInTrigger,
.fadeLeftTrigger,
.fadeRightTrigger,
.fadeDownTrigger,
.blurTrigger {
  opacity: 0;
}

.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.fadeDown {
  animation-name: fadeDownAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeDownAnime {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fadeIn {
  animation-name: fadeInAnime;
  animation-duration: 2s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeInAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fadeLeft {
  animation-name: fadeLeftAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeLeftAnime {
  from {
    opacity: 0;
    transform: translate(-80px, 0);
  }
  to {
    opacity: 1;
    transform: translate(0, 0);
  }
}
.fadeLeft2 {
  animation-name: fadeLeftAnime2;
  animation-duration: 2s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeLeftAnime2 {
  from {
    opacity: 0;
    transform: rotateY(90deg);
    transform-origin: 50% 50%;
  }
  to {
    opacity: 1;
  }
}
.fadeRight {
  animation-name: fadeRightAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeRightAnime {
  from {
    opacity: 0;
    transform: translate(80px, 0);
  }
  to {
    opacity: 1;
    transform: translate(0, 0);
  }
}
.fadeRight2 {
  animation-name: fadeRightAnime2;
  animation-duration: 2s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeRightAnime2 {
  from {
    opacity: 0;
    transform: rotateY(-90deg);
    transform-origin: 50% 50%;
  }
  to {
    opacity: 1;
  }
}
.blur {
  animation-name: blurAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes blurAnime {
  from {
    filter: blur(50px);
    transform: scale(1.2);
    opacity: 0;
  }
  to {
    filter: blur(0);
    transform: scale(1);
    opacity: 1;
  }
}
.glowAnime {
  opacity: 0;
}

.is-active {
  opacity: 1;
  visibility: visible;
}

.glowAnime span {
  opacity: 0;
}

/*アニメーションで透過を0から1に変化させtext-shadowをつける*/
.glowAnime.glow span {
  opacity: 0;
  animation: glow_anime_on 1s ease-out forwards;
}

@keyframes glow_anime_on {
  0% {
    opacity: 0;
    text-shadow: 0 0 0 #fff, 0 0 0 #fff;
  }
  50% {
    opacity: 1;
    text-shadow: 0 0 10px #fff, 0 0 15px #fff;
  }
  100% {
    opacity: 1;
    text-shadow: 0 0 0 #fff, 0 0 0 #fff;
  }
}
.delay-02 {
  animation-delay: 0.2s;
}

.delay-03 {
  animation-delay: 0.3s;
}

.delay-04 {
  animation-delay: 0.4s;
}

.delay-05 {
  animation-delay: 0.5s;
}

.delay-06 {
  animation-delay: 0.6s;
}

.delay-07 {
  animation-delay: 0.7s;
}

.delay-08 {
  animation-delay: 0.8s;
}

.header-pc__container {
  width: 90%;
  position: fixed;
  top: 3%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
}
.header-pc__logo {
  height: min(50px, 4.5vw);
  transition: all 0.5s ease;
  filter: drop-shadow(1px 1px 2px rgba(255, 255, 255, 0.5));
}
.header-pc__logo:hover {
  transform: scale(1.05);
}
.header-pc__wrapper {
  max-width: 500px;
  height: 70px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  padding: 0 min(5vw, 50px);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
}
.header-pc__nav {
  display: flex;
  align-items: center;
  gap: min(2vw, 40px);
  transition: all 0.5s ease;
}
.header-pc__nav a:hover {
  transform: scale(1.05);
}
.header-pc__link {
  font-size: 14px;
  text-decoration: none;
  letter-spacing: 0.2rem;
  font-weight: 600;
  transition: all 0.3s ease;
}
.header-pc__link:hover {
  color: #2F5EAB;
}
.header-pc__text {
  font-size: 14px;
  background: #2F5EAB;
  padding: 2.5rem;
  padding-left: min(2.5rem, 2.3vw);
  padding-right: min(2.5rem, 2.3vw);
  margin-left: min(2rem, 2vw);
  box-sizing: border-box;
  border-radius: 50px;
  color: #fff;
  transition: all 0.5s ease;
}
.header-pc__text:hover {
  background-color: #fff;
  border: 1px solid #2F5EAB;
  color: #2F5EAB;
  font-weight: 600;
}

#header-sp {
  position: fixed;
  width: 100%;
  height: 110px;
  z-index: 98;
}
#header-sp .container {
  position: relative;
  height: 100%;
  width: 90%;
  margin: 0 auto;
}
#header-sp .container .wrapper {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: -moz-fit-content;
  width: fit-content;
}
#header-sp .container .wrapper .left {
  display: flex;
  align-items: end;
}
#header-sp .container .wrapper .left:hover .logo {
  transform: scale(1.05);
}
#header-sp .container .wrapper .left .logo {
  transition: all 0.5s ease;
}
#header-sp .container .wrapper .left .logo h1 img {
  filter: drop-shadow(1px 1px 1px rgba(255, 255, 255, 0.5));
  height: 35px;
}
#header-sp .container .menu {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 60px;
  height: 60px;
  transition: all 0.5s ease;
  z-index: 100;
  cursor: pointer;
}
#header-sp .container .menu::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  border-radius: 100px;
  background-color: #fff;
  box-shadow: 3px 3px 6px rgba(47, 94, 171, 0.2);
}
#header-sp .container .menu .line {
  width: 30px;
  height: 2px;
  background-color: #2F5EAB;
  transition: all 0.5s ease;
  z-index: 1;
}
#header-sp .container .menu .line:not(:last-of-type) {
  margin-bottom: 0.7rem;
}
#header-sp .container .menu .text {
  width: 100%;
  position: relative;
  margin-top: 1.2rem;
  transition: all 0.5s ease;
}
#header-sp .container .menu .text::before {
  position: absolute;
  content: "MENU";
  bottom: 0%;
  left: 50%;
  transform: translateX(-50%);
  font-family: YakuHanJP, "din-2014", sans-serif;
  color: #2F5EAB;
}
#header-sp .container .menu.is-active .line:nth-of-type(1) {
  transform: rotate(15deg) translateY(1px);
  margin-bottom: unset;
}
#header-sp .container .menu.is-active .line:nth-of-type(2) {
  transform: rotate(-15deg) translateY(-1px);
}
#header-sp .container .menu.is-active .text::before {
  content: "CLOSE";
  transform: translateX(-50%) translateY(3px);
}
@media (max-width: 768px) {
  #header-sp .container .wrapper .left .logo {
    margin-left: unset;
  }
}
@media (max-width: 768px) and (max-width: 500px) {
  #header-sp .container .wrapper .left .logo h1 img {
    height: 28px;
  }
}
#header-sp .container #sp-menu {
  position: fixed;
  overflow-y: scroll;
  left: 0;
  width: 100%;
  height: 100vh;
  background-image: linear-gradient(90deg, rgba(81, 193, 221, 0.9), rgba(47, 94, 171, 0.9));
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease;
}
#header-sp .container #sp-menu.is-active {
  z-index: 99;
  opacity: 1;
  visibility: visible;
}
#header-sp .container #sp-menu .container {
  width: 80%;
  height: 90%;
  margin: 0 auto;
}
#header-sp .container #sp-menu .container .outer {
  margin-top: 15rem;
}
#header-sp .container #sp-menu .container .outer .wrap {
  border-bottom: 1px solid #fff;
}
#header-sp .container #sp-menu .container .outer .wrap a.inner {
  display: flex;
  align-items: center;
  justify-content: start;
  padding: 3rem 0;
  box-sizing: border-box;
}
#header-sp .container #sp-menu .container .outer .wrap a.inner h2 {
  color: #fff;
  font-weight: 600;
  font-size: min(20px, 8vw);
  letter-spacing: 0.3rem;
  padding-left: 20px;
  box-sizing: border-box;
}
@media (max-width: 700px) {
  #header-sp .container #sp-menu .container .outer .wrap a.inner {
    flex-direction: column;
    align-items: start;
  }
  #header-sp .container #sp-menu .container .outer .wrap a.inner h2 {
    margin-bottom: 0.5rem;
  }
}
#header-sp .container #sp-menu .container .button {
  border: 1px solid #fff;
  max-width: 400px;
  margin: 8rem auto 3rem;
  transition: 0.5s ease;
}
#header-sp .container #sp-menu .container .button:hover {
  background-position: 100% 0;
}
#header-sp .container #sp-menu .container .button a {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  padding: 2.5rem 4rem;
  box-sizing: border-box;
}
#header-sp .container #sp-menu .container .button a .title {
  color: #fff;
}
#header-sp .container #sp-menu .container .button a .title h2 {
  font-size: min(5vw, 20px);
}
#header-sp .container #sp-menu .container .bottom {
  width: 100%;
  max-width: -moz-fit-content;
  max-width: fit-content;
  margin: 0 auto;
}
#header-sp .container #sp-menu .container .bottom img {
  height: 30px;
  margin: 3em 0 2em;
}
#header-sp .container #sp-menu .container .bottom p {
  color: #fff;
  margin-bottom: 1rem;
}
#header-sp .container #sp-menu .container .bottom p:nth-of-type(2) {
  line-height: 2rem;
}

.footer {
  background-color: #15273F;
  padding: 80px 0 40px;
  color: #fff;
}
.footer a {
  cursor: pointer;
  color: #fff;
  width: 100%;
  transition: 0.3s ease;
  display: block;
}
.footer a:hover {
  color: #005f99;
  scale: 1.05;
}
.footer__container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: start;
  flex-direction: row;
  gap: 60px;
}
.footer__company {
  flex: 0 0 360px;
}
.footer__logo {
  width: 200px;
  height: auto;
  margin-bottom: 24px;
}
.footer__name {
  margin-bottom: 0.7rem;
}
.footer__info {
  font-size: 14px;
  line-height: 1.4;
  font-style: normal;
  opacity: 0.9;
  margin-bottom: 0.7rem;
}
.footer__right-side {
  display: flex;
  justify-content: center;
  align-items: start;
  flex-direction: row;
}
.footer__nav {
  flex: 0 0 min(20vw, 300px);
}
.footer__nav:first-of-type {
  margin-right: 2rem;
}
.footer__nav-title {
  font-size: 18px;
  font-weight: bold;
  margin: 0 0 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer__nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer__nav-item {
  margin-bottom: 16px;
}
.footer__nav-item a {
  width: -moz-fit-content;
  width: fit-content;
}
.footer__nav-item:last-child {
  margin-bottom: 0;
}
.footer__nav-link {
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  transition: all 0.3s ease;
  opacity: 0.9;
  display: inline-block;
}
.footer__nav-link:hover {
  opacity: 1;
  transform: translateX(4px);
}
.footer__copyright {
  display: block;
  text-align: center;
  font-size: 12px;
  opacity: 0.7;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 1000px) {
  .footer {
    padding: 60px 0 32px;
  }
  .footer__container {
    flex-direction: column;
    gap: 48px;
  }
  .footer__company {
    flex: none;
    margin: 0 auto;
    width: 320px;
  }
}
@media (max-width: 1000px) and (max-width: 500px) {
  .footer__company {
    width: unset;
    margin: unset;
  }
}
@media (max-width: 1000px) {
  .footer__logo {
    width: 160px;
    margin-bottom: 20px;
  }
  .footer__right-side {
    display: flex;
    justify-content: center;
    align-items: start;
    flex-direction: column;
    margin: 0 auto;
    width: 320px;
  }
}
@media (max-width: 1000px) and (max-width: 500px) {
  .footer__right-side {
    width: unset;
    margin: unset;
  }
}
@media (max-width: 1000px) {
  .footer__nav {
    flex: none;
    width: 100%;
  }
  .footer__nav:first-of-type {
    margin-bottom: 4em;
  }
  .footer__nav-title {
    margin-bottom: 20px;
  }
  .footer__nav-item {
    margin-bottom: 14px;
  }
  .footer__nav-link {
    font-size: 14px;
  }
  .footer__copyright {
    margin-top: 48px;
    padding-top: 32px;
    font-size: 11px;
  }
}
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero .hero-slider {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.hero .hero-slider__item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}
.hero .hero-slider__item.active {
  opacity: 1;
}
.hero .hero-slider__item.active img {
  animation: zoom 5s linear forwards;
}
.hero .hero-slider__item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@keyframes zoom {
  0% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
.hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url();
  background: rgba(0, 95, 153, 0.2);
}
.hero__content {
  width: 80%;
  position: absolute;
  bottom: 20%;
  z-index: 1;
  text-align: center;
}
.hero__title {
  color: #2F5EAB;
  font-size: 60px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 0.8rem;
  text-align: left;
  text-shadow: 3px 3px 4px rgba(255, 255, 255, 0.5);
}
.hero__subtitle {
  font-weight: lighter;
  color: #fff;
  background-color: #2F5EAB;
  font-size: 14px;
  letter-spacing: 5px;
  margin-top: min(3.5rem, 4vw);
  width: -moz-fit-content;
  width: fit-content;
  padding: 1rem;
  box-sizing: border-box;
}
.hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  text-decoration: none;
  text-align: center;
  z-index: 1;
  animation: scrollBounce 2s infinite;
}
.hero__scroll-text {
  display: block;
  font-size: 14px;
  margin-bottom: 8px;
  letter-spacing: 0.1em;
}
.hero__scroll-arrow {
  display: block;
  font-size: 20px;
}

@keyframes scrollBounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-5px);
  }
  60% {
    transform: translateX(-50%) translateY(-2px);
  }
}
@media (max-width: 768px) {
  .hero__title {
    font-size: min(10vw, 60px);
    letter-spacing: 0.3rem;
  }
  .hero__subtitle {
    font-size: 12px;
    letter-spacing: min(5px, 0.5vw);
  }
}
.service {
  padding: 12em 0;
}
@media (max-width: 500px) {
  .service {
    padding: 6em 0;
  }
}
.service__container {
  max-width: 1500px;
  margin: 0 auto;
}
.service__content {
  width: 95%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  position: relative;
}
.service__content::before {
  position: absolute;
  content: "";
  background-image: linear-gradient(310deg, #2F5EAB, #51c1dd);
  width: 100%;
  height: 100%;
  z-index: -1;
  padding-top: 3rem;
}
@media (max-width: 768px) {
  .service__content {
    width: 90%;
    display: flex;
    justify-content: start;
    align-items: center;
    flex-direction: row;
  }
  .service__content::before {
    padding-top: unset;
  }
}
.service__left {
  transform: translateY(10%);
  margin-left: 3%;
}
@media (max-width: 768px) {
  .service__left {
    transform: translateY(0);
    padding: min(8em, 30vw) 0 min(5em, 15vw) 5%;
    box-sizing: border-box;
    margin-left: unset;
  }
}
.service__heading {
  font-size: min(18vw, 28px);
  color: #fff;
  font-weight: bold;
  letter-spacing: 1rem;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
}
.service__heading:before {
  content: "SERVICE";
  position: absolute;
  color: #fff;
  top: -30px;
  left: 0;
  letter-spacing: 0.3rem;
  font-size: 12px;
  font-family: YakuHanJP, "din-2014-narrow", sans-serif;
  font-weight: 400;
  font-style: italic;
  border-bottom: 1px solid #fff;
  padding-bottom: 5px;
  box-sizing: border-box;
  text-align: center;
  width: 45%;
}
.service__text {
  color: #fff;
  margin-top: min(3rem, 1.5vw);
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 0.3rem;
  line-height: 3rem;
  font-family: YakuHanMP, "source-han-serif-jp-subset", sans-serif;
}
@media (max-width: 768px) {
  .service__text {
    margin-bottom: 2em;
  }
}
.service__subtext {
  color: #fff;
  margin: min(1.7em, 1vw) 0 0;
  font-size: 16px;
  letter-spacing: 0.2rem;
  line-height: 2.5rem;
  max-width: min(550px, 38vw);
}
@media (max-width: 768px) {
  .service__subtext {
    margin-top: 3em;
    max-width: unset;
    padding-right: 1rem;
    box-sizing: border-box;
  }
}
.service__right-pc {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  margin-right: 5%;
}
@media (max-width: 768px) {
  .service__right-pc {
    display: none;
  }
}
.service__right-pc img {
  width: min(180px, 15vw);
}
.service__right-pc img:not(:first-of-type) {
  margin-left: 1rem;
}
.service__right-pc img:nth-of-type(odd) {
  transform: translateY(30px);
}
.service__right-pc img:nth-of-type(2) {
  transform: translateY(-30px);
}
.service__right-sp {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
}
@media (max-width: 768px) {
  .service__right-sp {
    transform: translateX(5%);
  }
  .service__right-sp img {
    width: min(180px, 28vw);
  }
  .service__right-sp img:not(:first-of-type) {
    margin-left: 1rem;
  }
  .service__right-sp img:nth-of-type(odd) {
    transform: translateY(15px);
  }
  .service__right-sp img:nth-of-type(2) {
    transform: translateY(-15px);
  }
}
.service__inner {
  width: 80%;
  margin: 7em auto 0;
}
.service__inner .service-item {
  display: block;
  margin-bottom: 4em;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
}
@media (max-width: 768px) {
  .service__inner .service-item {
    margin-bottom: 6rem;
    gap: 4rem;
    flex-direction: column;
  }
}
.service__inner .service-item__content {
  max-width: min(500px, 40vw);
}
@media (max-width: 768px) {
  .service__inner .service-item__content {
    max-width: min(500px, 80vw);
    margin: 0 auto;
  }
}
.service__inner .service-item__title {
  font-size: 20px;
  line-height: 1.4;
  font-weight: 600;
  letter-spacing: 0.3rem;
}
.service__inner .service-item__title .number {
  font-size: 28px;
  font-weight: 600;
  font-style: normal;
  margin-right: 1rem;
}
.service__inner .service-item__subtitle {
  font-size: 12px;
  letter-spacing: 0.1rem;
}
.service__inner .service-item__text {
  line-height: 1.7;
}
.service__inner .service-item__text:first-of-type {
  margin-top: 2em;
}
.service__inner .service-item__text:not(:first-of-type) {
  margin-top: 0.6em;
}
.service__inner .service-item__image {
  width: 100%;
  max-width: min(500px, 35vw);
  height: 100%;
  position: relative;
}
.service__inner .service-item__image::after {
  position: absolute;
  content: "";
  height: 100%;
  width: min(700px, 48vw);
  margin-right: -30%;
  top: 0;
  right: 0;
  background-color: #2F5EAB;
  z-index: -1;
}
@media (max-width: 768px) {
  .service__inner .service-item__image {
    max-width: min(500px, 70vw);
  }
  .service__inner .service-item__image::after {
    width: min(700px, 95vw);
  }
}
.service__inner .service-item__image img {
  width: 100%;
}
.service__button {
  margin: 0 auto;
  width: 250px;
  height: 70px;
  padding: 25px 0 10px;
  box-sizing: border-box;
  overflow: hidden;
  position: relative;
}
.service__button::before {
  position: absolute;
  content: "";
  width: 30px;
  height: 1px;
  background-color: #fff;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  z-index: 2;
}
.service__button::after {
  position: absolute;
  content: "";
  width: 5px;
  height: 5px;
  background-color: #fff;
  top: 50%;
  left: 30px;
  border-radius: 5px;
  transform: translateY(-50%);
  z-index: 2;
}
.service__button span {
  position: relative;
  z-index: 1;
}
.service__button span::before {
  position: absolute;
  content: "";
  width: 600px;
  height: 70px;
  background-image: linear-gradient(90deg, #51c1dd 0%, #2F5EAB 50%, #51c1dd 100%);
  transition: all 0.5s ease-in-out;
  transform: translateX(-20%) translateY(-25px);
  z-index: -1;
}
.service__button span:hover::before {
  width: 600px;
  transform: translateX(-70%) translateY(-25px);
}
.service__button__more {
  font-style: normal;
  color: #fff;
  font-size: 12px;
  letter-spacing: 0.2rem;
}

@media (max-width: 1024px) {
  .service__item {
    flex: 0 0 calc((100% - 24px) / 2);
  }
}
@media (max-width: 768px) {
  .service__item {
    flex: 0 0 100%;
  }
  .service__nav {
    width: 36px;
    height: 36px;
  }
}
.company {
  padding: 8em 0 6em;
  background-image: url(../images/img_top_company.webp);
  background-size: cover;
  background-position: center bottom;
  color: #EAECF1;
  text-align: center;
  position: relative;
}
@media (max-width: 768px) {
  .company {
    padding: 8rem 0;
  }
}
.company::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(310deg, #2F5EAB, #51c1dd);
  opacity: 0.8;
}
.company__inner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  z-index: 1;
}
.company .section-title {
  font-size: min(18vw, 28px);
  color: #fff;
  font-weight: bold;
  letter-spacing: 1rem;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  position: relative;
}
.company .section-title:before {
  content: "COMPANY";
  position: absolute;
  color: #fff;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  letter-spacing: 0.3rem;
  font-size: 12px;
  font-family: YakuHanJP, "din-2014-narrow", sans-serif;
  font-weight: 400;
  font-style: italic;
  border-bottom: 1px solid #fff;
  padding-bottom: 5px;
  box-sizing: border-box;
  text-align: center;
  width: 45%;
}
.company__subtitle {
  font-size: 22px;
  font-weight: 600;
  margin: 3rem 0 5rem;
}
@media (max-width: 768px) {
  .company__subtitle {
    line-height: 3rem;
  }
}
.company__subtitle .br_500 {
  display: none;
}
@media (max-width: 500px) {
  .company__subtitle .br_500 {
    display: inline;
  }
}
.company__text {
  margin: 0 auto 2rem;
  line-height: 2;
  max-width: 500px;
}
@media (max-width: 768px) {
  .company__text {
    text-align: left;
    font-size: 14px;
    margin-bottom: 3rem;
  }
}
.company__button {
  width: -moz-fit-content;
  width: fit-content;
  margin: 5em auto 0;
  position: relative;
  border: 1px solid #fff;
  transition: all 0.5s ease;
}
.company__button::before {
  position: absolute;
  content: "";
  width: 30px;
  height: 1px;
  background-color: #fff;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.company__button::after {
  position: absolute;
  content: "";
  width: 5px;
  height: 5px;
  background-color: #fff;
  top: 50%;
  left: 30px;
  border-radius: 5px;
  transform: translateY(-50%);
}
.company__button__more {
  display: block;
  font-style: normal;
  color: #fff;
  font-size: 12px;
  letter-spacing: 0.2rem;
  cursor: pointer;
  width: 200px;
  padding: 2em 0;
  box-sizing: border-box;
}
.company__button:hover {
  transform: scale(1.05);
}

#service #visual {
  width: 100%;
  height: 60vh;
  background-image: url(../images/img_service_visual.webp);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-color: rgba(47, 94, 171, 0.3);
  background-blend-mode: soft-light;
  height: 50vh;
  min-height: 500px;
}
@media screen and (max-height: 700px) and (orientation: landscape) {
  #service #visual {
    height: 500px;
  }
}
@media (max-width: 500px) {
  #service #visual {
    min-height: 300px;
    height: 40vh;
  }
}
#service #visual .container {
  width: 90%;
  height: 100%;
  margin: 0 auto;
  position: relative;
}
#service #visual .container .wrap {
  position: absolute;
  bottom: 0%;
  left: 0%;
  background-color: #fff;
  padding: 2em 3em 0.7em;
  box-sizing: border-box;
}
#service #visual .container .wrap h2 {
  font-size: min(9vw, 28px);
  color: #555;
  font-weight: 600;
  letter-spacing: 0.3rem;
}
#service #visual .container .wrap .subtitle {
  color: #2F5EAB;
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  margin-top: 2rem;
  letter-spacing: 0.3rem;
}
#service #sec-ttl .container {
  max-width: 800px;
  padding: 3em 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  flex-wrap: wrap;
}
#service #sec-ttl .container li {
  margin-top: min(4rem, 5vw);
  border-left: 1px solid #DEE5F2;
}
#service #sec-ttl .container li .item {
  display: block;
  width: 100%;
  height: min(50px, 6vw);
  padding: 0 min(4rem, 3vw);
  box-sizing: border-box;
  text-align: center;
  line-height: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  transition: all 0.5s ease;
  position: relative;
}
#service #sec-ttl .container li .item::after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  width: 0;
  height: 2px;
  background-color: #2F5EAB;
  transition: all 0.3s ease;
}
#service #sec-ttl .container li .item:hover::after {
  width: 100%;
}
#service #sec-ttl .container li .item .br500 {
  display: inline;
}
@media (max-width: 500px) {
  #service #sec-ttl .container li .item .br500 {
    display: none;
  }
}
#service #sec-ttl .container li .item.is-last-in-row {
  border-right: 1px solid #DEE5F2;
}
@media (max-width: 500px) {
  #service #sec-ttl .container {
    display: flex;
    justify-content: start;
    align-items: center;
    flex-direction: row;
  }
  #service #sec-ttl .container li .item {
    font-size: 12px;
    padding: 0 min(4rem, 1vw);
  }
}
#service .section .container {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  padding: 7rem 0;
}
#service .section .container .left {
  max-width: 450px;
  margin-right: min(100px, 7vw);
}
#service .section .container .left .ttl .num {
  width: -moz-fit-content;
  width: fit-content;
  font-size: 12px;
  color: #2F5EAB;
  background-color: #fff;
  padding: 0.3rem;
  box-sizing: border-box;
  position: relative;
  letter-spacing: 0.2rem;
}
#service .section .container .left .ttl .num::after {
  position: absolute;
  content: "01";
  top: 50%;
  right: -70px;
  transform: translateY(-50%);
  font-size: 80px;
  font-weight: 600;
  font-style: normal;
  z-index: -1;
  -webkit-text-stroke: 1.5px #2F5EAB;
  color: transparent;
}
#service .section .container .left .ttl h2 {
  margin: 5rem 0 1rem;
  font-size: min(28px, 9vw);
  font-weight: 600;
}
#service .section .container .left .ttl .subtext {
  margin-bottom: 5rem;
}
#service .section .container .left .description {
  line-height: 2.7rem;
}
#service .section .container .left .description p {
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  #service .section .container {
    flex-direction: column;
  }
  #service .section .container .left {
    max-width: 600px;
    margin: 0 auto 6rem;
  }
  #service .section .container .right img {
    max-width: 400px;
    width: 100%;
  }
}
#service #sec1 .container {
  padding: 4rem 0 0;
}
#service #sec6 .container .ttl {
  margin-bottom: 5rem;
}
#service #sec2 .container,
#service #sec5 .container,
#service #sec7 .container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  flex-direction: row-reverse;
}
#service #sec2 .container .left,
#service #sec5 .container .left,
#service #sec7 .container .left {
  max-width: 450px;
  margin-right: unset;
  margin-left: min(100px, 7vw);
}
#service #sec2 .container .right,
#service #sec5 .container .right,
#service #sec7 .container .right {
  position: relative;
}
#service #sec2 .container .right::before,
#service #sec5 .container .right::before,
#service #sec7 .container .right::before {
  position: absolute;
  content: "";
  top: -100px;
  left: -300px;
  width: min(500px, 55vw);
  height: min(500px, 42vw);
  background-color: #EAECF1;
  z-index: -1;
}
@media (max-width: 768px) {
  #service #sec2 .container .right::before,
  #service #sec5 .container .right::before,
  #service #sec7 .container .right::before {
    position: absolute;
    content: "";
    top: -50px;
    left: -50px;
    width: min(400px, 90vw);
    height: min(400px, 100vw);
    background-color: #EAECF1;
    z-index: -1;
  }
}
@media (max-width: 768px) {
  #service #sec2 .container,
  #service #sec5 .container,
  #service #sec7 .container {
    flex-direction: column;
  }
}
#service #sec3 .right,
#service #sec6 .right {
  position: relative;
}
#service #sec3 .right::before,
#service #sec6 .right::before {
  position: absolute;
  content: "";
  top: -100px;
  right: -300px;
  width: min(500px, 55vw);
  height: min(500px, 42vw);
  background-color: #EAECF1;
  z-index: -1;
}
@media (max-width: 768px) {
  #service #sec3 .right::before,
  #service #sec6 .right::before {
    position: absolute;
    content: "";
    top: -50px;
    left: -50px;
    width: min(400px, 90vw);
    height: min(400px, 100vw);
    background-color: #EAECF1;
    z-index: -1;
  }
}
#service #sec2 .num::after {
  content: "02";
}
#service #sec3 .num::after {
  content: "03";
}
#service #sec5 .num::after {
  content: "05";
}
#service #sec6 .num::after {
  content: "06";
}
#service #sec7 .num::after {
  content: "07";
}
#service #sec1-dtl {
  margin: 2rem 0 7rem;
}
#service #sec1-dtl .container {
  max-width: 1000px;
  padding: 0;
  margin: 0 auto;
  border: 1px solid #2F5EAB;
  position: relative;
}
#service #sec1-dtl .container .corners:nth-of-type(1), #service #sec1-dtl .container .corners:nth-of-type(2), #service #sec1-dtl .container .corners:nth-of-type(3), #service #sec1-dtl .container .corners:nth-of-type(4) {
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1px solid #2F5EAB;
}
#service #sec1-dtl .container .corners:nth-of-type(1)::before, #service #sec1-dtl .container .corners:nth-of-type(2)::before, #service #sec1-dtl .container .corners:nth-of-type(3)::before, #service #sec1-dtl .container .corners:nth-of-type(4)::before {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #2F5EAB;
  border: 2px solid #2F5EAB;
  -webkit-clip-path: polygon(30% 10%, 10% 30%, 30% 50%, 10% 70%, 30% 90%, 50% 70%, 70% 90%, 90% 70%, 70% 50%, 90% 30%, 70% 10%, 50% 30%);
          clip-path: polygon(30% 10%, 10% 30%, 30% 50%, 10% 70%, 30% 90%, 50% 70%, 70% 90%, 90% 70%, 70% 50%, 90% 30%, 70% 10%, 50% 30%);
}
#service #sec1-dtl .container .corners:nth-of-type(1)::after, #service #sec1-dtl .container .corners:nth-of-type(2)::after, #service #sec1-dtl .container .corners:nth-of-type(3)::after, #service #sec1-dtl .container .corners:nth-of-type(4)::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  -webkit-clip-path: polygon(20% 0%, 0% 20%, 30% 50%, 0% 80%, 20% 100%, 50% 70%, 80% 100%, 100% 80%, 70% 50%, 100% 20%, 80% 0%, 50% 30%);
          clip-path: polygon(20% 0%, 0% 20%, 30% 50%, 0% 80%, 20% 100%, 50% 70%, 80% 100%, 100% 80%, 70% 50%, 100% 20%, 80% 0%, 50% 30%);
}
#service #sec1-dtl .container .corners:nth-of-type(1) {
  top: 10px;
  left: 10px;
}
#service #sec1-dtl .container .corners:nth-of-type(2) {
  top: 10px;
  right: 10px;
}
#service #sec1-dtl .container .corners:nth-of-type(3) {
  bottom: 10px;
  left: 10px;
}
#service #sec1-dtl .container .corners:nth-of-type(4) {
  bottom: 10px;
  right: 10px;
}
#service #sec1-dtl .container .contents {
  padding: min(5rem, 5vw);
  box-sizing: border-box;
}
#service #sec1-dtl .container .contents .first h2 {
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  letter-spacing: 0.2rem;
  line-height: 2.5rem;
}
#service #sec1-dtl .container .contents .first ul {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  margin: 4rem 0 7rem;
}
#service #sec1-dtl .container .contents .first ul li {
  padding: 0 min(3rem, 2vw);
  box-sizing: border-box;
  position: relative;
}
#service #sec1-dtl .container .contents .first ul li:not(:first-of-type)::before {
  position: absolute;
  content: "";
  width: 1px;
  height: 50%;
  background-color: #2F5EAB;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
#service #sec1-dtl .container .contents .first ul li:first-of-type {
  padding-left: unset;
}
#service #sec1-dtl .container .contents .first ul li:last-of-type {
  padding-right: unset;
}
#service #sec1-dtl .container .contents .first ul li h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 1rem;
}
#service #sec1-dtl .container .contents .first ul li p {
  line-height: 2.5rem;
}
@media (max-width: 1000px) {
  #service #sec1-dtl .container .contents {
    padding: min(8rem, 15vw) min(5rem, 5vw);
  }
  #service #sec1-dtl .container .contents .first ul {
    margin: 4rem auto 7rem;
    width: -moz-fit-content;
    width: fit-content;
    align-items: start;
    flex-direction: column;
  }
  #service #sec1-dtl .container .contents .first ul li {
    padding: min(3rem, 10vw) 0;
  }
  #service #sec1-dtl .container .contents .first ul li:not(:first-of-type)::before {
    width: 20%;
    height: 1px;
    top: 0;
    left: 50%;
    transform: translateY(0) translateX(-50%);
  }
  #service #sec1-dtl .container .contents .first ul li:last-of-type {
    padding-bottom: unset;
  }
}
#service #sec1-dtl .container .contents .second h2 {
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 4rem;
  letter-spacing: 0.2rem;
  line-height: 2.5rem;
}
#service #sec1-dtl .container .contents .second ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  margin: 4rem 0;
  gap: min(4rem, 2vw);
}
#service #sec1-dtl .container .contents .second ul li img {
  display: block;
  margin: 0 auto 4rem;
}
@media (max-width: 1000px) {
  #service #sec1-dtl .container .contents .second ul {
    display: flex;
    justify-content: center;
    align-items: end;
    flex-direction: row;
    flex-wrap: wrap;
    gap: unset;
  }
  #service #sec1-dtl .container .contents .second ul li {
    width: 47%;
    margin-bottom: 3rem;
  }
  #service #sec1-dtl .container .contents .second ul li:nth-of-type(even) {
    margin-left: 1rem;
  }
}
@media (max-width: 1000px) and (max-width: 768px) {
  #service #sec1-dtl .container .contents .second ul li img {
    margin-bottom: 2rem;
    max-width: 60px;
    max-height: 60px;
  }
}
@media (max-width: 1000px) {
  #service #sec1-dtl .container .contents .second ul li p {
    text-align: center;
    line-height: 2rem;
  }
  #service #sec1-dtl .container .contents .second ul li p .br500 {
    display: none;
  }
}
@media (max-width: 1000px) and (max-width: 500px) {
  #service #sec1-dtl .container .contents .second ul li p .br500 {
    display: inline;
  }
}
#service #sec1-dtl .container .contents .closing {
  font-size: 20px;
  font-weight: 600;
  text-align: center;
}
#service #sec1-dtl .container .contents .closing .br768 {
  display: none;
}
@media (max-width: 768px) {
  #service #sec1-dtl .container .contents .closing {
    line-height: 3rem;
  }
  #service #sec1-dtl .container .contents .closing .br768 {
    display: inline;
  }
}
#service #sec4 .container {
  max-width: 1000px;
  margin: 0 auto 4em;
  padding: 8rem;
  flex-direction: column;
  border: 1px solid #2F5EAB;
}
#service #sec4 .container .ttl .num {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  position: relative;
  font-size: 80px;
  font-weight: 600;
  font-style: normal;
  -webkit-text-stroke: 1.5px #2F5EAB;
  color: transparent;
}
#service #sec4 .container .ttl .num::after {
  position: absolute;
  content: "SERVICE";
  top: 50%;
  left: -40px;
  transform: translateY(-50%);
  background-color: #fff;
  padding: 0.3rem;
  box-sizing: border-box;
  letter-spacing: 0.2rem;
  -webkit-text-stroke: 0px;
  color: #2F5EAB;
  font-size: 12px;
  font-family: YakuHanJP, "din-2014", sans-serif;
  font-weight: 400;
  font-style: italic;
}
#service #sec4 .container .ttl h2 {
  margin: 2rem 0 3rem;
  font-size: min(28px, 7vw);
  letter-spacing: 0.3rem;
  font-weight: 600;
  text-align: center;
  line-height: 3.5rem;
}
#service #sec4 .container .contents {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
}
#service #sec4 .container .contents img {
  margin-right: min(50px, 20vw);
  max-width: 300px;
}
#service #sec4 .container .contents .description {
  max-width: 450px;
  line-height: 2.7rem;
}
#service #sec4 .container .contents .description p {
  margin-bottom: 1rem;
}
@media (max-width: 1000px) {
  #service #sec4 .container .contents {
    flex-direction: column;
  }
  #service #sec4 .container .contents img {
    width: 100%;
    max-width: 400px;
    margin-right: unset;
  }
  #service #sec4 .container .contents .description {
    width: 100%;
    max-width: 600px;
    margin-top: 3rem;
  }
}
@media (max-width: 768px) {
  #service #sec4 .container {
    padding: 6rem min(8rem, 5vw);
  }
}

#company #visual {
  width: 100%;
  height: 60vh;
  background-image: url(../images/img_company_visual.webp);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-color: rgba(47, 94, 171, 0.3);
  background-blend-mode: soft-light;
  height: 50vh;
  min-height: 500px;
}
@media screen and (max-height: 700px) and (orientation: landscape) {
  #company #visual {
    height: 500px;
  }
}
@media (max-width: 500px) {
  #company #visual {
    min-height: 300px;
    height: 40vh;
  }
}
#company #visual .container {
  width: 90%;
  height: 100%;
  margin: 0 auto;
  position: relative;
}
#company #visual .container .wrap {
  position: absolute;
  bottom: 0%;
  left: 0%;
  background-color: #fff;
  padding: 2em 3em 0.7em;
  box-sizing: border-box;
}
#company #visual .container .wrap h2 {
  font-size: min(9vw, 28px);
  color: #555;
  font-weight: 600;
  letter-spacing: 0.3rem;
}
#company #visual .container .wrap .subtitle {
  color: #2F5EAB;
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  margin-top: 2rem;
  letter-spacing: 0.3rem;
}
#company #info {
  width: 100%;
}
#company #info .container {
  width: 80%;
  max-width: 1000px;
  margin: 0 auto;
  padding: min(20rem, 7vw) 0;
}
#company #info .container .card {
  padding: 5rem 0;
  box-sizing: border-box;
  margin-bottom: 3rem;
}
#company #info .container .card .title {
  margin-bottom: 5rem;
}
#company #info .container .card .title h2 {
  font-size: 28px;
  font-size: 2.8rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
#company #info .container .card .title .subtitle {
  color: #817f8b;
  font-size: 12px;
  letter-spacing: 0.3rem;
  font-style: normal;
}
#company #info .container .card .content .row {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  border-bottom: 1px solid #EAECF1;
  border-right: 1px solid #EAECF1;
}
#company #info .container .card .content .row:first-child {
  border-top: 1px solid #EAECF1;
}
#company #info .container .card .content .row h3 {
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 600;
  min-width: 180px;
  background-color: #DEE5F2;
  height: 100px;
  display: flex;
  justify-content: start;
  align-items: center;
  flex-direction: row;
  padding-left: min(5rem, 4vw);
  box-sizing: border-box;
}
#company #info .container .card .content .row .data {
  font-size: 16px;
  font-size: 1.6rem;
  padding: 0 3rem;
  box-sizing: border-box;
  line-height: 2rem;
}
#company #info .container .card .content .row .data .br400 {
  display: none;
}
@media (max-width: 400px) {
  #company #info .container .card .content .row .data .br400 {
    display: inline-block;
  }
}
@media (max-width: 768px) {
  #company #info .container {
    width: 90%;
  }
  #company #info .container .card {
    padding: 2rem 0;
    padding-top: 5rem;
    box-sizing: border-box;
  }
  #company #info .container .card .content .row h3 {
    font-size: 14px;
    font-size: 1.4rem;
    font-weight: 600;
    min-width: min(180px, 30vw);
    background-color: #DEE5F2;
    height: min(100px, 20vw);
  }
  #company #info .container .card .content .row .data {
    font-size: 14px;
    font-size: 1.4rem;
    padding: 0 min(3rem, 4vw);
    box-sizing: border-box;
  }
}

#access {
  width: 100%;
}
#access .container {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 0 min(20rem, 7vw) 0;
}
#access .container .title {
  margin-bottom: 5rem;
}
#access .container .title h2 {
  font-size: 28px;
  font-size: 2.8rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
#access .container .title .subtitle {
  color: #817f8b;
  font-size: 12px;
  letter-spacing: 0.3rem;
  font-style: normal;
}
#access .container .g-map {
  max-width: 1000px;
  margin: 0 auto;
  height: 400px;
  overflow: hidden;
}
#access .container .g-map iframe {
  height: 700px;
  margin-top: -150px;
}
#access .container .wrap {
  margin-top: 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
}
#access .container .wrap .inner {
  padding: 0.5rem 0 0.5rem 2rem;
  border-left: 1px solid #2F5EAB;
}
#access .container .wrap .inner p {
  font-weight: 600;
  line-height: 1.8rem;
  letter-spacing: 0.2rem;
}
#access .container .wrap .inner p:first-of-type {
  margin-bottom: 1rem;
}
#access .container .wrap .button {
  width: 250px;
}
#access .container .wrap .button a {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  padding: 3rem 0;
  box-sizing: border-box;
  overflow: hidden;
}
#access .container .wrap .button a span {
  position: relative;
  z-index: 1;
  display: flex;
}
#access .container .wrap .button a span::before {
  position: absolute;
  content: "";
  width: 600px;
  height: 80px;
  background-image: linear-gradient(90deg, #51c1dd 0%, #2F5EAB 50%, #51c1dd 100%);
  transition: all 0.5s ease-in-out;
  transform: translateX(-20%) translateY(-35px);
  z-index: -1;
}
#access .container .wrap .button a span:hover::before {
  width: 600px;
  transform: translateX(-70%) translateY(-35px);
}
#access .container .wrap .button a span img {
  height: 15px;
  margin-right: 0.5rem;
}
#access .container .wrap .button a span p {
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.2rem;
  color: #fff;
}

@media (max-width: 768px) {
  #access .container .title {
    margin-bottom: 7rem;
  }
  #access .container .wrap {
    margin-top: 1rem;
    display: flex;
    justify-content: center;
    align-items: start;
    flex-direction: column;
  }
  #access .container .wrap .button {
    width: 200px;
    margin: 5rem auto 0;
  }
  #access .container .wrap .button a {
    padding: 2.5rem 0;
  }
}
#contact #visual {
  width: 100%;
  height: 60vh;
  background-image: url(../images/img_contact_visual.webp);
  background-repeat: no-repeat;
  background-position-x: 80%;
  background-size: cover;
  background-color: rgba(47, 94, 171, 0.3);
  background-blend-mode: soft-light;
  height: 50vh;
  min-height: 500px;
}
@media screen and (max-height: 700px) and (orientation: landscape) {
  #contact #visual {
    height: 500px;
  }
}
@media (max-width: 500px) {
  #contact #visual {
    min-height: 300px;
    height: 40vh;
  }
}
#contact #visual .container {
  width: 90%;
  height: 100%;
  margin: 0 auto;
  position: relative;
}
#contact #visual .container .wrap {
  position: absolute;
  bottom: 0%;
  left: 0%;
  background-color: #fff;
  padding: 2em 3em 0.7em;
  box-sizing: border-box;
}
#contact #visual .container .wrap h2 {
  font-size: min(9vw, 28px);
  color: #555;
  font-weight: 600;
  letter-spacing: 0.3rem;
}
#contact #visual .container .wrap .subtitle {
  color: #2F5EAB;
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  margin-top: 2rem;
  letter-spacing: 0.3rem;
}
#contact #tel-area .container {
  max-width: 1000px;
  padding: 3rem;
  box-sizing: border-box;
  border: 1px solid #2F5EAB;
  margin: 5rem auto;
}
#contact #tel-area .container p {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
#contact #tel-area .container .tel-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  cursor: pointer;
}
#contact #tel-area .container .tel-wrap:hover .inner img {
  transform: scale(1.2) rotate(15deg);
}
#contact #tel-area .container .tel-wrap .inner {
  transition: all 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  margin: 1.5rem 0 1rem;
}
#contact #tel-area .container .tel-wrap .inner img {
  transition: all 0.5s ease;
  width: 25px;
}
@media (max-width: 500px) {
  #contact #tel-area .container .tel-wrap .inner img {
    width: 20px;
  }
}
#contact #tel-area .container .tel-wrap .inner .tel {
  font-size: min(36px, 8vw);
  font-style: normal;
  letter-spacing: 0.3rem;
  margin-left: 1rem;
}
#contact #tel-area .container .tel-wrap .hour {
  font-size: 12px;
}
#contact section#input-form {
  width: 1800px;
  max-width: 100%;
  margin: 0 auto 7rem;
}
#contact section#input-form .container {
  max-width: 90%;
  margin: 0 auto;
  padding: 0;
}
#contact section#input-form .container .border-wrap {
  max-width: 1000px;
  margin: 0 auto;
  border: 1px solid #2F5EAB;
  box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.1);
}
#contact section#input-form .container .border-wrap .white-bg {
  max-width: 1000px;
  margin: 1em;
  background-color: #fff;
  padding: 1em 0;
  box-sizing: border-box;
}
#contact section#input-form .container .border-wrap .white-bg h3 {
  font-size: min(20px, 6vw);
  text-align: center;
  margin: 20px auto;
  position: relative;
  font-weight: 600;
  letter-spacing: 0.1em;
  margin-top: 3em;
}
@media (max-width: 500px) {
  #contact section#input-form .container .border-wrap .white-bg h3 {
    font-size: 20px;
    font-size: 2rem;
  }
}
#contact section#input-form .container .border-wrap .white-bg .description {
  text-align: center;
  line-height: 2em;
  margin: min(2em, 5vw) 0;
}
#contact section#input-form .container .border-wrap .white-bg .description p .link {
  font-weight: 600;
  color: #3181C7;
  text-decoration: underline;
  text-underline-offset: 3px;
}
#contact section#input-form .container .border-wrap .white-bg form {
  width: 1000px;
  max-width: 100%;
  margin: 0 auto;
}
#contact section#input-form .container .border-wrap .white-bg form .box {
  display: flex;
  justify-content: center;
  max-width: 700px;
  margin: 0 auto;
  padding: 3rem 0;
  box-sizing: border-box;
  border-top: 1px dotted #DEE5F2;
}
#contact section#input-form .container .border-wrap .white-bg form .box:nth-of-type(5) {
  border-bottom: 1px dotted #DEE5F2;
}
#contact section#input-form .container .border-wrap .white-bg form .box:nth-of-type(4) {
  justify-content: left;
}
#contact section#input-form .container .border-wrap .white-bg form .box:nth-of-type(4) .input_text {
  display: flex;
  justify-content: left;
  align-items: center;
  flex-direction: row;
}
#contact section#input-form .container .border-wrap .white-bg form .box:nth-of-type(4) .input_text .wrap input {
  width: min(400px, 48vw);
}
@media (max-width: 500px) {
  #contact section#input-form .container .border-wrap .white-bg form .box:nth-of-type(4) .input_text .wrap input {
    width: 100%;
  }
}
#contact section#input-form .container .border-wrap .white-bg form .box:nth-of-type(4) .tel-txt {
  margin-top: 0rem;
  margin-left: 0.5rem;
  font-size: 12px;
}
@media (max-width: 768px) {
  #contact section#input-form .container .border-wrap .white-bg form .box {
    flex-direction: column;
    margin: 0 auto;
  }
}
#contact section#input-form .container .border-wrap .white-bg form .box .label {
  width: 200px;
  min-width: 130px;
  margin: 0 0 auto;
  display: flex;
  justify-content: left;
  align-items: center;
  flex-direction: row;
}
#contact section#input-form .container .border-wrap .white-bg form .box .label p {
  font-weight: 600;
}
#contact section#input-form .container .border-wrap .white-bg form .box .label .required {
  color: #fff;
  background-color: #C47575;
  font-size: 10px;
  padding: 0.4em;
  margin-left: 0.8em;
  box-sizing: border-box;
}
@media (max-width: 768px) {
  #contact section#input-form .container .border-wrap .white-bg form .box .label {
    margin-bottom: 5px;
  }
}
@media (max-width: 768px) {
  #contact section#input-form .container .border-wrap .white-bg form .box .input_text {
    margin-bottom: 20px;
  }
}
#contact section#input-form .container .border-wrap .white-bg form .box .input_text input,
#contact section#input-form .container .border-wrap .white-bg form .box .input_text textarea {
  width: 500px;
  max-width: 100%;
  box-sizing: border-box;
  cursor: pointer;
  resize: none;
  background-color: #F5F7F8;
  border: none;
  border-radius: 3px;
  font-size: 16px;
  cursor: text;
}
@media (max-width: 768px) {
  #contact section#input-form .container .border-wrap .white-bg form .box .input_text input,
  #contact section#input-form .container .border-wrap .white-bg form .box .input_text textarea {
    width: 700px;
  }
}
#contact section#input-form .container .border-wrap .white-bg form .box .input_text input {
  height: 30px;
}
@media (max-width: 768px) {
  #contact section#input-form .container .border-wrap .white-bg form .box .input_text input {
    height: 40px;
  }
}
@media (max-width: 768px) {
  #contact section#input-form .container .border-wrap .white-bg form .box:nth-of-type(4) .input_text {
    margin-bottom: 0px;
  }
}
#contact section#input-form .container .border-wrap .white-bg form .box .error {
  color: crimson;
}
#contact section#input-form .container .border-wrap .white-bg form .chk-area {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  max-width: 700px;
  padding-top: 3rem;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: start;
  flex-direction: column;
}
@media (max-width: 768px) {
  #contact section#input-form .container .border-wrap .white-bg form .chk-area {
    margin: 0px auto 50px;
  }
}
#contact section#input-form .container .border-wrap .white-bg form .chk-area .consent-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
}
#contact section#input-form .container .border-wrap .white-bg form .chk-area .consent-wrap #consent {
  cursor: pointer;
}
#contact section#input-form .container .border-wrap .white-bg form .chk-area .error {
  margin-top: 10px;
  text-align: center;
  color: crimson;
}
#contact section#input-form .container .border-wrap .white-bg form .chk-area a {
  color: #3181C7;
  margin: 1rem 0 0 2rem;
}
#contact section#input-form .container .border-wrap .white-bg form .more-button {
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  max-width: 250px;
  margin: 4em auto;
}
#contact section#input-form .container .border-wrap .white-bg form .more-button button {
  cursor: pointer;
  padding: 2rem 7rem;
  box-sizing: border-box;
  background: none;
  border: none;
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.1em;
  font-weight: 300;
  position: relative;
  overflow: hidden;
}
#contact section#input-form .container .border-wrap .white-bg form .more-button button::before {
  position: absolute;
  content: "";
  width: 30px;
  height: 1px;
  background-color: #fff;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  z-index: 2;
}
#contact section#input-form .container .border-wrap .white-bg form .more-button button::after {
  position: absolute;
  content: "";
  width: 5px;
  height: 5px;
  background-color: #fff;
  top: 50%;
  left: 30px;
  border-radius: 5px;
  transform: translateY(-50%);
  z-index: 2;
}
#contact section#input-form .container .border-wrap .white-bg form .more-button button span {
  position: relative;
  z-index: 1;
}
#contact section#input-form .container .border-wrap .white-bg form .more-button button span::before {
  position: absolute;
  content: "";
  width: 600px;
  height: 70px;
  background-image: linear-gradient(90deg, #51c1dd 0%, #2F5EAB 50%, #51c1dd 100%);
  transition: all 0.5s ease-in-out;
  transform: translateX(-20%) translateY(-25px);
  z-index: -1;
}
#contact section#input-form .container .border-wrap .white-bg form .more-button button span:hover::before {
  width: 600px;
  transform: translateX(-65%) translateY(-25px);
}
#contact section#confirm-form {
  width: 100%;
  padding-bottom: 8rem;
}
#contact section#confirm-form .container {
  max-width: 90%;
  margin: 0 auto;
  padding-bottom: 0;
}
#contact section#confirm-form .container .title {
  text-align: center;
}
#contact section#confirm-form .container .title h3 {
  font-size: 28px;
  font-size: 2.8rem;
  font-weight: 600;
}
#contact section#confirm-form .container .title p {
  margin-top: 20px;
}
#contact section#confirm-form .container table {
  width: 100%;
  max-width: 1000px;
  text-align: left;
  margin: 100px auto 100px;
}
@media (max-width: 1000px) {
  #contact section#confirm-form .container table {
    margin-bottom: 100px;
  }
}
#contact section#confirm-form .container table tr {
  border-top: 1px solid #DEE5F2;
  box-sizing: border-box;
}
#contact section#confirm-form .container table tr:last-child {
  border-bottom: 1px solid #DEE5F2;
}
@media (max-width: 768px) {
  #contact section#confirm-form .container table tr {
    display: flex;
    flex-direction: column;
  }
}
#contact section#confirm-form .container table tr th {
  width: 300px;
  min-width: 130px;
  padding: 4rem 2rem;
  box-sizing: border-box;
}
@media (max-width: 768px) {
  #contact section#confirm-form .container table tr th {
    padding-bottom: 2rem;
    width: 250px;
  }
}
@media (max-width: 500px) {
  #contact section#confirm-form .container table tr th {
    max-width: 500px;
  }
}
#contact section#confirm-form .container table tr td {
  max-width: 500px;
  word-wrap: break-word;
  padding: 4rem 2rem;
  box-sizing: border-box;
}
@media (max-width: 768px) {
  #contact section#confirm-form .container table tr td {
    max-width: 80vw;
    padding-top: 0;
    text-align: left;
  }
}
#contact section#confirm-form .btn_form {
  max-width: 1000px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  margin: 0 auto;
}
@media (max-width: 1000px) {
  #contact section#confirm-form .btn_form {
    flex-direction: column-reverse;
  }
}
#contact section#confirm-form .btn_form form {
  margin: 20px auto;
}
#contact section#confirm-form .btn_form form .btn-wrap-inner {
  text-align: center;
}
#contact section#confirm-form .btn_form form .btn-wrap-inner button {
  letter-spacing: 0.1em;
  font-size: 16px;
  font-weight: 600;
  width: 250px;
  height: 70px;
  color: #fff;
  padding: 15px 15px;
  overflow: hidden;
  cursor: pointer;
  border: none;
}
#contact section#confirm-form .btn_form form .btn-wrap-inner button span {
  position: relative;
  z-index: 1;
}
#contact section#confirm-form .btn_form form .btn-wrap-inner button span::before {
  position: absolute;
  content: "";
  width: 600px;
  height: 70px;
  background-image: linear-gradient(90deg, #51c1dd 0%, #2F5EAB 50%, #51c1dd 100%);
  transition: all 0.5s ease-in-out;
  transform: translateX(-20%) translateY(-25px);
  z-index: -1;
}
#contact section#confirm-form .btn_form form .btn-wrap-inner button span:hover::before {
  width: 600px;
  transform: translateX(-70%) translateY(-25px);
}

#policy #visual {
  width: 100%;
  height: 60vh;
  background-image: url(../images/img_policy_visual.webp);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-color: rgba(47, 94, 171, 0.3);
  background-blend-mode: soft-light;
  min-height: 500px;
}
@media screen and (max-height: 700px) and (orientation: landscape) {
  #policy #visual {
    height: 500px;
  }
}
@media (max-width: 500px) {
  #policy #visual {
    min-height: 300px;
    height: 40vh;
  }
}
#policy #visual .container {
  width: 90%;
  height: 100%;
  margin: 0 auto;
  position: relative;
}
#policy #visual .container .wrap {
  position: absolute;
  bottom: 0%;
  left: 0%;
  background-color: #fff;
  padding: 2em 3em 0.7em;
  box-sizing: border-box;
}
#policy #visual .container .wrap h2 {
  font-size: min(9vw, 28px);
  color: #555;
  font-weight: 600;
  letter-spacing: 0.3rem;
}
#policy #visual .container .wrap .subtitle {
  color: #2F5EAB;
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  margin-top: 2rem;
  letter-spacing: 0.3rem;
}
#policy #policy-contents {
  padding: 0;
}
#policy #policy-contents .container {
  padding: 7em 0;
}
#policy #policy-contents .container .contents {
  max-width: 1000px;
  background-color: #fff;
  border: 1px solid #2F5EAB;
  padding: 7em 5em;
  box-sizing: border-box;
  margin: 0 auto;
  box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.2);
}
@media (max-width: 768px) {
  #policy #policy-contents .container .contents {
    padding: min(7em, 20vw) min(5em, 6vw);
  }
}
#policy #policy-contents .container .contents .sec-ttl h2 {
  font-size: 28px;
}
@media (max-width: 768px) {
  #policy #policy-contents .container .contents .sec-ttl {
    margin-bottom: 3rem;
  }
  #policy #policy-contents .container .contents .sec-ttl h2 {
    font-size: min(28px, 7vw);
  }
}
#policy #policy-contents .container .contents .description p {
  font-weight: 600;
  line-height: 2.5rem;
}
#policy #policy-contents .container .contents ol {
  margin: 3rem 0 0;
}
#policy #policy-contents .container .contents ol .outer {
  margin-top: 3rem;
}
#policy #policy-contents .container .contents ol .outer h3 {
  font-weight: 600;
}
#policy #policy-contents .container .contents ol .outer p {
  line-height: 2.5rem;
  margin-top: 1rem;
}
#policy #policy-contents .container .contents ol .outer .inner {
  margin-top: 1rem;
}
#policy #policy-contents .container .contents ol .outer .inner li {
  margin-top: 1rem;
  line-height: 2rem;
}
#policy #policy-contents .container .contents ol .outer .inner li p {
  margin-left: 1.5rem;
  margin-top: 0.7rem;
}

#thanks #visual {
  width: 100%;
  height: 60vh;
  background-image: url(../images/img_contact_visual.webp);
  background-repeat: no-repeat;
  background-position-x: 80%;
  background-size: cover;
  background-color: rgba(47, 94, 171, 0.3);
  background-blend-mode: soft-light;
  height: 50vh;
  min-height: 500px;
}
@media screen and (max-height: 700px) and (orientation: landscape) {
  #thanks #visual {
    height: 500px;
  }
}
#thanks #visual .container {
  width: 90%;
  height: 100%;
  margin: 0 auto;
  position: relative;
}
#thanks #visual .container .wrap {
  position: absolute;
  bottom: 0%;
  left: 0%;
  background-color: #fff;
  padding: 2em 3em 0.7em;
  box-sizing: border-box;
}
#thanks #visual .container .wrap h2 {
  font-size: min(9vw, 28px);
  color: #555;
  font-weight: 600;
  letter-spacing: 0.3rem;
}
#thanks #visual .container .wrap .subtitle {
  color: #2F5EAB;
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  margin-top: 2rem;
  letter-spacing: 0.3rem;
}
#thanks #thanks-contents {
  padding-bottom: 10rem;
  box-sizing: border-box;
}
#thanks #thanks-contents .container {
  width: 1200px;
  max-width: 90%;
  height: auto;
  margin: 0 auto;
  text-align: center;
}
#thanks #thanks-contents .container p {
  font-size: 30px;
  font-size: 3rem;
  padding: 3rem 0 7rem 0;
  box-sizing: border-box;
}
#thanks #thanks-contents .container div {
  text-align: center;
  width: 20rem;
  margin: 0 auto;
}
#thanks #thanks-contents .container div a {
  color: #fff;
  background-image: linear-gradient(310deg, #2F5EAB, #51c1dd);
  display: block;
  padding: 2rem;
  text-decoration: none;
  font-size: 14px;
  font-size: 1.4rem;
  transition: background-color 0.5s;
  overflow: hidden;
}
#thanks #thanks-contents .container div a span {
  position: relative;
  z-index: 1;
}
#thanks #thanks-contents .container div a span::before {
  position: absolute;
  content: "";
  width: 600px;
  height: 70px;
  background-image: linear-gradient(90deg, #51c1dd 0%, #2F5EAB 50%, #51c1dd 100%);
  transition: all 0.5s ease-in-out;
  transform: translateX(-20%) translateY(-25px);
  z-index: -1;
}
#thanks #thanks-contents .container div a span:hover::before {
  width: 600px;
  transform: translateX(-65%) translateY(-25px);
}
@media (max-width: 768px) and (max-width: 640px) {
  #thanks #visual {
    min-height: 400px;
  }
  #thanks #visual h2 {
    font-size: 30px;
    font-size: 3rem;
  }
}
@media (max-width: 600px) {
  #thanks #thanks-contents .container {
    padding: 10rem 0;
  }
  #thanks #thanks-contents .container p {
    padding: 3rem 0 4rem 0;
    font-size: 20px;
    font-size: 2rem;
  }
  #thanks #thanks-contents .container div a {
    font-size: 12px;
    font-size: 1.2rem;
  }
}

.contact {
  padding: 12em 0 10em;
  background-color: #EAECF1;
  text-align: center;
}
@media (max-width: 768px) {
  .contact {
    padding: 10em 0 8em;
  }
}
.contact__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.contact__title {
  font-size: min(18vw, 20px);
  color: #2F5EAB;
  font-weight: bold;
  letter-spacing: 0.5rem;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  position: relative;
}
@media (max-width: 768px) {
  .contact__title {
    line-height: 3rem;
    font-size: 18px;
    letter-spacing: 0.3rem;
  }
}
.contact__title:before {
  content: "CONTACT US";
  position: absolute;
  color: #2F5EAB;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
  letter-spacing: 0.3rem;
  font-size: 12px;
  font-family: YakuHanJP, "din-2014", sans-serif;
  font-weight: 400;
  font-style: italic;
  border-bottom: 1px solid #2F5EAB;
  padding-bottom: 5px;
  box-sizing: border-box;
  text-align: center;
  width: 115px;
}
@media (max-width: 768px) {
  .contact__title:before {
    padding-bottom: 10px;
    line-height: 0;
  }
}
.contact__title .br_768 {
  display: none;
}
@media (max-width: 768px) {
  .contact__title .br_768 {
    display: inline;
  }
}
.contact__link {
  margin-top: 3em;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
}
.contact__tel {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding-right: 5rem;
  box-sizing: border-box;
  border-right: 1px solid #2F5EAB;
  cursor: pointer;
}
.contact__tel:hover .contact__tel__inner img {
  transform: scale(1.2) rotate(15deg);
}
.contact__tel__inner {
  transition: all 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
}
.contact__tel__inner img {
  transition: all 0.5s ease;
  width: 25px;
}
.contact__tel__text {
  font-size: 36px;
  font-style: normal;
  letter-spacing: 0.3rem;
  margin-left: 1rem;
}
.contact__hour {
  font-size: 12px;
}
.contact__button {
  margin-left: 5rem;
  width: 250px;
  height: 70px;
  padding: 25px 0 10px;
  box-sizing: border-box;
  overflow: hidden;
  position: relative;
}
.contact__button::before {
  position: absolute;
  content: "";
  width: 30px;
  height: 1px;
  background-color: #fff;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  z-index: 2;
}
.contact__button::after {
  position: absolute;
  content: "";
  width: 5px;
  height: 5px;
  background-color: #fff;
  top: 50%;
  left: 30px;
  border-radius: 5px;
  transform: translateY(-50%);
  z-index: 2;
}
.contact__button__more {
  width: 100%;
  color: #fff;
  font-size: 14px;
}
.contact__button__more span {
  position: relative;
  z-index: 1;
}
.contact__button__more span::before {
  position: absolute;
  content: "";
  width: 600px;
  height: 70px;
  background-image: linear-gradient(90deg, #51c1dd 0%, #2F5EAB 50%, #51c1dd 100%);
  transition: all 0.5s ease-in-out;
  transform: translateX(-20%) translateY(-25px);
  z-index: -1;
}
.contact__button__more span:hover::before {
  width: 600px;
  transform: translateX(-65%) translateY(-25px);
}

@media (max-width: 768px) {
  .contact__link {
    margin-top: 3em;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  .contact__tel {
    padding-right: unset;
    padding-bottom: 3rem;
    border-right: unset;
    position: relative;
  }
  .contact__tel::after {
    position: absolute;
    content: "";
    width: 70px;
    height: 1px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background-color: #2F5EAB;
  }
  .contact__button {
    margin-left: unset;
    margin-top: 3rem;
  }
}/*# sourceMappingURL=style.css.map */