@charset "UTF-8";

:root {
  --color-black: #191A1C;
  --color-white: #ffffff;

  --color-primary: #204076;
  --color-red: #F52929;

  --noto: "Noto Sans JP", sans-serif;
  --shippori: "Shippori Mincho", serif;
  --roboto: "Roboto", sans-serif;
  --cinzel: "Cinzel", serif;
  --header: 9rem;
  scroll-padding: var(--header);
}

@media screen and (max-width:767px) {
  :root {
    --header: 7rem;
    scroll-padding: var(--header);
  }
}


/*================================================
 *  一般・共通設定
 ================================================*/
html {
  /* 1440>> 10px */
  font-size: 0.6944444vw;

  font-size: clamp(6.5px, 0.732064421vw, 10px);
  scroll-behavior: smooth;
}

body {
  font-family: var(--noto);
  font-weight: 400;
  font-size: 1.4rem;
  background: var(--color-white);
  color: var(--color-black);
}

body * {
  letter-spacing: 0.05em;
}

a {
  text-decoration: none;
  transition: all .4s;
}

a:hover {
  opacity: 1;
}

img {
  max-width: 100%;

  display: block;
}

strong {
  font-weight: bold;
}

small {
  font-size: smaller;
}

ul,
ol,
dl {
  margin: 0;
}

ul li {
  list-style: none;
}

ol li {
  list-style: decimal;
}

li {
  margin-left: 0;
}

/* タイトル */


@media screen and (max-width:767px) {
  html {
    /* 390 >>> 10px */
    font-size: 2.5641vw;
  }

}

/*================================================
 *  section btn
 ================================================*/
section {
  position: relative;
}


.wrap_lg {
  width: 95.6%;
  margin-left: auto;
  margin-right: auto;
}

.wrap_md {
  width: 80.52%;
  margin-left: auto;
  margin-right: auto;
  min-width: 690px;
}

.hd span {
  display: block;
  color: var(--color-primary);
}

.hd.wt span {
  color: var(--color-white);
}

.hd.ac span {
  text-align: center;
}

.hd .en {
  font-family: var(--cinzel);
  font-size: 6.8rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.hd .ja {
  font-size: 1.8rem;
  letter-spacing: 0.1em;
  margin-top: 0.5rem;
}



.subhd {
  font-family: var(--shippori);
  font-weight: 500;
  font-size: 4rem;
}

.subhd span {
  display: block;
  font-family: var(--roboto);
  color: var(--color-primary);
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 0.5em;
}

.c_btn-box {
  width: 100%;
}

.c_btn {
  background: var(--color-primary);
  border: 1px solid var(--color-primary);
  color: var(--color-white);
  height: 5rem;
  width: 20rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  padding-left: 1.5rem;
  border-radius: 0.3rem;
  position: relative;
}

.ac .c_btn {
  margin-left: auto;
  margin-right: auto;
}

.c_btn::before {
  position: absolute;
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  background: var(--color-red);
  border-radius: 10rem;
  top: 50%;
  transform: translateY(-50%);
  right: 2rem;
  transition: .4s;
}

.c_btn:hover {
  background: var(--color-white);
  color: var(--color-primary);
}

.c_btn:hover::before {
  transform: translateY(-50%) scale(1.25);
  background: var(--color-primary);
}

.moreTxt {
  display: block;
}

.moreTxt span {
  padding-right: 2rem;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  font-size: 1.2rem;
  font-family: var(--roboto);
  position: relative;

  color: var(--color-primary);
  transition: .4s;
}

a:hover .moreTxt span {
  color: var(--color-black);
}

.moreTxt.wt span,
a:hover .moreTxt.wt span {
  color: var(--color-white);
}

.moreTxt span::before {
  position: absolute;
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  background: var(--color-red);
  border-radius: 10rem;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  transition: .4s;
}

a:hover .moreTxt span::before {
  transform: translateY(-50%) scale(1.5);
}

a:hover .moreTxt.wt span::before {
  background: var(--color-white);
}

.icon {
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  display: inline-block;
}


@media screen and (max-width:767px) {
  .wrap_lg {
    width: 87.1%;
  }

  .wrap_md {
    width: 87.1%;
    min-width: unset;
  }

  .hd .en {
    font-size: 4rem;
  }

  .hd .ja {
    font-size: 1.4rem;
  }

  .subhd {
    font-size: 2.6rem;
  }

  .subhd span {
    font-size: 1.2rem;
  }


}

/*================================================
 *  header / ヘッダー
 ================================================*/
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 2rem 3rem 2.2rem;
}

