@charset "UTF-8";

/********** google fonts **********/
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700&display=swap");

body {
  font-family: "Noto Sans JP", sans-serif;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

ul{
  margin:0;
  padding:0;
}

*:focus {
  outline: none;
}
a {
  -webkit-tap-highlight-color:rgba(0,0,0,0);
  cursor:pointer;
}

/********** All color **********/
:root{
  --bk-color1: #2465A0;
  --bk-color2: #5FACDD;
  --bk-color3: #DD973A;
  --bk-color4: #99CCF2;
  --bk-color5: #EDF6FD;
  --bk-color6: #D3E0EC;
  --bk-color7: #ffffff;

  --text-color1: #ffffff;
  --text-color2: #000000;
  --text-color3: #2465A0;
  --text-color4: #5FACDD;
  --text-color5: #DD973A;
  --text-color6: #ff0000;
}

/********** popup **********/
.popup{
  position: fixed;
  right: 20px;
  z-index: 3;
}
.popup p{
cursor: pointer;
}

#page-top img{
width:40px;
height: 40px;
position:absolute;
right:0px;
bottom:120px;
}

.popup img{
width:220px;
height: 113px;
}

/********** header **********/
header {
  width: 100%;
  height: 128px;
  background-color:var(--bk-color1);
  display: flex;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
}

header .logo {
  flex: 0 0 250px;
  margin-right: auto;
}
header .logo img {
  width: 400px;
  height:80px;
}

header .square_menu{
  flex: 0 0 256px;
  height: 128px;
  margin-left: auto;
  display: flex;
  align-items: stretch;
  text-align: center;
}
header .square_menu img {
  width: 64px;
  height: 64px;
  margin: 16px 0 11px 0;
}
header .square_menu a {
  color: var(--bk-color7);
  text-decoration: none;
}
header .square_menu p {
  font-size: 18px;
  font-weight: 500;
  margin:0;
}

.square_menu .vending, .square_menu .contact {
  flex:0 0 128px;
  transition: filter 0.3s ease;
}

.square_menu .vending:hover, .square_menu .contact:hover {
  filter: brightness(85%);
}

.square_menu .vending {
  background-color: var(--bk-color2);
}
.square_menu .contact {
  background-color:var(--bk-color3);
}

header nav{
  flex:0 0 780px;
  margin: 5px 40px 0 40px;
  display: flex;
  flex-direction: column;
}

header .global-menu {
  display: flex;
  font-size: 16px;
  font-weight: 700;
  margin-top:32px;
}
header .global-menu a {
  color: var(--text-color1);
  display: inline-block;
  text-decoration: none;
}
header .gloval-menu {
  margin: 0 auto;
  display: flex;
  align-items: center;
}

header .global-menu > li {
  color:var(--text-color1);
  cursor: pointer;
  flex:0 0 130px;
  text-align: center;
  list-style: none;
  border-left: 1px solid var(--text-color1);
  position: relative;
  /*hoverしたら表示*/
  /*ナビゲーションaタグの形状*/
}
header .global-menu > li.current:before {
  content: "";
  position: absolute;
  width: 20%;
  left: 50%;
  bottom: -8px;
  border-bottom: 2px solid var(--bk-color2);
  display: block;
}
header .global-menu > li.current:after {
  content: "";
  position: absolute;
  width: 20%;
  right: 50%;
  bottom: -8px;
  border-bottom: 2px solid var(--text-color1);
  display: block;
}
header .global-menu > li:last-child {
  border-right: 1px solid var(--text-color1);
}
header .global-menu > li:before {
  content: "";
  position: absolute;
  width: 0;
  left: 50%;
  bottom: -8px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border-bottom: 2px solid var(--text-color1);
  display: block;
}
header .global-menu > li:hover:before {
  width: 20%;
}
header .global-menu > li:after {
  content: "";
  position: absolute;
  width: 0;
  right: 50%;
  bottom: -8px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border-bottom: 2px solid var(--text-color1);
  display: block;
}
header .global-menu > li:hover:after {
  width: 20%;
}

