@charset "UTF-8";
html {
  width: 100%;
}
body {
  *font-size: small;
  *font: x-small;
  font-size: 13px;
  color: #333333;
  line-height: 140%;
  font-family: "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  text-align: left;
  width: 100%;
  margin: 0px;
  padding: 0px;
  -webkit-text-size-adjust: 100%;
}
@font-face {
  font-family: "Yu Gothic";
  src: local("Yu Gothic Medium");
  font-weight: 100;
}
@font-face {
  font-family: "Yu Gothic";
  src: local("Yu Gothic Medium");
  font-weight: 200;
}
@font-face {
  font-family: "Yu Gothic";
  src: local("Yu Gothic Medium");
  font-weight: 300;
}
@font-face {
  font-family: "Yu Gothic";
  src: local("Yu Gothic Medium");
  font-weight: 400;
}
@font-face {
  font-family: "Yu Gothic";
  src: local("Yu Gothic Bold");
  font-weight: bold;
}
#wrap {
  text-align: left;
  overflow: hidden;
  background-color: #fff;
}
h1, h2, h3, h4, h5, p, ul, ol, li, img, table, th, td, dl, dt, dd, figure {
  margin: 0px;
  padding: 0px;
  font-size: 14px;
}
li {
  list-style-type: none;
}
table {
  border-collapse: collapse;
}
a {
  cursor: pointer;
  color: #333;
  text-decoration: none;
  transition: opacity 0.2s ease-out;
}
a:hover {
  opacity: .7;
  text-decoration: none;
}
a {
  -webkit-tap-highlight-color: transparent;
}
img {
  vertical-align: top;
  max-width: 100%;
  height: auto;
  -webkit-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  backface-visibility: hidden;
}
a img {
  vertical-align: bottom;
  -webkit-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  backface-visibility: hidden;
}
input, textarea, select, button, label {
  outline: none;
  -webkit-tap-highlight-color: transparent;
}
:focus {
  outline: 0;
  border-color: orange;
}
.spOnly {
  display: none;
}
:root {
  --main-color: #00AFDE;
}
@media screen and (max-width: 750px) {
  .spOnly {
    display: block !important;
  }
  .pcOnly {
    display: none !important;
  }
}


/* footstepBox
-----------------------------------------------*/
.footstepBox {
  font-size: 10px;
  padding-top: 15px;
  padding-left: 20px;
  padding-right: 20px;
  width: 100%;
  max-width: 1160px;
  box-sizing: border-box;
}
.footstepBox a:link {
  color: #333;
}


/* main
-----------------------------------------------*/
#main {
  position: relative;
  max-width: 1120px;
  width: 100%;
  margin: 10px auto 0;
  padding-bottom: 15px;
}
#main h1 {
  position: absolute;
  left: 0;
  top: 50%;
  z-index: 2;
  transform: translateY(calc(-50% - 1rem));
  text-align: center;
  width: 100%;
  font-size: 32px;
  color: #fff;
  font-weight: bold;
  line-height: 1.5;
}
.mainSlider {
  position: relative;
  padding-bottom: 18px;
}
.mainSlider .slider-item {
  width: 100%;
  height: 400px;
  text-align: center;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.mainSlider .slider-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  background: rgba(0,0,0,.1);
  width: 100%;
  height: 100%;
}
.mainSlider .mainSlide01 {
  background-image: url("../images/img_mainSlider_01.jpg");
}
.mainSlider .mainSlide02 {
  background-image: url("../images/img_mainSlider_02.jpg");
}
.mainSlider .mainSlide03 {
  background-image: url("../images/img_mainSlider_03.jpg");
}
.mainSlider .mainSlide04 {
  background-image: url("../images/img_mainSlider_04.jpg");
}
.mainSlider .slick-dots {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 10px;
}
.mainSlider .slick-dots button {
  color: transparent;
  outline: none;
  width: 56px;
  height: 4px;
  display: block;
  background: #001a2c;
  border: none;
  cursor: pointer;
}
.mainSlider .slick-dots .slick-active button {
  background: #00afdd;
}
@media screen and (max-width: 750px) {
  #main h1 {
    font-size: 24px;
  }
  .mainSlider .slider-item {
    height: 250px;
  }
}


