@charset "utf-8";

/* RESET
----------------------------------------------------------------------------------------------------*/
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,picture {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
  line-height: 1.5em;
}
ol, ul {
  list-style: none;
}
blockquote, q {
  quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

table {
  margin : 0;
  border-collapse: collapse;
  border-spacing: 0;
  empty-cells: show;
}

img {
  vertical-align: bottom;
  border: none;
}
picture {
  display: block;
}
/* ----------------------------------------------

 * 設定をしなおす

---------------------------------------------- */
:root {
  --inner: 131.6rem;
  --mainColor: #BE911F;
  --subColor: #F8F3E6;
  --bgColor: #EAEDEF;
  --black: #072E5C;
}
@media (prefers-reduced-motion: reduce) {
  * {
      animation-duration: 0.01ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: 0.01ms !important;
      scroll-behavior: auto !important;
  }
}
html {
  -webkit-font-smoothing: antialiased;
  font-size: 62.5%;
  scroll-padding-top: 5.5rem;
}
@media screen and (max-width: 1316px) {
  html {
    font-size: 0.7320644217vw;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 2.6666666667vw;
  }
}
body {
  margin: 0 auto;
  padding: 0;
  font-size: 1.6rem;
  line-height: 1.8em;
  color: var(--black);
  height: 100%;
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-weight: 500;
  position: relative;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  body {
    font-size: 1.4rem;
    background-size: 6.4rem 6.4rem;
  }
}

.en {
  font-family: "EB Garamond", serif;
  font-weight: 400;
  font-style: normal;
}
.min {
  font-family: YakuHanMP,"Zen Old Mincho", serif;
  font-weight: 400;
}

table {
  margin : 0;
  border-collapse: collapse;
  border-spacing: 0;
  empty-cells: show;
}

img {
  vertical-align: bottom;
  border: none;
  max-width: 100%;
  height: auto;
  -webkit-backface-visibility: hidden;
}
main {
  display: block;
  position: relative;
}

a {
  outline:none;
  color: var(--black);
}

a:hover {
  text-decoration: none;
}

a,a:hover,a:hover img,button,input {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  text-decoration: none;
}

a:hover {
  filter: alpha(opacity=80);
  -moz-opacity:0.80;
  opacity:0.80;
}

* {
  -webkit-box-sizing:border-box;
  -moz-box-sizing:border-box;
  box-sizing:border-box;
}


/* -----------------------------------------------
 * COMMON
----------------------------------------------- */
input[type=text]:focus {
    outline: none;
}
#main {
  overflow: hidden;
}
section {
  position: relative;
}
.container {
  max-width: calc(var(--inner) + 8rem);
  margin-left: auto;
  margin-right: auto;
  padding-left: 4rem;
  padding-right: 4rem;
}
.pt-0 {
  padding-top: 0 !important;
}
.pb-0 {
  padding-bottom: 0 !important;
}

