@charset "UTF-8";
/* CSS Document */

* {
margin: 0;
padding: 0;
border: none;
font-size: 100%;
font-family: "Noto Sans JP", sans-serif;
font-optical-sizing: auto;
vertical-align: baseline;
box-sizing: border-box;
}

:root{
    --coler-Background-Primary:#ffffff;
    --coler-Background-Accent:#072B79;
    --coler-Background-Gradient:linear-gradient(0deg,#072B79 0%,#072B79 70%,#19BAFF 100%);
    --coler-Background-Gradient-Lower:linear-gradient(0deg,#072B79 0%,#072B79 50%,#19BAFF 100%);
    --coler-Text-Primary:#333333;
    --coler-Text-Accent:#072B79;
    --coler-Text-White:#fefefe;
    --coler-Text-Sub:#19BAFF;
    --text-Title-sans_serif: "din-2014-narrow", sans-serif;
}

body{
	overflow-x: hidden;
}
ul li,ol li{
	list-style: none;
}
.wrapper{
	overflow: hidden;
}
a{
	text-decoration: none;
}

/* 共通 */
main a:hover img{
    opacity: 0.7;
    transition: 0.5s;    
}
main a{
    color: rgba(50, 50, 50, 1);
}
main a:hover{
    transition: 0.5s;
}
main li a:hover{
    transition: 0.5s;
}
main h2{
    font-size: 3vw;
    font-weight: 500;
}
main h2 span{
    font-size: 1.1rem;
}


/*共通ボタン*/
.btn,
a.btn,
button.btn {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
  position: relative;
  display: inline-block;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  color: #212529;
  border-radius: 0.5rem;
}

a.btn-c {
  font-size: 1vw;

  position: relative;

  padding: 1rem 6rem 1rem 4rem;

  color: #fff;
  border-radius: 0;
  background-image: -webkit-linear-gradient(335deg,#192E7A 0%,#192E7A 50%,#19BAFF 100%);
  background-image: linear-gradient(115deg,#192E7A 0%,#192E7A 50%,#19BAFF 100%);
  -webkit-box-shadow: 0 10px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.2);
}

a.btn-c span {
  position: relative;
}

a.btn-c:before {
  position: absolute;
  top: 0;
  left: 0;

  width: 100%;
  height: 100%;

  content: "";
  -webkit-transition: all 0.3s;
  transition: all 0.3s;

  background-image: -webkit-linear-gradient(335deg,#19BAFF 0%,#192E7A 100%);
  background-image: linear-gradient(115deg,#19BAFF 0%,#192E7A 100%);
}

a.btn-c:after {
  border-top:2px solid #fff;
  line-height: 1;
    width: 10%;

  position: absolute;
  top: 50%;
    right: 0;

  margin: 0;
  padding: 0;

  content: "";
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

a.btn-c:hover {
  color: #fff;
}

a.btn-c:hover:before {
  opacity: 0;
}

a.btn-c:hover:after {
  right: 0.5rem;
}


/*header*/
.navi_pc,.sec01,.header_box_pc,.sec07{
	display: block!important;
}
.navi_sp,.sec01_sp,.header_box_sp,.sec07_sp{
	display: none!important;
}

header{
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin: 0 auto;
    padding: 0.8% 2%;
    position: relative;
    z-index: 10;
}
.logo{
    width: 21%;
    line-height: 2em;
    padding: 1% 0;
}
.logo img{
    width: 100%;
}
.logo a:hover img{
    opacity: 0.7;
}
header .navi_pc nav .sns{
    display: flex;
    justify-content: flex-end;
    width: 100%;
}
header .navi_pc nav .sns li{
    width: 2%;
    margin-left: 15px;
}
header .navi_pc nav .sns img{
    width: 100%;
    text-align: right;
}
header .navi_pc nav .main_nav{
	display: flex;
	justify-content: flex-end;
    gap:3vw;
    margin-top: 2%;
    align-items: center;
}
header .navi_pc nav .main_nav a{
    color: rgba(254, 254, 254, 1);
    font-size: 14px;
    font-weight: 500;
}
header .navi_pc nav .main_nav li{
    text-align: right;
}
header .navi_pc nav .main_nav li a:hover img{
    opacity: 0.7;
}

.main_nav .anm {
  padding-bottom: 3px; /* テキストと下線の間隔 */
  background-image: linear-gradient(#CDD010, #CDD010);
  background-repeat: no-repeat;
  background-position: bottom right; /* 下線の初期位置 */
  background-size: 0 1px; /* 下線のサイズ（横幅、高さ） */
  transition: background-size 0.3s;
　 }

.main_nav .anm:hover {
  background-position: bottom left; /* 下線のホバー時位置 */
  background-size: 100% 1px; /* 下線の横幅を100%にする */
}

.main_nav .anm:hover::before {
  width: 100%;
}


footer{
    width: 100%;
	background: #192E7A;
	padding: 3%;
    color: #fefefe;
    border-top:2px solid #CDD010;
}
footer nav ul{
    width: 70%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
footer nav ul li a{
    color: #fefefe; 
}
footer nav ul li a:hover{
    color: #19BAFF;
}
footer .address_wrap{
    text-align: center;
    margin: 0 auto;
    padding: 5% 0 2% 0;
    letter-spacing: 0.1em;
}
footer .address_wrap img{
    width: 25%;
    margin-bottom: 2%;
}
footer .address_wrap address{
        font-style: normal;
    line-height: 1.8em;
}
footer .footer_sns{
    display: flex;
    justify-content: center;
    align-items: center;
}
footer small{
    display: block;
    font-size: 1vw;
    margin-top: 3%;
    text-align: center;
}



@media (width < 1000px){
.navi_sp,.sec01_sp,.header_box_sp,.sec07_sp{
	display: block!important;
}
.navi_pc,.sec01,.header_box_pc,.sec07{
	display: none!important;
}
	.header_box_sp{
        width: 100%;
		height: auto;
		padding-bottom: 61.75%;
	}
/*　ハンバーガーボタン　*/
.hamburger {
  display : block;
  position: fixed;
  z-index : 1100;
  right : 13px;
  top   : 12px;
  width : 42px;
  height: 42px;
  cursor: pointer;
  text-align: center;
}
.hamburger span {
  display : block;
  position: absolute;
	z-index : 1100;
  width   : 30px;
  height  : 2px ;
  left    : 6px;
  background : #fefefe;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition   : 0.3s ease-in-out;
  transition        : 0.3s ease-in-out;
}
.hamburger span:nth-child(1) {
  top: 10px;
}
.hamburger span:nth-child(2) {
  top: 20px;
}
.hamburger span:nth-child(3) {
  top: 30px;
}

/* ナビ開いてる時のボタン */
.hamburger.active span:nth-child(1) {
  top : 16px;
  left: 6px;
  -webkit-transform: rotate(-45deg);
  -moz-transform   : rotate(-45deg);
  transform        : rotate(-45deg);
}

.hamburger.active span:nth-child(2),
.hamburger.active span:nth-child(3) {
  top: 16px;
  -webkit-transform: rotate(45deg);
  -moz-transform   : rotate(45deg);
  transform        : rotate(45deg);
}

nav.globalMenuSp {
    position: fixed;
    z-index : 1000;
    top  : 0;
    right: 0;
    color: #fefefe;
    background: #072B79;
    text-align: center;
    transform: translateX(100%);
    transition: all 0.6s;
    width: 60%;
    height: 100%;
    opacity: 0.9;
}
nav.globalMenuSp ul {
  background: #072B79;
  margin: 10vw auto 0 auto;
  padding: 0;
  width: 100%;
}

nav.globalMenuSp ul li {
  list-style-type: none;
  padding: 0;
  width: 100%;
}
nav.globalMenuSp ul li:last-child {
  padding-bottom: 0;
  border-bottom: none;
    display: flex;
    justify-content: center;
    align-items: center;
}
nav.globalMenuSp ul li:hover{
  background :#19BAFF;
}

nav.globalMenuSp ul li a {
  display: block;
  color: #fefefe;
  padding: 1em 0;
  text-decoration :none;
}
nav.globalMenuSp ul li a:hover {
	color: #fff;
	}
nav.globalMenuSp.active {
    transform: translate(0%);
}
}
@media (width < 1300px){
    footer nav ul{
    width: 90%;
    }
}
@media (width < 1000px){
    footer nav ul{
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }
    footer .address_wrap img{
        width: 30%;
    }
    footer small{
        font-size: 14px;
    }
}
@media (width < 750px){
    .logo{
        width: 40%;
        padding: 2% 0;
    }
    .mv {
        top: -15vw !important;
    }
    footer .address_wrap{
        padding: 0 5%;
        font-size: 14px;
    }
    footer .address_wrap img{
        width: 50%;
        padding: 5% 0;
    }
    footer .address_wrap
}
@media (width < 500px){
    .logo{
        width: 50%;
    }
    .mv {
        top: -17vw !important;
    }
    nav.globalMenuSp {
        width: 100%;
    }
    footer nav ul{
        flex-direction: column;
    }
    footer nav ul li{
        display: inline-block;
        width: 100%;
        border-bottom: 1px solid #fefefe;
        padding-bottom: 3%;
        text-align: center;
    }
    footer .address_wrap img{
        width: 70%;
    }
    footer .address_wrap address{
        text-align: left;
    }
}
.grecaptcha-badge { visibility: hidden; }