@charset "UTF-8";
/* Scss Document */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* Scss Document */
.loader {
  align-items: center;
  background: #fff;
  bottom: 0;
  display: flex;
  justify-content: center;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 999;
}
.loader::after {
  animation: loader 0.5s linear infinite;
  border: 1px solid #005bab;
  border-radius: 50%;
  border-right: 1px solid rgba(0, 91, 171, 0.7);
  border-top: 1px solid rgba(0, 91, 171, 0.7);
  content: "";
  height: 30px;
  width: 30px;
}
@keyframes loader {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*------------------------------- Common --------------------------------*/
.clearfix:after {
  content: "";
  display: block;
  clear: both;
}

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

a {
  color: #005bab;
  text-decoration: none;
}
a:focus {
  outline: none;
}

@media screen and (min-width: 576px) {
  .alignleft {
    float: left;
    margin: 0 20px 20px 0;
  }
}

@media screen and (min-width: 576px) {
  .alignright {
    float: right;
    margin: 0 0 20px 20px;
  }
}

.aligncenter {
  display: block;
  margin-right: auto;
  margin-left: auto;
}

@media screen and (min-width: 992px) {
  .br-sp {
    display: none;
  }
}

.text-attention {
  color: #005bab;
  font-weight: bold;
}

.font-en {
  text-transform: uppercase;
}

html,
body {
  height: 100%;
}

body {
  background: #fff;
  font-family: "Noto Sans JP", "游ゴシック体", "YuGothic", "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", sans-serif;
  color: #333;
  font-size: 16px;
  font-size: clamp(0.875rem, 0.739rem + 0.54vw, 1rem);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
}

select,
input,
textarea {
  font-family: "Noto Sans JP", "游ゴシック体", "YuGothic", "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", sans-serif;
}

@media all and (-ms-high-contrast: none) {
  body:not(.home) {
    display: block;
    min-height: auto;
  }
}
/* Scss Document */
/* Scss Document */
/*-------------------------------------------main-menu-------------------------------------------*/
#main-menu {
  max-width: 100%;
  transition: 0.2s;
  display: none;
  width: 100%;
  position: absolute;
  top: 50px;
  left: 0;
  background: #fff;
  align-items: center;
}
@media screen and (min-width: 1280px) {
  #main-menu {
    width: auto;
    background: none;
    box-shadow: none;
    display: flex;
    justify-content: flex-end;
    position: relative;
    top: 0;
  }
}
#main-menu li {
  transition: 0.2s;
  font-weight: 300;
  font-size: 18px;
  position: relative;
}
#main-menu li a {
  padding: 5px 8px;
  color: #222;
  transition: 0.3s;
  text-transform: lowercase;
}
#main-menu li a:hover {
  color: #005bab;
}
#main-menu .sub-menu {
  display: none;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
}
#main-menu li.menu-item-has-children:hover .sub-menu {
  display: block;
  position: absolute;
  left: 0;
  top: 100%;
  background: #fff;
  white-space: nowrap;
  padding: 10px 5px 10px;
  min-width: 200px;
}
#main-menu li.menu-item-has-children:hover .sub-menu li a {
  padding: 10px;
  font-size: 14px;
  display: block;
}

#btn {
  width: 30px;
  height: 25px;
  z-index: 100001;
  transition: 0.4s;
  display: block;
  position: relative;
  margin: 7px 0 0 0;
}
@media screen and (min-width: 1280px) {
  #btn {
    margin-left: 0;
    display: none;
  }
}
@media screen and (min-width: 768px) {
  #btn {
    width: 30px;
    height: 30px;
  }
}
@media screen and (min-width: 768px) {
  #btn:hover {
    opacity: 0.3;
  }
}
#btn:before, #btn:after,
#btn span {
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  transition: 0.3s ease-in-out;
}
#btn span {
  height: 4px;
  top: calc(50% - 2px);
  background-color: #005bab;
}
#btn:before {
  content: "";
  top: calc(25% - 7px);
  border-top: 4px solid #005bab;
}
#btn:after {
  content: "";
  bottom: calc(25% - 7px);
  border-bottom: 4px solid #005bab;
}
.header-on #btn span {
  display: none;
}
.header-on #btn:before {
  top: calc(50% - 2px);
  transform: rotate(315deg);
}
.header-on #btn:after {
  bottom: calc(50% - 2px);
  transform: rotate(-315deg);
}

/*-------------------------------------------Pagination-------------------------------------------*/
#pagination {
  color: #333;
  padding: 20px 0;
  text-align: center;
  line-height: 40px;
}
#pagination .current {
  color: #333;
  font-weight: bold;
}
#pagination a {
  color: #333;
}
#pagination a:hover {
  background-color: #ddd;
}

#pagination a,
.page-numbers {
  background: #fff none repeat scroll 0 0;
  color: #aaa;
  padding: 10px;
  text-decoration: none;
  border: 1px solid #b9baba;
  line-height: 1.2;
  display: inline-block;
  margin-bottom: 5px;
}

.navi-pre-next {
  border-top: solid 1px #ccc;
  padding-top: 50px;
  margin: 40px 0 0;
  font-size: 12px;
  line-height: 1.2;
  font-weight: bold;
}
@media screen and (min-width: 576px) {
  .navi-pre-next {
    margin: 80px 0 0;
    font-size: 16px;
    line-height: 1.6;
  }
}
.navi-pre-next .prev,
.navi-pre-next .next {
  text-align: left;
  width: 48%;
  float: left;
  padding: 10px;
  box-sizing: border-box;
}
.navi-pre-next .prev {
  text-align: right;
  margin-left: 4%;
}
.navi-pre-next a {
  text-decoration: none;
  color: #333;
}
.navi-pre-next a:hover {
  text-decoration: underline;
  color: #333;
}