header::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(30px) brightness(100%);
  z-index: -1;
  transition: .2s;
}

header#mainnav::before {
  opacity: 0;
}

header#mainnav.changeNav::before {
  opacity: 1;
}

.nav_left {
  width: 18rem;
}

.nav_inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav_menu {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 3rem;
}

.nav_menu li a:hover {
  color: var(--color-primary);
}

.nav_menu .contact a {
  background: var(--color-primary);
  color: var(--color-white);
  height: 4rem;
  width: 16rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  padding-left: 1.5rem;
  border-radius: 0.3rem;
  position: relative;
  border: 1px solid var(--color-primary);
}

.nav_menu .contact a::before {
  position: absolute;
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  background: var(--color-red);
  border-radius: 10rem;
  top: 50%;
  transform: translateY(-50%);
  right: 2rem;
}

.nav_menu .contact a:hover {
  background: var(--color-white);
  color: var(--color-primary);
}

.nav_menu .contact a:hover::before {
  transform: translateY(-50%) scale(1.25);
  background: var(--color-primary);
}

@media screen and (max-width:767px) {
  header {
    padding: 2.5rem 1.5rem;
  }

  .nav_left {
    width: 12rem;
  }

  .hamburger {
    position: absolute;
    right: 0;
    top: 0;
    width: 6.6rem;
    height: 6.6rem;
    cursor: pointer;
    z-index: 300;
    transition: all .1s ease-out;
  }

  .hamburger::after {
    position: absolute;
    content: "MENU";
    font-size: 1.3rem;
    font-family: var(--roboto);
    left: -2.7rem;
    transform: translateY(-50%);
    top: 52%;
    width: auto;
    line-height: 1;
    opacity: 1;
    transition: all .2s ease-out;
  }

  /* line open */
  .hamburger__line {
    position: absolute;
    left: 50%;
    width: 2.3rem;
    height: 0.12rem;
    border-radius: 100px;
    background-color: var(--color-black);
    transition: all .4s ease-out;
    transform: translateX(-50%);

  }

  .hamburger__line--1 {
    top: 44%;
  }

  .hamburger__line--3 {
    top: 56%;
  }

  /* line close */
  .open_nav .hamburger__line--1 {
    transform: translateX(-50%) rotate(25deg);
    top: 50%;
  }


  .open_nav .hamburger__line--3 {
    transform: translateX(-50%) rotate(-25deg);
    top: 50%;
  }

  nav.global__nav {
    position: fixed;
    right: 0;
    top: 6.6rem;
    width: 64.1%;
    min-width: 250px;
    height: 100vh;
    transition: all .3s ease-out;
    z-index: 200;
    overflow-y: scroll;
    padding: 5rem 0 0 3rem;
    opacity: 0;
    pointer-events: none;
  }

  nav.global__nav::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(30px) brightness(100%);
    z-index: -1;
  }


  .open_nav .global__nav {
    opacity: 1;
    pointer-events: fill;
  }

  .nav_menu {
    flex-wrap: wrap;
    justify-content: start;
    gap: 3rem;
  }

  .nav_menu li {
    width: 100%;
  }

  .nav_menu .contact a {
    width: 16rem;
    min-width: 160px;
  }
}



/*================================================
* c_contact
================================================*/
#c_contact {
  margin-top: 12rem;
  padding-bottom: 10rem;
}

.c_contact_bg {
  padding: 10rem 0 13rem;
  background: url(../images/contact_bg.jpg) no-repeat center/cover;
  z-index: 1;
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
}

.c_contact_bg::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #727579;
  mix-blend-mode: multiply;
  z-index: -1;
}

.c_contact-wrap {
  text-align: center;
  color: var(--color-white);
}

.c_contact-wrap p {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  font-size: 1.6rem;
}

.c_tel {
  margin: 4rem 0;
}

