@charset "UTF-8";

/* base */
html{
	scroll-behavior: smooth;
	font-family: "Noto Sans", sans-serif;
  color: #222222;
  background: #fff;
  margin-top: 0 !important;
}
main{
  overflow-x: hidden;
  margin-top: 119px;
}
body {
  margin: 0;
  padding: 0;
}
body.is-fixed {
  position: fixed;
  height: 100vh;
  width: 100%;
}
a {
  text-decoration: none;
  color: #222222;
  user-select: none;
  word-break: break-word;
  transition: all 0.3s ease-in-out;
}
button {
  background-color: transparent;
  border: none;
  text-decoration: none;
  appearance: none;
  user-select: none;
	font-family: "Noto Sans", sans-serif;
  color: #222222;
  transition: all 0.3s ease-in-out;
  word-break: break-word;
}
input {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  appearance: none;
  font-family: "Noto Sans", sans-serif;
}
input[type='month'],
input[type='date'] {
  appearance: none;
}
input[type='checkbox'] {
  display: none;
}
input[type='radio'] {
  display: none;
}
input:-webkit-autofill {
  box-shadow: 0 0 0 1000px white inset;
}
select {
  cursor: pointer;
  appearance: none;
  font-family: "Noto Sans", sans-serif;
}
textarea {
  font-family: "Noto Sans", sans-serif;
}
sup {
  vertical-align: super;
  font-size: small;
}
@media screen and (min-width: 769px){
  .pc{
    display: block;
  }
  .sp{
    display: none;
  }
}
@media screen and (max-width: 768px){
  .pc{
    display: none;
  }
  .sp{
    display: block;
  }
}

