@charset "utf-8";

html {
  overflow-x: hidden;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: #000000;
}

a:hover {
  opacity: 0.9;
  transition: 0.3s;
}

p, a, span, strong {
  font-size: 16px;
  font-weight: 500;
  color: #000000;
}

img {
  max-width: 100%;
}

.sp {
  display: none !important;
}

@media screen and (max-width: 767px) {
  p, a, span, strong {
    font-size: 14px;
  }

  .pc {
    display: none !important;
  }
  
  .sp {
    display: block !important;
  }
}

.btn {
  position: relative;
  display: flex;
  max-width: calc(240px - 40px);
  background-color: #44AEE5;
  padding: 5px 25px 5px 15px;
  align-items: center;
  justify-content: center;
  color: white;
  border-radius: 100px;
  height: calc(62px - 10px);
  font-size: 23px;
  width: 100%;
  font-family: "Zen Maru Gothic", serif;
  font-weight: 400;
}

.btn::after {
  content: "";
  position: absolute;
  background-image: url(./../img/common/btn-arrow.svg);
  width: 23px;
  height: 14px;
  right: 15px;
  background-size: contain;
}

@media screen and (max-width: 1250px) {
  .btn {
    font-size: 16px;
    height: 35px;
    max-width: 130px;
  }
}

/* ヘッダー */
header {
  position: fixed;
  padding: 0px 50px;
  width: calc(100% - 100px);
  z-index: 10;
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-flow: wrap;
  height: 130px;
}

header.is-fixed {
  background-color: rgba(255, 255, 255, 1) !important;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  box-shadow: 0px 0px 13px rgba(0, 0, 0, 0.16);
  height: 100px;
  gap: 0;
}

.page.page-nohdr header.is-fixed {
  border: 0;
}

header .hdr-contact .btn {
  padding: 0 10px;
  height: 30px;
  color: #ff8001;
  background-color: white;
  border: 1px solid #ff8001;
  max-width: calc(170px - 30px);
  font-size: 15px;
}

header .hdr-contact .btn::after {
  content: unset;
}

header .hdr-contact .btn img {
  width: 15px;
  margin-right: 5px;
  position: relative;
  top: 1px;
}

header.is-fixed .hdrNav .mypage {
  width: 50px;
}

header.is-fixed .hdr-mail {
  padding: 15px;
}

header.is-fixed .logoImg img {
  width: 180px;
}

header .logoImg {
  display: flex;
}

header .logoImg img {
  width: 230px;
}

header .gNav .nav_child {
  display: none;
}

header .gNav ul {
  display: flex;
  justify-content: flex-end;
  gap: 30px;
  width: max-content;
}

header .gNav ul li a, header .gNav ul li span {
  font-size: 17px;
}

header .gNav ul li span {
  color: #44AEE5;
}

header .gNav ul li a.current {
  position: relative;
}

header .gNav ul li a.current::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  right: 0;
  margin: auto;
  width: 90%;
  height: 2px;
  background-color: #00053A;
}

header .gNav ul li .btn_parent {
  cursor: pointer;
}

header .hdrNav {
  display: flex;
  gap: 40px;
  align-items: center;
  padding-right: 100px;
}

header .hdr-top {
  display: flex;
  justify-content: space-between;
  width: 100%;
  align-items: center;
  padding-right: 100px;
}

header .hdr-top>p {
  color: #44AEE5;
  font-family: "Zen Maru Gothic", serif;
  font-weight: 400;
}

header .hdr-tel a {
  display: flex;
  gap: 10px;
  align-items: center;
}

header .hdr-tel a img {
  width: 25px;
}

header .hdr-tel a p {
  color: #FF8000;
  font-size: 25px;
  font-weight: bold;
}

header hr {
  width: 100%;
  position: absolute;
  left: 0;
}

header .hdr-mail {
    position: absolute;
    right: 0px;
    top: 0;
    background-color: #ff8001;
    border-radius: 0 0 0 30px;
    padding: 20px 15px;
    text-align: center;
}

header .hdr-mail img {
  padding-bottom: 5px;
  width: 25px;
}

header .hdr-mail p {
  color: white;
  font-size: 16px;
  border-top: 2px solid white;
  padding: 10px 20px 0;
  line-height: 1.4;
}