.c_tel div {
  font-size: 4rem;
  font-family: var(--roboto);
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-top: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.c_mail a {
  width: 30rem;
  height: 6rem;
  background: var(--color-white);
  border-radius: 4rem;
  font-size: 1.8rem;
  color: var(--color-primary);
  font-weight: 500;
  padding-left: 3rem;
  display: flex;
  align-items: center;
  margin: 1.8rem auto 0;
  position: relative;
}

.c_mail a::before {
  position: absolute;
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 100px;
  top: 50%;
  transform: translateY(-50%);
  right: 3rem;
  background: var(--color-red);
  transition: .4s;
}

.c_mail a:hover {
  background: var(--color-primary);
  color: var(--color-white);
}

.c_mail a:hover::before {
  transform: translateY(-50%) scale(1.25);
  background: var(--color-white);
}

.icon_tel {
  width: 1.2rem;
  height: 2.062rem;
  background-image: url(../images/icon_tel.png);
}


.icon_mail {
  width: 1.601rem;
  height: 1.171rem;
  background-image: url(../images/icon_mail.png);
}





@media screen and (max-width:767px) {
  #c_contact {
    margin-top: 7rem;
    padding-bottom: 7rem;
  }

  .c_contact_bg {
    padding: 7rem 0 10rem;
    background: url(../images/contact_bg_sp.jpg) no-repeat center/cover;
    border-radius: 0.5rem;
    width: 92.3%;
  }

  .c_tel div {
    font-size: 2.6rem;
    margin-top: 1.4rem;
    gap: 1.5rem;
  }

  .icon_tel {
    width: 1.064rem;
    height: 1.829rem;
  }

  .c_mail a {
    width: 25rem;
    height: 4.7rem;
    font-size: 1.4rem;
    padding-left: 2.5rem;
  }

  .c_mail a::before {
    right: 2.5rem;
  }
}

/*================================================
 *  footer
 ================================================*/
footer {
  position: relative;
}

.pageTop {
  position: absolute;
  right: -1rem;
  bottom: 15.4rem;
  transform: rotate(-90deg);
}

.pageTop_btn {
  position: relative;
  font-family: var(--roboto);
  color: var(--color-primary);
  padding-right: 5.4rem;
  letter-spacing: 0.1em;
}

.pageTop_btn::before {
  position: absolute;
  content: "";
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  display: inline-block;
  background-image: url(../images/pagetop_arrow.png);
  width: 0.7rem;
  height: 4.4rem;
  top: 50%;
  right: 2rem;
  transform: translateY(-50%) rotate(90deg);
}

footer iframe {
  display: block;
  width: 100%;
  height: 41rem;
}

.ft_wrap {
  padding: 10rem 0;
  min-width: 660px;
}

.ft_top {
  display: flex;
  justify-content: space-between;
  align-items: start;
  padding-bottom: 8rem;
  border-bottom: 1px solid #DBE0EA;
}

.ft_logo {
  width: 27.2rem;
  margin-bottom: 3rem;
}

.ft_meta p {
  line-height: 2;
}

.ft_menu {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 3rem;
  letter-spacing: 0.1em;
}

.ft_menu a:hover {
  color: var(--color-primary);
}

.ft_under {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1.2rem;
  padding-top: 2rem;
}

@media screen and (max-width:767px) {
  footer iframe {
    height: 23rem;
  }

  .pageTop {
    right: -3rem;
    bottom: 19.4rem;
  }

  .ft_wrap {
    padding: 7rem 0;
    min-width: unset;
  }

  .ft_top {
    padding-bottom: 14rem;
  }


  .ft_logo {
    width: 21rem;
  }

  .ft_meta p {
    font-size: 1.2rem;
  }

  .ft_menu {
    display: none;
  }
}

/*================================================
* subVisual
================================================*/
#subVisual {
  padding-top: 15rem;
}

#subVisual::before {
  position: absolute;
  content: "";
  width: 100%;
  top: 0;
  left: 0;
  height: 65.66vw;
  background: url(../images/sub_bg.png) no-repeat center top/cover;
  z-index: -2;
}

#subVisual .subVisual_inner {
  width: 89.75%;
  margin: 0 auto;
}

#subVisual .subVisual_inner h2 {
  margin-bottom: 4rem;
}

#subVisual .subVisual_img {
  border-radius: 1rem;
  overflow: hidden;
  margin-bottom: 12rem;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 2.9rem;
  margin-bottom: 1.8rem;
}

