@charset "UTF-8";
/*
Theme Name: そうあい
*/
/*******************************
Base
*******************************/
:root {
  scroll-padding: 100px;
  scroll-behavior: auto;
}

@media screen and (max-width: 768px) {
  :root {
    scroll-padding: 60px;
  }
}
body {
  font-family: "Zen Maru Gothic", sans-serif;
}

.main-wrapper {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/*******************************
Font
*******************************/
.mincho-regular {
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-style: normal;
}

.mincho-medium {
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  font-style: normal;
}

.mincho-semibold {
  font-family: "Shippori Mincho", serif;
  font-weight: 600;
  font-style: normal;
}

.mincho-bold {
  font-family: "Shippori Mincho", serif;
  font-weight: 700;
  font-style: normal;
}

.zen-maru-gothic-regular {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.zen-maru-gothic-medium {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.zen-maru-gothic-bold {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.zen-maru-gothic-black {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 900;
  font-style: normal;
}

/*******************************
Text
*******************************/
.text-blue {
  color: #48A1E6;
}

.text-skyblue {
  color: #BADEFA;
}

/*******************************
Link
*******************************/
a {
  color: #48A1E6;
  text-decoration: none;
}

.blue-btn {
  display: inline-block;
  text-align: center;
  background-color: #48A1E6;
  color: white;
  font-size: 32px;
  transition: all 0.4s;
}
.blue-btn:hover {
  transition: all 0.4s;
  background-color: #BADEFA;
}

.large-btn {
  width: 700px;
  padding: 1rem;
}

@media screen and (max-width: 768px) {
  .blue-btn {
    font-size: 24px;
  }
  .large-btn {
    width: 350px;
    padding: 0.5rem;
  }
}
/*******************************
Hover
*******************************/
.hov-up {
  transition: transform 0.3s;
}
.hov-up:hover {
  transform: scale(1.1);
  transition: transform 0.3s;
}

.under-line {
  padding-bottom: 5px;
  position: relative;
  transition: transform 0.3s;
}

.under-line::before {
  background: #48A1E6;
  content: "";
  width: 100%;
  height: 2px;
  position: absolute;
  left: 0;
  bottom: 0;
  transform-origin: right top;
  transform: scale(0, 1);
  transition: transform 0.3s;
}

.under-line:hover::before {
  transform-origin: left top;
  transform: scale(1, 1);
}

/*******************************
Width
*******************************/
.w-600px {
  max-width: 600px;
}

.w-800px {
  max-width: 800px;
}

.w-900px {
  max-width: 900px;
}

.w-1000px {
  max-width: 1000px;
}

.w-1200px {
  max-width: 1200px;
}

/*******************************
Margin
*******************************/
.mt-6rem {
  margin-top: 6rem;
}

.mb-6rem {
  margin-bottom: 6rem;
}

.mt-8rem {
  margin-top: 8rem;
}

.mb-8rem {
  margin-bottom: 8rem;
}

@media screen and (max-width: 880px) {
  .mt-6rem {
    margin-top: 4rem;
  }
  .mb-6rem {
    margin-bottom: 4rem;
  }
  .mt-8rem {
    margin-top: 6rem;
  }
  .mb-8rem {
    margin-bottom: 6rem;
  }
}
/*******************************
Padding
*******************************/
.pt-6rem {
  padding-top: 6rem;
}

.pb-6rem {
  padding-bottom: 6rem;
}

.pt-8rem {
  padding-top: 8rem;
}

.pb-8rem {
  padding-bottom: 8rem;
}

@media screen and (max-width: 880px) {
  .pt-6rem {
    padding-top: 4rem;
  }
  .pb-6rem {
    padding-bottom: 4rem;
  }
  .pt-8rem {
    padding-top: 6rem;
  }
  .pb-8rem {
    padding-bottom: 6rem;
  }
}
/*******************************
Others
*******************************/
.mask-white-top,
.mask-white-bottom {
  position: relative;
  overflow: hidden;
}

.mask-white-top::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 0;
  width: 100%;
  height: 150px;
  background-image: url("images/mask-top.svg");
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: top;
  z-index: 10;
}

.mask-white-bottom::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  height: 150px;
  background-image: url("images/mask-bottom.svg");
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: bottom;
  z-index: 10;
}

/* スマートフォンで表示 */
.sp-show,
.sp-br {
  display: none;
}

@media (max-width: 768px) {
  .sp-show {
    display: block !important;
  }
  .sp-br {
    display: inline-block !important;
  }
}
/* タブレットで表示 */
.tb-show,
.tb-br {
  display: none;
}

@media (max-width: 1380px) and (min-width: 769px) {
  .tb-show {
    display: block;
  }
  .tb-br {
    display: inline-block;
  }
}
/* PCで表示 */
.pc-show,
.pc-br {
  display: block;
}

@media (max-width: 768px) {
  .pc-show {
    display: none !important;
  }
  .pc-br {
    display: inline-block !important;
  }
}
/*******************************

*******************************/
a.contact-btn {
  width: 500px;
  height: 96px;
  padding: 0.75rem 40px;
  border: 1px solid #48A1E6;
}
a.contact-btn div {
  width: 400px;
  text-align: left;
  margin-bottom: 0;
  padding-left: 10px;
}
a.contact-btn div small {
  display: block;
  font-size: 0.45em;
  line-height: 1;
  padding-bottom: 5px;
}
a.contact-btn div span {
  display: block;
  font-size: 1em;
  line-height: 1;
}

@media screen and (max-width: 768px) {
  a.contact-btn {
    width: 100%;
    height: 76px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
  }
  a.contact-btn div {
    width: 90%;
  }
  a.contact-btn div span {
    font-size: 0.95em;
    white-space: nowrap;
  }
}
/*******************************
Header
*******************************/
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  height: 100px;
  background-color: rgba(186, 222, 250, 0.8);
}
.main-header .header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.main-header .header-content h1 {
  margin: 0;
  padding-left: 10px;
}
.main-header .header-content h1 a {
  color: black !important;
}
.main-header .header-content h1 a:hover {
  color: #48A1E6 !important;
}
.main-header .header-content .header-menu {
  display: flex;
  align-items: center;
}
.main-header .header-content .header-menu nav {
  font-size: 1.2rem;
  margin-right: 20px;
}
.main-header .header-content .header-menu nav a {
  font-weight: 600;
  padding-left: 5px;
  padding-right: 5px;
}
.main-header .phone-btn,
.main-header .mailform-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100px;
}
.main-header .phone-btn {
  background-color: #48A1E6;
  padding-left: 20px;
  padding-right: 20px;
}
.main-header .phone-btn img {
  transition: all 0.4s;
}
.main-header .phone-btn:hover img {
  transition: all 0.4s;
  transform: scale(1.05);
}
.main-header .mailform-btn {
  width: 100px;
  min-width: 100px;
  background-color: #BADEFA;
  font-size: 36px;
}
.main-header .hamburger-menu {
  display: none;
}