@media only screen and ( max-width : 767px ) {
  .container {
    max-width: 100%;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
  .section {
    padding: 4rem 0;
  }
  .br_pc {
    display: none;
  }
  .sp_none{display:none !important;}
}
@media print, screen and ( min-width : 768px ) {
  .section {
    padding: 8rem 0;
  }
  .br_sp {
    display: none;
  }
  .sp { display:none !important; }
}
/* ---------------------------------------------------------------------------------------------

　   FLEX

--------------------------------------------------------------------------------------------- */
.d-flex {
  display: -ms-flexbox !important;
  display: flex !important;
}

.d-inline-flex {
  display: -ms-inline-flexbox !important;
  display: inline-flex !important;
}
.flex-row {
  -ms-flex-direction: row !important;
  flex-direction: row !important;
}

.flex-column {
  -ms-flex-direction: column !important;
  flex-direction: column !important;
}

.flex-row-reverse {
  -ms-flex-direction: row-reverse !important;
  flex-direction: row-reverse !important;
}

.flex-column-reverse {
  -ms-flex-direction: column-reverse !important;
  flex-direction: column-reverse !important;
}

.flex-wrap {
  -ms-flex-wrap: wrap !important;
  flex-wrap: wrap !important;
}

.flex-nowrap {
  -ms-flex-wrap: nowrap !important;
  flex-wrap: nowrap !important;
}

.flex-wrap-reverse {
  -ms-flex-wrap: wrap-reverse !important;
  flex-wrap: wrap-reverse !important;
}
.justify-content-start {
  -ms-flex-pack: start !important;
  justify-content: flex-start !important;
}

.justify-content-end {
  -ms-flex-pack: end !important;
  justify-content: flex-end !important;
}

.justify-content-center {
  -ms-flex-pack: center !important;
  justify-content: center !important;
}

.justify-content-between {
  -ms-flex-pack: justify !important;
  justify-content: space-between !important;
}

.align-items-start {
  -ms-flex-align: start !important;
  align-items: flex-start !important;
}

.align-items-end {
  -ms-flex-align: end !important;
  align-items: flex-end !important;
}

.align-items-center {
  -ms-flex-align: center !important;
  align-items: center !important;
}


@media (min-width: 576px) {
  .d-sm-flex {
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .justify-content-sm-start {
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .justify-content-sm-end {
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .justify-content-sm-center {
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .justify-content-sm-between {
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  .align-items-sm-start {
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  .align-items-sm-end {
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  .align-items-sm-center {
    -ms-flex-align: center !important;
    align-items: center !important;
  }
}

@media (min-width: 768px) {
  .d-md-flex {
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .justify-content-md-start {
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .justify-content-md-end {
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .justify-content-md-center {
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .justify-content-md-between {
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  .align-items-md-start {
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  .align-items-md-end {
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  .align-items-md-center {
    -ms-flex-align: center !important;
    align-items: center !important;
  }
}

@media (min-width: 992px) {
  .d-lg-flex {
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .justify-content-lg-start {
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .justify-content-lg-end {
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .justify-content-lg-center {
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .justify-content-lg-between {
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  .align-items-lg-start {
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  .align-items-lg-end {
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  .align-items-lg-center {
    -ms-flex-align: center !important;
    align-items: center !important;
  }
}

@media (min-width: 1200px) {
  .d-xl-flex {
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .flex-xl-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-xl-start {
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .justify-content-xl-end {
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .justify-content-xl-center {
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .justify-content-xl-between {
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  .align-items-xl-start {
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  .align-items-xl-end {
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  .align-items-xl-center {
    -ms-flex-align: center !important;
    align-items: center !important;
  }
}

/* ---------------------------------------------------------------------------------------------

　   TEXT

--------------------------------------------------------------------------------------------- */
.text-left {
  text-align: left !important;
}

.text-right {
  text-align: right !important;
}

.text-center {
  text-align: center !important;
}
.mb-1 {
  margin-bottom: 0.25rem !important;
}
.mb-2 {
  margin-bottom: 0.5rem !important;
}
.mb-3 {
  margin-bottom: 1rem !important;
}
.mb-4 {
  margin-bottom: 1.5rem !important;
}
.mb-5 {
  margin-bottom: 3rem !important;
}
@media (min-width: 576px) {
  .text-sm-left {
    text-align: left !important;
  }
  .text-sm-right {
    text-align: right !important;
  }
  .text-sm-center {
    text-align: center !important;
  }
}

@media (min-width: 768px) {
  .text-md-left {
    text-align: left !important;
  }
  .text-md-right {
    text-align: right !important;
  }
  .text-md-center {
    text-align: center !important;
  }
}

@media (min-width: 992px) {
  .text-lg-left {
    text-align: left !important;
  }
  .text-lg-right {
    text-align: right !important;
  }
  .text-lg-center {
    text-align: center !important;
  }
}

@media (min-width: 1200px) {
  .text-xl-left {
    text-align: left !important;
  }
  .text-xl-right {
    text-align: right !important;
  }
  .text-xl-center {
    text-align: center !important;
  }
}

/* ---------------------------------------------------------------------------------------------

　   HEADER

--------------------------------------------------------------------------------------------- */
#header {
  display: flex;
  justify-content: space-between;
  align-items: flex-center;
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
  transition: transform 0.3s 0.3s;
  background: rgba(255,255,255,1);
}
#header.scroll {
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(5px);
}

#header.hidden {
    transform: translateY(-100%);
    transition: transform 0.3s ease-out;
}
#h_logo,
#h_navigation {
  position: relative;
  z-index: 9999;
}
#h_logo,
#h_logo a {
  display: flex;
  align-items: center;
}
#h_logo {
  letter-spacing: .05em;
  font-weight: 700;
}
#h_navigation {
  display: flex;
  align-items: center;
}

#menu_btn.menu-trigger {
  display: none;
}
.overlay {
  display: block;
  width: 0;
  height: 0;
  background-color: rgba(0, 0, 0, 0);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 98;
  opacity: 0;
  transition: opacity .5s;
  pointer-events: none;
}
.overlay.open {
  width: 100%;
  height: 100vh;
  height: 100svh;
  background-color: rgba(3, 28, 57, 0.45);
  opacity: 1;
  pointer-events: auto;
}
body.open {
  overflow: hidden;
}
#nav a {
  font-weight: 700;
}
#nav li.current:not(.nav_contact) > a {
  color: var(--mainColor);
  opacity: 1;
  filter: none;
}

@media only screen and ( max-width : 767px ) {
  #header {
    height: 5.5rem;
    padding: 0 1.5rem;
  }
  header.hidden {
    transform: translateY(-5.5rem) !important;
  }
  #h_logo {
    position: relative;
    z-index: 102;
    font-size: 1.5rem;
    line-height: 1.4;
  }
  body.open #header {
    z-index: 102;
  }
  #menu_btn.menu-trigger {
    display: block;
    position: relative;
    z-index: 102;
    width: 3.8rem;
    height: 1rem;
    padding: 0;
    border: none;
    background: transparent;
    cursor: pointer;
    flex-shrink: 0;
  }
  #menu_btn .menu-trigger__bar {
    position: absolute;
    left: 0;
    display: block;
    width: 100%;
    height: 1.5px;
    background: var(--black);
    transition: transform 0.3s ease, top 0.3s ease;
  }
  #menu_btn .menu-trigger__bar:nth-child(1) {
    top: 0;
  }
  #menu_btn .menu-trigger__bar:nth-child(2) {
    bottom: 0;
  }
  #menu_btn.active .menu-trigger__bar:nth-child(1),
  #menu_btn.active .menu-trigger__bar:nth-child(2) {
    top: 50%;
    bottom: auto;
  }
  #menu_btn.active .menu-trigger__bar:nth-child(1) {
    transform: translateY(-50%) rotate(18deg);
  }
  #menu_btn.active .menu-trigger__bar:nth-child(2) {
    transform: translateY(-50%) rotate(-18deg);
  }
  #nav {
    position: fixed;
    top: 5.5rem;
    right: 0;
    z-index: 101;
    width: 100%;
    height: calc(100vh - 5.5rem);
    height: calc(100svh - 5.5rem);
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    background-color: #fff;
    padding: 1rem 1.5rem 4rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-0.8rem);
    transition:
      opacity 0.35s ease,
      visibility 0.35s ease,
      transform 0.35s ease;
  }
  #nav.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  #nav ul {
    display: flex;
    flex-direction: column;
  }
  #nav li {
    border-bottom: 1px solid #B3BECB;
  }
  #nav li.nav_contact {
    margin-top: 2.5rem;
    border-bottom: none;
  }
  #nav a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.8rem 1rem;
    font-size: 1.5rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    line-height: 1.4;
    color: var(--black);
    text-decoration: none;
    opacity: 1;
    filter: none;
  }
  #nav li a {
    font-family: YakuHanMP, "Zen Old Mincho", serif;
  }
  #nav li:not(.nav_contact) a::after {
    content: "";
    display: block;
    flex-shrink: 0;
    width: 1.4rem;
    height: 0.9rem;
    margin-left: 1rem;
    background: url(../img/arrow.png) no-repeat center / contain;
  }
  #nav .nav_contact a {
    justify-content: center;
    gap: 1rem;
    padding: 1.6rem 2rem;
    background: var(--black);
    color: #fff;
    letter-spacing: 0.1em;
  }
  #nav .nav_contact .ico_mail svg {
    width: 2rem;
    height: auto;
  }
}
@media print, screen and ( min-width : 768px ) {
  html {
    scroll-padding-top: 7rem;
  }
  #header {
    height: 7rem;
    padding: 0 0 0 4rem;
  }
  header.hidden {
    transform: translateY(-7rem) !important;
  }
  #h_logo {
    font-size: 2rem;
  }
  #nav li  {
    margin-right: 2rem;
    padding-right: 2rem;
    position: relative;
  }
  #nav li:after {
    content: "";
    width: 1px;
    height: 1em;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    background: var(--black);
  }
  #nav a {
    font-size: 1.5rem;
  }
  #nav li:not(.nav_contact) a::after {
    content: none;
  }
  #nav .nav_contact a {
    height: 7rem;
    background: var(--black);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    width: 18rem;
  }
  #nav .nav_contact a::after {
    content: none;
  }
  #nav .nav_contact {
    margin-right: 0;
    padding-right: 0;
  }
  #nav .nav_contact:after {
    content: none;
  }
  #nav li:nth-last-of-type(2) {
    padding-right: 0;
    margin-right: 3rem;
  }
  #nav li:nth-last-of-type(2):after {
    content: none;
  }
}


