@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Sans+JP:wght@400;500;600&family=Montserrat:wght@400;500;600&display=swap");
/* レスポンシブ
------------------------------------------------------ */
/* フォント
------------------------------------------------------ */
/* カラー・シャドウ
------------------------------------------------------ */
.text_shadow {
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

/* インナー
------------------------------------------------------ */
/*================================================================
# common class
================================================================ */
body {
  font-family: "IBM Plex Sans JP", sans-serif;
  font-size: 16px;
  color: #505050;
  line-height: 1.8rem;
}
body a:hover {
  text-decoration: none;
  color: inherit;
}

img {
  width: 100%;
  height: auto;
}

.inner {
  width: 1200px;
  max-width: 100%;
  margin: 0 auto;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .inner {
    width: 95vw;
  }
}
@media screen and (max-width: 767px) {
  .inner {
    width: 95vw;
  }
}

.section-title {
  font-size: 36px;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
  padding-top: 60px;
  padding-bottom: 60px;
  text-align: center;
  position: relative;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .section-title {
    font-size: 30px;
    padding-top: 40px;
    padding-bottom: 60px;
  }
}
@media screen and (max-width: 767px) {
  .section-title {
    font-size: 20px;
    padding-top: 30px;
    padding-bottom: 50px;
  }
}
.section-title::after {
  content: "";
  position: absolute;
  bottom: 25%;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background-color: #0c68a5;
}
@media screen and (max-width: 767px) {
  .section-title::after {
    bottom: 40%;
    width: 30px;
  }
}

section {
  padding-bottom: 120px;
}
@media screen and (max-width: 767px) {
  section {
    padding-bottom: 60px;
  }
}

/*================================================================
# header
================================================================ */
.header {
  background: #0c68a5;
  position: fixed;
  opacity: 1;
  top: 0;
  left: 0;
  right: 0;
  z-index: 300;
  box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.1);
}

.header-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-logo {
  width: 140px;
  margin-top: 5px;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .header-logo {
    width: 120px;
  }
}
@media screen and (max-width: 767px) {
  .header-logo {
    width: 80px;
    margin-top: 18px;
    margin-bottom: 10.5px;
  }
}
.header-logo img {
  width: 90%;
}

.header-nav-menu {
  display: flex;
  justify-content: space-between;
  width: 600px;
  line-height: 1.1875;
  font-family: "Montserrat", sans-serif;
  letter-spacing: -0.4px;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .header-nav-menu {
    width: 100%;
    opacity: 0;
  }
}

.header-nav-item {
  font-weight: 600;
  padding-top: 32px;
  padding-bottom: 32px;
  line-height: 83px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .header-nav-item {
    padding-top: 0px;
    padding-bottom: 0px;
    line-height: 1;
    pointer-events: none;
  }
}
.header-nav-item:hover::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #fcfceb;
  opacity: 0.8;
  bottom: 20px;
  left: 0;
  transform: transition 0.3s;
}

/*================================================================
# ドロワーメニュー
================================================================ */
.drawer-icon {
  position: fixed;
  top: 21px;
  right: 16px;
  z-index: 300;
  display: none;
  transition: transform 0.5s ease 0s;
}
@media screen and (max-width: 767px) {
  .drawer-icon {
    display: block;
  }
}
.drawer-icon.is-active {
  transform: translateX(-200px);
}
.drawer-icon.is-active .drawer-icon__bar1 {
  top: 0px;
  transform: rotate(-45deg);
  top: 8px;
}
.drawer-icon.is-active .drawer-icon__bar2 {
  top: 8px;
  display: none;
}
.drawer-icon.is-active .drawer-icon__bar3 {
  top: 16px;
  transform: rotate(45deg);
  top: 8px;
}

.drawer__bars {
  width: 22px;
  height: 20px;
  display: block;
  position: relative;
}

.drawer-icon__bar1,
.drawer-icon__bar2,
.drawer-icon__bar3 {
  position: absolute;
  width: 22px;
  height: 4px;
  background-color: #fff;
  top: 0;
  left: 0;
}

.drawer-icon__bar1 {
  top: 0px;
}

.drawer-icon__bar2 {
  top: 8px;
}

.drawer-icon__bar3 {
  top: 16px;
}