/*----------------------------- Contactform7 ------------------------------*/
.wpcf7 {
  margin-top: 40px;
}
.wpcf7 p {
  margin: 0 0;
}
.wpcf7 textarea {
  width: 100%;
}
.wpcf7 textarea,
.wpcf7 input[type=text],
.wpcf7 input[type=email],
.wpcf7 input[type=tel],
.wpcf7 select {
  border-radius: 5px;
  max-width: 100%;
  padding: 10px 5px;
  box-sizing: border-box;
}
.wpcf7 textarea _::-webkit-full-page-media,
.wpcf7 textarea _:future,
.wpcf7 textarea :root .css_selector,
.wpcf7 input[type=text] _::-webkit-full-page-media,
.wpcf7 input[type=text] _:future,
.wpcf7 input[type=text] :root .css_selector,
.wpcf7 input[type=email] _::-webkit-full-page-media,
.wpcf7 input[type=email] _:future,
.wpcf7 input[type=email] :root .css_selector,
.wpcf7 input[type=tel] _::-webkit-full-page-media,
.wpcf7 input[type=tel] _:future,
.wpcf7 input[type=tel] :root .css_selector,
.wpcf7 select _::-webkit-full-page-media,
.wpcf7 select _:future,
.wpcf7 select :root .css_selector {
  -webkit-appearance: none;
}
@media screen and (min-width: 768px) {
  .wpcf7 textarea,
  .wpcf7 input[type=text],
  .wpcf7 input[type=email],
  .wpcf7 input[type=tel],
  .wpcf7 select {
    padding: 15px 5px;
  }
}
.wpcf7 textarea,
.wpcf7 input[type=text],
.wpcf7 input[type=email],
.wpcf7 input[type=tel] {
  width: 100%;
}
.wpcf7 .wpcf7c-btn-back {
  margin-right: 20px;
}
.wpcf7 input,
.wpcf7 textarea,
.wpcf7 select {
  background: #ffffff none repeat scroll 0 0;
  border: none;
  box-shadow: 0 0 8px rgba(180, 180, 180, 0.6);
  font-size: 14px;
  margin: 5px 0;
  padding: 15px 10px;
  border-radius: 5px;
}
.wpcf7 textarea {
  height: 100px;
}
.wpcf7 .contact-submit {
  text-align: center;
  margin: 20px auto 40px;
  position: relative;
  width: 330px;
}
.wpcf7 .contact-submit input {
  color: #333;
  display: inline-block;
  border: solid 1px #333;
  padding: 14px 20px;
  width: 330px;
  transition: 0.3s;
  letter-spacing: 1em;
  box-sizing: border-box;
  position: relative;
  text-indent: 1em;
}
.wpcf7 .contact-submit input:hover {
  background: #333;
  color: #fff;
}
.wpcf7 .contact-submit svg {
  position: absolute;
  width: 25px;
  top: 17px;
  right: 15px;
  height: 25px;
}
.wpcf7 .wpcf7-submit {
  background: #333;
  color: #fff;
  border-radius: 100px;
  box-shadow: none;
  margin: 0 auto;
  transition: background 0.3s;
}
.wpcf7 .wpcf7-submit:hover {
  background: #005bab;
}
.wpcf7 .wpcf7-spinner {
  display: block;
  margin: 0 auto;
}

.wpcf7c-conf {
  background: none !important;
  border: none !important;
  box-shadow: none !important;
  font-weight: bold;
}

.submit-p {
  text-align: center;
}
.submit-p input {
  letter-spacing: 1em;
  text-indent: 1em;
  padding: 15px 40px;
}

.wpcf7-submit {
  -webkit-appearance: none;
  border-radius: 0;
  padding: 10px 40px;
  font-weight: bold;
  border: none;
}

.button-submit {
  text-align: center;
}

.wpcf7-form .button-submit input[type=submit],
.wpcf7-form .button-submit input[type=submit]:hover {
  border-radius: 5px;
  border: solid 2px #005bab;
  font-size: 14px;
  padding-left: 2em;
}

/*------------------------------- Plugin --------------------------------*/
/* ギャラリー */
.wp-caption {
  max-width: 100%;
  clear: both;
}

.wp-caption-text {
  font-size: 12px;
  text-align: left;
  margin: 5px 0;
}

.gallery {
  margin: 20px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: left;
}
@media screen and (min-width: 768px) {
  .gallery {
    margin: 40px 0;
  }
}

.gallery-item {
  text-align: center;
  box-sizing: border-box;
  font-size: 14px;
  margin: 5px 1% 15px 0;
}

.gallery-columns-1 .gallery-item {
  width: 100%;
  margin-right: 0;
}

.gallery-columns-2 .gallery-item {
  width: 49%;
}

.gallery-columns-3 .gallery-item {
  width: 32%;
}

.gallery-columns-4 .gallery-item {
  width: 24%;
}

.gallery-columns-5 .gallery-item {
  width: 19%;
}

.gallery-columns-6 .gallery-item {
  width: 15.66%;
}

.gallery-columns-7 .gallery-item {
  width: 13.28%;
}

.gallery-columns-8 .gallery-item {
  width: 11.5%;
}

.gallery-columns-9 .gallery-item {
  width: 10.11%;
}

@media screen and (max-width: 768px) and (min-width: 481px) {
  .gallery-item,
  .gallery-columns-2 .gallery-item,
  .gallery-columns-3 .gallery-item,
  .gallery-columns-4 .gallery-item,
  .gallery-columns-5 .gallery-item,
  .gallery-columns-6 .gallery-item,
  .gallery-columns-7 .gallery-item,
  .gallery-columns-8 .gallery-item,
  .gallery-columns-9 .gallery-item {
    width: 49%;
    max-width: 49%;
  }
}
@media screen and (max-width: 480px) {
  .gallery-item,
  .gallery-columns-2 .gallery-item,
  .gallery-columns-3 .gallery-item,
  .gallery-columns-4 .gallery-item,
  .gallery-columns-5 .gallery-item,
  .gallery-columns-6 .gallery-item,
  .gallery-columns-7 .gallery-item,
  .gallery-columns-8 .gallery-item,
  .gallery-columns-9 .gallery-item {
    width: 100%;
    max-width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .x-scroll {
    overflow: auto;
  }
  .x-scroll table {
    width: 100%;
  }
  .x-scroll::-webkit-scrollbar {
    height: 5px;
  }
  .x-scroll::-webkit-scrollbar-track {
    background: #f1f1f1;
  }
  .x-scroll::-webkit-scrollbar-thumb {
    background: #d6d6d6;
  }
  .x-scroll td,
  .x-scroll th {
    white-space: nowrap;
  }
}
#header-box {
  z-index: 100;
  width: 100%;
  position: fixed;
  transition: 0.3s;
  background: #ffffff;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
  height: 70px;
  display: flex;
  align-items: center;
}
@media screen and (min-width: 1280px) {
  #header-box {
    height: 100px;
  }
}
body.scrolled #header-box {
  height: 70px;
}

header {
  margin: 0 auto;
  display: flex;
  width: 1280px;
  max-width: 94%;
  padding: 5px 0;
}
header #site-title a {
  display: block;
  padding: 5px 0 1px;
}
header #site-title a:hover {
  opacity: 0.7;
}
header #site-title a img {
  width: 120px;
  height: auto;
  vertical-align: bottom;
}
@media screen and (min-width: 480px) {
  header #site-title a img {
    width: 160px;
  }
}
@media screen and (min-width: 1280px) {
  header #site-title a img {
    width: 200px;
  }
}

#menu-box {
  margin-left: auto;
  display: flex;
  align-items: center;
}

#wrapper {
  width: 100%;
}
body:not(.home) #wrapper {
  flex: 1;
}