header .global-menu li.has-child ul {
  /*絶対配置で位置を指定*/
  position: absolute;
  left: -112px;
  top: 48px;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: space-around;

  /*形状を指定*/
  background:var(--bk-color2);
  width: 353px;
  height: 47px;
  border-radius: 0 0 5px 5px;
  /*はじめは非表示*/
  visibility: hidden;
  opacity: 0;
  /*アニメーション設定*/
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
header .global-menu li.has-child ul li {
  border: none;
  font-size: 15px;
  font-weight: 700;
  text-align: center;
}

header .global-menu li.has-child.smo ul {
  width: 330px;
  left: -92px;
}

header .global-menu li.has-child:hover > ul, header .global-menu li.has-child ul li:hover > ul, header .global-menu li.has-child:active > ul, header .global-menu li.has-child ul li:active > ul {
  visibility: visible;
  opacity: 1;
}

header .global-menu li.has-child ul li a {
  color: var(--text-color1);
}
header .global-menu li.has-child ul li a:hover {
  color: var(--text-color3);
}
header .global-menu li.has-child ul li:last-child a {
  border-bottom: none;
}

header .sub-menu {
  width: 245px;
  margin-left: auto;
}

header .sub-menu li{
  font-size: 13px;
  font-weight: 500;
}

header .sub-menu a{
  text-decoration: none;
  color:var(--text-color1);
}

header .sub-menu a:hover {
  color: var(--text-color4);
}
header .sub-menu ul {
  display: flex;
  padding: 0;
}
header .sub-menu ul li {
  width: 100%;
  padding: 0 10px;
  text-align: center;
  list-style: none;
  border: none;
  text-align: right;
}
header .sub-menu ul li:first-child {
  width: 120px;
}
header .sub-menu ul li:last-child {
  border: none;
  padding: 0;
}
header .sub-menu ul li:hover::after, header .sub-menu ul li:hover::before {
  content: "";
  border: none;
  width: 0%;
}
header .sp_menu,
header .openbtn{
  display: none;
}


/********** main **********/
main {
  width: 100%;
}


/********** select-contact-wrapper **********/
.select_contact_wrapper{
  min-width: 1366px;
  margin:0 auto;
  display: flex;
  justify-content: center;
}
.select_contact_wrapper a{
  text-decoration: none;
  color:var(--text-color1);
  width:100%;
  display: inline-block;
}
.select_item,
.contact_item{
  width:50%;
  height: 374px;
  text-align: center;
  color:var(--text-color1);
}
.select_item{
  background-image: url(../img/photo/select_item.jpg);
  background-position: center center;
  background-size: cover;
  position: relative;
}
.contact_item{
  background-image: url(../img/photo/contact_item.jpg);
  background-position: center center;
  background-size: cover;
  position: relative;
}

.select_contact_wrapper .title{
  font-size: 32px;
  font-weight: 500;
  text-align: center;
  min-width: 500px;
  margin:47px auto 39px auto;
}
.select_exp{
  width:500px;
  font-size: 15px;
  font-weight: 500;
  line-height: 2;
  text-align: center;
  margin: 0 auto;
}
.contact_item .bar{
  width:500px;
  border-top:2px solid var(--bk-color7);
  border-bottom:2px solid var(--bk-color7);
  padding:12px 20px 10px 20px;
  margin:0 auto;
}
.contact_exp{
  width: 500px;
  font-size: 15px;
  font-weight: 500;
  line-height: 2;
  text-align: center;
  margin: 0;
}
.contact_item .tel{
  font-size: 28px;
  font-weight: 700;
  position:relative;
  margin:0 0 0 40px;
}
.contact_item .tel:before {
  content: url(../img/icon/other/tel.svg);
  width: 32px;
  height: 32px;
  position: absolute;
  left: 75px;
  top: 6px;
}

.bt{
  width:240px;
  height: 56px;
  line-height: 50px;
  text-align: center;
  vertical-align: middle;
  border-radius: 8px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  cursor:pointer;
  transition: all 0.5s ease;
}
.bt::after{
  position:absolute;
  top: -5px;
  right: -20px;
  animation: arrow-move-return 0.3s ease-in-out forwards;
}
.bt:hover::after{
  animation: arrow-move 0.3s ease-in-out forwards;
}
@keyframes arrow-move {
  0% {transform: translateX(0);}
  100% {transform: translateX(50%);}
}
@keyframes arrow-move-return {
  0% {transform: translateX(50%);}
  100% {transform: translateX(0);}
}

/* footer banner */
.select_contact_wrapper .bt{
  border:2px solid var(--bk-color7);
  bottom:56px;
  background-color: transparent;
}
.select_contact_wrapper .bt::after{
  content:url(../img/icon/arrow/w_right.png);
}
.select_contact_wrapper .bt:hover{
background-color: var(--bk-color1);
}

/* common button */
.bt_common{
  border:2px solid var(--bk-color3);
  background-color: var(--bk-color3);
}
.bt_common::after{
  content:url(../img/icon/arrow/o_right.png);
}
.bt_common:hover::after{
  content:url(../img/icon/arrow/o_right_hover.png);
}
.bt_common:hover{
background-color: var(--bk-color7);
}
.bt_common:hover a{
  color:var(--text-color5);
  }
.bt_common a{
  text-decoration: none;
  color:var(--bk-color7);
  width:100%;
  display: inline-block;
}



/********** slider footer **********/
.wrapper_slider{
  display: flex;
  min-width: 1366px;
  height: 245px;
  background-color: var(--bk-color4);
  overflow: hidden;
  align-items: center;
}
.slider_footer{
  display: flex;
  animation: loop-slide 70s infinite linear 1s both;
}
@keyframes loop-slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
.slider_footer_item{
  width: 435px;
  height: 215px;
  margin-right: 16px;
  list-style: none;
}
.slider_footer_item img{
  width: 435px;
  height: 215px;
  border-radius: 15px;
}

.slide-paused:hover .slider_footer {
  animation-play-state: paused;
}

.slider_footer_hover {
  transition: all 0.2s;
}
.slider_footer_hover:hover {
  transform: scale(103%);
  border-radius: 15px;
  box-shadow: 0 3px 10px 0 #333;
  cursor: pointer;
}

/********** footer **********/
footer {
  min-width: 1366px;
  background-color: var(--bk-color1);
  margin: 0 auto;
}
footer .wrapper {
  width: 1366px;
  margin: 0 auto;
}
footer .logo {
  width: 380px;
  margin: 0 auto;
}
footer .logo img {
  width: 380px;
  height: 76px;
}
footer .wrapper p {
  color: var(--text-color1);
  width: 280px;
  margin: 28px auto 15px auto;
  font-size: 15px;
  font-weight: 500;
  text-align: center;
}

footer .wrapper p.add{
 width:350px;
}

footer p.tel {
  font-size: 28px;
  font-weight: 700;
  position: relative;
  padding-left: 34px;
  margin: 0 auto 40px auto;
}
footer p.tel:before {
  content: url(../img/icon/other/tel.svg);
  width: 32px;
  height: 32px;
  position: absolute;
  left: 22px;
  top: 6px;
}
footer .menu {
  display: flex;
  justify-content: center;
  width: 900px;
  font-size: 13px;
  font-weight: 500;
  margin: 0 auto;
}
footer .menu a {
  color: var(--text-color1);
  text-decoration: none;
}
footer .menu a:hover {
  color:var(--text-color4);
}
footer .menu ul {
 margin-right:100px;
 padding:0;
}
footer .menu ul:nth-child(4){
  margin-right:0;
}
footer .menu ul:nth-child(5),
footer .menu ul:nth-child(6){
  margin-left:90px;
  margin-right:0;
  text-align:right;
}
footer .menu li {
  list-style: none;
  padding: 0 0 10px 0;
  color:var(--text-color1);
}

footer .sub-menu {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 930px;
  font-size: 12px;
  font-weight: 500;
  margin: 30px auto 0 auto;
  padding: 24px 0;
  border-top: 1px solid #fff;
}
footer .sub-menu a {
  color: var(--text-color1);
  text-decoration: none;
}
footer .sub-menu a:hover {
  color:var(--text-color4);
}
footer .sub-menu small {
  color:var(--text-color1);
  font-weight: 400;
  margin-left: 130px;
}
footer .sub-menu ul {
  display: flex;
  padding: 0;
  margin-right: 40px;
}
footer .sub-menu li {
  padding-right: 12px;
  list-style-type: none;
  flex:1 0 90px;
}
footer .sub-menu li:first-child {
  margin-right: 1px;
}
footer .sub-menu li:nth-child(2) {
  margin-right: 12px;
}
footer .sub-menu li:nth-child(3) {
  margin-right: -11px;
}
footer .sub-menu li:nth-child(4) {
  margin-right: -12px;
}
footer .sub-menu li:last-child {
  flex:1 0 140px;
}
footer .sub-menu .insta {
  margin-right: 32px;
}
footer .sub-menu .insta img {
  width: 32px;
  height: 32px;
}


/********** ここからスマホ **********/
@media only screen and (max-width:599px){
  
.popup{
  display: none;
  }

.sp_br{
  display: none;
}

/**** header SP ****/
header{
  width:100vw;
  height: 60px;
}
header .logo {
  flex: 0 0 185px;
  margin-right: auto;
}
header .logo img {
  width: 220px;
  height: 60px;
}
header nav,
header .square_menu{
  display: none;
}

/**** header menu SP ****/
.openbtn {
  display: block !important;
  position: relative;
  width: 36px;
  height: 24px;
  cursor: pointer;
  right:12px;
}
.openbtn span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 4px;
  background-color:var(--bk-color7);
  border-radius: 4px;
}
.openbtn, .openbtn span {
  display: inline-block;
  transition: all .5s;
  box-sizing: border-box;
}
.openbtn span:nth-of-type(1) {
  top: 0;
}
.openbtn span:nth-of-type(2) {
  top:10px;
}
.openbtn span:nth-of-type(3) {
  bottom: 0;
}

.openbtn.active span:nth-of-type(1) {
  -webkit-transform: translateY(10px) rotate(45deg);
  transform: translateY(10px) rotate(45deg);
}
.openbtn.active span:nth-of-type(2) {
  opacity: 0;
}
.openbtn.active span:nth-of-type(3) {
  -webkit-transform: translateY(-10px) rotate(-45deg);
  transform: translateY(-10px) rotate(-45deg);
}


header .sp_menu{
  position: fixed;
  z-index: 999;
  top:60px;
  right:-120%;
  display: flex;
  align-items: stretch;
  justify-content: center;
  width:100%;
  height: 100vh;
  background-color: var(--bk-color1);
  transition: all 0.6s;
}
.sp_menu_left,
.sp_menu_right{
  padding:48px 0;
  flex:0 0 140px;
}
.sp_menu_left{
  margin-right: 45px;
}
.sp_menu li{
  font-size: 13px;
  font-weight: 700;
  color: var(--text-color1);
  padding-bottom: 19px;
  list-style: none;
  border-bottom: 1px solid var(--bk-color7);
}
.sp_menu .large_f{
  font-size: 15px;
}
.sp_menu li a{
  text-decoration: none;
  color:var(--bk-color7);
  display: block;
  line-height: 20px;
}
.sp_menu li:not(:first-child){
  padding-top:25px;
}
.sp_menu li:last-child{
  border:none;
}
.sp_menu_left li:nth-child(n+3){
  border: none;
}
.sp_menu_left li:nth-child(3){
  padding-bottom: 18px;
}
.sp_menu_left li:nth-child(4),
.sp_menu_left li:nth-child(5){
  padding: 0 0 18px 0;
}
.sp_menu_left li:nth-child(6){
  padding: 0 0 25px 0;
  border-bottom: 1px solid var(--bk-color7);
}
.sp_menu_left li:nth-child(7){
  padding-bottom: 18px;
}
.sp_menu_left li:nth-child(8),
.sp_menu_left li:nth-child(9){
  padding: 0 0 18px 0;
}
#g-nav.panelactive{
  right: 0;
}

