@charset "UTF-8";
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}

body, h1, h2, h3, h4, p, figure, blockquote, dl, dd {
  margin: 0;
}

ul[role=list], ol[role=list] {
  list-style: none;
}

body {
  min-height: 100vh;
  line-height: 1.5;
}

h1, h2, h3, h4, button, input, label {
  line-height: 1.1;
}

a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
  color: currentColor;
}

img, picture {
  max-width: 100%;
  display: block;
}

input, button, textarea, select {
  font: inherit;
}

textarea:not([rows]) {
  min-height: 10em;
}

:target {
  scroll-margin-block: 5ex;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-size: 1rem;
  color: #333333;
  font-family: "Helvetica Neue", Arial, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "游ゴシック体", "YuGothic", "游ゴシック", "Yu Gothic", "メイリオ", "Meiryo", sans-serif;
  position: relative;
  word-break: break-all;
  line-height: 1.4em;
  font-feature-settings: "palt";
  counter-reset: number 0;
  width: 100vw;
}
@media screen and (max-width: 767px) {
  body {
    font-size: 0.875rem;
  }
}

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

a img:hover {
  opacity: 0.8;
}

a {
  color: #009FB0;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
  color: #009FB0;
}

.container {
  max-width: 1200px;
  padding: 0 15px;
  margin: 0 auto;
}

#header {
  background-color: white;
}
#header .container {
  display: flex;
  gap: 10px;
  justify-content: space-between;
  margin-top: 30px;
  margin-bottom: 15px;
}
#header .header-R {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
#header .header-R ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: flex-end;
}
#header .header-R ul a {
  letter-spacing: 0.05em;
}
#header .header-R ul li + li:before {
  content: "|";
  display: inline-block;
  margin: 0 1em;
  color: #ccc;
}

#main {
  background: url(images/bg.png) center bottom no-repeat #F5F1D5;
}
@media screen and (max-width: 767px) {
  #main {
    background-size: 1100px;
    background-position: top center;
  }
}
#main .sec_inner {
  width: 390px;
}
@media screen and (max-width: 767px) {
  #main .sec_inner {
    width: 100%;
  }
}
#main #intro {
  padding-top: 180px;
  padding-bottom: 150px;
  text-shadow: 0 0 5px #F5F1D5, 0 0 5px #F5F1D5, 0 0 5px #F5F1D5, 0 0 5px #F5F1D5, 0 0 5px #F5F1D5;
}
#main #intro .container {
  position: relative;
  display: flex;
  justify-content: flex-end;
}
@media screen and (max-width: 767px) {
  #main #intro {
    padding-top: 240px;
  }
}
#main #intro #intro-copy {
  position: absolute;
  top: -50px;
  left: 50px;
}
@media screen and (max-width: 767px) {
  #main #intro #intro-copy {
    top: -220px;
    left: auto;
    right: 0;
    padding: 15px;
    width: 60%;
  }
}
#main #intro h2 {
  margin-bottom: 15px;
  font-size: 1.5rem;
  line-height: 1.5;
  color: #009FB0;
}
@media screen and (max-width: 767px) {
  #main #intro h2 {
    font-size: 1.375rem;
  }
}
#main #intro p {
  font-size: 1.125rem;
  line-height: 1.6;
  text-align: justify;
}
#main #outline {
  padding-bottom: 100px;
  padding-top: 400px;
}
#main #outline .container {
  position: relative;
  display: flex;
  justify-content: flex-end;
}
@media screen and (max-width: 767px) {
  #main #outline {
    padding-top: 50px;
    padding-bottom: 30px;
  }
}
#main #outline h2 {
  margin-bottom: 15px;
}
#main #outline .outline_table {
  margin-top: 15px;
  padding: 20px 0;
  font-size: 1.125rem;
  border-top: 1px solid #ccc;
  line-height: 1.4;
  border-bottom: 1px solid #ccc;
}
#main #outline .outline_table dl {
  display: flex;
  margin: 0;
  gap: 10px;
  align-items: flex-start;
}
#main #outline .outline_table dl dt {
  margin: 0;
  padding: 0;
  width: 4em;
  -moz-text-align-last: justify;
       text-align-last: justify;
  color: #999;
  font-weight: bold;
}
#main #outline .outline_table dl dd {
  margin: 0;
  padding: 0;
  flex: 1;
}
#main #outline .outline_table dl + dl {
  margin-top: 20px;
}
#main #outline .outline_table h3 {
  font-size: 1.125rem;
  line-height: 1.6em;
}
#main #outline .outline_table p + h3 {
  margin-top: 10px;
}

.btn-box {
  text-align: center;
  margin-top: 50px;
}
.btn-box a {
  display: inline-block;
  text-decoration: none;
  color: white;
  font-weight: bold;
  background-color: #009FB0;
  padding: 10px 30px;
  border-radius: 30px;
  text-shadow: none;
}

#footer_info {
  padding: 20px 0;
}
#footer_info .container {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
@media screen and (max-width: 768px) {
  #footer_info .container {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
}
#footer_info .footer-L h2 {
  font-size: 1.375rem;
  margin-bottom: 5px;
}
@media screen and (max-width: 768px) {
  #footer_info .footer-L {
    text-align: center;
  }
}
#footer_info .footer-R {
  width: 320px;
}
@media screen and (max-width: 768px) {
  #footer_info .footer-R {
    width: 100%;
    text-align: center;
  }
  #footer_info .footer-R img {
    margin: 0 auto;
  }
}

#footer {
  background-color: #333333;
  color: #FFFFFF;
  text-align: center;
  padding: 15px;
}
#footer p {
  margin: 0;
  font-size: 0.875rem;
}