.drawer-content {
  background: #fff;
  width: 200px;
  height: 100%;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 301;
  transform: translateX(105%);
  transition: transform 0.5s ease 0s;
}
.drawer-content.is-active {
  transform: translateX(0%);
}

.drawer_item {
  border-bottom: 1px dotted #707070;
}
.drawer_item a {
  display: block;
  color: #707070;
  padding: 20px;
  position: relative;
  font-family: "Montserrat", sans-serif;
}
.drawer_item a::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 11px;
}

.drawer-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 298;
  display: none;
}
.drawer-background.is-active {
  display: block;
}

/*================================================================
# メインヴィジュアル
================================================================ */
.main-visual {
  height: 648px;
  background: url(../img/fv2.jpg) center center/cover;
  background-repeat: no-repeat;
}
@media screen and (max-width: 767px) {
  .main-visual {
    height: auto;
  }
}

.main-visual-content {
  margin-top: 83px;
  padding-top: 228px;
  margin-left: auto;
  width: 600px;
  max-width: 100%;
  height: 275px;
  color: #fff;
  font-family: "Montserrat", sans-serif;
}
@media screen and (max-width: 767px) {
  .main-visual-content {
    margin-top: 56.5px;
    padding: 80px 50px;
    width: 100vw;
    height: auto;
    text-align: center;
  }
}

.main-text {
  font-size: 45px;
  font-weight: 600;
  margin-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .main-text {
    font-size: 30px;
    margin-bottom: 50px;
  }
}

.main-visual-btn a {
  display: inline-block;
  padding: 16px 50px;
  background-color: #0c68a5;
  color: #fcfceb;
  font-size: 18px;
  line-height: 18px;
  border-radius: 10px;
  font-weight: bold;
  box-shadow: 0px 3px 5px rgba(62, 62, 62, 0.2);
  padding: 16px 70px;
  outline: solid 2px #0c68a5;
  transition: all 0.3s ease 0s;
}
.main-visual-btn a:hover {
  background-color: transparent;
  outline: 2px solid #fff;
  transition: background-color 0.3s ease 0s;
}

/*================================================================
# プロフィールセクション
================================================================ */
.aboutme {
  background: #fcfceb;
  padding-top: 120px;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .aboutme {
    padding-top: 90px;
    padding-bottom: 90px;
  }
}
@media screen and (max-width: 767px) {
  .aboutme {
    padding-top: 60px;
  }
}

.aboutme-contents {
  padding: 30px;
  padding-top: 0px;
  padding-bottom: 60px;
  background-color: #fff;
  box-shadow: 3px 3px 15px rgba(96, 96, 96, 0.16);
  text-align: center;
}

.aboutme-items {
  display: inline-block;
}
@media screen and (min-width: 1200px) {
  .aboutme-items {
    display: flex;
  }
}

.aboutme-photo,
.aboutme-prof {
  width: 100%;
}
@media screen and (min-width: 1200px) {
  .aboutme-photo,
.aboutme-prof {
    width: 50%;
  }
}

@media screen and (max-width: 767px) {
  .aboutme-photo {
    width: 60%;
    margin: 0 auto;
  }
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .aboutme-photo {
    width: 70%;
    display: inline-block;
  }
}

@media screen and (min-width: 1200px) {
  .aboutme-prof {
    position: relative;
  }
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .aboutme-prof {
    position: relative;
    width: 70%;
    margin: 0 auto;
    font-size: 15px;
  }
}
@media screen and (max-width: 767px) {
  .aboutme-prof {
    width: 100%;
  }
}

.aboutme-prof_box {
  margin-top: 10px;
}
@media screen and (min-width: 1200px) {
  .aboutme-prof_box {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 10.9%;
    text-align: left;
    margin-top: 0;
  }
}
@media screen and (max-width: 767px) {
  .aboutme-prof_box {
    max-width: 450px;
    margin: 0 auto;
  }
}

.aboutme-prof_name {
  font-family: "Montserrat", sans-serif;
  font-weight: bold;
  font-size: 24px;
  margin-bottom: 20px;
  line-height: 1;
  display: inline-block;
  padding-left: 10px;
  position: relative;
}
.aboutme-prof_name::after {
  content: "";
  position: absolute;
  background-color: #0c68a5;
  width: 3px;
  height: 15px;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .aboutme-prof_name {
    font-size: 18px;
  }
}