/********** select-contact-wrapper **********/
.select_contact_wrapper{
  min-width: 100vw;
  margin:0 auto;
  display: flex;
  flex-wrap: wrap;
}
.select_contact_wrapper a{
  text-decoration: none;
  color:var(--bk-color7);
  width:100%;
  display: inline-block;
}
.select_item,
.contact_item{
  width:100%;
  height: 344px;
  text-align: center;
  color:var(--bk-color7);
}
.select_item{
  background-image: url(../img/photo/select_item.jpg);
  background-position: center center;
  background-size: 150%;
  position: relative;
}
.contact_item{
  background-image: url(../img/photo/contact_item.jpg);
  background-position: center center;
  background-size: cover;
  position: relative;
}

.select_contact_wrapper .title{
  font-size: 24px;
  font-weight: 500;
  margin:40px auto 25px auto;
  min-width:100vw;
}
.select_exp{
  font-size: 14px;
  line-height: 1.7;
  padding:0 24px;
  width:100vw;
  text-align: left;
  margin-bottom: 43px;
}
.contact_item .bar{
  width:100%;
  border-top:1px solid var(--bk-color7);
  border-bottom:1px solid var(--bk-color7);
  padding:12px 20px 10px 20px;
  margin:0 auto;
}
.contact_exp{
  font-size: 14px;
  text-align: center;
  margin: 0;
  width:100%;
}
.contact_item .tel{
  font-size: 28px;
  font-weight: 700;
  position:relative;
  margin:0 auto;
  width:240px;
  padding-left: 45px;
}
.contact_item .tel:before {
  content: url(../img/icon/other/tel.svg);
  width: 32px;
  height: 32px;
  position: absolute;
  left: 10px;
  top: 6px;
}