#footer-container {
  background: #ddd;
  padding: 50px 5%;
}
#footer-container footer {
  margin: 0 auto;
  width: 1080px;
  max-width: 100%;
  text-align: center;
}
#footer-container footer p,
#footer-container footer li {
  font-size: 18px;
  line-height: 1.5;
  color: #333;
}
#footer-container footer #footer-menu {
  margin: 10px auto 20px;
  margin: 10px auto;
  flex-wrap: wrap;
  justify-content: center;
  display: flex;
}
#footer-container footer #footer-menu li {
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  #footer-container footer #footer-menu li {
    margin-bottom: 0;
  }
}
#footer-container footer #footer-menu li a {
  margin: 0 15px;
  color: #333;
  font-size: 14px;
}
#footer-container footer #footer-menu li a:hover {
  color: #999;
}
#footer-container footer #copyright p {
  margin-top: 30px;
  font-size: clamp(0.625rem, 0.558rem + 0.26vw, 0.75rem);
}

article {
  width: 1080px;
  max-width: 94%;
  margin: 40px auto;
}
@media screen and (min-width: 768px) {
  article {
    margin: 80px auto;
  }
}
article.article-wide {
  width: 1280px;
}
article.article-youtube {
  margin: 70px auto -60px;
}
article.article-no-bottom {
  margin-bottom: 0;
}
article.article-no-bottom div:last-child {
  margin-bottom: 0;
}

section {
  width: 100%;
}
section.bg-gradient {
  background: rgb(255, 255, 255);
  background: linear-gradient(135deg, rgb(255, 255, 255) 0%, rgb(255, 221, 153) 100%);
}
.post-type-archive section {
  width: 100%;
}
section.section-center {
  margin: 50px auto 50px;
  width: 1280px;
}
@media screen and (min-width: 576px) {
  section.section-center {
    margin: 100px auto 150px;
  }
}
@media screen and (min-width: 576px) {
  .error404 section {
    min-height: 400px;
  }
}
section.section-narrow {
  width: 992px;
}
section#section-page {
  max-width: 94%;
}
section img {
  max-width: 100%;
  height: auto;
}
section iframe {
  max-width: 100%;
}

.page-title {
  font-size: 24px;
  letter-spacing: 0.3em;
  text-indent: 0.3em;
  color: #fff;
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  padding: 5px 70px 13px;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 100px;
  text-transform: lowercase;
  text-align: center;
  white-space: nowrap;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .page-title {
    padding: 0 50px 13px;
    min-width: 300px;
    font-size: 32px;
    min-height: 80px;
  }
}
@media screen and (min-width: 1280px) {
  .page-title {
    min-height: 113px;
    font-size: 48px;
  }
}
.page-title span {
  margin: -4px 0 0;
  display: block;
  letter-spacing: 0;
  font-size: 14px;
}
@media screen and (min-width: 768px) {
  .page-title span {
    margin: -8px 0 0;
    font-size: 18px;
  }
}
@media screen and (min-width: 1280px) {
  .page-title span {
    font-size: 24px;
  }
}

article:not(:last-child) {
  margin-bottom: 40px;
}
@media screen and (min-width: 768px) {
  article:not(:last-child) {
    margin-bottom: 80px;
  }
}
article hr {
  height: 0;
  margin: 0;
  padding: 0;
  border: 0;
  border-top: 1px solid #333;
}
article h2,
article h3,
article h4,
article h5,
article h6 {
  margin: 20px 0;
  line-height: 1.2;
  font-weight: bold;
}
article p,
article li {
  line-height: 2;
  margin: 20px 0;
  font-size: clamp(0.875rem, 0.784rem + 0.45vw, 1.125rem);
  line-height: 1.5;
  color: #333;
}
@media screen and (min-width: 768px) {
  article p,
  article li {
    margin: 30px 0;
  }
}
article li {
  margin: 10px 0;
}
article p.p-large {
  font-size: clamp(1rem, 0.865rem + 0.51vw, 1.25rem);
  font-weight: bold;
  line-height: 1.7;
}
article p.p-small {
  font-size: clamp(0.625rem, 0.558rem + 0.26vw, 0.75rem);
}
article h5,
article h6 {
  margin: 10px auto;
}
article table {
  width: 100%;
  max-width: 100%;
  margin: 40px auto;
}
article table th,
article table td {
  padding: 10px;
  font-size: 14px;
  box-sizing: border-box;
  display: block;
  text-align: left;
}
@media screen and (min-width: 576px) {
  article table th,
  article table td {
    display: table-cell;
    font-size: 14px;
  }
}
@media screen and (min-width: 768px) {
  article table th,
  article table td {
    min-width: 100px;
    font-size: 16px;
  }
}
article table th p,
article table td p {
  font-size: 14px;
}
@media screen and (min-width: 768px) {
  article table th p,
  article table td p {
    font-size: 16px;
  }
}
article table th {
  font-weight: bold;
  vertical-align: middle;
}
article table td {
  text-align: left;
}
article ul,
article ol {
  list-style: disc;
  margin-left: 1em;
  margin: 40px 0 40px 1em;
}
article ol {
  list-style: decimal;
}

.youtube {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  margin: 40px auto;
}
.youtube iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
}

.wp-video,
.wp-video-shortcode {
  width: 100% !important;
}

@media screen and (min-width: 992px) {
  .text-center-pc {
    text-align: center;
  }
}

.contact-submit {
  text-align: center;
}
.contact-submit input {
  -webkit-appearance: none;
  color: #333;
}

.overlay {
  content: "";
  display: block;
  width: 0;
  height: 0;
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.5s;
}
.overlay.open {
  width: 100%;
  height: 100%;
  opacity: 1;
}

#menu-box-sp-box {
  width: 250px;
  height: 100%;
  padding-top: 100px;
  background-color: #005bab;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 10;
  transform: translate(250px);
  transition: all 0.5s;
}
#menu-box-sp-box.open {
  transform: translate(0);
}
#menu-box-sp-box #main-menu-sp li {
  text-align: center;
  text-transform: uppercase;
}
#menu-box-sp-box #main-menu-sp li a {
  color: #fff;
  padding: 10px 0;
  display: block;
}
#menu-box-sp-box #main-menu-sp li a:hover {
  background: #fff;
  color: #005bab;
}

@media screen and (min-width: 1080px) {
  html.is-fixed,
  html.is-fixed body {
    height: 100%;
    overflow: hidden;
  }
}

#sns-box-sp {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}
#sns-box-sp a {
  display: block;
  margin: 0 5px;
}
#sns-box-sp a img {
  width: 40px;
}

.text-em {
  color: red;
}

#footer-banner {
  margin: 0 auto 20px;
  width: 1080px;
  max-width: 94%;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
@media screen and (min-width: 576px) {
  #footer-banner {
    margin: 0 auto 80px;
  }
}
#footer-banner img {
  width: 120px;
}
@media screen and (min-width: 576px) {
  #footer-banner img {
    width: 150px;
  }
}
#footer-banner a {
  display: block;
}
#footer-banner a img {
  vertical-align: bottom;
}
#footer-banner #footer-banner-right a:first-child {
  margin-bottom: 50px;
}