.breadcrumb {
  margin-top: 100px;
  margin-bottom: 0;
  background-color: rgb(255, 244, 230);
}

@media screen and (max-width: 1380px) {
  .main-header {
    height: 60px;
  }
  .main-header .header-content h1 {
    line-height: 60px;
  }
  .main-header .header-content h1 img {
    height: 40px;
  }
  .hamburger-menu {
    display: flex !important;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    z-index: 1000;
    height: 34px;
    margin-right: 10px;
  }
  .hamburger-menu span {
    width: 40px;
    height: 6px;
    background-color: #48A1E6;
    border-radius: 3px;
    transition: all 0.3s ease;
  }
  .hamburger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(10px, 10px);
  }
  .hamburger-menu.active span:nth-child(2) {
    opacity: 0;
  }
  .hamburger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(10px, -10px);
  }
  .header-menu {
    position: fixed;
    flex-direction: column;
    justify-content: flex-start;
    display: block;
    width: 100%;
    height: 100vh;
    top: 0;
    right: -1500px;
    background-color: #BADEFA;
    transition: all 0.3s ease;
  }
  .header-menu.active {
    right: 0;
    transition: all 0.3s ease;
  }
  .header-menu nav {
    width: 100%;
    margin-top: 100px;
    margin-bottom: 30px;
    margin-right: 0 !important;
  }
  .header-menu nav a {
    display: block;
    text-align: center;
    padding: 10px;
  }
  .header-menu .phone-btn,
  .header-menu .mailform-btn {
    display: none;
  }
  .breadcrumb {
    margin-top: 60px;
  }
}
/*******************************
Footer
*******************************/
.main-footer .footer-contetnt {
  background-image: url("images/bg-blue01.jpg");
  background-position: left center;
  background-size: cover;
  padding-top: 100px;
  padding-bottom: 100px;
  background-color: rgba(255, 255, 255, 0.6);
  background-blend-mode: lighten;
}
.main-footer .footer-contetnt .footer-office p {
  margin-bottom: 0.5rem;
}
.main-footer .footer-contetnt .footer-office p:last-child {
  margin-bottom: 0;
}
.main-footer .footer-menu li {
  padding: 0 10px;
}