.bt::after{
  position:absolute;
  top: -5px;
  right: -20px;
  animation: arrow-move-return 0.3s ease-in-out forwards;
}
.bt:hover::after{
  animation: arrow-move 0.3s ease-in-out forwards;
}
@keyframes arrow-move {
  0% {transform: translateX(0);}
  100% {transform: translateX(50%);}
}
@keyframes arrow-move-return {
  0% {transform: translateX(50%);}
  100% {transform: translateX(0);}
}

/* footer banner */
.select_contact_wrapper .bt{
  border:1px solid var(--bk-color7);
  bottom:55px;
  background-color: transparent;
}
.select_contact_wrapper .bt::after{
  content:url(../img/icon/arrow/w_right.png);
}
.select_contact_wrapper .bt:hover{
background-color: var(--bk-color7);
}

/* common button */
.bt_common{
  border:2px solid var(--bk-color3);
  background-color: var(--bk-color3);
}
.bt_common::after{
  content:url(../img/icon/arrow/o_right.png);
}
.bt_common:hover::after{
  content:url(../img/icon/arrow/o_right_hover.png);
}
.bt_common:hover{
background-color: var(--text-color1);
}
.bt_common:hover a{
  color:var(--text-color1);
  }
.bt_common a{
  text-decoration: none;
  color:var(--text-color1);
  width:100%;
  display: inline-block;
}