#section-archive {
  position: relative;
  width: 100%;
}

body.home {
  overflow-x: hidden;
  position: relative;
}

#top-youtube iframe {
  width: 100%;
}

#main-menu .menu-contact {
  margin-left: 10px;
}
#main-menu .menu-contact a {
  background: #005bab;
  color: #fff;
  border: solid 1px #005bab;
  border-radius: 100px;
  width: 156px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#main-menu .menu-contact a:hover {
  background: #fff;
  color: #005bab;
}

.top-youtube {
  margin-bottom: 60px;
}

ul.col3-circle {
  list-style: none;
  margin-bottom: -10px;
}
ul.col3-circle li {
  color: #333;
  text-align: center;
}
ul.col3-circle li h4 {
  color: #fff;
  font-weight: bold;
  margin: 0 auto 15px;
  font-size: clamp(1.25rem, 0.841rem + 2.05vw, 2.375rem);
}
ul.col3-circle li p {
  color: #333;
}

ul.col3-circle {
  width: 80%;
  margin: 0 auto;
  display: grid;
  gap: 40px;
  /* 以下、minmax内の「240px」が１個の円の最小幅。お好みで */
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
@media screen and (min-width: 576px) {
  ul.col3-circle {
    width: 100%;
  }
}

ul.col3-circle li {
  border-radius: 100%;
  padding: 16px;
  background: #005bab;
  /* 以下のFlexboxで文字を中央寄せ */
  display: flex;
  justify-content: center;
  align-items: center;
}

ul.col3-circle li::before {
  /* 擬似要素で正円を作る */
  display: block;
  content: "";
  padding-top: 100%;
}

ul.ul-windows {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0 0 -20px;
  padding: 0;
}
ul.ul-windows li {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  width: 100%;
  margin-bottom: 20px;
}
@media screen and (min-width: 576px) {
  ul.ul-windows li {
    width: 48%;
  }
  ul.ul-windows li:not(:nth-child(2n)) {
    margin-right: 4%;
  }
}
@media screen and (min-width: 768px) {
  ul.ul-windows li {
    width: 32%;
  }
  ul.ul-windows li:not(:nth-child(2n)) {
    margin-right: 0;
  }
  ul.ul-windows li:not(:nth-child(3n)) {
    margin-right: 2%;
  }
}
@media screen and (min-width: 1280px) {
  ul.ul-windows li {
    width: 22.74%;
  }
  ul.ul-windows li:not(:nth-child(3n)) {
    margin-right: 0;
  }
  ul.ul-windows li:not(:nth-child(4n)) {
    margin-right: 3%;
  }
}
ul.ul-windows li h4 {
  padding: 10px;
  text-align: center;
  border-top: solid 6px #999;
  font-size: 18px;
  line-height: 1.5em;
  font-weight: normal;
  box-sizing: border-box;
  padding-bottom: 35px;
  background: linear-gradient(-45deg, transparent 20px, #fff 19px, #fff 100%);
  filter: drop-shadow(1px 1px 3px rgba(0, 0, 0, 0.2)); /* drow-shadow を使う */
}
ul.ul-windows li h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 28px;
  height: 28px;
  border: 14px solid #999;
  border-right-color: transparent;
  border-bottom-color: transparent;
  box-sizing: border-box;
}

@media screen and (min-width: 768px) {
  #top-feature {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}
#top-feature #top-feature-l {
  width: 100%;
}
@media screen and (min-width: 768px) {
  #top-feature #top-feature-l {
    width: 36%;
  }
}
#top-feature #top-feature-l h4,
#top-feature #top-feature-l p {
  font-size: 18px;
  font-size: clamp(0.875rem, 0.784rem + 0.45vw, 1.125rem);
  line-height: 1.5;
}
#top-feature #top-feature-l h4 {
  font-weight: bold;
  margin-bottom: 10px;
}
#top-feature #top-feature-l ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
#top-feature #top-feature-r {
  width: 100%;
  padding-top: 20px;
}
@media screen and (min-width: 768px) {
  #top-feature #top-feature-r {
    width: 60%;
  }
}
#top-feature #top-feature-r img {
  vertical-align: bottom;
}

#top-feature-link {
  margin-top: 15px;
  text-align: right;
}
#top-feature-link a {
  color: #333;
}

#ul-top-function {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0;
  padding: 0;
  list-style: none;
}
#ul-top-function li {
  box-sizing: border-box;
  align-items: center;
  border: solid 4px #005bab;
  border-radius: 10px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 90px;
  width: 46%;
  margin: 0 0.8% 20px;
  font-size: 14px;
}
@media screen and (min-width: 576px) {
  #ul-top-function li {
    width: 28%;
  }
}
@media screen and (min-width: 992px) {
  #ul-top-function li {
    font-size: 16px;
    width: 20%;
  }
}
@media screen and (min-width: 1280px) {
  #ul-top-function li {
    width: 18.4%;
  }
}

#top-example {
  border: solid 4px #005bab;
  background: #fff;
  padding: 5%;
}
@media screen and (min-width: 768px) {
  #top-example {
    justify-content: space-between;
    padding: 40px;
    display: flex;
    flex-wrap: wrap;
  }
}
@media screen and (min-width: 768px) {
  #top-example #top-example-l {
    width: 53%;
  }
}
#top-example #top-example-l img {
  vertical-align: bottom;
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  #top-example #top-example-l img {
    margin-bottom: 0;
  }
}
#top-example #top-example-r {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  #top-example #top-example-r {
    width: 43%;
  }
}
#top-example #top-example-r h4 {
  font-size: 24px;
  font-size: clamp(1.125rem, 0.989rem + 0.68vw, 1.5rem);
  margin-top: 0;
  font-weight: bold;
  color: #333;
}
#top-example #top-example-r p {
  text-align: justify;
}
#top-example #top-example-r p#top-example-link {
  margin-top: auto;
  text-align: right;
}
#top-example #top-example-r p#top-example-link a {
  color: #333;
}

.qa-box {
  margin-bottom: 32px;
}

.qa-q,
.qa-a {
  padding: 5px 10px;
  background: #005bab;
  display: flex;
  align-items: center;
  color: #333;
}
.qa-q .icon-q,
.qa-q .icon-a,
.qa-a .icon-q,
.qa-a .icon-a {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  margin-right: 15px;
  border-radius: 5px;
}
.qa-q .icon-q .st0,
.qa-q .icon-a .st0,
.qa-a .icon-q .st0,
.qa-a .icon-a .st0 {
  fill: #ffffff;
}
.qa-q .icon-q .st1,
.qa-q .icon-a .st1,
.qa-a .icon-q .st1,
.qa-a .icon-a .st1 {
  fill: #ffab00;
}