header .gNav dd ul li:nth-last-child(2) {
  border-left: 1px solid black;
  padding-left: 20px;
}

header .gNav dd ul li:nth-last-child(2) a {
  color: #FF8000;
}


@media screen and (max-width: 1300px) {
  header .gNav ul {
    gap: 30px;
  }
}

@media screen and (max-width: 1200px) {
  header {
    flex-flow: column;
    gap: 5px;
    padding: 10px 30px 20px 30px;
    width: calc(100% - 60px);
  }

  header .hdrNav {
    padding: 0;
  }

  header .gNav .nav_child {
    margin-top: 7px;
    position: absolute;
    max-width: 220px;
  }

  header .gNav .nav_child li a {
    padding: 10px 20px;
    color: white;
    background-color: #464646;
    display: block;
    font-size: 15px;
  }

  header.is-fixed {
    background-color: rgba(255, 255, 255, 1) !important;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
    height: 100px;
    gap: 0;
    padding: 5px 30px 20px;
    box-shadow: 0px 0px 13px rgba(0, 0, 0, 0.16);
  }

  header.is-fixed .hdrNav .mypage {
    width: 50px;
  }

  header hr {
    position: relative;
    width: calc(100% + 60px);
    left: -30px;
  }

  header .hdr-top {
    gap: 30px;
    width: calc(100% - 100px);
  }

  header .hdr-tel p {
    min-width: fit-content;
    font-size: 20px;
  }

  header .hdr-tel img {
    width: 20px;
  }

  header .hdr-top>p {
    font-size: 14px;
  }

  header .logoImg img {
    width: 200px;
  }

  header .gNav ul li a, header .gNav ul li span {
    font-size: 14px;
  }

  header .hdr-mail p {
    font-size: 14px;
  }

  header .hdr-mail {
    padding: 25px 10px;
  }
}