.sub-theme,
.tool {
  display: inline-block;
  font-weight: bold;
  font-size: 16px;
  line-height: 18px;
  padding-left: 10px;
  margin-bottom: 20px;
  position: relative;
}
.sub-theme::after,
.tool::after {
  content: "";
  position: absolute;
  background-color: #0c68a5;
  width: 3px;
  height: 15px;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

@media screen and (max-width: 767px) {
  .aboutme-comment {
    font-size: 14px;
    text-align: left;
  }
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .aboutme-comment {
    text-align: left;
  }
}

.aboutme_text {
  margin-top: 10px;
}

.tool-items {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .tool-items {
    justify-content: space-between;
    gap: 10px;
  }
}
.tool-items img {
  width: 40px;
  height: 40px;
}

/*================================================================
# service-section
================================================================ */
.service {
  background: linear-gradient(180deg, #0c68a5 0%, #0c68a5 50%, #fff 50%, #fff 100%);
}
@media screen and (max-width: 767px) {
  .service {
    padding-bottom: 0px;
  }
}
.service h2 {
  color: #fff;
}
.service h2::after {
  background-color: #fff;
}

.service-inner {
  width: 960px;
  max-width: 100%;
  margin: 0 auto;
}

.service-content-box {
  background-color: #fcfceb;
  padding: 60px 45px;
  box-shadow: 3px 3px 15px rgba(96, 96, 96, 0.16);
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .service-content-box {
    padding: 40px 30px;
  }
}
@media screen and (max-width: 767px) {
  .service-content-box {
    padding: 30px 22.5px;
  }
}
.service-content-box ul {
  display: flex;
  justify-content: space-between;
  gap: 35px;
}
@media screen and (max-width: 912px) {
  .service-content-box ul {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
}

.service-item {
  text-align: center;
  display: inline-block;
  max-width: 250px;
}
@media screen and (max-width: 912px) {
  .service-item {
    max-width: 450px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 767px) {
  .service-item {
    max-width: 400px;
    margin: 0 auto;
  }
}

.service-item-image {
  display: inline-block;
  width: 64px;
  height: 64px;
  position: relative;
}
.service-item-image img {
  width: 50.07px;
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.service-item-title {
  font-size: 20px;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 10px;
}

.service-item-text {
  text-align: left;
  font-size: 14px;
  line-height: 1.5952357143;
}
@media screen and (min-width: 1200px) {
  .service-item-text {
    font-size: 15px;
  }
}
@media screen and (max-width: 767px) {
  .service-item-text {
    width: 100%;
  }
}

/*================================================================
# Gallery section
================================================================ */
.gallery {
  padding-bottom: 60px;
  background: #0c68a5;
}

.gallery-inner {
  width: 1240px;
  max-width: 100%;
  margin: 0 auto;
  background: #0c68a5;
  padding-bottom: 60px;
}

.gallery-title {
  color: #fff;
}
.gallery-title::after {
  background-color: #fff;
}

.gallery-item {
  margin: 0;
}

.gallery-item {
  width: 70%;
  height: auto;
  margin-right: auto;
}

.slider-3 .slick-slide {
  margin: 0 60px;
  padding: 60px 0;
  position: relative;
}
@media screen and (max-width: 767px) {
  .slider-3 .slick-slide {
    padding: 30px 0px;
  }
}

.slider-3 .slick-slide .slide-img {
  width: 450px; /* 固定幅 */
  height: 300px; /* 固定高さ */
  overflow: hidden; /* オーバーフローを隠す */
  display: flex; /* 中央揃えに利用 */
  align-items: center; /* 垂直方向の中央揃え */
  justify-content: center; /* 水平方向の中央揃え */
  box-shadow: none;
  opacity: 1;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .slider-3 .slick-slide .slide-img {
    width: 400px;
    height: 250px;
  }
}
@media screen and (max-width: 767px) {
  .slider-3 .slick-slide .slide-img {
    width: 300px;
    height: 200px;
  }
}

.slider-3 .slick-slide.slick-current .slide-img {
  transform: scale(1.1);
  transition: transform 0.3s ease-in-out;
}

.slider-3 .slick-slide .slide-img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.slider-3 .slick-arrow {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #fff;
  border: none;
  outline: none;
  font-size: 0;
  position: absolute;
  top: 50%;
  z-index: 1;
  transform: translateY(-50%);
  filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.16));
}

.slider-3 .slick-arrow::before {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  border: 1px solid #09000d;
  border-width: 3px 3px 0 0;
  position: absolute;
  top: 24px;
  transform: rotate(45deg);
}

.slider-3 .slick-next {
  right: 0;
}

.slider-3 .slick-prev {
  left: 0;
}

.slider-3 .slick-next::before {
  left: 20px;
}

.slider-3 .slick-prev::before {
  border-width: 0 0 3px 3px;
  right: 22px;
}

.dots-3 .slick-dots {
  text-align: center;
}

.dots-3 .slick-dots li {
  display: inline-block;
}

.dots-3 .slick-dots button {
  display: block;
  width: 10px;
  height: 10px;
  margin: 6px;
  font-size: 0;
  padding: 0;
  border: 0;
  outline: none;
  background: #bcbcbc;
  border-radius: 50%;
}

.dots-3 .slick-dots .slick-active button {
  background: #fcfceb;
}

.gallery-btn {
  text-align: center;
  margin-top: 20px;
}
.gallery-btn a {
  display: inline-block;
  color: #fff;
  outline: 1px solid #fff;
  padding: 20px 80px;
  font-size: 18px;
  line-height: 18px;
  transition: background-color 0.3s;
  font-weight: bold;
  text-shadow: none;
}
@media screen and (max-width: 767px) {
  .gallery-btn a {
    padding: 15px 60px;
    font-size: 15px;
    line-height: 15px;
  }
}
.gallery-btn a:hover {
  text-decoration: none;
  color: inherit;
  background-color: #fff;
  color: #0c68a5;
  text-shadow: none;
  transition: background-color 0.3s;
}

/*================================================================
# price-section
================================================================ */
.price {
  background-color: #fcfceb;
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .price {
    margin-top: 0px;
  }
}
@media screen and (min-width: 650px) and (max-width: 991px) {
  .price .row {
    margin: 0 100px;
  }
}

.price_ttl {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  gap: 3px;
  justify-content: center;
}

.price-img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  overflow: hidden;
}

.price-card_title {
  font-size: 20px;
}
@media screen and (max-width: 767px) {
  .price-card_title {
    font-size: 16px;
  }
}

.list-group {
  margin-left: auto;
  margin-right: auto;
}

.list-group-item {
  font-size: 14px;
}
@media screen and (min-width: 1200px) {
  .list-group-item {
    font-size: 15px;
  }
}

.price-text-container {
  text-align: center;
}

.price-text2 {
  display: inline-block;
  text-align: left;
}

.price-text,
.hp-price {
  font-size: 13px;
}
@media screen and (max-width: 767px) {
  .price-text,
.hp-price {
    font-size: 12px;
  }
}

@media screen and (min-width: 768px) and (max-width: 1199px) {
  .card-body {
    height: 350px;
  }
}

/*================================================================
# Q&A section
================================================================ */
.question {
  background: linear-gradient(180deg, #0c68a5 0%, #0c68a5 50%, #fff 50%, #fff 100%);
  padding-top: 80px;
}
@media screen and (max-width: 767px) {
  .question {
    padding-top: 20px;
  }
}

.question-title {
  color: #fff;
}
.question-title::after {
  background-color: #fff;
}

.question-list {
  width: 70%;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .question-list {
    width: 95%;
    margin-right: auto;
  }
}

.question-box {
  padding: 20px;
  background-color: #fff;
  margin-bottom: 10px;
  box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.3);
  border: 1px solid #0c68a5;
  border-radius: 5px;
}
@media screen and (max-width: 767px) {
  .question-box {
    padding: 10px;
  }
}

@media screen and (min-width: 768px) and (max-width: 1199px) {
  .question-box {
    border: none;
  }
}
@media screen and (max-width: 767px) {
  .question-box {
    border: none;
  }
}

.question-main {
  line-height: 24px;
  position: relative;
}
.question-main p {
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .question-main p {
    font-size: 14px;
  }
}
.question-main p:before {
  background: #0c68a5;
  content: "";
  display: block;
  height: 3px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.3s;
  width: 16px;
}
.question-main p:after {
  background: #0c68a5;
  content: "";
  display: block;
  height: 3px;
  position: absolute;
  right: 0;
  top: 50%;
  transition: transform 0.3s;
  width: 16px;
  transform: translateY(-50%) rotate(90deg);
}
.question-main::before {
  content: "Q";
  display: inline-block;
  top: 0px;
  left: 0px;
  background-color: #0c68a5;
  color: #fff;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
  width: 25px;
  height: 25px;
  text-align: center;
  border-radius: 50%;
}

.question-txt.is-open::after {
  transform: rotate(180deg);
}
.question-txt.is-open::before {
  display: none;
}

.question-answer {
  padding: 15px;
  background-color: #fcfceb;
  border-radius: 5px;
  margin-top: 15px;
  display: none;
  font-size: 15px;
}
@media screen and (max-width: 767px) {
  .question-answer p {
    font-size: 14px;
  }
}

/*================================================================
# contact section
================================================================ */
.contact-section {
  background-color: #fcfceb;
  padding-bottom: 60px;
}

.contact-section_contents {
  text-align: center;
}

.contact-form {
  display: inline-block;
}

.contact-dl {
  display: flex;
  width: 760px;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .contact-dl {
    display: inline-block;
    width: 70%;
  }
}

.contact-dt {
  width: 30%;
  height: 30px;
  background-color: #0c68a5;
  color: #fff;
  font-size: 15px;
  line-height: 30px;
  border-radius: 5px;
}
@media screen and (max-width: 767px) {
  .contact-dt {
    width: 45%;
    font-size: 14px;
    margin-right: auto;
    margin-bottom: 5px;
  }
}

.contact-dd {
  width: 70%;
  margin-left: 20px;
}
@media screen and (max-width: 767px) {
  .contact-dd {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}
.contact-dd input,
.contact-dd select {
  width: 100%;
  border-radius: 2px;
  padding: 8px;
}
.contact-dd [type=text],
.contact-dd [type=email],
.contact-dd select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  font-size: 15px;
  line-height: 1;
  background: #fff;
  height: 40px;
  border: 1px solid #505050;
}
@media screen and (max-width: 767px) {
  .contact-dd [type=text],
.contact-dd [type=email],
.contact-dd select {
    font-size: 14px;
  }
}
.contact-dd select {
  background-image: url(../img/select.png);
  background-repeat: no-repeat;
  background-position: center right 15px;
}
.contact-dd textarea {
  width: 100%;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  font-size: 15px;
  line-height: 1;
  background: #fff;
  height: 100px;
  border: 1px solid #505050;
  padding: 10px;
}
@media screen and (max-width: 767px) {
  .contact-dd textarea {
    font-size: 14px;
  }
}

.contact__privacy {
  margin-bottom: 30px;
  font-size: 14px;
}

[type=submit] {
  color: #0c68a5;
  font-size: 16px;
  background: #fff;
  line-height: 16px;
  padding: 16px 50px;
  border: 1px solid #0c68a5;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  font-family: inherit;
  transition: all 0.3s ease 0s;
}
@media screen and (max-width: 767px) {
  [type=submit] {
    font-size: 15px;
    line-height: 15px;
  }
}
[type=submit]:hover {
  background-color: #0c68a5;
  color: #fff;
  transition: background-color 0.3s ease 0s;
}

.contact-message {
  margin-top: 30px;
}
.contact-message p {
  font-size: 13px;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .contact-message p {
    font-size: 12px;
    width: 90%;
    margin: 0 auto;
  }
}

.contact-sns_area {
  margin-top: 50px;
}

.contact-sns_message {
  font-weight: 600;
  margin-bottom: 10px;
}
.contact-sns_message img {
  width: 20px;
}

.form-checkbox__text a {
  color: #0c68a5;
  font-weight: 600;
}
.form-checkbox__text a:hover {
  color: #000000;
}

/*================================================================
# footer
================================================================ */
.footer-section {
  background-color: #0c68a5;
  color: #fff;
  padding: 20px;
}
@media screen and (max-width: 767px) {
  .footer-section {
    padding: 20px;
  }
}

.footer_innner {
  display: flex;
  justify-content: center;
  gap: 50px;
}
@media screen and (max-width: 767px) {
  .footer_innner {
    gap: 20px;
  }
}

.footer-logo {
  width: 80px;
  margin: auto 0px;
}
@media screen and (max-width: 767px) {
  .footer-logo {
    width: 70px;
  }
}

.footer_address {
  text-align: left;
  font-size: 14px;
}

.footer_copyright {
  text-align: center;
  line-height: 12px;
  margin-top: 20px;
}
.footer_copyright small {
  font-size: 12px;
  line-height: 12px;
}
@media screen and (max-width: 767px) {
  .footer_copyright small {
    font-size: 11px;
    line-height: 11px;
  }
}

.to-top {
  position: fixed;
  bottom: 24px;
  right: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease 0s;
}
@media screen and (max-width: 767px) {
  .to-top {
    bottom: 12px;
    right: 12px;
  }
}
.to-top.is-show {
  opacity: 1;
  visibility: visible;
}
.to-top img {
  width: 70px;
}
@media screen and (max-width: 767px) {
  .to-top img {
    width: 60px;
  }
}

/*================================================================
# complete page
================================================================ */
.complete-top {
  background-color: #0c68a5;
  height: 62px;
}

.complete-title {
  font-size: 25px;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  line-height: 1.4;
  font-weight: bold;
  text-align: center;
  padding-top: 13.5px;
  letter-spacing: 1.5px;
}

.complete-page {
  background-color: #fcfceb;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
.complete-page .comp-inner {
  text-align: center;
  padding: 40px;
  background-color: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  width: auto;
}
.complete-page .mail_icon {
  width: 250px;
  height: 250px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 20px;
  border-radius: 50%;
  overflow: hidden;
}
.complete-page .complete-text {
  font-size: 14px;
  color: #505050;
  margin-bottom: 30px;
  line-height: 1.4;
}
.complete-page .complete-text_first {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
}
.complete-page .complete-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
}
.complete-page .complete-buttons .comp-btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  font-size: 16px;
  font-weight: bold;
  transition: all 0.3s;
  text-decoration: none;
}
.complete-page .complete-buttons .comp-btn.btn-main {
  background-color: #0c68a5;
  color: #fff;
}
.complete-page .complete-buttons .comp-btn.btn-main:hover {
  background-color: #fff;
  outline: 2px solid #0c68a5;
  color: #0c68a5;
}

/*================================================================
# privacy page
================================================================ */
.privacy_main {
  background-color: #fcfceb;
  padding: 100px 0;
}

.privacy_inner {
  padding: 50px 10px 0px 10px;
  width: 350px;
  background-color: #fff;
  margin-left: auto;
  margin-right: auto;
  border-radius: 10px;
}
@media screen and (min-width: 650px) and (max-width: 991px) {
  .privacy_inner {
    width: 600px;
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media screen and (min-width: 1200px) {
  .privacy_inner {
    width: 800px;
    padding-left: 50px;
    padding-right: 50px;
  }
}

.privacy-ttl {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 10px;
}

.privacy_icon {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: auto;
  margin-left: auto;
}

.privacy_section {
  font-size: 14px;
}
@media screen and (min-width: 650px) and (max-width: 991px) {
  .privacy_section {
    font-size: 16px;
  }
}
@media screen and (min-width: 1200px) {
  .privacy_section {
    font-size: 16px;
  }
}

.privacy_section h2 {
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  margin-top: 20px;
}
.privacy_section h2.section-title {
  padding: 10px 0 40px;
}
@media screen and (min-width: 650px) and (max-width: 991px) {
  .privacy_section h2 {
    font-size: 20px;
    margin-top: 25px;
  }
}
@media screen and (min-width: 1200px) {
  .privacy_section h2 {
    font-size: 20px;
    margin-top: 25px;
  }
}

.info {
  max-width: 450px;
  margin-right: auto;
  margin-left: auto;
}

.privacy-link {
  color: #007bff; /* リンクの色 */
  font-weight: bold; /* 強調 */
  text-decoration: underline; /* 下線を追加 */
  transition: color 0.3s ease; /* ホバー時のアニメーション */
}

.privacy-link:hover {
  color: #0056b3; /* ホバー時の色 */
  text-decoration: none; /* ホバー時に下線を消す（好みに応じて調整） */
}