.qa-q {
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}

.qa-a {
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  background: #dddddd;
}
.qa-a .icon-a .st0 {
  fill: #ffab00;
}
.qa-a .icon-a .st1 {
  fill: #ffffff;
}

#top-news-box {
  border-top: solid 1px #ccc;
  margin: 0;
  padding: 0;
  list-style: none;
}
#top-news-box li a {
  color: #333;
  border-bottom: solid 1px #ccc;
  padding-bottom: 2px;
  padding-bottom: 10px;
  transition: color 0.2s;
  display: block;
}
@media screen and (min-width: 768px) {
  #top-news-box li a {
    display: flex;
    align-items: center;
  }
}
#top-news-box li a:hover {
  color: #005bab;
}
#top-news-box li a span.news-time, #top-news-box li a span.news-category {
  width: 130px;
  display: block;
}

#top-dl {
  text-align: center;
}
#top-dl #top-dl-price {
  margin-top: 30px;
  margin-bottom: 20px;
}

#top-dl-wrapper {
  padding: 40px;
  background: #fafafa;
  margin: 40px auto 100px;
}

#dl-box {
  max-width: 94%;
  margin: 0 auto;
  width: 686px;
}
@media screen and (min-width: 768px) {
  #dl-box {
    display: flex;
    margin-top: 40px;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}
#dl-box a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  box-sizing: border-box;
  background: #005bab;
  color: #fff;
  width: 300px;
  border-radius: 10px;
  line-height: 1;
  border: solid 2px #005bab;
  transition: color 0.2s, background 0.2s;
}
@media screen and (min-width: 768px) {
  #dl-box a {
    margin: 0 auto 20px;
    width: 48%;
  }
}
#dl-box a:not(:nth-child(2n)) {
  margin-right: 4%;
}
#dl-box a:hover {
  background: #fff;
  color: #005bab;
}

.dl-img {
  margin-right: 10px;
}
.dl-img svg {
  width: 42px;
  height: 42px;
  vertical-align: bottom;
}
.dl-img .st0 {
  fill: #ffffff;
}
.dl-img .st1 {
  fill: #00489d;
}

.wpcf7 p.p-submit {
  text-align: center;
  margin-top: 40px;
}
.wpcf7 p.p-submit input {
  box-shadow: none;
  width: 200px;
  height: 60px;
  background: none;
}

.box-bottom-margin {
  margin-bottom: 60px;
}
.box-bottom-margin p {
  margin: 20px 0;
}

#table-system {
  border-top: solid 1px #ccc;
  margin: 0;
}
#table-system th,
#table-system td {
  border-bottom: solid 1px #ccc;
}

p.p-caption {
  font-size: 14px;
}

@media screen and (min-width: 768px) {
  .col2-50 {
    display: flex;
    justify-content: space-between;
  }
}
@media screen and (min-width: 768px) {
  .col2-50 .col2-50-inner {
    width: 48%;
  }
}
.col2-50 .col2-50-inner p:first-child {
  margin-top: 0;
}

.ul-archive {
  margin: 100px auto;
  list-style: none;
}
.ul-archive li a {
  padding: 10px 0;
  color: #333;
  display: block;
  border-bottom: solid 1px #ccc;
  padding-bottom: 12px;
  transition: color 0.2s;
  margin-bottom: 10px;
}
@media screen and (min-width: 768px) {
  .ul-archive li a {
    margin-bottom: 0;
    display: flex;
  }
}
.ul-archive li a:hover {
  color: #005bab;
}
.ul-archive li a:hover .news-category {
  background: #005bab;
}
.ul-archive li a .news-term {
  flex-shrink: 0;
  margin-bottom: 10px;
}
@media screen and (min-width: 768px) {
  .ul-archive li a .news-term {
    margin-bottom: 0;
  }
}
.ul-archive li a .news-date {
  margin-right: 10px;
}
.ul-archive li a .news-category {
  transition: background 0.2s;
  font-size: 10px;
  background: #005bab;
  color: #fff;
  padding: 2px 5px 4px;
  width: 100px;
  display: inline-block;
  text-align: center;
  margin-right: 15px;
}
@media screen and (min-width: 768px) {
  .ul-archive li a .news-category {
    font-size: 12px;
  }
}

.single-news-title {
  font-size: 30px;
  font-size: clamp(1.125rem, 0.852rem + 1.36vw, 1.875rem);
  border-bottom: solid 1px #ccc;
  line-height: 1.5;
  padding-bottom: 20px;
  color: #333;
}

#single-news-category {
  display: flex;
  justify-content: flex-end;
  font-size: clamp(0.875rem, 0.784rem + 0.45vw, 1.125rem);
}
#single-news-category span {
  color: #333;
}

#single-news-data {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

#date-article {
  margin-left: 5px;
}

.single-news .content-box {
  min-height: 300px;
}

span.require {
  font-size: 12px;
  background: #005bab;
  padding: 0 10px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  margin-left: 10px;
}

#table-contact th p {
  display: flex;
}

#catch-box {
  width: 100%;
  position: relative;
  height: calc(60vw + 70px);
}
@media screen and (min-width: 768px) {
  #catch-box {
    height: 100svh;
  }
}
#catch-box img {
  vertical-align: bottom;
  height: auto;
  height: 60vw;
  margin-top: 70px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  max-width: none;
}
@media screen and (min-width: 768px) {
  #catch-box img {
    height: 100svh;
    margin-top: 0;
  }
}

#catch-box-no-thumb {
  position: relative;
  padding: 180px 3% 0;
}
#catch-box-no-thumb .page-title {
  position: relative;
  color: #333;
  background: none;
  display: block;
  min-height: 0;
  height: auto;
  transform: none;
  text-align: center;
  margin: 0 auto;
  width: auto;
  padding: 0;
  left: auto;
  top: auto;
  min-width: auto;
  bottom: auto;
}
#catch-box-no-thumb .page-title span {
  margin-top: 3px;
  font-size: 18px;
}

#top-concept,
#top-service,
#top-about,
#top-products {
  width: 1080px;
  max-width: 94%;
  margin: 0 auto;
  padding: 80px 0;
}

#top-service {
  padding-bottom: 40px;
}

@media screen and (min-width: 768px) {
  #top-concept {
    display: flex;
  }
}
@media screen and (min-width: 768px) {
  #top-concept #top-concept-fb {
    width: 300px;
    flex-shrink: 0;
    margin-left: 15%;
  }
}
#top-concept #top-concept-text .heading-1:first-of-type {
  margin-top: 0;
}
#top-concept #top-concept-text .img-parrot {
  text-align: right;
  margin: 0;
}
#top-concept #top-concept-text .img-parrot img {
  width: 240px;
}

.heading-1,
.heading-1-center {
  font-weight: bold;
}

