html {
  font-feature-settings: 'palt' on;
  font-size: 62.5%;
  scroll-behavior: smooth;
}
@media screen and (max-width:1040px) {
  html {
    font-size: calc(100vw / 1040 * 10);
  }
}

@media screen and (max-width:768px) {
  html {
    font-size: calc(100vw / 375 * 10);
  }
}
body {
  color: #000;
  font-family: 'Noto Sans JP', sans-serif;
  font-optical-sizing: auto;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  min-height: 300vh;
  opacity: 0;
  transition: .3s;
}
body.lazy {
  opacity: 1;
}
.body_container {
  overflow: hidden;
  padding-top: 7rem;
}
.max1000 {
  margin: 0 auto;
  max-width: 100rem;
}
img {
  height: auto;
  max-width: 100%;
  width: 100%;
}
@media screen and (max-width: 768px) {
  body {
    font-size: 1.4rem;
  }
  .body_container {
    min-width: 100%;
    padding-top: 4.7rem;
  }
  .max1000 {
    padding: 0 2rem;
  }
}
a {
  transition: .3s;
}
.anchor {
  margin-top: -7rem;
  padding-top: 7rem;
}
@media screen and (max-width: 768px) {
  .anchor {
    margin-top: -4.7rem;
    padding-top: 4.7rem;
  }
}
p {
  line-height: 1.75;
}
/* ---------------------------------------------------------------------------
//  header
--------------------------------------------------------------------------- */
.header {
  background: #334b34;
  color: #fff;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
}
.header .wrap {
  align-items: center;
  display: flex;
  height: 7rem;
  justify-content: space-between;
  max-width: 100rem;
}
.header .wrap .head {
  align-items: center;
  display: flex;
  width: 26rem;
}
.header .wrap .head .logo:hover {
  opacity: .7;
}
.header .wrap .contents .links {
  align-items: center;
  display: flex;
  font-size: 1.5rem;
  gap: 2rem;
}
.header .wrap .contents .links a:hover {
  opacity: .7;
}
.header .wrap .contents .links .entry {
  align-items: center;
  background: #fff;
  border-radius: 1rem;
  color: #334b34;
  display: flex;
  font-weight: bold;
  height: 4rem;
  justify-content: center;
  padding: 0 2rem;
}
@media screen and (max-width: 768px) {
  .header .wrap {
    height: 4.7rem;
    padding: 0;
  }
  .header .wrap .head {
    justify-content: space-between;
    padding-left: 1rem;
    width: 100%;
  }
  .header .wrap .head .logo {
    width: 19rem;
  }
  .header .wrap .head .h_btn {
    height: 4.7rem;
    position: relative;
    width: 4.7rem;
  }
  .header .wrap .head .h_btn span {
    background: #fff;
    content: '';
    height: 1px;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    transition: .3s;
    transition: .3s;
    width: 2.5rem;
  }
  .header .wrap .head .h_btn span:nth-of-type(1) {
    top: 1.7rem;
  }
  .header .wrap .head .h_btn span:nth-of-type(2) {
    top: 2.35rem;
  }
  .header .wrap .head .h_btn span:nth-of-type(3) {
    top: 3rem;
  }
  .open .header .wrap .head .h_btn span:nth-of-type(1) {
    top: 2.35rem;
    transform: rotate(45deg);
  }
  .open .header .wrap .head .h_btn span:nth-of-type(2) {
    opacity: 0;
  }
  .open .header .wrap .head .h_btn span:nth-of-type(3) {
    top: 2.35rem;
    transform: rotate(-45deg);
  }
  .header .wrap .contents {
    background: rgba(255,255,255,.9);
    height: calc(100vh - 4.7rem);
    left: 0;
    opacity: 0;
    padding: 8rem 0;
    pointer-events: none;
    position: fixed;
    top: 4.7rem;
    transition: .3s;
    width: 100%;
  }
  .open .header .wrap .contents {
    opacity: 1;
    pointer-events: all;
  }
  .header .wrap .contents .links {
    align-items: center;
    color: #000;
    flex-direction: column;
    font-size: 1.6rem;
    gap: 3rem;
  }
  .header .wrap .contents .links .entry {
    background: inherit;
    color: inherit;
    font-size: 1.6rem;
    font-weight: inherit;
    height: auto;
    padding: 0;
  }
}
/* ---------------------------------------------------------------------------
//  共通
--------------------------------------------------------------------------- */
.sec {
  margin-top: 8rem;
}
.ttl01 {
  border-bottom: solid .4rem #a3ba00;
  font-size: 2.4rem;
  font-weight: bold;
  margin-bottom: 3rem;
  padding-bottom: 1rem;
}
.ttl02 {
  border-left: solid 1rem #a3ba00;
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1.6rem;
  padding-left: 1rem;
}
p + .ttl02 {
  margin-top: 4rem;
}
p + .img {
  margin-top: 4rem;
}
.dl01 {
  display: flex;
  width: 100%;
}
.dl01 + .dl01 {
  border-top: 1px solid #ccc;
}
.dl01 dt {
  font-weight: 500;
  padding: 2rem;
  width: 16rem;
}
.dl01 dd {
  padding: 2rem;
  width: calc(100% - 16rem);
}
.dl01 dd .bnrs {
  display: flex;
  gap: 2rem;
}
.dl01 dd .bnrs .bnr {
  width: 10rem;
}
@media screen and (max-width: 768px) {
  .sec {
    margin-top: 6rem;
  }
  .ttl01 {
    font-size: 1.8rem;
  }
  .ttl02 {
    font-size: 1.6rem;
  }
  p + .ttl02 {
    margin-top: 3rem;
  }
  p + .img {
    margin-top: 3rem;
  }
  .dl01 {
    display: block;
    padding: 1rem 0;
  }
  .dl01 dt {
    font-weight: bold;
    padding: 0;
    width: 100%;
  }
  .dl01 dd {
    margin-top: .5rem;
    padding: 0;
    width: 100%;
  }
  .dl01 dd .bnrs {
    gap: .5rem;
  }
  .dl01 dd .bnrs .bnr {
    width: calc((100% - 1rem) / 3);
  }
}
/* ---------------------------------------------------------------------------
//  fv
--------------------------------------------------------------------------- */
.fv {
  background-image: url(../img/fv.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}
.fv::before {
  background: #000;
  content: '';
  height: 100%;
  mix-blend-mode: multiply;
  opacity: .7;
  position: absolute;
  width: 100%;
}
.fv .wrap {
  align-items: center;
  aspect-ratio: 4/1;
  color: #fff;
  display: flex;
  font-size: 4rem;
  justify-content: center;
  position: relative;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .fv .wrap {
    aspect-ratio: 2/1;
    font-size: 2rem;
  }
}
/* ---------------------------------------------------------------------------
//  sec_greeting
--------------------------------------------------------------------------- */
.sec_greeting .profile {
  align-items: center;
  background: #f7f7f7;
  display: flex;
  gap: 4rem;
  margin: 0 auto;
  margin-top: 4rem;
  padding: 4rem;
}
.sec_greeting .profile .img {
  width: calc((100% - 4rem) / 2);
}
.sec_greeting .profile .txt {
  width: calc((100% - 4rem) / 2);
}
.sec_greeting .profile .txt .name {
  font-size: 2.4rem;
  font-weight: 500;
}
.sec_greeting .profile .txt ul {
  display: flex;
  flex-direction: column;
  margin-top: 1rem;
}
.sec_greeting .profile .txt ul li {
  display: flex;
  font-size: 1.8rem;
  gap: .5rem;
  line-height: 1.75;
}
.sec_greeting .profile .txt ul li::before {
  content: '■';
}
@media screen and (max-width: 768px) {
  .sec_greeting .profile {
    flex-direction: column;
    gap: 1rem;
    margin-top: 3rem;
    padding: 2rem 1rem;
  }
  .sec_greeting .profile .img {
    width: 100%;
  }
  .sec_greeting .profile .txt {
    width: 100%;
  }
  .sec_greeting .profile .txt .name {
    font-size: 1.8rem;
  }
  .sec_greeting .profile .txt ul {
    display: flex;
    flex-direction: column;
    margin-top: 0;
  }
  .sec_greeting .profile .txt ul li {
    font-size: 1.4rem;
    gap: .2rem;
  }
}
/* ---------------------------------------------------------------------------
//  sec_report
--------------------------------------------------------------------------- */
.sec_report .profile {
  align-items: center;
  background: #f7f7f7;
  display: flex;
  flex-wrap: wrap;
  gap: 4rem;
  margin: 0 auto;
  margin-top: 4rem;
  padding: 4rem;
}
.sec_report .profile .head p {
  font-size: 2rem;
}
.sec_report .profile .img {
  width: calc((100% - 4rem) / 2);
}
.sec_report .profile .txt {
  width: calc((100% - 4rem) / 2);
}
.sec_report .profile p strong {
  font-size: 2rem;
  font-weight: bold;
}
.sec_report .profile .txt ul {
  display: flex;
  flex-direction: column;
  margin-top: 2rem;
}
.sec_report .profile .txt ul li {
  display: flex;
  font-size: 1.8rem;
  gap: .2rem;
  line-height: 1.75;
}
.sec_report .profile .txt ul li::before {
  content: '■';
}
.sec_report .profile .txt ul + p {
  margin-top: 2rem;
}
.sec_report .profile .bottom {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .sec_report .profile {
    flex-direction: column;
    gap: 1rem;
    margin-top: 3rem;
    padding: 2rem 1rem;
  }
  .sec_report .profile .head p {
    font-size: 1.4rem;
  }
  .sec_report .profile .img {
    width: 100%;
  }
  .sec_report .profile .txt {
    width: 100%;
  }
  .sec_report .profile p strong {
    font-size: 1.6rem;
  }
  .sec_report .profile .txt ul {
    margin-top: 1rem;
  }
  .sec_report .profile .txt ul li {
    font-size: 1.4rem;
  }
  .sec_report .profile .txt ul + p {
    margin-top: 1rem;
  }
  .sec_report .profile .bottom {
    margin-top: 2rem;
  }
}
/* ---------------------------------------------------------------------------
//  sec_info
--------------------------------------------------------------------------- */
.sec_info .flex {
  background: #f7f7f7;
  display: flex;
  flex-wrap: wrap;
  gap: 4rem;
  margin: 0 auto;
  margin-top: 4rem;
  padding: 4rem;
}
.sec_info .flex .left {
  width: calc((100% - 4rem) / 2);
}
.sec_info .flex .right {
  width: calc((100% - 4rem) / 2);
}
iframe {
  height: 100%;
  width: 100%;
}
.sec_info .flex .left .dl01 dt {
  width: 12rem;
}
.sec_info .flex .left .dl01 dd {
  width: calc(100% - 12rem);
}
@media screen and (max-width: 768px) {
  .sec_info .flex {
    gap: 0;
    margin-top: 0;
    padding: 2rem 1rem;
  }
  .sec_info .flex .left {
    width: 100%;
  }
  .sec_info .flex .right {
    height: 30rem;
    width: 100%;
  }
  iframe {
    height: 100%;
    width: 100%;
  }
  .sec_info .flex .left .dl01 dt {
    width: 100%;
  }
  .sec_info .flex .left .dl01 dd {
    width: 100%;
  }
  .sec_info .flex .bottom {
    margin-top: 3rem;
  }
}
/* ---------------------------------------------------------------------------
//  footer_sec01
--------------------------------------------------------------------------- */
.footer_sec01 {
  background: #334b34;
  margin-top: 12rem;
}
.footer_sec01 .wrap01 {
  align-items: center;
  display: flex;
  justify-content: space-between;
  padding: 4rem 0;
}
.footer_sec01 .wrap01 .logo {
  width: 35rem;
}
.footer_sec01 .wrap01 .btns {
  display: flex;
  gap: 1rem;
}
.footer_sec01 .wrap01 .btns .btn {
  align-items: center;
  background: #fff;
  border-radius: .8rem;
  color: #fff;
  color: #334b34;
  display: flex;
  font-weight: 500;
  height: 4rem;
  justify-content: center;
  width: 25rem;
}
.footer_sec01 .wrap01 .btns .btn:hover {
  opacity: .7;
}
.footer_sec01 .wrap01 .btns .btn01 {
  font-size: 2rem;
}
@media screen and (max-width: 768px) {
  .footer_sec01 {
    margin-top: 8rem;
  }
  .footer_sec01 .wrap01 {
    flex-direction: column;
    padding: 4rem 2rem 6rem;
  }
  .footer_sec01 .wrap01 .logo {
    width: 28rem;
  }
  .footer_sec01 .wrap01 .btns {
    margin-top: 2rem;
  }
  .footer_sec01 .wrap01 .btns .btn {
    height: 3rem;
    width: 20rem;
  }
  .footer_sec01 .wrap01 .btns .btn:hover {
    opacity: .7;
  }
  .footer_sec01 .wrap01 .btns .btn01 {
    border-radius: .4rem;
    border-radius: .8rem;
    font-size: 1.4rem;
    height: 3rem;
    padding: 0 2rem;
    position: fixed;
    right: 4.7rem;
    top: .85rem;
    white-space: nowrap;
    width: 11.5rem;
    z-index: 1000;
  }
  /* .footer_sec01 .wrap01 .btns .btn01 span{
  align-items: center;
  background: #fff;
  border-radius: .8rem;
  color: #fff;
  color: #334b34;
  display: flex;
  font-weight: 500;
  height: 3rem;
  justify-content: center;
  width: 20rem;
  font-size: 1.6rem;
} */
}
/* ---------------------------------------------------------------------------
//  to_top
--------------------------------------------------------------------------- */
.to_top {
  align-items: center;
  background: #334b34;
  border-radius: 100%;
  bottom: 2rem;
  color: #fff;
  display: block;
  display: flex;
  font-size: 1.4rem;
  height: 7.6rem;
  justify-content: center;
  line-height: 1.4;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  right: 2rem;
  text-align: center;
  transition: .3s;
  width: 7.6rem;
  z-index: 10;
}
.to_top.active {
  opacity: 1;
  pointer-events: all;
}
@media screen and (max-width: 768px) {
  .to_top {
    font-size: 1rem;
    height: 5rem;
    width: 5rem;
  }
}

/* ---------------------------------------------------------------------------
//  その他
--------------------------------------------------------------------------- */
.forSP {
  display: none;
}
@media screen and (max-width:768px) {
  .forSP {
    display: block;
  }
  .forPC {
    display: none;
  }
}