/* ---------------------------------------------------------------------------------------------

　   COMMON

--------------------------------------------------------------------------------------------- */

.fit {
  -o-object-fit: cover;
  object-fit: cover;
  font-family: 'object-fit: cover;';
  width: 100%;
  height: 100%;
}

@media only screen and ( max-width : 767px ) {
  .sec {
    padding: 7rem 0;
  }
  
}
@media print, screen and ( min-width : 768px ) {
  .sec {
    padding: 10rem 0;
  }
  
}

/* section heading */
.sec_head {
  display: flex;
  flex-direction: column-reverse;
  align-items: flex-start;
}
.sec_head_label {
  line-height: 1;
  border-bottom: 1px solid var(--black);
}
.sec_head_tit {
  letter-spacing: .15em;
}

@media only screen and ( max-width : 767px ) {
  .sec_head {
    margin-bottom: 6rem;
  }
  .sec_head_tit {
    font-size: 1.7rem;
  }
  .sec_head_label {
    font-size: 5rem;
  }
}
@media print, screen and ( min-width : 768px ) {
  .sec_head {
    margin-bottom: 7rem;
  }
  .sec_head_tit {
    font-size: 2.2rem;
  }
  .sec_head_label {
    font-size: 10rem;
  }
}

/* page heading（下層ページ共通） */
.page_head {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: var(--black);
}
.page_head_label {
  margin: 0;
  line-height: 1;
}
.page_head_tit {
  margin: 0;
  line-height: 1.4;
  letter-spacing: .15em;
}
.page_head_line {
  display: block;
  width: 4rem;
  height: 1px;
  background: var(--black);
}