.heading-1,
.heading-1-center,
.heading-2,
.heading-2-center,
.heading-3,
.heading-3-center {
  font-size: 32px;
  letter-spacing: 0.3em;
  text-indent: 0.3em;
  color: #333;
  margin: 30px 0;
}
@media screen and (min-width: 768px) {
  .heading-1,
  .heading-1-center,
  .heading-2,
  .heading-2-center,
  .heading-3,
  .heading-3-center {
    font-size: 42px;
  }
}
.heading-1:first-child,
.heading-1-center:first-child,
.heading-2:first-child,
.heading-2-center:first-child,
.heading-3:first-child,
.heading-3-center:first-child {
  margin-top: 0;
}
@media screen and (min-width: 768px) {
  .heading-1:first-child,
  .heading-1-center:first-child,
  .heading-2:first-child,
  .heading-2-center:first-child,
  .heading-3:first-child,
  .heading-3-center:first-child {
    margin-top: -15px;
  }
}

.heading-1-center {
  text-align: center;
}

@media screen and (min-width: 480px) {
  .heading-1-center,
  .heading-2-center,
  .heading-3-center {
    text-align: center;
  }
}

.heading-2,
.heading-2-center,
.heading-3,
.heading-3-center {
  font-size: 26px;
  margin: 20px 0;
  letter-spacing: 0;
  text-indent: 0;
}
@media screen and (min-width: 768px) {
  .heading-2,
  .heading-2-center,
  .heading-3,
  .heading-3-center {
    letter-spacing: 0.1em;
    text-indent: 0.1em;
    margin: 40px 0;
    font-size: 32px;
  }
}
article + .heading-2,
article + .heading-2-center,
article + .heading-3,
article + .heading-3-center {
  margin-top: 0;
}

.heading-3,
.heading-3-center {
  font-size: 20px;
}
@media screen and (min-width: 768px) {
  .heading-3,
  .heading-3-center {
    font-size: 26px;
  }
}

.heading-m {
  font-size: 20px;
  margin: 30px auto;
}

section p,
section h3,
section h4,
section h5,
section h6 {
  margin: 30px 0;
  color: #333;
}

.bg-gradient-gray {
  background: rgb(255, 255, 255);
  background: linear-gradient(90deg, rgb(220, 220, 220) 0%, rgb(184, 185, 185) 100%);
}
@media screen and (min-width: 768px) {
  .bg-gradient-gray {
    background: linear-gradient(90deg, rgb(255, 255, 255) 0%, rgb(184, 185, 185) 100%);
  }
}
.bg-gradient-gray > article {
  padding: 40px 0;
}
@media screen and (min-width: 768px) {
  .bg-gradient-gray > article {
    padding: 80px 0;
  }
}

.ul-col3-round {
  margin-left: 0;
}
@media screen and (min-width: 768px) {
  .ul-col3-round {
    display: flex;
    flex-wrap: wrap;
  }
}
.ul-col3-round li {
  padding: 0;
  margin-bottom: 40px;
  list-style: none;
}
@media screen and (min-width: 768px) {
  .ul-col3-round li {
    width: 30%;
    margin: 0 1.66% 20px;
  }
}
.ul-col3-round li a {
  display: block;
}
.ul-col3-round li a img {
  transition: 0.3s;
}
.ul-col3-round li a:hover .ul-col3-round-heading {
  color: #005bab;
}
.ul-col3-round li a:hover img {
  transform: scale(1.1);
}
.ul-col3-round li p {
  margin: 10px 0;
  font-size: 15px;
  text-align: justify;
}
.ul-col3-round li p.ul-col3-round-img {
  text-align: center;
  margin: 10px auto;
  border-radius: 1000px;
  overflow: hidden;
  max-width: 360px;
}
@media screen and (min-width: 768px) {
  .ul-col3-round li p.ul-col3-round-img {
    margin: 10px auto 40px;
  }
}
.ul-col3-round li p.ul-col3-round-img img {
  vertical-align: bottom;
}
.ul-col3-round li p.ul-col3-round-heading {
  text-align: center;
  font-size: 20px;
  margin: 20px;
  font-size: 18px;
  font-weight: bold;
}

.ul-col3-square,
.ul-col3-rounded {
  margin: 0;
  padding: 0;
}
@media screen and (min-width: 768px) {
  .ul-col3-square,
  .ul-col3-rounded {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
}
.ul-col3-square + #top-online-shop,
.ul-col3-rounded + #top-online-shop {
  margin-top: 50px;
}
.ul-col3-square li,
.ul-col3-rounded li {
  padding: 0;
  list-style: none;
  margin-bottom: 40px;
}
@media screen and (min-width: 768px) {
  .ul-col3-square li,
  .ul-col3-rounded li {
    width: 27.33%;
    margin: 0 3% 20px;
  }
}
.ul-col3-square li a,
.ul-col3-rounded li a {
  display: block;
  transition: 0.3s;
}
.ul-col3-square li a img,
.ul-col3-rounded li a img {
  transition: 0.3s;
}
.ul-col3-square li a:hover img,
.ul-col3-rounded li a:hover img {
  opacity: 0.7;
}
.ul-col3-square li a:hover .ul-col3-square-heading-border,
.ul-col3-rounded li a:hover .ul-col3-square-heading-border {
  color: #005bab;
}
.ul-col3-square li p,
.ul-col3-rounded li p {
  margin: 10px 0;
  font-size: 15px;
  font-size: clamp(0.875rem, 0.784rem + 0.45vw, 1.125rem);
  text-align: justify;
}
.ul-col3-square li p.ul-col3-square-img, .ul-col3-square li p.ul-col3-rounded-img,
.ul-col3-rounded li p.ul-col3-square-img,
.ul-col3-rounded li p.ul-col3-rounded-img {
  text-align: center;
  margin: 10px auto;
}
.ul-col3-square li p.ul-col3-square-img img, .ul-col3-square li p.ul-col3-rounded-img img,
.ul-col3-rounded li p.ul-col3-square-img img,
.ul-col3-rounded li p.ul-col3-rounded-img img {
  vertical-align: bottom;
  width: 320px;
}
@media screen and (min-width: 768px) {
  .ul-col3-square li p.ul-col3-square-img img, .ul-col3-square li p.ul-col3-rounded-img img,
  .ul-col3-rounded li p.ul-col3-square-img img,
  .ul-col3-rounded li p.ul-col3-rounded-img img {
    width: auto;
  }
}
.ul-col3-square li p.ul-col3-rounded-img img,
.ul-col3-rounded li p.ul-col3-rounded-img img {
  border-radius: 50%;
}
.ul-col3-square li p.ul-col3-square-heading, .ul-col3-square li p.ul-col3-rounded-heading,
.ul-col3-rounded li p.ul-col3-square-heading,
.ul-col3-rounded li p.ul-col3-rounded-heading {
  text-align: center;
  font-size: 20px;
  margin: 20px;
  font-size: 18px;
}
.ul-col3-square li p.ul-col3-square-heading-l, .ul-col3-square li p.ul-col3-rounded-heading-l,
.ul-col3-rounded li p.ul-col3-square-heading-l,
.ul-col3-rounded li p.ul-col3-rounded-heading-l {
  margin: 20px;
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 0.3em;
  text-indent: 0.3em;
}
.ul-col3-square li p.ul-col3-square-heading-border, .ul-col3-square li p.ul-col3-rounded-heading-border, .ul-col3-square li p.ul-col3-square-heading-border-s, .ul-col3-square li p.ul-col3-rounded-heading-border-s,
.ul-col3-rounded li p.ul-col3-square-heading-border,
.ul-col3-rounded li p.ul-col3-rounded-heading-border,
.ul-col3-rounded li p.ul-col3-square-heading-border-s,
.ul-col3-rounded li p.ul-col3-rounded-heading-border-s {
  text-align: center;
  font-size: 24px;
  margin: 20px 0;
  padding-bottom: 15px;
  border-bottom: solid 1px #999999;
  letter-spacing: 0.3em;
}
.ul-col3-square li p.ul-col3-square-heading-border-s, .ul-col3-square li p.ul-col3-rounded-heading-border-s,
.ul-col3-rounded li p.ul-col3-square-heading-border-s,
.ul-col3-rounded li p.ul-col3-rounded-heading-border-s {
  font-size: 16px;
  font-weight: normal;
  letter-spacing: 0;
}
.ul-col3-square li p.ul-col3-square-heading-border, .ul-col3-square li p.ul-col3-square-heading-border-s,
.ul-col3-rounded li p.ul-col3-square-heading-border,
.ul-col3-rounded li p.ul-col3-square-heading-border-s {
  font-weight: bold;
}

