@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Kaisei+Decol:wght@700&family=Noto+Serif+JP:wght@400;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Kaisei+Decol:wght@700&family=Noto+Serif+JP:wght@400;700&display=swap");
.header {
  position: fixed;
  width: 100%;
  max-width: 100%;
  z-index: 100;
  background-color: #FFFFFF;
  top: 0;
  left: 0;
}
@media screen and (max-width: 767px) {
  .header {
    height: 60px;
  }
}

.header-inner {
  align-items: center;
  display: flex;
  justify-content: space-between;
  padding: 0 15px;
}
@media screen and (max-width: 767px) {
  .header-inner {
    height: inherit;
  }
}

.logo {
  width: 120px;
  margin-right: auto;
}
.logo img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}

.header-menus {
  display: flex;
}
@media screen and (max-width: 767px) {
  .header-menus {
    display: none;
  }
}

.header-item {
  margin-left: 3rem;
}
.header-item a {
  color: #333333;
  height: 70px;
  line-height: 70px;
  display: block;
  transition: all 0.3s;
}
.header-item a:hover {
  color: #3EA1D1;
}

body {
  font-family: "Noto Serif JP", serif;
  color: #333333;
}
body.scroll-lock {
  position: fixed;
  width: 100%;
  height: 100%;
}

a {
  text-decoration: none;
}

* {
  box-sizing: border-box;
}

.section {
  margin-top: 120px;
}

.section-title {
  font-size: 2.5rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .section-title {
    font-size: 30px;
  }
}
.section-title span {
  position: relative;
  padding-bottom: 16px;
  display: inline-block;
}
.section-title span:after {
  content: "";
  width: 60px;
  height: 1px;
  background-color: #3EA1D1;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%);
}

@media screen and (min-width: 768px) {
  .main {
    margin-top: 70px;
  }
}
@media screen and (max-width: 767px) {
  .main {
    padding-top: 60px;
  }
}

@media screen and (min-width: 768px) {
  .main-body {
    position: relative;
    width: inherit;
  }
}
@media screen and (max-width: 767px) {
  .main-body {
    display: flex;
    flex-direction: column-reverse;
  }
}

@media screen and (min-width: 768px) {
  .main-left {
    background-color: #FFFFFF;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    z-index: 1;
  }
}

@media screen and (min-width: 768px) {
  .main-text {
    margin-left: 5vw;
    text-align: center;
    padding: 32px;
  }
}
@media screen and (max-width: 767px) {
  .main-text {
    padding: 0;
    margin-top: 40px;
    text-align: center;
  }
  .main-text br {
    display: none;
  }
}
.main-text h2 {
  font-size: 26px;
  color: #333333;
  line-height: 1.8333333333;
}
.main-text p {
  color: #333333;
  line-height: 1.6875;
  margin-top: 32px;
}

@media screen and (min-width: 768px) {
  .main-right {
    padding-top: 55%;
    background-image: url(../img/site.jpg);
    background-position: center right;
    background-repeat: no-repeat;
    background-size: 82.5%;
  }
}
@media screen and (max-width: 767px) {
  .main-right {
    background-image: url(../img/site.jpg);
    padding-top: 120%;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
  }
}

@media screen and (max-width: 767px) {
  .produce {
    max-width: 340px;
    margin: auto;
  }
}

.produce-inner {
  padding: 0 20px;
  max-width: 980px;
  margin: auto;
}

.produce-body {
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .produce-body {
    margin-top: 48px;
  }
}

.produce-items {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .produce-items {
    display: block;
  }
}

@media screen and (min-width: 768px) {
  .produce-item {
    width: calc(33.3% - 26.6666666667px);
  }
  .produce-item:not(:last-child) {
    margin-right: 80px;
  }
}
@media screen and (max-width: 767px) {
  .produce-item {
    margin-top: 48px;
  }
  .produce-item:not(:first-child) {
    margin-top: 48px;
  }
}
.produce-item a {
  display: block;
  overflow: hidden;
}
.produce-item a:hover img {
  transform: translate(-50%, -50%) scale(1.1, 1.1);
}

.produce-img {
  overflow: hidden;
  position: relative;
  padding-top: 100%;
}
.produce-img img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transform: scale(1, 1);
  transition: transform 0.3s;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  height: 100%;
}

.produce-info {
  margin-top: 1.5rem;
}
.produce-info dt {
  font-size: 14px;
  color: #333333;
  line-height: 1.7142857143;
}
.produce-info dd {
  font-size: 14px;
  color: #989898;
  margin-top: 1rem;
}

.produce-btn {
  text-align: center;
  margin-top: 3rem;
}