@media only screen and ( max-width : 767px ) {
  .page_head {
    gap: 1.2rem;
  }
  .page_head_label {
    font-size: 2.4rem;
  }
  .page_head_tit {
    font-size: 2.8rem;
  }
  .page_head_line {
    margin-top: .4rem;
  }
}
@media print, screen and ( min-width : 768px ) {
  .page_head {
    gap: 1.6rem;
  }
  .page_head_label {
    font-size: 3.2rem;
  }
  .page_head_tit {
    font-size: 4.4rem;
  }
  .page_head_line {
    margin-top: .8rem;
  }
}

/* button */
.ico_mail {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.ico_mail svg {
  display: block;
}
.btn {
  display: inline-flex;
  align-items: center;
  min-width: 28rem;
  background: var(--black);
  color: #fff;
  padding: 1.4rem 2.4rem;
  line-height: 1;
}
.btn .ico_arrow {
  margin-left: auto;
  padding-left: 2rem;
}
.btn_txt {
  flex: 1;
  min-width: 0;
  text-align: left;
}
.btn:hover {
  opacity: 1;
  filter: none;
  background: #0a3d7a;
}
.ico_arrow {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  line-height: 0;
}
.ico_arrow img {
  display: block;
  width: auto;
  height: 1rem;
}
.btn_wrap {
  display: flex;
  justify-content: flex-end;
}
.btn_wrap--center {
  justify-content: center;
}
.btn--white {
  background: #fff;
  color: var(--black);
}
.btn--white:hover {
  background: #f0f0f0;
}
.btn--gold {
  background: var(--mainColor);
  color: #fff;
  width: 100%;
  max-width: 48rem;
}
.btn--gold .btn_txt {
  text-align: center;
}
.btn--gold:hover {
  opacity: 1;
  filter: none;
  background: #a67d1a;
}

.sec_head--light .sec_head_label,
.sec_head--light .sec_head_tit {
  color: #fff;
}
.sec_head--light .sec_head_label {
  border-bottom-color: #fff;
}
.sec_head--light {
  align-items: center;
}

@media only screen and ( max-width : 767px ) {
  .btn {
    min-width: 24rem;
    padding: 1.2rem 2rem;
    font-size: 1.5rem;
  }
}
@media print, screen and ( min-width : 768px ) {
  .btn {
    min-width: 32rem;
    padding: 1.6rem 3rem;
    font-size: 1.8rem;
  }
}

/* ---------------------------------------------------------------------------------------------

　   CONTACT

--------------------------------------------------------------------------------------------- */
#contact.section {
  padding: 0;
}
.contact_inner {
  display: flex;
  align-items: stretch;
}
.contact_content {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #031C39;
  color: #fff;
}
.contact_content .sec_head--light {
  align-items: flex-start;
}
.contact_lead {
  margin: 0;
  line-height: 2em;
  letter-spacing: .05em;
}
.contact_tel {
  margin: 0;
}
.contact_tel_num_row {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.contact_tel_ico {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.contact_tel_ico img {
  display: block;
  width: 4rem;
  height: auto;
}
.contact_tel_num {
  display: block;
  color: #fff;
  text-decoration: none;
  line-height: 1.2;
  letter-spacing: .05em;
}
.contact_tel_num:hover {
  opacity: 1;
  filter: none;
}
.contact_tel_hours {
  margin: 0;
  letter-spacing: .05em;
  line-height: 1.6;
}
.contact_img {
  flex: 0 0 50vw;
  width: 50vw;
  overflow: hidden;
}
.contact_img picture {
  display: block;
  height: 100%;
}
.contact_img picture,
.contact_img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media only screen and ( max-width : 767px ) {
  .contact_inner {
    position: relative;
  }
  .contact_img {
    position: absolute;
    inset: 0;
    flex: none;
    width: 100%;
    height: 100%;
    z-index: 0;
  }
  .contact_content {
    position: relative;
    z-index: 1;
    flex: none;
    width: 100%;
    background: rgba(1, 24, 52, 0.82);
    padding: 5rem 1.5rem;
  }
  .contact_content .sec_head {
    margin-bottom: 3rem;
  }
  .contact_lead {
    font-size: 1.4rem;
    margin-bottom: 3rem;
  }
  .contact_tel {
    margin-bottom: 3rem;
  }
  .contact_tel_hours {
    margin-top: .8rem;
    padding-left: 5.5rem;
    font-size: 1.2rem;
  }
  .contact_tel_num {
    font-size: 3.2rem;
  }
}
@media print, screen and ( min-width : 768px ) {
  .contact_inner {
    max-height: 80rem;
    align-items: stretch;
  }
  .contact_content {
    padding: 8rem 6vw 8rem 6vw;
    overflow: hidden;
  }
  .contact_content .sec_head {
    margin-bottom: 5rem;
  }
  .contact_lead {
    font-size: 1.6rem;
    margin-bottom: 4rem;
  }
  .contact_tel {
    margin-bottom: 4rem;
  }
  .contact_tel_num {
    font-size: 4.8rem;
  }
  .contact_tel_hours {
    margin-top: 1rem;
    padding-left: 5.5rem;
    font-size: 1.4rem;
  }
  .contact_img {
    max-height: 80rem;
  }
  .contact_content .btn--gold {
    max-width: 48rem;
  }
}


/* ---------------------------------------------------------------------------------------------

　   FOOTER

--------------------------------------------------------------------------------------------- */
#footer {
  background: #fff;
}
.footer_inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 4rem;
}
.footer_info {
  flex: 1;
  min-width: 0;
}
.footer_name {
  margin: 0;
  line-height: 1.5;
  letter-spacing: .1em;
}