@media screen and (max-width: 767px) {
  header {
    padding: 10px 15px;
    width: calc(100% - 30px);
    height: 40px;
    align-items: baseline;
    justify-content: center;
    gap: 0;
  }

  header.is-fixed {
    background-color: rgba(255, 255, 255, 1) !important;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
    height: 40px;
    box-shadow: 0px 0px 13px rgba(0, 0, 0, 0.16);
    padding: 10px 15px;
  }

  header.is-fixed .logoImg img {
    width: 170px;
  }

  .page-nohdr header.is-fixed #nav_global dt {
    top: 7px;
  }
  
  header .hdrContent {
    margin-bottom: 0;
    height: 100%;
    padding-left: 5px;
    gap: 5px;
  }
  
  header .hdrContent .logoImg {
    max-width: 180px;
  }

  header .hdrContent .hdrBtn {
    gap: 0;
    height: 100%;
  }
  
  header .hdrContent .hdrBtn .loginBtn, header .hdrContent .hdrBtn .contactBtn {
    font-size: 11px;
    text-align: center;
    width: 55px;
    padding: 0;
    line-height: 1.3;
  }

  header .gNav ul {
    display: unset;
  }

  header .gNav ul li a.current {
    position: unset;
  }

  header .gNav ul li a.current::after {
    content: unset;
  }

  header #nav_global {
    position: relative;
    z-index: 1001;
  }

  header #nav_global dt {
    position: fixed;
    top: 7px;
    right: 90px;
    width: 45px;
    height: 45px;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
    font-size: 10px;
    color: white;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
  }

  header #nav_global dt.is_active {
    background-color: #ff8001;
  }

  header #nav_global dt #btn_navcon {
    position: absolute;
    z-index: 1001;
    width: 35px;
    top: 9px;
    right: 6px;
    cursor: pointer;
  }

  header #nav_global dt ul {
    width: auto;
    height: 23px;
    list-style: none;
    margin: 0 auto 8px;
  }

  header #nav_global dt ul li {
    width: auto;
    height: 2px;
    -webkit-transition: all .2s ease;
    transition: all .2s ease;
    background-color: black;
    margin: 0 0 10px;
  }

  header #nav_global dt li:nth-child(2) {
    width: 22px;
    position: relative;
    left: 12px;
  }

  header #nav_global dt.is_active {
    width: 320px;
    height: 100vh;
    border-radius: 0;
    top: 0!important;
    right: 0;
  }

  header #nav_global dt.is_active li:nth-child(2) {
    opacity: 0;
  }

  header #nav_global dt.is_active li {
    -webkit-transform: translatey(20px) rotate(45deg);
    transform: translatey(20px) rotate(45deg);
    background-color: white;
  }

  header #nav_global dt.is_active li:nth-child(3) {
    -webkit-transform: translatey(-4px) rotate(-45deg);
    transform: translatey(-4px) rotate(-45deg);
    background-color: white;
  }

  header #nav_global dd {
    position: fixed;
    top: 95px;
    right: -320px;
    width: 320px;
    height: 100vh;
    -webkit-transition: all .4s ease;
    transition: all .4s ease;
    opacity: 0;
    overflow: visible;
    font-family: YakuHanJP, 'Noto Sans Bold', sans-serif;
    letter-spacing: .1em;
    color: white;
    height: calc(100% - 100px);
  }
  
  header #nav_global dd ul {
    position: relative;
    z-index: 1001;
    width: auto;
    list-style: none;
  }
  
  header #nav_global dd ul li {
    -webkit-transition: all .2s ease;
    transition: all .2s ease;
    border-bottom: 1px solid white;
    font-size: 15px;
  }

  header #nav_global dd ul li a {
    display: flex;
    width: auto;
    cursor: pointer;
    padding: 22px;
    color: white;
    align-items: center;
    justify-content: center;
  }

  header #nav_global dd ul li span {
    padding: 0;
    color: white;
  }

  header #nav_global dd ul a.is_current, header #nav_global dd ul a:hover, header #nav_global dd ul span.is_current, header #nav_global dd ul span:hover {
    background-color: #ffaa54;
    mix-blend-mode: multiply;
  }

  header #nav_global dd ul a:after {
    float: right;
    font-family: FontAwesome;
    font-weight: bold;
  }

  header #nav_global dd .btn_parent {
    cursor: pointer;
  }

  header #nav_global dd .btn_parent.is_open_2 {
    color: white;
    background-color: red;
  }

  header #nav_global dd .btn_parent.is_open_2:after {
    content: "\f106";
  }

  header #nav_global dd ul.nav_child {
    display: none;
    width: auto;
    background-color: #88c848;
  }

  header #nav_global dd ul.nav_child li {
    border-top: 1px solid #ddd;
    border-bottom: none;
  }

  header #nav_global dd ul.nav_child a {
    padding: 15px 42px 15px 50px;
  }

  header #nav_global dd > ul:first-child {
    padding-bottom: 100px;
  }

  header #nav_global dd.is_open {
    right: 0;
    opacity: 1;
    overflow: scroll;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

  header #nav_global dd.is_open::-webkit-scrollbar {
    display: none;
  }

  header .hdr-mail {
    padding: 10px 5px 5px;
    border-radius: 0 0 0 20px;    
  }

  header .hdr-mail p {
    font-size: 13px;
    line-height: 1.2;
    padding: 5px 10px;
    border-radius: 0;
    border-top: 1px solid white;
  }

  header.is-fixed .hdr-mail {
    padding: 5px;
  }

  header hr {
    display: none;
  }

  header .hdr-top {
    gap: 15px;
    padding-right: 40px;
    width: calc(100% - 80px);
    padding-top: 5px;
  }

  header .hdr-tel p {
    font-size: 16px;
  }

  header .hdr-top>p {
    font-size: 12px;
  }

  header #nav_global dd ul li {
    border-left: 0;
    padding-left: 0px;
  }

  header .logoImg img {
    width: 170px;
  }

  header #nav_global dd ul li.tel a {
    background-color: white;
    gap: 10px;
    margin: 10px;
  }

  header #nav_global dd ul li.sp a img {
    width: 20px;
  }

  header #nav_global dd ul li.sp a p {
    color: #ff8001;
    font-weight: bold;
  }
}

/* トップへ戻るボタン */
#page_top {
  position: fixed;
  bottom: 10px;
  right: 10px;
  font-weight: bold;
  padding: 5px;
  text-align: center;
  background: #FF8001;
  color: #fff;
  transition: 0.3s;
  width: 40px;
  height: 40px;
  font-size: 11px;
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  letter-spacing: 1px;
  z-index: 50;
}

#page_top img {
  width: 20px;
}

#page_top:hover {
  background: #ffa600;
}