/* section
-----------------------------------------------*/
section {
  padding: 40px 40px;
}
section,
section * {
  box-sizing: border-box;
}
section .inner {
  max-width: 1000px;
  margin: 0 auto;
}
section .ttl {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
section .ttl h2 {
  color: var(--main-color);
  font-size: 16px;
  line-height: 1.5;
}
section .ttl h2 span {
  font-family: "Oswald", sans-serif;
  font-size: 18px;
  font-weight: 400;
}
section .ttl p {
  font-size: 32px;
  font-weight: bold;
  line-height: 1.5;
}
section .col2 {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
section .col2 .col {
  display: flex;
  align-items: center;
  gap: 40px;
}
section .col2 .col:nth-child(even) {
  flex-direction: row-reverse;
}
section .col2 .col .img {
  width: 50%;
}
section .col2 .col .txt {
  width: 50%;
}
section .col2 .col .txtInner {
  max-width: 375px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
section .col2 .col .txt .badge span {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 120px;
  height: 36px;
  line-height: 1;
  color: var(--main-color);
  font-size: 14px;
  border: 1px solid var(--main-color);
  border-radius: 36px;
  font-weight: bold;
}
section .col2 .col .txt h3 {
  font-size: 22px;
  line-height: 1.2;
}
section .col2 .col .txt p {
  font-size: 13px;
  line-height: 1.7;
}
@media screen and (max-width: 1100px) {
  section .ttl p br {
    display: none;
  }
}
@media screen and (max-width: 750px) {
  section {
    padding: 40px 20px;
  }
  section .ttl h2 {
    font-size: 14px;
  }
  section .ttl h2 span {
    font-size: 16px;
  }
  section .ttl p {
    font-size: 24px;
  }
  section .col2 {
    display: flex;
    flex-direction: column;
    gap: 40px;
  }
  section .col2 .col {
    flex-direction: column;
    gap: 20px;
  }
  section .col2 .col:nth-child(even) {
    flex-direction: column;
  }
  section .col2 .col .img {
    width: 100%;
  }
  section .col2 .col .txt {
    width: 100%;
  }
  section .col2 .col .txtInner {
    max-width: 100%;
    gap: 15px;
  }
  section .col2 .col .txt .badge span {
    width: 120px;
    height: 36px;
    line-height: 1;
    font-size: 14px;
  }
  section .col2 .col .txt h3 {
    font-size: 18px;
  }
  section .col2 .col .txt p {
    font-size: 13px;
  }
}


/* anzen
-----------------------------------------------*/
#anzen .inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
#anzen .noteBox {
  background: #F2F7FB;
  display: flex;
  gap: 40px;
  padding: 18px 24px;
}
#anzen .noteBox .col {
  display: flex;
  gap: 16px;
  align-items: center;
}
#anzen .noteBox .col .img {
  width: 180px;
  min-width: 180px;
}
#anzen .noteBox .col .txt {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
#anzen .noteBox .col .txt h4 {
  font-size: 16px;
  line-height: 1.5;
}
#anzen .noteBox .col .txt p {
  font-size: 13px;
  line-height: 1.6;
}
@media screen and (max-width: 750px) {
  #anzen .noteBox {
    flex-direction: column;
    gap: 20px;
  }
  #anzen .noteBox .col {
    flex-direction: column;
    gap: 15px;
  }
  #anzen .noteBox .col .img {
    width: 100%;
    min-width: 100%;
    text-align: center;
  }
  #anzen .noteBox .col .txt {
    width: 100%;
  }
}


/* kaiteki
-----------------------------------------------*/
#kaiteki .inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
#kaiteki .noteBox {
  background: #F2F7FB;
  padding: 18px 24px;
}
#kaiteki .noteBox .col {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-direction: row-reverse;
}
#kaiteki .noteBox .col .img {
  width: 336px;
  min-width: 336px;
}
#kaiteki .noteBox .col .txt {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
#kaiteki .noteBox .col .txt h4 {
  font-size: 16px;
  line-height: 1.5;
}
#kaiteki .noteBox .col .txt p {
  font-size: 13px;
  line-height: 1.6;
}
@media screen and (max-width: 750px) {
  #kaiteki .noteBox .col {
    flex-direction: column;
    gap: 20px;
  }
  #kaiteki .noteBox .col .img {
    width: 280px;
    min-width: 280px;
  }
}