@media screen and (max-width: 768px) {
  .main-footer .footer-contetnt .footer-contact {
    text-align: center;
    margin-bottom: 50px;
  }
  .main-footer .footer-contetnt .footer-office {
    display: flex;
    justify-content: center;
  }
}
/*******************************
Home
*******************************/
.main-visual {
  overflow: hidden;
  height: 100vh;
}
.main-visual .mv-content {
  position: relative;
}
.main-visual .mv-content img {
  width: 100%;
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
}
.main-visual .mv-content p {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(0, -50%);
  font-size: 3.5em;
}

@media screen and (max-width: 768px) {
  .main-visual {
    height: 75vh;
  }
  .main-visual .mv-content img {
    height: 75vh;
    -o-object-position: -150px 0;
       object-position: -150px 0;
  }
  .main-visual .mv-content p {
    width: auto;
    top: 20%;
    left: unset;
    right: 15px;
    transform: translate(0, 0);
    font-size: 1.75em;
    white-space: nowrap;
    text-shadow: -1px -1px 0 #fff, 1px -1px 0 #fff, -1px 1px 0 #fff, 1px 1px 0 #fff;
  }
}
.bg-wave {
  background-image: url("images/blue-wave.jpg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: rgba(255, 255, 255, 0.6);
  background-blend-mode: lighten;
}

#introduction .intro-pic {
  border: 10px solid white;
  transform: rotate(-8deg);
}

#Point {
  background-attachment: fixed;
  background-image: url("images/bg-blue02.jpg");
  background-position: left center;
  background-size: cover;
  padding-top: 100px;
  padding-bottom: 100px;
}
#Point .point-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 0;
  border-bottom: 1px dotted gray;
}
#Point .point-item h4 {
  width: 50%;
  padding-left: 10px;
  font-size: 3em;
  color: #48A1E6;
  text-shadow: 4px 4px 0px rgb(255, 255, 255);
}
#Point .point-item p {
  width: 50%;
  padding-right: 10px;
  margin-bottom: 0;
  font-size: 1.2em;
}
#Point .point-item:last-child {
  border-bottom: none;
}

@media screen and (max-width: 768px) {
  #Point .point-item {
    display: block;
  }
  #Point .point-item h4 {
    width: 100%;
    margin-bottom: 10px;
    padding-left: 0;
    font-size: 2.4em;
  }
  #Point .point-item p {
    width: 100%;
    padding-left: 10px;
    padding-right: 0;
    font-size: 1.1em;
  }
}
#News {
  background-color: rgb(240, 240, 240);
}
#News h3 {
  font-size: 3em;
}
#News h3 span {
  display: block;
  color: #48A1E6;
  font-size: 0.5em;
}