.footer_add {
  margin: 0;
  line-height: 1.8;
  letter-spacing: .05em;
}
.footer_side {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  flex-shrink: 0;
}
.footer_contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background: var(--black);
  color: #fff;
  padding: 1.4rem 2.4rem;
  letter-spacing: .1em;
  line-height: 1;
  text-decoration: none;
}
.footer_contact:hover {
  opacity: 1;
  filter: none;
  background: #0a3d7a;
}
.footer_contact_txt {
  line-height: 1;
}
.footer_nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  margin: 0;
  padding: 0;
  list-style: none;
}
.footer_nav li {
  position: relative;
  padding-right: 1.5rem;
  margin-right: 1.5rem;
}
.footer_nav li:last-child {
  padding-right: 0;
  margin-right: 0;
}
.footer_nav li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 1px;
  height: 1em;
  background: var(--black);
  transform: translateY(-50%);
}
.footer_nav a {
  text-decoration: none;
  letter-spacing: .05em;
  line-height: 1.5;
}
.footer_copyright {
  margin: 0;
  letter-spacing: .05em;
  line-height: 1;
}

@media only screen and ( max-width : 767px ) {
  #footer {
    padding: 5rem 0 4rem;
  }
  .footer_inner {
    flex-direction: column;
    gap: 4rem;
  }
  .footer_name {
    font-size: 1.8rem;
  }
  .footer_side {
    align-items: flex-start;
    width: 100%;
  }
  .footer_add {
    margin-top: 2.5rem;
    font-size: 1.3rem;
  }
  .footer_contact {
    width: 100%;
    padding: 1.4rem 2rem;
    font-size: 1.4rem;
  }
  .footer_nav {
    width: 100%;
    margin-top: 3rem;
  }
  .footer_nav ul {
    justify-content: flex-start;
    gap: 1rem 0;
  }
  .footer_nav li {
    padding-right: 1.2rem;
    margin-right: 1.2rem;
  }
  .footer_nav a {
    font-size: 1.3rem;
  }
  .footer_copyright {
    margin-top: 3rem;
    font-size: 1.1rem;
  }
}
@media print, screen and ( min-width : 768px ) {
  #footer {
    padding: 8rem 0 5rem;
  }
  .footer_name {
    font-size: 2rem;
  }
  .footer_add {
    margin-top: 2.5rem;
    font-size: 1.4rem;
  }
  .footer_contact {
    min-width: 20rem;
    padding: 1.6rem 3rem;
    font-size: 1.5rem;
  }
  .footer_nav {
    margin-top: 4rem;
  }
  .footer_nav a {
    font-size: 1.4rem;
  }
  .footer_copyright {
    margin-top: 6rem;
    font-size: 1.2rem;
  }
}