.more-btn {
  width: 157px;
  border: 1px solid #3EA1D1;
  color: #3EA1D1;
  font-size: 14px;
  font-weight: bold;
  margin: auto;
  transition: all 0.5s ease 0s;
}
.more-btn a {
  text-decoration: none;
  color: #3EA1D1;
  display: block;
  padding: 1rem;
}
.more-btn a:hover {
  color: #FFFFFF;
}
.more-btn:hover {
  background-color: #3EA1D1;
}

.concept-body {
  display: flex;
  justify-content: space-between;
  margin-top: 64px;
}
@media screen and (max-width: 767px) {
  .concept-body {
    display: block;
  }
}

.concept-left {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .concept-left {
    width: 100%;
  }
}
.concept-left img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 30%;
     object-position: 50% 30%;
  aspect-ratio: 698/465;
}

.concept-right {
  width: 50%;
  align-self: center;
  padding-right: 15px;
  margin-left: 6.667%;
}
@media screen and (max-width: 767px) {
  .concept-right {
    padding: 2rem 0.75rem;
    width: 100%;
    margin: auto;
  }
}
.concept-right h3 {
  font-size: 20px;
  line-height: 1.7;
}
.concept-right p {
  margin-top: 40px;
  line-height: 1.6875;
}

.news-inner {
  width: 1120px;
  max-width: 100%;
  margin: auto;
}

.news-list {
  margin-top: 48px;
}

.news-item-link {
  display: block;
}
@media screen and (min-width: 768px) {
  .news-item-link {
    display: flex;
    padding: 24px 0;
    border-bottom: 1px solid #888888;
    overflow: hidden;
  }
  .news-item-link:hover img {
    transform: translate(-50%, -50%) scale(1.1, 1.1);
  }
}
@media screen and (max-width: 767px) {
  .news-item-link {
    padding: 24px 0;
    border-bottom: 1px solid #888888;
  }
}

@media screen and (max-width: 767px) {
  .news-item {
    max-width: 340px;
    margin: auto;
  }
  .news-item:not(:first-child) {
    margin-top: 24px;
  }
}

.news-item-header {
  flex: 0 0 260px;
}

.news-item-picture {
  position: relative;
  overflow: hidden;
  padding-top: 61.53%;
}
.news-item-picture img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
}

.news-item-body {
  padding: 0 15px;
  align-self: center;
  margin-left: 40px;
  flex: 0 1 100%;
}
@media screen and (max-width: 767px) {
  .news-item-body {
    margin-left: auto;
  }
}

.news-item-date {
  font-size: 14px;
  color: #333;
}
@media screen and (max-width: 767px) {
  .news-item-date {
    margin-top: 24px;
  }
}

.news-item-title {
  font-size: 18px;
  font-weight: bold;
  margin-top: 16px;
  color: #333;
}
@media screen and (max-width: 767px) {
  .news-item-title {
    line-height: 1.9285714286;
  }
}

.news-concept-body {
  display: flex;
  max-width: 1085px;
  margin: auto;
  padding: 0 15px;
}
@media screen and (max-width: 767px) {
  .news-concept-body {
    flex-direction: column-reverse;
  }
}

.news-item-text {
  margin-top: 24px;
  color: #888888;
  height: 50px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .news-item-text {
    line-height: 1.7142857143;
  }
}

.news-concept-text {
  width: 50%;
  align-self: center;
  margin-right: 6.777%;
}
@media screen and (max-width: 767px) {
  .news-concept-text {
    width: 100%;
    margin-right: 0;
  }
}

.news-concept-head {
  font-size: 1.75rem;
  line-height: 1.7142857143;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .news-concept-head {
    font-size: 1.25rem;
    margin-top: 2.5rem;
    line-height: 1.7;
  }
}

.news-concept-info {
  line-height: 1.6875;
}
@media screen and (max-width: 767px) {
  .news-concept-info {
    margin-top: 2rem;
    font-size: 14px;
    line-height: 1.7142857143;
  }
}

.news-concept-img {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .news-concept-img {
    width: 100%;
    margin-top: 40px;
  }
}
.news-concept-img img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media screen and (max-width: 767px) {
  .feature {
    max-width: 340px;
    margin: auto;
  }
}

.feature-inner {
  max-width: 980px;
  margin: auto;
}

.feature-items {
  margin-top: 60px;
}
@media screen and (min-width: 768px) {
  .feature-items {
    display: flex;
    justify-content: space-between;
  }
}
@media screen and (max-width: 767px) {
  .feature-items {
    display: block;
    margin: auto;
  }
}

.feature-item {
  box-shadow: 3px 3px 16px rgba(96, 96, 96, 0.16);
  overflow: hidden;
  background-color: #FFFFFF;
  margin: auto;
  margin-top: 48px;
  width: calc(33.3% - 26.6666666667px);
}
.feature-item :hover img {
  transform: scale(1.1, 1.1);
}
@media screen and (max-width: 767px) {
  .feature-item {
    width: 100%;
  }
}

