@charset "utf-8";

:root {
  /* pc_font */
  --pc_lger: clamp(35px, 1vw, 50px);
  --pc_lg: clamp(25px, 1vw, 50px);
  --pc_middle: clamp(16px, 1vw, 18px);
  --pc_small: clamp(13px, 1vw, 16px);
  --pc_smaller: clamp(12px, 1vw, 12px);
  /* phone_font */
  --phone_lg: clamp(35px, 1vw, 50px);
  --phone_middle: clamp(20px, 1vw, 25px);
  --phone_small: clamp(13px, 1vw, 16px);
  --phone_smaller: clamp(12px, 1vw, 12px);
  /* font_color */
  --color_black: #333;
  --color_white: #fff;
  --color_green: #416e07;
  --linkColor: red;
  --linkHover: #06c;
}

/*------------------------------------------------------------------------

初期設定

----------------------------------------------------------------------------*/
html,
body,
div,
p,
h1,
h2,
h3,
h4,
ul,
li,
dl,
dt,
dd,
img,
iframe,
ol,
aside {
  margin: 0;
  padding: 0;
  /*font-family: 'arial' ;*/
  /*font-size: 100%;*/
  color: var(--color_black);
}

html {
  /*font-size: 62.5%;*/
  /* 16px * 62.5% = 10px */
  width: 100%;
  /* max-width: 1440px; */
  margin: 0 auto;
  box-sizing: border-box;
  font-feature-settings: "palt";
  overflow: scroll;
}

body {
  /* max-width: 1440px; */
  /* min-height: 100vh; */
  color: var(--color_black);
  /* RGB */
  /* font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif; */
  font-weight: 500;
  font-size: 1.6em;
  line-height: 1.5;
  /* text-align: center; */
}

@media screen and (max-width: 390px) {
  html,
  body {
    max-width: 390px;
  }
}

.header {
  width: 100%;
  background-color: var(--color_white);
  position: fixed;
  border-bottom: 3px solid var(--color_green);
  top: 0;
  left: 0;
  z-index: 999;
}

.wrapper {
  display: flex;
  flex-direction: column;
}

.wrapper > div:first-child {
  padding: 15px 15px;
}

@media screen and (max-width: 390px) {
  .wrapper {
    width: 100%;
    padding: 15px 10px;
    background-color: var(--color_green);
    display: inline-block;
    /* display: flex;
        flex-direction: row;
        justify-content: space-around;
        align-items: center; */
  }

  .wrapper > div:first-child {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: unset;
    padding: 0;
  }

  /* .wrapper div div:first-child {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-around;
    } */
}

h1 {
  /* font-size: 33px; */
  font-weight: bold;
  font-size: var(--pc_lger);
  line-height: 0.9;
}

h1 a {
  color: var(--color_black);
}

h1 a span {
  font-size: var(--pc_middle);
  margin: 0 0 -10px;
}

@media screen and (max-width: 390px) {
  h1 {
    font-size: var(--phone_lg);
    z-index: 9999;
  }

  h1 a {
    font-size: var(--phone_middle);
    color: var(--color_white);
  }

  h1 a span {
    font-size: var(--phone_small);
  }

  h4 {
    font-size: var(--phone_middle);
  }
}

ul {
  list-style: none;
}

a {
  color: var(--linkColor);
  cursor: pointer;
  text-decoration: none;
}

a:hover {
  color: var(--linkHover);
}

img {
  border: none;
  vertical-align: bottom;
  /* object-fit: cover; */
}

.clearfix {
  zoom: 1;
}

.clearfix:after {
  content: "";
  display: block;
  clear: both;
  width: 0px;
  height: 0px;
  visibility: hidden;
}

.nav ul {
  display: flex;
  justify-content: right;
}

.nav ul li {
  width: calc(100% / 5);
  background-color: var(--color_green);
  padding: 5px;
  text-align: center;
  border-left: 1px solid #fff;
  border-right: 1px solid #fff;
}
.nav ul li:last-of-type {
  border-left: none;
}

.nav ul li a {
  font-size: var(--pc_middle);
  color: var(--color_white);
}

.contents {
  max-width: 1000px;
  margin: 0 auto;
}