/* header */
.header{
  background-color: #ffffff;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  border-bottom: 1px solid #D9D9D9;
}
.header * {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
.header *::before,
.header *::after {
  box-sizing: border-box;
}
.header ul,
.header li {
  list-style: none;
}
.header .header_nav{
  margin-inline: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  padding: 20px 30px;
}
.header .header_logo{
  display: block;
  max-width: 320px;
}
.header .header_logo img{
  width: 100%;
  height: auto;
}
.header .header_menu_button{
  display: none;
}
.header .header_menu_wrapper{
  display: flex;
  justify-content: space-between;
  flex: 1;
  max-width: 1382px;
  gap: 40px;
}
.header .header_menu{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0 40px;
}
.header .header_menu-item-sp{
  display: none;
}
.header .header_menu li a{
  font-weight: 700;
  font-size: 18px;
  line-height: 100%;
  word-break: keep-all;
}
.header .header_btns_tel{
  display: block;
  max-width: 257px;
  margin-left: auto;
  pointer-events: none;
}
.header .header_btns_language{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  width: 106px;
  border-radius: 7px;
  border: 2px solid #F37A23;
  height: 40px;
  color: #F37A23;
  font-size: 16px;
  font-weight: bold;
  line-height: 100%;
}
.header .header_btns_language svg path{
  transition: all 0.3s ease-in-out;
}
.header .header_btns_contact{
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  width: 256px;
  height: 40px;
  border-radius: 7px;
  color: #ffffff;
  background-color: #F37A23;
  font-size: 16px;
  font-weight: bold;
  line-height: 100%;
}
.header .header_btns_bottom{
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 6px;
}
@media screen and (min-width: 1241px){
  .header .header_menu li a:hover{
    color: #00A375;
  }
  .header .header_btns_language:hover{
    background-color: #FFB516;
    border: 2px solid #FFB516;
    color: #ffffff;
  }
  .header .header_btns_language:hover svg path{
    stroke: #fff;
  }
  .header .header_btns_contact:hover{
    background-color: #FFB516;
  }
}
@media screen and (max-width: 1700px){
  .header .header_menu li a {
    font-size: 16px;
    word-break: break-all;
  }
}
@media screen and (max-width: 1240px){
  main{
    margin-top: 69px;
  }
  .header .header_nav{
    padding: 0 16px;
  }
  .header .header_logo{
    max-width: 180px;
  }
  .header .header_menu_button{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 64px;
    height: 68px;
    cursor: pointer;
  }
  .header .header_menu_button span,
  .header .header_menu_button span::before,
  .header .header_menu_button span::after{
    display: block;
    width: 32px;
    height: 2px;
    border-radius: 2px;
    background-color: #00A375;
    border-radius: 2px;
    transition: all 0.3s ease-in-out;
    position: relative;
  }
  .header .header_menu_button span::before,
  .header .header_menu_button span::after{
    content: "";
    position: absolute;
    left: 0;
  }
  .header .header_menu_button span::before{
    top: -10px;
  }
  .header .header_menu_button span::after{
    top: 10px;
  }
  .header .header_menu_button.is-opened span{
    background-color: transparent;
  }
  .header .header_menu_button.is-opened span::before{
    transform: rotate(45deg);
    top: 0;
  }
  .header .header_menu_button.is-opened span::after{
    transform: rotate(-45deg);
    top: 0;
  }
  .header .header_menu_wrapper{
    position: absolute;
    top: 50px;
    left: 0;
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    background: #fff;
    padding: 32px;
    width: 100%;
    max-width: 100%;
    transition: all 0.3s ease-in-out;
    flex-direction: column;
  }
  .header .header_menu_wrapper.is-opened{
    opacity: 1;
    top: 69px;
    pointer-events: auto;
    visibility: visible;
    background: #00A375;
  }
  .header .header_menu{
    flex-direction: column;
    gap: 0;
    order: 2;
  }
  .header .header_menu .header_menu-item{
    width: 100%;
    border-bottom: 1px solid #FFFFFF80;
    padding: 16px;
  }
  .header .header_menu .header_menu-item-sp{
    display: block;
  }
  .header_submenu{
    display: none;
  }
  .header .header_menu .header_menu-item a,
  .header .header_menu .header_menu-item button{
    color: #fff;
    font-size: 16px;
    line-height: 140%;
    font-weight: 700;
  }
  .header .header_btns{
    display: contents;
  }
  .header .header_btns_top{
    order: 3;
  }
  .header .header_btns_tel{
    pointer-events: auto;
    background: #01523B;
    border-radius: 8px;
    padding: 4px 0;
    max-width: none;
  }
  .header .header_btns_tel picture{
    max-width: 311px;
    display: block;
    margin-inline: auto;
  }
  .header .header_btns_bottom{
    flex-direction: row-reverse;
    order: 1;
    gap: 8px;
  }
  .header .header_btns_contact{
    width: 70%;
    height: 44px;
    font-size: 14px;
  }
  .header .header_btns_language{
    background: #fff;
    border: none;
    width: 30%;
    height: 44px;
    font-size: 12px;
  }
  .header .header_submenu.is-opened{
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    background: #00A375;
    width: 100%;
    height: 100%;
    padding: 32px;
    z-index: 1;
  }
  .header .header_submenu .header_submenu_back,
  .header .header_submenu .header_subsubmenu_back{
    font-weight: 400;
  }
  .header .header_submenu_back::before,
  .header .header_subsubmenu_back::before{
    content: "<";
    display: inline-block;
    margin-right: 8px;
    color: #fff;
  }
  .header .header_subsubmenu{
    display: none;
  }
  .header .header_subsubmenu.is-opened{
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    background: #00A375;
    width: 100%;
    height: 100%;
    padding: 32px;
    z-index: 1;
  }
  .header .header_submenu_button::after,
  .header .header_subsubmenu_button::after{
    content: ">";
    display: inline-block;
    margin-left: 8px;
    color: #fff;
  }
  .header .header_submenu_title + .header_submenu_list,
  .header .header_subsubmenu_title + .header_subsubmenu_list{
    margin-top: 8px;
  }
  .header .header_submenu_list + .header_submenu_title,
  .header .header_subsubmenu_list + .header_subsubmenu_title{
    margin-top: 32px;
  }
  .header .header_submenu_list li,
  .header .header_subsubmenu_list li{
    border-bottom: 1px solid #FFFFFF80;
    padding: 16px;
  }
  .header .header_submenu_list li:not(:has(a)){
    margin-top: 32px;
  }
  .header .header_submenu_inner,
  .header .header_subsubmenu_inner{
    overflow-y: auto;
    height: calc(100% - 32px);
    padding-bottom: 32px;
    margin-top: 32px;
  }
}

/* footer */
.footer{
  background-color: #01523B;
  color: #fff;
  padding: 40px 0;
  margin-top: 120px;
}
.footer ul{
  margin: 0;
  padding: 0;
  list-style: none;
}
.footer .footer_inner{
  width: calc(100% - 60px);
  max-width: 1280px;
  margin-inline: auto;
}
.footer .footer_top{
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 64px;
}
.footer .footer_logo{
  max-width: 310px;
}
.footer .footer_left{
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}
.footer .footer_info_address{
  font-size: 16px;
  line-height: 130%;
}
.footer .footer_info_tel{
  margin-top: 16px;
}
.footer .footer_info_tel a{
  color: #fff;
  pointer-events: none;
}
.footer .footer_right{
  width: 100%;
  max-width: 400px;
  min-width: 400px;
}
.footer .footer_contact{
  position: relative;
  display: flex;
  background: #F37A23;
  font-weight: 700;
  text-align: center;
  border-radius: 4px;
  height: 72px;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 20px;
  gap: 16px;
}
.footer .footer_contact::after{
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  transform: translateY(1px);
  background: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTYiIHZpZXdCb3g9IjAgMCAxNiAxNiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTS0zLjQ5NjcyZS0wNyA4LjAwMDQzQy0zLjE3NTEzZS0wNyA4LjczNjE2IDAuNTY3MDcgOS4zMzI2MSAxLjI2NjU2IDkuMzMyNjFMMTEuNjczIDkuMzMyNjFMNy40OTI2OCAxMy43MTY0QzYuOTk1NjcgMTQuMjM5MSA2Ljk5NTY3IDE1LjA4NiA3LjQ5MjY4IDE1LjYwODJDNy45ODk2OCAxNi4xMzAzIDguNzk0ODYgMTYuMTMwOSA5LjI5MTI3IDE1LjYwODJMMTUuNjI1MiA4Ljk0NjAxQzE2LjEyMjIgOC40Mjc2MyAxNi4xMjUyIDcuNTg0NDcgMTUuNjMyNCA3LjA2MTcyQzE1LjYzIDcuMDU5MjIgMTUuNjI3NiA3LjA1NjcyIDE1LjYyNTIgNy4wNTQyM0w5LjI5MTI3IDAuMzkyMDY2QzguNzk0MjYgLTAuMTMwNjg4IDcuOTg5MDggLTAuMTMwNjg4IDcuNDkyNjcgMC4zOTIwNjZDNi45OTYyNyAwLjkxNDgyMSA2Ljk5NTY3IDEuNzYxNzIgNy40OTI2NyAyLjI4Mzg1TDExLjY3MyA2LjY2NzYyTDEuMjY2NTYgNi42Njc2MkMwLjU2NzA3IDYuNjY3NjIgLTMuODE4MzJlLTA3IDcuMjY0NyAtMy40OTY3MmUtMDcgOC4wMDA0M1oiIGZpbGw9IndoaXRlIi8+Cjwvc3ZnPg==') no-repeat center center / contain;
}
.footer .footer_contact:hover{
  background-color: #FFB516;
}
.footer .footer_nav{
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 24px;
}
.footer .footer_nav a{
  color: #fff;
  font-size: 14px;
  line-height: 130%;
  text-decoration: underline;
}
.footer .footer_bottom{
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid #ffffff33;
}
.footer .footer_copyright{
  text-align: center;
  font-size: 16px;
  line-height: 130%;  
}

@media screen and (max-width: 860px){
  .footer .footer_right{
    min-width: inherit;
  }
  .footer .footer_contact{
    font-size: 16px;
  }
}

@media screen and (max-width: 768px){
  .footer {
    padding: 40px 0 32px;
    margin-top: 56px;
  }
  .footer .footer_inner {
    width: calc(100% - 40px);
  }
  .footer .footer_top{
    flex-direction: column;
    gap: 24px;
  }
  .footer .footer_left{
    order: 2;
    gap: 24px;
  }
  .footer .footer_logo{
    max-width: 260px;
    margin-inline: auto;
  }
  .footer .footer_info_address{
    font-size: 14px;
    line-height: 160%;
  }
  .footer .footer_info_tel{
    margin-top: 4px;
    font-size: 14px;
  }
  .footer .footer_right{
    display: contents;
  }
  .footer .footer_contact{
    order: 1;
    height: 50px;
    width: 100%;
    border-radius: 8px;
  }
  .footer .footer_contact::after{
    width: 11px;
    height: 11px;
  }
  .footer .footer_nav{
    order: 3;
    flex-wrap: wrap;
    gap: 0 12px;
    justify-content: center;
    margin-top: 0;
  }
  .footer .footer_nav a{
    font-size: 12px;
    word-break: keep-all;
  }
  .footer .footer_bottom{
    order: 4;
    padding-top: 16px;
  }
  .footer .footer_copyright{
    font-size: 12px;
  }
}