.gmap {
  position: relative;
  width: 100%;
  /*padding-top: 56.25%;*/
  /* 16:9のアスペクト比 */
  height: 450px;
  border-top: 1px solid gray;
}

.gmap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/*******************************
Child Page
*******************************/
.page-header {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 150px;
  background-position: left center;
  background-size: cover;
  background-color: rgba(255, 255, 255, 0.6);
  background-blend-mode: lighten;
}
.page-header .page-title {
  text-shadow: -1px -1px 0 #fff, 1px -1px 0 #fff, -1px 1px 0 #fff, 1px 1px 0 #fff;
}

@media screen and (max-width: 768px) {
  .page-header {
    height: 100px;
  }
}
/*******************************
News
*******************************/
.news-header {
  background-image: url("images/head_bg_news.jpg");
}

.news-list {
  font-size: 1.2em;
}

/* ページネーション全体 */
.pagination-area {
  margin-top: 80px;
}

.navigation.pagination {
  text-align: center;
  margin: 2em 0;
}

.nav-links {
  display: flex;
  gap: 0.5em;
  flex-wrap: wrap;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
}

.page-numbers {
  display: inline-block;
  padding: 0.5em;
  border: 1px solid #ccc;
  color: #333;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.2s;
  background-color: #fff;
}

.page-numbers:hover {
  background-color: #48A1E6;
  color: #fff;
  border-color: #48A1E6;
}

.page-numbers.current {
  background-color: #48A1E6;
  color: #fff;
  font-weight: bold;
  border-color: #48A1E6;
}

.page-numbers.prev,
.page-numbers.next {
  font-weight: bold;
}

/* 視覚的に非表示だが、読み上げはする */
.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/*******************************
 Articles
*******************************/
.articles-header {
  background-image: url("images/head_bg_articles.jpg");
}

a.article-item {
  display: block;
  height: 100%;
  text-align: center;
  background-color: white;
  border: 1px solid rgb(196, 196, 196);
  border-radius: 5px;
  padding: 0.5rem;
}
a.article-item .article-item-img {
  overflow: hidden;
}
a.article-item .article-item-img img {
  transition: all 0.4s;
}
a.article-item:hover .article-item-img img {
  transition: all 0.4s;
  transform: scale(1.05);
}

/*******************************
 Office
*******************************/
.office-header {
  background-image: url("images/head_bg_office.jpg");
}

.office-table table {
  width: 100%;
  border-collapse: collapse;
}
.office-table table tr:nth-child(odd) {
  background-color: rgba(186, 222, 250, 0.4);
}
.office-table table td {
  border: none;
  padding: 8px;
}
.office-table table td:first-child {
  font-weight: bold;
  white-space: nowrap;
}

/*******************************
 Privacy
*******************************/
.privacy-header {
  background-image: url("images/head_bg_privacy.jpg");
}

/*******************************
 About
*******************************/
.about-header {
  background-image: url("images/head_bg_about.jpg");
}

/*******************************
 Contact Form
*******************************/
.contact-header {
  background-image: url("images/head_bg_contact.jpg");
}

.snow-monkey-form {
  background-color: rgb(243, 243, 243);
  padding: 0.5rem;
}

.smf-item {
  margin-bottom: 1rem;
}

.smf-item__label {
  margin-bottom: 0.5rem;
}
.smf-item__label .smf-item__label__text {
  padding-right: 1rem;
}

.smf-text-control input[type=email] {
  width: 100%;
}

.smf-action {
  margin-top: 2rem;
  text-align: center;
}

.smf-error-messages {
  background-color: red;
  color: white !important;
  padding: 0.25rem;
}

[data-screen=confirm] .show-input {
  display: none;
}

[data-screen=input] .show-confirm,
[data-screen=invalid] .show-confirm,
[data-screen=back] .show-confirm {
  display: none;
}

[data-screen=confirm] .smf-placeholder {
  border: 1px solid rgb(241, 241, 241);
  background-color: white;
  padding: 0.5rem;
}/*# sourceMappingURL=style.css.map */