.img-box {
  width: 80%;
  margin: 40px auto;
}
.img-box_sm {
  width: 40%;
  margin: 20px auto;
}
.img-box img,
.img-box_sm img {
  width: 100%;
}

@media screen and (max-width: 390px) {
  .nav ul li a {
    font-size: var(--phone_middle);
  }
}

.address {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

.address p {
  font-size: var(--pc_middle);
}

@media screen and (max-width: 390px) {
  .address {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
  }

  .address p {
    color: var(--color_white);
    font-size: var(--phone_small);
    z-index: 9999;
  }
}

.nav_phone {
  display: none;
}

@media screen and (max-width: 390px) {
  .nav_pc {
    display: none;
  }

  .nav_phone {
    display: flex;
    flex-direction: column;
    z-index: 9999;
  }

  .nav_phone .open {
    position: absolute;
    top: 50%;
    right: 15px;
  }

  .nav_phone .open span {
    width: 40px;
    border-top: solid 5px var(--color_white);
    color: var(--color_white);
    position: absolute;
    z-index: 999999;
  }

  .nav_phone .open span:first-child {
    top: 0;
    right: 0;
  }

  .nav_phone .open span:nth-child(2) {
    position: absolute;
    top: 10px;
    right: 0;
  }

  .nav_phone .open span:last-child {
    position: absolute;
    top: 20px;
    right: 0;
  }

  .nav_phone .open span.close:first-child {
    transform: rotate(45deg);
  }

  .nav_phone .open span.close:last-child {
    position: absolute;
    top: 0;
    transform: rotate(-45deg);
  }

  .nav_phone .open span.close:nth-child(2) {
    display: none;
  }

  .nav_phone .hum_nav {
    /* height: 100vh; */
    /* padding: 5px; */
    position: relative;
    background-color: var(--color_green);
    z-index: 99999;
  }

  .hum_nav ul {
    width: 100%;
    padding: 10px;
    /* float: left; */
    display: flex;
    flex-direction: column;
  }

  .hum_nav ul li a {
    color: var(--color_white);
  }

  .hide {
    display: none;
  }
}

.tel_btn {
  width: 220px;
  border: solid 3px var(--color_green);
  border-radius: 0;
  margin-top: 10px;
  transition: 0.5s;
}

.tel_btn:hover {
  opacity: 0.5;
}

.tel_btn a:hover {
  color: var(--color_black);
}

.tel {
  color: var(--color_black);
  font-size: var(--pc_middle);
}

.map > .tel_btn {
  margin: 0 auto;
  display: block;
  background-color: var(--color_green);
}

.map > .tel_btn a {
  color: var(--color_white);
}

@media screen and (max-width: 390px) {
  .tel {
    color: var(--color_white);
    font-size: var(--phone_middle);
  }

  .tel_btn {
    width: 220px;
    border: solid 3px var(--color_white);
    border-radius: 0;
    background-color: var(--color_green);
  }

  .tel_btn:hover {
    border-radius: 15px;
  }

  .map > .tel_btn {
    margin: 0 auto;
    display: block;
  }
}

.concept {
  padding: 50px;
  margin: 0 auto;
  text-align: center;
}

.concept div:first-child {
  border-bottom: solid 1px var(--color_black);
  margin: 0 0 15px 0;
}

.concept div h2 {
  width: 80%;
  color: var(--color_black);
  font-size: var(--pc_middle);
  margin: 0 auto;
}

.concept p {
  color: var(--color_black);
  font-size: var(--pc_middle);
  line-height: 3;
}

.concept p span {
  font-weight: bolder;
}

.concept div span {
  color: var(--color_black);
  font-size: var(--pc_lg);
}

@media screen and (max-width: 390px) {
  .concept {
    padding: 30px;
  }

  .concept div h2 {
    font-size: var(--phone_middle);
  }

  .concept div h2 span::after {
    content: "\A";
    white-space: pre;
  }

  .concept p {
    font-size: var(--phone_middle);
  }

  .concept p span::after {
    content: "\A";
    white-space: pre;
  }
}

.footer {
  width: 100%;
  clear: both;
  text-align: center;
  margin: 50px 0 0 0;
}

hr {
  width: 100%;
  clear: both;
  border: solid 5px var(--color_green);
}

.copy {
  clear: both;
  padding-top: 10px;
}