main {
  padding-top: 130px;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 50px 20px 0;
}

.container h2 {
  position: relative;
  font-size: 60px;
  font-weight: bold;
  color: #44AEE5;
  line-height: 1;
}

.container h2::after {
  position: absolute;
  content: attr(data-en);
  font-size: 23px;
  color: #000000;
  top: 10px;
  bottom: 0;
  margin: auto;
  display: inline-flex;
  align-items: center;
  margin-left: 20px;
  width: max-content;
}

.container h3 {
  position: relative;
  background-color: #F8F8F8;
  font-size: 23px;
  font-weight: 500;
  padding: 5px 10px 5px 40px;
  margin-bottom: 30px;
  margin-top: 50px;
}

.container h3::before {
  content: "";
  position: absolute;
  height: calc(100% + 10px);
  width: 17px;
  background-image: url(./../img/common/headline1.svg);
  background-repeat: no-repeat;
  top: -5px;
  left: 10px;
}

.container h4 {
  font-size: 18px;
  font-weight: 500;
  color: #44AEE5;
  margin-bottom: 10px;
}

@media screen and (max-width: 1000px) {
  main {
    padding-top: 160px;
  }
}

@media screen and (max-width: 1250px) {
  .container h2 {
    font-size: 40px;
  }
  
  .container h2::after {
    font-size: 16px;
  }
  
  .container h3 {
    font-size: 20px;
  }
}

@media screen and (max-width: 1200px) {
  main {
    padding-top: 160px;
  }
}

@media screen and (max-width: 767px) {
  main {
    padding-top: 60px;
  }

  .container {
    margin: 0;
  }
}

.link-color {
  color: #3B87FB;
  text-decoration: underline;
  margin: 0 5px;
}

footer {
  background-color: #F8F8F8;
  padding: 100px 0;
}

footer .ftr-content {
  display: flex;
  gap: 70px;
  max-width: 1240px;
  margin: 0 auto;
  justify-content: space-between;
  align-items: center;
  padding: 0 50px;
}

footer .logoImg img {
  width: 320px;
}

footer nav {
  display: flex;
  gap: 80px;
}

footer nav ul {
  display: flex;
  flex-flow: column;
  gap: 20px;
  width: max-content;
}

footer nav ul li a {
  font-weight: 400;
}

footer .ftr-content .ftr-info {
  display: flex;
  gap: 70px;
  flex-flow: column;
}

footer .ftr-content .ftr-info div {
  display: flex;
  gap: 25px;
}

footer .ftr-content .btn3 {
  background-color: #44AEE5;
  color: white;
  width: calc(420px - 20px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 25px 10px;
  font-size: 25px;
  font-weight: 400;
  gap: 20px;
  line-height: 1.4;
}

@media screen and (max-width: 1250px) {
  footer nav {
    gap: 25px;
  }

  footer .ftr-content {
    gap: 35px;
  }

  footer .ftr-content .btn3 {
    width: calc(100% - 20px);
    font-size: 20px;
    gap: 15px;
  }

  footer .ftr-content .btn3 img {
    width: 30px;
  }
}

@media screen and (max-width: 767px) {
  footer {
    padding: 30px 0;
  }

  footer nav {
    gap: 20px;
    flex-flow: wrap;
    width: 100%;
  }
  
  footer nav ul {
    width: calc((100% / 2) - 10px);
  }

  footer nav ul:last-child {
    border-top: 1px solid #707070;
    width: 100%;
    padding-top: 20px;
  }

  footer .ftr-content {
    flex-flow: column;
    align-items: baseline;
    gap: 40px;
    padding: 0 20px;
  }

  footer .ftr-content .ftr-info {
    display: flex!important;
    width: 100%;
    gap: 20px;
    align-items: baseline;
  }

  footer .ftr-content .btn3.sp {
    display: flex!important;
    justify-content: center;
    align-items: center;
    width: calc(100% - 20px);
  }

  footer .logoImg img {
    width: 235px;
  }
}


/* 再構築ボタン */
footer .reconstruction-btn {
  display: flex;
  gap: 70px;
  max-width: 1240px;
  margin: 0 auto;
  justify-content: flex-end;
  align-items: center;
  padding: 0 50px;
}

footer .reconstruction-btn a {
  border: 1px solid;
  padding: 8px;
}