.feature-item-link {
  display: block;
}

.feature-img img {
  aspect-ratio: 338/224;
  transition: transform 0.5s, scale 0.5s;
  -o-object-fit: cover;
     object-fit: cover;
}

.feature-item-text {
  padding: 24px 16px;
  line-height: 1.9285714286;
  text-align: center;
}

.feature-visual {
  background: url(../img/site2.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  position: relative;
  z-index: 1;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .feature-visual {
    margin-top: 160px;
  }
}
@media screen and (max-width: 767px) {
  .feature-visual {
    margin-top: 96px;
  }
}
.feature-visual:before {
  content: "";
  background-color: #000000;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 45%;
}

.feature-visual-area {
  max-width: 1280px;
  height: 478px;
  max-height: 100%;
  margin: auto;
  padding: 0 15px;
}
.feature-visual-area img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.feature-message {
  color: #FFFFFF;
  position: absolute;
  top: 50%;
  left: auto;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .feature-message {
    left: 0;
    top: 70%;
    padding: 0 4%;
    transform: translateY(-70%);
  }
}
.feature-message h3 {
  width: 374px;
  font-size: 22px;
  line-height: 1.6818181818;
}
@media screen and (max-width: 767px) {
  .feature-message h3 {
    width: 100%;
    font-size: 20px;
    line-height: 1.7;
  }
}
.feature-message p {
  width: 590px;
  line-height: 1.6875;
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .feature-message p {
    width: 100%;
    font-size: 14px;
    margin-top: 1rem;
    line-height: 1.7142857143;
  }
}

.footer {
  background-color: #F7F7F7;
}

.footer-inner {
  padding: 48px 20px;
}

.footer-logo {
  width: 120px;
  margin: auto;
}
.footer-logo img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.footer-body {
  text-align: center;
}

.footer-info {
  margin-top: 1.5rem;
  display: flex;
  justify-content: center;
  color: #333;
}
@media screen and (max-width: 767px) {
  .footer-info {
    display: block;
    font-size: 12px;
  }
}
.footer-info p:hover {
  opacity: 0.7;
}
.footer-info p:first-child {
  margin-right: 2rem;
}
@media screen and (max-width: 767px) {
  .footer-info p:first-child {
    margin-right: 0;
  }
}
@media screen and (max-width: 767px) {
  .footer-info p:nth-child(2n) {
    margin-top: 1rem;
  }
}
.footer-info p a {
  text-decoration: none;
}

.footer-sns-icon {
  margin-top: 2rem;
}

.sns-icons {
  display: flex;
  justify-content: center;
}

.sns-icon {
  margin-right: 40px;
}
.sns-icon:hover {
  opacity: 0.7;
}
.sns-icon:last-child {
  margin-right: 0;
}
.sns-icon a {
  color: #3EA1D1;
}

.footer-copy {
  margin-top: 1.5rem;
}
.footer-copy p {
  font-size: 14px;
  color: #888888;
}

input[type=text],
input[type=email],
textarea {
  width: 100%;
  border: 0;
  font-size: 16px;
  box-shadow: 5px 6px 15px rgba(0, 0, 0, 0.16);
}

input[type=text],
input[type=email] {
  resize: vertical;
  height: 40px;
}

.contact {
  background-image: url(../img/contact@2x.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .contact {
    padding-top: 72px;
    padding-bottom: 85px;
    margin-top: 225px;
  }
}
@media screen and (max-width: 767px) {
  .contact {
    margin-top: 96px;
    padding-bottom: 57px;
    padding-top: 57px;
  }
}

.contact-inner {
  width: 590px;
  max-width: 100%;
  margin: auto;
}
@media screen and (max-width: 767px) {
  .contact-inner {
    width: auto;
    padding: 0 15px;
  }
}

.section-title_blue {
  color: #3EA1D1;
}

.contact-form {
  text-align: center;
  margin-top: 60px;
}

.contact-check {
  font-size: 14px;
  position: relative;
  padding-left: 1rem;
}
.contact-check:before {
  content: "※";
  color: #E7728E;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 16px;
}

.form-item {
  display: flex;
  margin-top: 32px;
}
@media screen and (max-width: 767px) {
  .form-item {
    display: block;
    text-align: left;
  }
}

.form-item-input {
  flex: 0 0 320px;
  margin-left: 18px;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .form-item-input {
    margin-left: 0;
    margin-top: 3px;
  }
}

.form-item-title {
  flex: 0 1 100%;
  text-align: left;
  background-color: rgba(62, 161, 209, 0.7019607843);
  color: #fff;
  height: 40px;
  line-height: 40px;
  font-weight: bold;
  text-align: center;
  position: relative;
}
@media screen and (max-width: 767px) {
  .form-item-title {
    display: inline-block;
    padding: 0 20px;
    line-height: 32px;
    font-size: 14px;
    height: 32px;
  }
}
@media screen and (min-width: 768px) {
  .form-item-title:after {
    content: "";
    border-style: solid;
    border-width: 20px 0 20px 10px;
    border-color: transparent transparent transparent rgba(62, 161, 209, 0.7019607843);
    position: absolute;
    top: 50%;
    right: -10px;
    transform: translateY(-50%);
  }
}

.contact-title-inline {
  font-size: 12px;
  color: #E7728E;
  position: absolute;
  top: -5px;
  transform: translateY(0);
}

.form-label-input:checked + .contact-radio-part {
  background-color: rgba(62, 161, 209, 0.7019607843);
  color: #fff;
}
.form-label-input:focus + .contact-radio-part {
  outline: -webkit-focus-ring-color auto 1px;
}

.contact-label {
  position: relative;
}
.contact-label input[type=radio] {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

.contact-radio-part {
  width: 100%;
  height: 38px;
  line-height: 38px;
  background: #ffffff;
  color: rgba(62, 161, 209, 0.7019607843);
  min-width: 80px;
  text-align: center;
  display: inline-block;
}

.select-boxs {
  display: inline-flex;
  border-radius: 1px;
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.16);
  background: #FFFFFF;
}
@media screen and (max-width: 767px) {
  .select-boxs {
    margin-top: 4px;
  }
}

.privacy-content {
  margin-top: 33px;
}

.privacy-text a:focus-visible {
  outline: none;
}

.privacy-label {
  position: relative;
  padding-left: 8px;
}

.contact-privacy-part {
  transition: all 0.3s;
  display: inline-block;
  width: 22px;
  height: 22px;
  border: 1px solid rgba(62, 161, 209, 0.7019607843);
  position: absolute;
  top: 50%;
  left: -20px;
  transform: translateY(-50%);
}

.privacy-input {
  position: absolute;
  top: 0;
  left: 0%;
  opacity: 0;
}
.privacy-input:focus + .contact-privacy-part {
  outline: -webkit-focus-ring-color auto 1px;
}
.privacy-input:checked + .contact-privacy-part {
  width: 10px;
  border-top: 0;
  border-left: 0;
  color: rgba(62, 161, 209, 0.7019607843);
  transform: rotate(45deg);
  transition: 0.3s;
  top: 0;
  outline: none;
}

.privacy-btn {
  margin-top: 50px;
  text-align: center;
}

.btn-send {
  width: 137px;
  padding: 0.75rem;
  transition: all 0.3s ease 0s;
  margin: auto;
  text-align: center;
  border: 1px solid #3EA1D1;
  background: #fff;
  color: #3EA1D1;
  cursor: pointer;
}
.btn-send.-active {
  background: #3EA1D1;
  color: white;
}

.btn-send[disabled] {
  background: #ffffff;
  color: #3EA1D1;
  cursor: not-allowed;
}

.contact-message {
  text-align: center;
  margin-top: 60px;
  display: none;
}
.contact-message.-error {
  color: red;
}

.drawer {
  position: fixed;
  right: 15px;
  top: 20px;
  display: none;
  z-index: 101;
}
@media screen and (max-width: 767px) {
  .drawer {
    display: block;
  }
}

.drawer-btns {
  position: relative;
  height: 22px;
  width: 30px;
}

.btn {
  position: absolute;
  top: 20px;
  left: 15px;
  display: block;
  width: 30px;
  height: 2px;
  background: #3EA1D1;
  transition: all 0.3s ease 0s;
}

.drawer-btn1 {
  top: 0;
  left: 0;
}
.drawer-btn1.is-open {
  top: 50%;
  transform: translateY(-50%);
  transform: rotate(45deg);
}

.drawer-btn2 {
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.drawer-btn2.is-open {
  opacity: 0;
}

.drawer-btn3 {
  bottom: 0;
  left: 0;
}
.drawer-btn3.is-open {
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  transform: rotate(-45deg);
}

.drawer-content {
  position: fixed;
  top: 60px;
  right: 0;
  background: #3EA1D1;
  width: 270px;
  height: 100vh;
  transform: translateX(200%);
  transition: all 0.5s ease 0s;
  z-index: 300;
}
.drawer-content.is-open {
  transform: translateX(0%);
}

.drawer-menus {
  position: absolute;
  right: 15px;
  text-align: center;
}

.drawer-item {
  margin-top: 40px;
}
.drawer-item a {
  font-size: 18px;
  color: #FFFFFF;
}
.drawer-item:hover {
  opacity: 0.5;
}