.breadcrumbs li {
  position: relative;
}

.breadcrumbs li a {
  color: #909BB1;
}

.breadcrumbs li:not(:first-child)::before {
  position: absolute;
  content: "";
  width: 0.9rem;
  height: 1px;
  background: #909BB1;
  top: 50%;
  transform: translateY(-50%);
  left: -1.9rem;
  border-radius: 10px;
}

@media screen and (max-width:767px) {
  #subVisual {
    padding-top: 12rem;
  }

  #subVisual::before {
    height: 49.9rem;
    background: url(../images/sub_bg_sp.png) no-repeat center top/cover;
  }

  #subVisual .subVisual_inner {
    width: 87.1%;
  }

  #subVisual .subVisual_img {
    border-radius: 0.5rem;
    margin-bottom: 7rem;
  }

  #subVisual .wrap_lg {
    width: 92.3%;
  }

  .breadcrumbs {
    font-size: 1.2rem;
    gap: 2.3rem;
  }

  .breadcrumbs li:not(:first-child)::before {
    left: -1.6rem;
  }
}

/*================================================
* 
================================================*/


.news_list li {
  /* border-bottom: 1px solid #DBE0EA; */
}

.news_list li a {
  gap: 5rem;
  display: flex;
  align-items: center;
  position: relative;
  border-bottom: 1px solid #DBE0EA;
}

.topNews_wrap .news_list li a:hover,
.news_list li a:hover {
  color: var(--color-primary);
  border-bottom: 1px solid rgb(32 64 118 / 50%);
}

.news_list li .date {
  font-family: var(--roboto);
  color: var(--color-primary);
  letter-spacing: 0.05em;
  display: block;
  min-width: 7.8rem;
}

.news_list li .ttl {
  letter-spacing: 0.1em;
  display: block;
  position: relative;
  width: calc(100% - 12.8rem);
}


.news_list .ttl::before {
  position: absolute;
  content: "";
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  display: inline-block;
  background-image: url(../images/news_arrow.png);
  width: 2.75rem;
  height: 0.5rem;
  transition: .4s;
}

/* #news .news_list li a:hover .ttl::before,
.news_list li a:hover .ttl::before {
  transform: translateX(0.5rem) translateY(-50%);
} */

@media screen and (max-width:767px) {

  .news_list li a {
    gap: 0.8rem;
    flex-wrap: wrap;
  }

  .news_list li a::before {
    right: 0.3rem;
  }

  .news_list li .date {
    width: 100%;
  }

  .news_list li .ttl {
    width: 100%;
    line-height: 1.42;
  }


}

/*================================================
* privacy
================================================*/
#privacy h2 {
  font-size: 3.2rem;
  font-weight: 600;
  line-height: 1.5;
  font-family: var(--shippori);
  margin-bottom: 4rem;
}

#privacy p,
#privacy ol {
  font-size: 1.6rem;
  line-height: 2;
}

#privacy ol {
  margin-left: 1.5em;
  margin-bottom: 5rem;
}

#privacy .lead {
  margin-bottom: 8rem;
}


#privacy .privacy_meta {
  display: flex;
  justify-content: space-between;
  align-items: end;
}



@media screen and (max-width:767px) {
  #privacy h2 {
    font-size: 2.2rem;
    margin-bottom: 3rem;
  }

  #privacy p,
  #privacy ol {
    font-size: 1.4rem;
  }

  #privacy .lead {
    margin-bottom: 5rem;
  }

  #privacy .privacy_meta {
    flex-wrap: wrap;
    justify-content: end;
  }

  #privacy .privacy_meta p {
    text-align: right;
    width: 100%;
  }
}

/*================================================
* 
================================================*/
#p404 {
  padding-bottom: 12rem;
}

#p404 p {
  margin: 4rem 0;
  font-size: 1.6rem;
  text-align: center;
}

/*================================================
* ani
================================================*/
/* fadeup */
.fadeup {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease;
}

.fadeup.on {
  opacity: 1;
  transform: translateY(0px);
}


.delay02 {
  transition-delay: 0.2s;
}

.delay03 {
  transition-delay: 0.3s;
}

.delay06 {
  transition-delay: 0.6s;
}

@media screen and (max-width:767px) {}