/* kouritu
-----------------------------------------------*/
#kouritu .inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
#kouritu .noteBox {
  background: #F2F7FB;
  padding: 16px 24px;
  border: 3px solid var(--main-color);
}
#kouritu .noteBox .col {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-direction: row-reverse;
}
#kouritu .noteBox .col .img {
  width: 300px;
  height: 0;
  min-width: 300px;
}
#kouritu .noteBox .col .img img {
  transform: translateY(-50%);
}
#kouritu .noteBox .col .txt {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
#kouritu .noteBox .col .txt h4 {
  font-size: 16px;
  line-height: 1.5;
}
#kouritu .noteBox .col .txt p {
  font-size: 13px;
  line-height: 1.6;
}
#kouritu .noteBox .col .txt .btn a {
  background: var(--main-color);
  color: #fff;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 180px;
  height: 40px;
  border-radius: 4px;
  font-weight: bold;
}
@media screen and (max-width: 750px) {
  #kouritu .noteBox .col {
    flex-direction: column;
    gap: 20px;
  }
  #kouritu .noteBox .col .img {
    width: 250px;
    height: auto;
    min-width: 250px;
  }
  #kouritu .noteBox .col .img img {
    transform: translateY(0);
  }
}


/* eco
-----------------------------------------------*/
#eco {
  padding-bottom: 60px;
}
#eco .inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
}


/* contactBox
-----------------------------------------------*/
.contactBox {
  padding: 35px 50px;
  border: 5px solid #003557;
  color: #003557;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 40px;
}
.contactBox .txt {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.contactBox .txt .contactTtl {
  font-size: 20px;
  font-weight: bold;
  line-height: 1.5;
}
.contactBox .txt .contactTel {
  font-size: 14px;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 15px;
}
.contactBox .txt .contactTel a {
  font-size: 24px;
  font-weight: bold;
  color: #003557;
  display: flex;
  align-items: center;
  gap: 10px;
}
.contactBox .txt .contactTel a img {
  width: 20px;
}
.contactBox .btn {
  display: flex;
  gap: 30px;
}
.contactBox .btn .col {
  flex: 1;
}
.contactBox .btn .col a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  background: #003557;
  color: #fff;
  font-size: 20px;
  height: 72px;
  border-radius: 4px;
}
@media screen and (max-width: 1023px) {
  .contactBox .txt {
    flex-direction: column;
    justify-content: center;
  }
  .contactBox .btn {
    flex-direction: column;
    gap: 10px;
  }
}
@media screen and (max-width: 750px) {
  .contactBox {
    padding: 20px 20px;
  }
  .contactBox .btn .col a img {
    width: 25px;
  }
  .contactBox .txt .contactTtl {
    text-align: center;
  }
  .contactBox .txt .contactTel {
    flex-direction: column;
    gap: 10px;
  }
  .contactBox .txt .contactTel a {
    gap: 10px;
  }
  .contactBox .btn {
    gap: 8px;
  }
  .contactBox .btn .col a {
    gap: 15px;
    font-size: 16px;
    height: 65px;
  }
}


/* lineup
-----------------------------------------------*/
#lineup {
  background: #F2F7FB;
  padding-bottom: 60px;
}
#lineup .inner {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
#lineup .lineupBox {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr 1fr 1fr;
}
#lineup .lineupBox .col {
  background: #fff;
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.1);
  border-radius: 6px;
  padding: 16px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
#lineup .lineupBox .col .txt {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
#lineup .lineupBox .col .txt h3 {
  font-size: 20px;
  line-height: 1.2;
}
#lineup .lineupBox .col .txt p {
  font-size: 13px;
  line-height: 1.5;
}
#lineup .lineupBox .col .btn a {
  background: var(--main-color);
  color: #fff;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 180px;
  height: 40px;
  border-radius: 4px;
  font-weight: bold;
}
@media screen and (max-width: 750px) {
  #lineup .lineupBox {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 550px) {
  #lineup .lineupBox {
    grid-template-columns: 1fr;
  }
}


/* photo
-----------------------------------------------*/
#photo {
  padding-bottom: 60px;
}
#photo .inner {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
#photo .photoBox {
  display: grid;
  gap: 40px 20px;
  grid-template-columns: 1fr 1fr 1fr;
}
#photo .btn {
  width: 100%;
  margin-top: 30px;
  text-align: center;
}
#photo .btn a {
  background: var(--main-color);
  color: #fff;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  font-weight: bold;
  padding: 12px 15px;
  height: 48px;
}
@media screen and (max-width: 750px) {
  #photo {
    padding-bottom: 0;
  }
  #photo .photoBox {
    gap: 10px;
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 550px) {
  #photo .photoBox {
    grid-template-columns: 1fr;
  }
}