/**** slider SP ****/
.wrapper_slider{
  display: flex;
  min-width: 100vw;
  height: 215px;
  background-color: var(--bk-color4);
  overflow: hidden;
  align-items: center;
}
.slider_footer_item{
  width: 390px;
  height: 192px;
  margin-right: 16px;
  list-style: none;
}
.slider_footer_item img{
  width: 390px;
  height: 192px;
  border-radius: 15px;
}


/**** footer SP ****/
  footer{
    min-width:100vw;
    height: 182px;
  }
  footer .wrapper {
    width: 100vw;
  }
  footer .wrapper p {
    margin: 25px auto 5px auto;
    font-size: 14px;
  }
  footer .logo {
    width: 185px;
    margin: 0 auto;
  }
  footer .logo img {
    width: 220px;
    height: 60px;
  }
  footer .wrapper p.tel {
    font-size: 14px;
    font-weight: 500;
    padding-left: 50px;
    margin: 0 auto 10px auto;
  }
  footer p.tel:before {
    content:'＜TEL＞';
    width:65px;
    top:0;
    left:55px;
  }
  footer p.tel a{
    text-decoration: none;
    color:var(--text-color1);
  }
  footer .menu{
    display: none;
  }
  footer .sub-menu{
    width:100vw;
    margin:0;
    padding:0;
    border:none;
    justify-content: center;
  }
  footer .sub-menu .insta,
  footer .sub-menu ul{
    display: none;
  }
  footer .sub-menu .cpright{
    margin:0 auto;
  }
  footer .sub-menu small{
    margin-left:0;
  }
}