.circle-content {
  position: relative; /* SVGの上に配置するため */
  z-index: 10; /* SVGよりも手前に表示 */
  width: 350px; /* メインの円の幅 */
  height: 350px; /* メインの円の高さ */
  background-color: #ffffff; /* 背景色 */
  border-radius: 50%; /* 完全な丸い形にする */
  border: 2px solid #0056b3; /* 内側の青い線 */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08); /* 影 */
  display: flex;
  flex-direction: column; /* 縦に要素を並べる */
  justify-content: center; /* 垂直方向の中央揃え */
  align-items: center; /* 水平方向の中央揃え */
  text-align: center; /* 内部テキストを中央揃え */
  padding: 5rem 2rem 2.5rem; /* テキストのパディング */
  box-sizing: border-box; /* パディングを含めてサイズ計算 */
}
.circle-content:before, .circle-content:after {
  content: "";
  width: 350px;
  height: 350px;
  border: 1px solid #0056b3;
  position: absolute;
  border-radius: 50%;
  z-index: 2;
}
.circle-content:before {
  left: 5px;
  top: -5px;
}
.circle-content:after {
  left: -5px;
  top: 5px;
}

.main-title {
  font-size: 1.8rem; /* 大きなタイトル */
  font-weight: 700;
  color: #0056b3; /* 青色 */
  line-height: 1.2;
  margin-bottom: 0.75rem; /* 下の段落との余白 */
}

.lead-text {
  font-size: 1.1em;
  color: #333333;
  line-height: 1.6;
  font-weight: bold;
  margin-bottom: 0.5rem; /* 下の線との余白 */
}

.divider {
  width: 80%; /* 仕切り線の幅 */
  height: 1px;
  border-bottom: 1px solid #ccc;
  margin-bottom: 0.5rem; /* 下のテキストとの余白 */
}

.bottom-text {
  font-size: 1em;
  color: #333;
  line-height: 1.5;
}

.sv-copy {
  position: absolute;
  z-index: 10;
  left: 50%;
  top: 5px;
  line-height: 1.2em;
  color: white;
  font-size: 1.5em;
  font-weight: bold;
  padding: 5px 20px;
  border-radius: 30px;
  background-color: #0056b3;
  white-space: nowrap;
  transform: rotate(-5deg) translateX(-50%);
}

#main.service {
  background: url(images/bg_2.png) center bottom no-repeat #daeaf5;
  background-size: 100% auto;
}

#services {
  padding: 80px 0 50px;
}
#services .container {
  position: relative;
}
#services #service-copy {
  display: flex;
  gap: 30px;
  justify-content: space-between;
  margin-bottom: 50px;
  align-items: flex-end;
  flex-wrap: wrap;
}
#services .circle-content-wrap {
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  align-items: center;
  display: flex;
}
#services #sv1 {
  border-color: #e8383d;
  width: 380px;
  height: 380px;
}
#services #sv1:before, #services #sv1:after {
  border-color: #e8383d;
  width: 380px;
  height: 380px;
}
#services #sv1 .main-title {
  color: #e8383d;
}
#services #sv1 .sv-copy {
  background-color: #e8383d;
}
#services #sv2 {
  border-color: #7d4698;
}
#services #sv2:before, #services #sv2:after {
  border-color: #7d4698;
}
#services #sv2 .main-title {
  color: #7d4698;
}
#services #sv2 .sv-copy {
  background-color: #7d4698;
}
#services #sv3 {
  border-color: #f18d00;
  width: 380px;
  height: 380px;
}
#services #sv3:before, #services #sv3:after {
  border-color: #f18d00;
  width: 380px;
  height: 380px;
}
#services #sv3 .main-title {
  color: #f18d00;
}
#services #sv3 .sv-copy {
  background-color: #f18d00;
}
#services #sv4 {
  border-color: #006cb8;
  width: 340px;
  height: 340px;
}
#services #sv4:before, #services #sv4:after {
  border-color: #006cb8;
  width: 340px;
  height: 340px;
}
#services #sv4 .main-title {
  color: #006cb8;
}
#services #sv4 .sv-copy {
  background-color: #006cb8;
}
#services #sv5 {
  border-color: #f6ab00;
}
#services #sv5:before, #services #sv5:after {
  border-color: #f6ab00;
}
#services #sv5 .main-title {
  color: #f6ab00;
}
#services #sv5 .sv-copy {
  background-color: #f6ab00;
}
#services #sv6 {
  border-color: #aa8420;
  width: 380px;
  height: 380px;
}
#services #sv6:before, #services #sv6:after {
  border-color: #aa8420;
  width: 380px;
  height: 380px;
}
#services #sv6 .main-title {
  color: #aa8420;
}
#services #sv6 .sv-copy {
  background-color: #aa8420;
}
#services #sv7 {
  border-color: #009fb0;
  width: 390px;
  height: 390px;
}
#services #sv7:before, #services #sv7:after {
  border-color: #009fb0;
  width: 390px;
  height: 390px;
}
#services #sv7 .main-title {
  color: #009fb0;
}
#services #sv7 .sv-copy {
  background-color: #009fb0;
}
#services #sv8 {
  border-color: #8fc31f;
}
#services #sv8:before, #services #sv8:after {
  border-color: #8fc31f;
}
#services #sv8 .main-title {
  color: #8fc31f;
}
#services #sv8 .sv-copy {
  background-color: #8fc31f;
}
#services #sv9 {
  border-color: #8fc31f;
  width: 360px;
  height: 360px;
}
#services #sv9:before, #services #sv9:after {
  border-color: #8fc31f;
  width: 360px;
  height: 360px;
}
#services #sv9 .main-title {
  color: #8fc31f;
}
#services #sv9 .sv-copy {
  background-color: #8fc31f;
}/*# sourceMappingURL=style.css.map */