#top-about .top-about-img-couple {
  margin: 20px 0 0;
}
#top-about .top-about-img-couple img {
  width: 200px;
}

@media screen and (min-width: 768px) {
  .col-2-img-and-text {
    display: flex;
    flex-wrap: wrap;
  }
}
.col-2-img-and-text:last-child {
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .col-2-img-and-text .col-2-img {
    width: 48%;
    margin-right: 4%;
  }
}
@media screen and (min-width: 768px) {
  .col-2-img-and-text .col-2-text {
    width: 48%;
  }
  .col-2-img-and-text .col-2-text *:first-child {
    margin-top: 0;
  }
}
.col-2-img-and-text .col-2-text .col-2-text-heading {
  font-size: 18px;
  margin: 20px 0;
}
@media screen and (min-width: 768px) {
  .col-2-img-and-text .col-2-text .col-2-text-heading {
    margin: 30px 0;
    font-size: 22px;
  }
  .col-2-img-and-text .col-2-text .col-2-text-heading:first-child {
    margin-top: 0;
  }
}

p.link-p {
  text-align: right;
}
p.link-p a {
  color: #333;
}

.margin-descender {
  margin-bottom: 40px;
}

@media screen and (min-width: 768px) {
  .products-ul {
    display: flex;
    flex-wrap: wrap;
  }
}
.products-ul li {
  margin: 0;
  padding: 0;
  list-style: none;
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .products-ul li {
    width: 30%;
  }
  .products-ul li:not(:nth-child(3n)) {
    margin-right: 5%;
  }
}
.products-ul li .top-products-ul-img {
  text-align: center;
}
.products-ul li .top-products-ul-img img {
  width: 320px;
}
@media screen and (min-width: 768px) {
  .products-ul li .top-products-ul-img img {
    width: auto;
  }
}
.products-ul li .top-products-ul-title {
  font-weight: bold;
}
.products-ul li .top-products-ul-title,
.products-ul li .top-products-ul-data {
  margin: 10px 0;
  border-bottom: solid 1px #999999;
  padding-bottom: 10px;
}
.products-ul li .top-products-ul-data {
  display: flex;
  justify-content: space-between;
}
.products-ul li .top-products-ul-text p {
  margin: 15px 0 0;
}

.products-ul + .products-ul {
  margin-top: 80px;
}

#top-online-shop {
  text-align: center;
  margin: 80px 0 0;
}
#top-online-shop a {
  display: block;
  transition: 0.3s;
}
#top-online-shop a:hover {
  opacity: 0.7;
}
#top-online-shop span {
  display: block;
}
#top-online-shop #top-online-shop-icon img {
  width: 64px;
  height: 64px;
  vertical-align: bottom;
}
@media screen and (min-width: 768px) {
  #top-online-shop #top-online-shop-icon img {
    width: 122px;
    height: 122px;
  }
}
#top-online-shop #top-online-shop-title {
  font-size: 20px;
  letter-spacing: 0.3em;
  color: #333;
  margin: 10px 0 0;
}
@media screen and (min-width: 768px) {
  #top-online-shop #top-online-shop-title {
    font-size: 32px;
  }
}

#contact-box {
  text-align: center;
  margin: 80px auto;
  max-width: 94%;
}
#contact-box #contact-link {
  margin-bottom: 80px;
}
#contact-box #contact-link a {
  display: inline-flex;
  padding: 6px 25px;
  font-size: 20px;
  color: #fff;
  background: #333;
  border-radius: 100px;
  transition: 0.3s;
  align-items: center;
  justify-content: center;
}
#contact-box #contact-link a:hover {
  color: #fff;
  background: #005bab;
}
#contact-box #contact-link a:hover #contact-link-svg .cls-2 {
  fill: #005bab;
}
#contact-box #contact-link a #contact-link-svg {
  width: 32px;
  height: 32px;
  margin-right: 5px;
}
#contact-box #contact-link a #contact-link-svg .cls-1 {
  fill: #fff;
}
#contact-box #contact-link a #contact-link-svg .cls-2 {
  transition: 0.3s;
  fill: #333;
}
#contact-box #contact-link a #contact-link-text {
  margin-bottom: 3px;
}

#contact-box-sns {
  display: flex;
  justify-content: center;
}
#contact-box-sns a {
  display: inline-block;
  padding: 0 10px;
  margin: 0 10px;
  transition: 0.3s;
}
#contact-box-sns a:hover {
  opacity: 0.7;
}
#contact-box-sns img {
  width: 48px;
  height: 48px;
}

#contact-school-box + #contact-box-sns {
  margin-bottom: 80px;
}

hr.hr-spacer {
  margin: 40px 0;
  height: 0;
  border-color: none;
}

article .col-2-img-and-text {
  margin: 40px 0;
}
@media screen and (min-width: 768px) {
  article .col-2-img-and-text {
    margin: 80px 0;
  }
}
article .col-2-img-and-text + .col-2-img-and-text {
  margin-top: 0;
}

.heading-gold {
  color: #ccbb66;
}