/* ---------------------------------------------------------------------------------------------

　   PC HOVER ANIMATIONS

--------------------------------------------------------------------------------------------- */

@media (hover: hover) and (min-width: 768px) {
  .btn {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    transition:
      transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
      box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1),
      color 0.35s ease;
  }

  .btn::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background: #0a3d7a;
    transform: translateY(100%);
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
    pointer-events: none;
  }

  .btn--white::before {
    background: var(--subColor);
  }

  .btn--gold::before {
    background: #a67d1a;
  }

  .btn > * {
    position: relative;
    z-index: 1;
  }

  .btn:hover {
    transform: translateY(-0.35rem);
    box-shadow: 0 1rem 2.8rem rgba(7, 46, 92, 0.28);
    background: var(--black);
  }

  .btn:hover::before {
    transform: translateY(0);
  }

  .btn--white:hover {
    box-shadow: 0 1rem 2.5rem rgba(7, 46, 92, 0.12);
    background: #fff;
  }

  .btn--gold:hover {
    box-shadow: 0 1rem 2.8rem rgba(190, 145, 30, 0.35);
    background: var(--mainColor);
  }

  .btn .ico_arrow img {
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .btn:hover .ico_arrow img {
    transform: translateX(0.6rem);
  }

  .footer_contact {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    transition:
      transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
      box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1),
      background-color 0.35s ease,
      color 0.35s ease;
  }

  .footer_contact::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background: linear-gradient(
      105deg,
      transparent 35%,
      rgba(255, 255, 255, 0.22) 50%,
      transparent 65%
    );
    transform: translateX(-130%);
    transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
    pointer-events: none;
  }

  .footer_contact > * {
    position: relative;
    z-index: 1;
  }

  .footer_contact:hover {
    transform: translateY(-0.35rem);
    box-shadow: 0 1rem 2.8rem rgba(7, 46, 92, 0.28);
  }

  .footer_contact:hover::before {
    transform: translateX(130%);
  }

  #nav li:not(.nav_contact) a {
    transition: color 0.3s ease;
  }

  #nav li:not(.nav_contact) a:hover {
    color: var(--mainColor);
    opacity: 1;
    filter: none;
  }

  #nav .nav_contact a {
    transition: background-color 0.35s ease;
  }

  #nav .nav_contact a:hover {
    background: #0a3d7a;
    opacity: 1;
    filter: none;
  }

  .footer_nav a {
    position: relative;
    transition: color 0.3s ease;
  }

  .footer_nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.3rem;
    width: 100%;
    height: 1px;
    background: var(--mainColor);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .footer_nav a:hover {
    color: var(--mainColor);
    opacity: 1;
    filter: none;
  }

  .footer_nav a:hover::after {
    transform: scaleX(1);
  }

  .contact_tel_num {
    transition: color 0.3s ease, letter-spacing 0.4s ease;
  }

  .contact_img img {
    transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
  }

  #h_logo a {
    transition: color 0.3s ease;
  }

  #h_logo a:hover {
    opacity: 1;
    filter: none;
    color: var(--mainColor);
  }
}