.heading-3-en {
  font-size: 24px;
  letter-spacing: 0.24em;
  font-weight: normal;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .heading-3-en {
    font-size: 40px;
  }
}

.col2-voice-box {
  display: flex;
  width: 100%;
  margin: 0 auto;
  max-width: 800px;
}
.col2-voice-box .col2-voice-img {
  width: 240px;
  margin-right: 5%;
  flex-shrink: 0;
}
.col2-voice-box .col2-voice-desc .col2-voice-heading:first-child {
  margin-top: 0;
}
.col2-voice-box .col2-voice-desc .col2-voice-heading + .col2-voice-name {
  margin-top: -25px;
  font-size: 15px;
}

.heading-icon {
  text-align: center;
}
.heading-icon img {
  width: 122px;
  height: 122px;
}

.box-white-rounded {
  padding: 30px 4%;
  background: #fff;
  border-radius: 10px;
}
@media screen and (min-width: 768px) {
  .box-white-rounded {
    padding: 30px 40px;
  }
}
.box-white-rounded:not(:last-of-type) {
  margin-bottom: 40px;
}
.box-white-rounded > *:first-child {
  margin-top: 0;
}

.heading-4 {
  font-size: 24px;
  margin: 30px 0;
}

#contact-school-box {
  width: 1080px;
  max-width: 94%;
  margin: 0 auto 40px;
}

.wpcf7 .form-acceptance {
  text-align: center;
  margin: 40px auto;
}
.wpcf7 table {
  width: 100%;
}
.wpcf7 table th,
.wpcf7 table td {
  vertical-align: middle;
}
.wpcf7 table th {
  text-align: left;
  width: 200px;
}
.wpcf7 table th span {
  background: #ee6600;
  color: #fff;
  font-size: 12px;
  padding: 0 5px 2px;
  margin-left: 10px;
}
.wpcf7 table td input,
.wpcf7 table td textarea {
  margin-bottom: 20px;
}

.ul-text-rounded {
  display: flex;
  flex-wrap: wrap;
  margin: 80px 0 60px;
  padding: 0;
  justify-content: center;
}
.ul-text-rounded li {
  padding: 2px 0 4px;
  list-style: none;
  text-align: center;
  border-radius: 100px;
  margin: 0 1% 20px;
  border: solid 1px #999999;
  width: 44%;
}
@media screen and (min-width: 768px) {
  .ul-text-rounded li {
    width: 22.8%;
  }
}

.center-box {
  text-align: center;
}

@media screen and (min-width: 576px) {
  .ul-white-small-container {
    display: flex;
    justify-content: space-between;
  }
}
@media screen and (min-width: 576px) {
  .ul-white-small-container > div {
    width: 48%;
    box-sizing: border-box;
  }
}
.ul-white-small-container > div > p {
  font-weight: bold;
  margin: 0 0 20px;
}

.ul-white-small-box {
  background: #fff;
  padding: 35px 40px;
  border-radius: 10px;
  margin: 40px 0 0;
}

.ul-white-small {
  display: inline-block;
  margin: 0;
}
.ul-white-small li {
  text-align: left;
  margin: 0;
  list-style: none;
}
.ul-white-small li:before {
  content: "●";
}

.ul-flow {
  display: flex;
  justify-content: space-between;
  margin: 0;
  padding: 0;
}
.ul-flow li {
  margin: 0;
  padding: 0;
  width: 16%;
  list-style: none;
  border: 1px solid #999999;
  background: #fff;
  border-radius: 50%;
  position: relative;
}
.ul-flow li:not(:last-child):after {
  right: -20%;
  top: 50%;
  position: absolute;
  transform: translateY(-50%);
  content: "";
  width: 2vw;
  height: 2vw;
  display: block;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2018.85%2018.74%22%3E%20%3Cpath%20style%3D%22fill%3A%20%23999%3B%22%20d%3D%22M7.84%2C3.13l4.51%2C4.33H1.43c-.8%2C0-1.43.64-1.43%2C1.43v.96c0%2C.8.64%2C1.43%2C1.43%2C1.43h10.92l-4.51%2C4.33c-.58.56-.59%2C1.48-.02%2C2.05l.66.65c.56.56%2C1.47.56%2C2.03%2C0l7.93-7.93c.56-.56.56-1.47%2C0-2.03L10.5.42c-.56-.56-1.47-.56-2.03%2C0l-.66.65c-.57.57-.56%2C1.5.02%2C2.06Z%22%2F%3E%3C%2Fsvg%3E");
}
@media screen and (min-width: 768px) {
  .ul-flow li:not(:last-child):after {
    width: 20px;
    height: 20px;
  }
}
.ul-flow li .circle-height {
  position: relative;
  padding-top: 100%;
  height: 0;
}
.ul-flow li .circle-height p {
  position: absolute;
  top: calc((100% - 1em) / 2);
  left: 0;
  right: 0;
  margin: 0;
  text-align: center;
  line-height: 1;
  font-size: 2.8vw;
}
@media screen and (min-width: 768px) {
  .ul-flow li .circle-height p {
    font-size: 22px;
  }
}

.p-inquiry {
  text-align: center;
  width: 94%;
  margin: 0 auto;
}

.margin-s {
  margin: 40px 0;
}

.margin-m {
  margin: 80px 0;
}

.online-desc-p {
  text-align: center;
}

table.table-outline {
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
}
table.table-outline tr {
  border-top: solid 1px #999999;
}
table.table-outline tr:last-child {
  border-bottom: solid 1px #999999;
}
table.table-outline tr th {
  text-align: center;
  min-width: 200px;
}

@media screen and (min-width: 768px) {
  .publication-box {
    display: flex;
  }
}
.publication-box .publication-img {
  width: 400px;
  flex-shrink: 0;
  display: flex;
  max-width: 100%;
  margin-right: 40px;
}
.publication-box .publication-img img {
  align-self: flex-start;
}
.publication-box .publication-img .publication-img-inner:first-child {
  margin-right: 10px;
}
.publication-box .publication-text .publication-text-title {
  margin-top: 0;
  font-weight: bold;
}

.contact-desc {
  text-align: right;
}

.wewefaw {
  width: 240px;
  height: auto;
  display: block;
  margin-left: auto;
}

#main-menu li.current-menu-item > a {
  color: #005bab;
}

.wpcf7-form table th,
.wpcf7-form table td {
  display: block;
}
@media screen and (min-width: 768px) {
  .wpcf7-form table th,
  .wpcf7-form table td {
    display: table-cell;
  }
}
.wpcf7-form table th p {
  display: flex;
  align-items: center;
}
.wpcf7-form table th p span {
  font-size: 10px;
}
@media screen and (min-width: 768px) {
  .wpcf7-form table th p span {
    font-size: 12px;
  }
}

.hover-img {
  display: block;
  color: #333;
}
.hover-img:hover .top-products-ul-title {
  color: #005bab;
}