@charset "UTF-8";
/*
Theme Name: myportfolio-ask
Author: Ayaka Hida
Author URI: http://portfolio.misaikonomu-design.tech/
*/
html {
  color: #000;
  background: #fff;
}

body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
input,
textarea,
p,
blockquote,
th,
td {
  margin: 0;
  padding: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}

fieldset,
img {
  border: 0;
}

address,
caption,
cite,
code,
dfn,
em,
strong,
th,
var {
  font-style: normal;
  font-weight: normal;
}

ol,
ul {
  list-style: none;
}

caption,
th {
  text-align: left;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
}

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

abbr,
acronym {
  border: 0;
  font-variant: normal;
}

sup {
  vertical-align: text-top;
}

sub {
  vertical-align: text-bottom;
}

input,
textarea,
select,
button {
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  font-size: 100%;
  border-radius: 0;
  border: none;
  appearance: none;
  -webkit-appearance: none;
  background-color: inherit;
}

input,
textarea,
select {
  font-size: inherit;
}

textarea {
  resize: vertical;
  display: block;
}

button {
  padding: 0;
  cursor: pointer;
}

legend {
  color: inherit;
}

tbody {
  -webkit-text-size-adjust: 100%;
}

main {
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

svg {
  display: block;
}

* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  box-sizing: border-box;
}

*::before,
*::after {
  box-sizing: border-box;
}

/*=============================
◎共通 テキストアニメーション 8-5
=============================== */
/*全共通*/
.slide-in {
  overflow: hidden;
  display: inline-block;
}

.slide-in_inner {
  display: inline-block;
}

/* 上下のアニメーション*/
.downAnime {
  opacity: 0; /* 事前に透過0 にして消しておく*/
}

.slideAnimeDownUp {
  -webkit-animation-name: slideTextY100;
  animation-name: slideTextY100;
  -webkit-animation-duration: 2.5s;
  animation-duration: 2.5s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes slideTextY100 {
  from {
    -webkit-transform: translateY(100%);
    transform: translateY(100%); /* 要素を上の枠外に移動*/
    opacity: 0;
  }
  to {
    -webkit-transform: translateY(0);
    transform: translateY(0); /* 要素を元の位置に移動*/
    opacity: 1;
  }
}

@keyframes slideTextY100 {
  from {
    -webkit-transform: translateY(100%);
    transform: translateY(100%); /* 要素を上の枠外に移動*/
    opacity: 0;
  }
  to {
    -webkit-transform: translateY(0);
    transform: translateY(0); /* 要素を元の位置に移動*/
    opacity: 1;
  }
}
.slideAnimeUpDown {
  -webkit-animation-name: slideTextY-100;
  animation-name: slideTextY-100;
  -webkit-animation-duration: 2.5s;
  animation-duration: 2.5s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes slideTextY-100 {
  from {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%); /* 要素を下の枠外に移動*/
    opacity: 0;
  }
  to {
    -webkit-transform: translateY(0);
    transform: translateY(0); /* 要素を元の位置に移動*/
    opacity: 1;
  }
}

@keyframes slideTextY-100 {
  from {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%); /* 要素を下の枠外に移動*/
    opacity: 0;
  }
  to {
    -webkit-transform: translateY(0);
    transform: translateY(0); /* 要素を元の位置に移動*/
    opacity: 1;
  }
}
/*=============================
◎共通 テキストアニメーション 8-9
=============================== */
.blur {
  -webkit-animation-name: blurAnime;
  animation-name: blurAnime;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

@-webkit-keyframes blurAnime {
  from {
    -webkit-filter: blur(10px);
    filter: blur(10px);
    -webkit-transform: scale(1.02);
    transform: scale(1.02);
    opacity: 0;
  }
  to {
    -webkit-filter: blur(0);
    filter: blur(0);
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes blurAnime {
  from {
    -webkit-filter: blur(10px);
    filter: blur(10px);
    -webkit-transform: scale(1.02);
    transform: scale(1.02);
    opacity: 0;
  }
  to {
    -webkit-filter: blur(0);
    filter: blur(0);
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
/*
.blurTrigger {
  opacity: 0;
}
*/
/*=============================
◎共通 テキストアニメーション 8-17
=============================== */
.glowAnime span {
  opacity: 0;
}

/*アニメーションで透過を0から1に変化させtext-shadowをつける*/
.glowAnime.glow span {
  -webkit-animation: glow_anime_on 0.3s ease-out forwards;
  animation: glow_anime_on 0.3s ease-out forwards;
}

@-webkit-keyframes glow_anime_on {
  0% {
    opacity: 0;
    text-shadow:
      0 0 0 #fff,
      0 0 0 #fff;
  }
  50% {
    opacity: 1;
    text-shadow:
      0 0 10px #fff,
      0 0 15px #fff;
  }
  100% {
    opacity: 1;
    text-shadow:
      0 0 0 #fff,
      0 0 0 #fff;
  }
}

@keyframes glow_anime_on {
  0% {
    opacity: 0;
    text-shadow:
      0 0 0 #fff,
      0 0 0 #fff;
  }
  50% {
    opacity: 1;
    text-shadow:
      0 0 10px #fff,
      0 0 15px #fff;
  }
  100% {
    opacity: 1;
    text-shadow:
      0 0 0 #fff,
      0 0 0 #fff;
  }
}
/*=============================
◎共通 img (background)
=============================== */
/*=============================
◎共通 icon
=============================== */
/*=============================
◎共通 右向き三角
=============================== */
/*=============================
◎共通 タイトル
=============================== */
.container_ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding-bottom: 50px;
}
@media (min-width: 1440px) {
  .container_ttl {
    padding-bottom: 100px;
  }
}
.container_ttl .left-line {
  width: 6px;
  height: 34px;
  background-color: #33cccc;
  border-radius: 3px;
  display: inline-block;
}
@media (min-width: 1440px) {
  .container_ttl .left-line {
    height: 52px;
  }
}
.container_ttl p {
  font-family: "Noto Serif JP";
  font-size: 24px;
  font-weight: 500;
  color: #fff;
  line-height: 1;
  margin-left: 20px;
  padding-top: 3px;
  display: inline-block;
}
@media (min-width: 1440px) {
  .container_ttl p {
    font-size: 36px;
    margin-left: 30px;
    padding-top: 5px;
  }
}

/*=============================
◆ヘッダー
=============================== */
header {
  position: relative;
}

.header_top {
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url(./image/meeting-min.jpg);
  background-position: center;
  display: block;
  height: 667px;
  position: relative;
}
@media (min-width: 768px) {
  .header_top {
    height: 1024px;
  }
}
.header_top .container_01 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  height: 70px;
  background-color: rgba(0, 51, 102, 0.2);
}
@media (min-width: 768px) {
  .header_top .container_01 {
    height: 100px;
  }
}
@media (min-width: 1440px) {
  .header_top .container_01 {
    position: relative;
  }
}
.header_top .company_rogo {
  height: 50px;
  width: 244px;
  display: block;
  margin-left: 15px;
}
@media (min-width: 768px) {
  .header_top .company_rogo {
    height: 70px;
    width: 342px;
  }
}
@media (min-width: 1440px) {
  .header_top .company_rogo {
    margin-left: 50px;
  }
}
.header_top .mail_container {
  position: absolute;
  right: 150px;
}
@media (max-width: 1200px) {
  .header_top .mail_container {
    display: none;
  }
}
.header_top .mail_icon {
  width: 60px;
  background-color: #003366;
  -webkit-mask-image: url(./image/8665305_envelope_email_icon.svg);
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url(./image/8665305_envelope_email_icon.svg);
  mask-size: contain;
  mask-repeat: no-repeat;
  -webkit-mask-position: contain;
  mask-position: contain;
  display: inline-block;
  aspect-ratio: 1/1;
  margin-right: 15px;
}
.header_top .line_icon {
  width: 60px;
  background-color: #003366;
  -webkit-mask-image: url(./image/4691359_line_icon.svg);
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url(./image/4691359_line_icon.svg);
  mask-size: contain;
  mask-repeat: no-repeat;
  -webkit-mask-position: contain;
  mask-position: contain;
  display: inline-block;
  aspect-ratio: 1/1;
}
.header_top .tel_container {
  display: grid;
  position: absolute;
  right: 300px;
}
@media (max-width: 1200px) {
  .header_top .tel_container {
    display: none;
  }
}
.header_top .container_02 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: end;
}
.header_top .tel_icon {
  width: 60px;
  background-color: #003366;
  -webkit-mask-image: url(./image/211830_telephone_icon.svg);
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url(./image/211830_telephone_icon.svg);
  mask-size: contain;
  mask-repeat: no-repeat;
  -webkit-mask-position: contain;
  mask-position: contain;
  aspect-ratio: 1/1;
  display: block;
}
.header_top .tel {
  font-family: "Noto Sans JP";
  font-size: 24px;
  font-weight: 500;
  color: #003366;
  margin: 0 15px;
}
@media (min-width: 1200px) {
  .header_top .tel {
    font-size: 32px;
  }
}
@media (max-width: 768px) {
  .header_top .uketuke-jikan {
    display: none;
  }
}
.header_top .uketuke-jikan {
  font-family: "Noto Sans JP";
  font-size: 16px;
  color: #333333;
  text-align: right;
}
.header_top .menu-btn {
  position: fixed;
  top: 11px;
  right: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 48px;
  width: 48px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  z-index: 90;
  background-color: #777;
  border-radius: 4px;
}
@media (min-width: 768px) {
  .header_top .menu-btn {
    width: 60px;
    height: 60px;
    top: 20px;
  }
}
@media (min-width: 1440px) {
  .header_top .menu-btn {
    right: 50px;
  }
}
.header_top .menu-btn span,
.header_top .menu-btn span:before,
.header_top .menu-btn span:after {
  content: "";
  display: block;
  height: 3px;
  width: 30px;
  border-radius: 3px;
  background-color: #ffffff;
  position: absolute;
}
.header_top .menu-btn span:before {
  bottom: 10px;
}
.header_top .menu-btn span:after {
  top: 10px;
}
.header_top h1 {
  font-family: "Noto Serif JP";
  font-weight: 600;
  line-height: 1.4;
  color: #000033;
}
.header_top h2 {
  font-family: "Noto Serif JP";
  font-weight: 700;
  line-height: 1.4;
  color: #000033;
}
.header_top .container_ttl01 {
  display: grid;
  margin: 50px 0 0 0px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.header_top .ttl01_s_01,
.header_top .ttl01_s_02 {
  display: block;
  font-size: 18px;
  line-height: 1.666;
  height: 32px;
  padding: 0px 10px;
  background-color: #fff;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.header_top .ttl01_s_01 span,
.header_top .ttl01_s_02 span {
  color: #a28255;
  font-size: 22px;
  font-weight: 700;
}
@media (min-width: 768px) {
  .header_top .ttl01_s_01,
  .header_top .ttl01_s_02 {
    display: none;
  }
}
.header_top .ttl01_s_02 {
  line-height: 1.4;
}
@media (max-width: 767px) {
  .header_top .ttl01 {
    display: none;
  }
}
@media (min-width: 768px) {
  .header_top .ttl01 {
    text-align: center;
    font-size: 24px;
    padding-top: 20px;
  }
  .header_top .ttl01 span {
    color: #a28255;
    font-size: 30px;
  }
}
@media (min-width: 1440px) {
  .header_top .ttl01 {
    font-size: 40px;
    padding-top: 120px;
  }
  .header_top .ttl01 span {
    color: #a28255;
    font-size: 42px;
  }
}
.header_top h2 {
  text-align: center;
}
@media (max-width: 767px) {
  .header_top h2 {
    font-size: 24px;
    margin-top: 20px;
  }
}
@media (min-width: 768px) {
  .header_top h2 {
    margin-top: 40px;
    font-size: 36px;
  }
}
@media (min-width: 1440px) {
  .header_top h2 {
    margin-top: 20px;
    font-size: 48px;
  }
}
@media (min-width: 1200px) {
  .header_top .s-m_br {
    display: none;
  }
}
@media (max-width: 767px) {
  .header_top .container_03 {
    display: grid;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    margin-top: 30px;
    gap: 10px;
  }
}
@media (min-width: 768px) {
  .header_top .container_03 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 630px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 30px;
    margin: 67px auto 0 auto;
  }
}
@media (min-width: 1440px) {
  .header_top .container_03 {
    width: 1300px;
  }
}
.header_top .staff {
  position: absolute;
  bottom: 0%;
  aspect-ratio: 1/0.619047;
}
@media (max-width: 767px) {
  .header_top .staff {
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 360px;
  }
}
@media (min-width: 768px) {
  .header_top .staff {
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 620px;
  }
}
@media (min-width: 1440px) {
  .header_top .staff {
    width: 742px;
    left: 50%;
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
}
.header_top .staff_img {
  width: 100%;
  height: 100%;
  -o-object-position: 0% 0%;
  object-position: 0% 0%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
}
.header_top .three-blue_txt {
  font-family: "Noto Sans JP";
  font-size: 16px;
  line-height: 2.5;
  text-align: center;
  color: #fff;
  background-color: rgba(0, 51, 153, 0.8);
  border-top-left-radius: 2px;
  border-bottom-left-radius: 2px;
  width: 189px;
  display: inline-block;
}
@media (min-width: 768px) {
  .header_top .three-blue_txt {
    width: 300px;
    font-size: 24px;
    border-top-right-radius: 2px;
    border-bottom-right-radius: 2px;
  }
}
.header_top {
  /* アニメーションスタートの遅延時間を決めるCSS*/
}
.header_top .delay-time02 {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}
.header_top .delay-time04 {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
}
.header_top {
  /*スタート時は要素自体を透過0にするためのopacity:0;を指定する*/
}
.header_top .box {
  opacity: 0;
}
.header_top {
  /*動き自体の指定*/
}
.header_top .fadeUp {
  -webkit-animation-name: fadeUpAnime;
  animation-name: fadeUpAnime;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  opacity: 0;
}
@-webkit-keyframes fadeUpAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(100px);
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes fadeUpAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(100px);
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

/*=============================
◆お問い合わせ
=============================== */
.toiawase {
  padding: 40px 0;
  background-color: #f4f8f9;
}
@media (min-width: 1440px) {
  .toiawase {
    position: absolute;
    bottom: 100px;
    left: 60px;
    border-radius: 5px;
    padding: 35px 30px 30px 30px;
  }
}
@media (min-width: 1440px) and (min-width: 1920px) {
  .toiawase {
    left: 160px;
  }
}
.toiawase .tel_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.toiawase .container_01 {
  display: grid;
  gap: 10px;
  position: relative;
}
@media (min-width: 768px) {
  .toiawase .container_01 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 20px;
  }
}
.toiawase .mail_container,
.toiawase .line_container {
  width: 350px;
  height: 100px;
  border-radius: 8px;
  padding: 18px 30px;
  margin: 0px auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-decoration: none;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  outline: none;
}
@media (min-width: 1440px) {
  .toiawase .mail_container,
  .toiawase .line_container {
    width: 260px;
    height: 90px;
    padding: 18px 20px;
  }
}
.toiawase .mail_container {
  border: 3px solid #3399ff;
  background-color: rgba(51, 153, 255, 0.1);
}
.toiawase .line_container {
  border: 3px solid #33cccc;
  background-color: rgba(51, 204, 204, 0.1);
}
.toiawase .tel_icon {
  width: 72px;
  background-color: #a28255;
  -webkit-mask-image: url(./image/211830_telephone_icon.svg);
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url(./image/211830_telephone_icon.svg);
  mask-size: contain;
  mask-repeat: no-repeat;
  -webkit-mask-position: contain;
  mask-position: contain;
  aspect-ratio: 1/1;
}
@media (min-width: 1440px) {
  .toiawase .tel_icon {
    width: 66px;
    background-color: #a28255;
    -webkit-mask-image: url(./image/211830_telephone_icon.svg);
    -webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-image: url(./image/211830_telephone_icon.svg);
    mask-size: contain;
    mask-repeat: no-repeat;
    -webkit-mask-position: contain;
    mask-position: contain;
  }
}
.toiawase .mail_icon {
  width: 55px;
  background-color: #3399ff;
  -webkit-mask-image: url(./image/8665305_envelope_email_icon.svg);
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url(./image/8665305_envelope_email_icon.svg);
  mask-size: contain;
  mask-repeat: no-repeat;
  -webkit-mask-position: contain;
  mask-position: contain;
}
@media (min-width: 1440px) {
  .toiawase .mail_icon {
    width: 40px;
    background-color: #3399ff;
    -webkit-mask-image: url(./image/8665305_envelope_email_icon.svg);
    -webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-image: url(./image/8665305_envelope_email_icon.svg);
    mask-size: contain;
    mask-repeat: no-repeat;
    -webkit-mask-position: contain;
    mask-position: contain;
  }
}
.toiawase .line_icon {
  width: 55px;
  background-color: #33cccc;
  -webkit-mask-image: url(./image/4691359_line_icon.svg);
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url(./image/4691359_line_icon.svg);
  mask-size: contain;
  mask-repeat: no-repeat;
  -webkit-mask-position: contain;
  mask-position: contain;
}
@media (min-width: 1440px) {
  .toiawase .line_icon {
    width: 40px;
    background-color: #33cccc;
    -webkit-mask-image: url(./image/4691359_line_icon.svg);
    -webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-image: url(./image/4691359_line_icon.svg);
    mask-size: contain;
    mask-repeat: no-repeat;
    -webkit-mask-position: contain;
    mask-position: contain;
  }
}
.toiawase p {
  font-family: "Noto Sans JP";
  font-size: 20px;
  font-weight: 500;
  color: #333;
  line-height: 1.208333;
}
.toiawase .txt_m {
  color: #336699;
}
.toiawase .txt_l {
  color: #009999;
}
.toiawase .tel {
  font-family: "Noto Sans JP";
  font-size: 32px;
  color: #a28255;
  padding: 7px 0 0 15px;
  line-height: 1;
}
.toiawase .uketuke-jikan {
  font-family: "Noto Sans JP";
  font-size: 20px;
  font-weight: 400;
  color: #333;
  margin: 12px auto 30px auto;
  padding-left: 16px;
  text-align: center;
}
@media (min-width: 1440px) {
  .toiawase .uketuke-jikan {
    margin: 12px auto 20px auto;
  }
}
.toiawase .mail_tri {
  background-color: #3399ff;
  height: 30px;
  width: 25.9807621135px;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  -ms-flex-item-align: center;
  align-self: center;
}
@media (min-width: 1440px) {
  .toiawase .mail_tri {
    background-color: #3399ff;
    height: 25px;
    width: 21.6506350946px;
    clip-path: polygon(0 0, 100% 50%, 0 100%);
    -ms-flex-item-align: center;
    align-self: center;
  }
}
.toiawase .line_tri {
  background-color: #33cccc;
  height: 30px;
  width: 25.9807621135px;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  -ms-flex-item-align: center;
  align-self: center;
}
@media (min-width: 1440px) {
  .toiawase .line_tri {
    background-color: #33cccc;
    height: 25px;
    width: 21.6506350946px;
    clip-path: polygon(0 0, 100% 50%, 0 100%);
    -ms-flex-item-align: center;
    align-self: center;
  }
}

/*=====================
　　ボタン共通設定
=======================*/
.btn {
  /*アニメーションの起点とするためrelativeを指定*/
  position: relative;
  overflow: hidden;
  /*アニメーションの指定*/
  -webkit-transition: ease 0.2s;
  transition: ease 0.2s;
}

/*ボタン内spanの形状*/
.btn span {
  position: relative;
  z-index: 3; /*z-indexの数値をあげて文字を背景よりも手前に表示*/
}

/*hoverした際の形状*/
.m_bgleft:hover:before {
  -webkit-transform-origin: left top;
  transform-origin: left top;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
}

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

/*== 背景が流れる（左から右） */
.m_bgleft:before,
.l_bgleft:before {
  content: "";
  /*絶対配置で位置を指定*/
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  /*色や形状*/
  width: 100%;
  height: 100%;
  /*アニメーション*/
  -webkit-transition: -webkit-transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transition: -webkit-transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transition: transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transition:
    transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s,
    -webkit-transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transform-origin: right top;
  transform-origin: right top;
}

.m_bgleft:before {
  background: #3399ff;
}

.l_bgleft:before {
  background: #33cccc;
}

.btn:hover .txt_m {
  position: relative;
  z-index: 3; /*z-indexの数値をあげて文字を背景よりも手前に表示*/
  color: #99ccff;
}

.btn:hover .txt_l {
  position: relative;
  z-index: 3; /*z-indexの数値をあげて文字を背景よりも手前に表示*/
  color: #ccffff;
}

.btn:hover .mail_icon {
  position: relative;
  z-index: 3; /*z-indexの数値をあげて文字を背景よりも手前に表示*/
  width: 55px;
  background-color: #99ccff;
  -webkit-mask-image: url(./image/8665305_envelope_email_icon.svg);
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url(./image/8665305_envelope_email_icon.svg);
  mask-size: contain;
  mask-repeat: no-repeat;
  -webkit-mask-position: contain;
  mask-position: contain;
}
@media (min-width: 1440px) {
  .btn:hover .mail_icon {
    width: 40px;
    background-color: #99ccff;
    -webkit-mask-image: url(./image/8665305_envelope_email_icon.svg);
    -webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-image: url(./image/8665305_envelope_email_icon.svg);
    mask-size: contain;
    mask-repeat: no-repeat;
    -webkit-mask-position: contain;
    mask-position: contain;
  }
}

.btn:hover .mail_tri {
  position: relative;
  z-index: 3; /*z-indexの数値をあげて文字を背景よりも手前に表示*/
  background-color: #99ccff;
  height: 30px;
  width: 25.9807621135px;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  -ms-flex-item-align: center;
  align-self: center;
}
@media (min-width: 1440px) {
  .btn:hover .mail_tri {
    background-color: #99ccff;
    height: 25px;
    width: 21.6506350946px;
    clip-path: polygon(0 0, 100% 50%, 0 100%);
    -ms-flex-item-align: center;
    align-self: center;
  }
}

.btn:hover .line_icon {
  position: relative;
  z-index: 3; /*z-indexの数値をあげて文字を背景よりも手前に表示*/
  width: 55px;
  background-color: #ccffff;
  -webkit-mask-image: url(./image/4691359_line_icon.svg);
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url(./image/4691359_line_icon.svg);
  mask-size: contain;
  mask-repeat: no-repeat;
  -webkit-mask-position: contain;
  mask-position: contain;
}
@media (min-width: 1440px) {
  .btn:hover .line_icon {
    width: 40px;
    background-color: #ccffff;
    -webkit-mask-image: url(./image/4691359_line_icon.svg);
    -webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-image: url(./image/4691359_line_icon.svg);
    mask-size: contain;
    mask-repeat: no-repeat;
    -webkit-mask-position: contain;
    mask-position: contain;
  }
}

.btn:hover .line_tri {
  position: relative;
  z-index: 3; /*z-indexの数値をあげて文字を背景よりも手前に表示*/
  background-color: #ccffff;
  height: 30px;
  width: 25.9807621135px;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  -ms-flex-item-align: center;
  align-self: center;
}
@media (min-width: 1440px) {
  .btn:hover .line_tri {
    background-color: #ccffff;
    height: 25px;
    width: 21.6506350946px;
    clip-path: polygon(0 0, 100% 50%, 0 100%);
    -ms-flex-item-align: center;
    align-self: center;
  }
}

/*=============================
◆こんなお悩みありませんか？
=============================== */
.onayami {
  position: relative;
}
.onayami .onayami_top {
  position: relative;
  background-image: radial-gradient(
    ellipse 90% 90% at 50% 50%,
    #0066cc 0%,
    #003366 60%
  );
}
@media (max-width: 599px) {
  .onayami .onayami_top {
    padding: 80px 10px 80px 10px;
  }
}
@media (min-width: 600px) {
  .onayami .onayami_top {
    padding: 100px 0;
  }
}
@media (min-width: 1440px) {
  .onayami .onayami_top {
    padding: 140px 0;
  }
}
.onayami .ttl_outer {
  display: block;
  text-align: center;
}
.onayami .ttl {
  font-family: "Noto Serif JP";
  font-size: 24px;
  font-weight: 600;
  line-height: 1;
  color: #fff;
  display: inline-block;
  text-shadow:
    1px 1px 0px #003366,
    -1px 1px 0px #003366,
    1px -1px 0px #003366,
    -1px -1px 0px #003366;
}
@media (max-width: 599px) {
  .onayami .ttl {
    margin-bottom: 70px;
  }
}
@media (min-width: 600px) {
  .onayami .ttl {
    text-align: center;
    margin-bottom: 70px;
  }
}
@media (min-width: 1440px) {
  .onayami .ttl {
    font-size: 36px;
  }
}
@media (min-width: 599px) {
  .onayami .container_01 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 30px;
    margin: 0 auto;
  }
}
@media (min-width: 1440px) {
  .onayami .container_01 {
    gap: 77px;
  }
}
@media (max-width: 599px) {
  .onayami .img {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 100px;
    opacity: 0.5;
  }
}
@media (min-width: 600px) {
  .onayami .img {
    width: 134px;
  }
}
@media (min-width: 1440px) {
  .onayami .img {
    width: 250px;
  }
}
@media (min-width: 1440px) {
  .onayami .nayami {
    display: inline-block;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 735px;
  }
}
.onayami p {
  font-family: "Noto Sans JP";
  font-size: 20px;
  line-height: 1.3;
  color: #333;
  background-color: #f2f2f2;
  text-align: center;
  text-align: left;
  padding: 14px 25px;
  margin-bottom: 15px;
  border-radius: 3px;
}
@media (min-width: 1440px) {
  .onayami p {
    font-size: 24px;
    margin-bottom: 20px;
  }
}
@media (max-width: 1199px) {
  .onayami .txt {
    display: none;
  }
}
@media (min-width: 1440px) {
  .onayami .txt {
    display: inline-block;
  }
}
@media (min-width: 1200px) {
  .onayami .kaigyo_txt {
    display: none;
  }
}

/*=============================
◆そのお悩み解決します
=============================== */
.onayami-kaiketu {
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url(./image/keieisenryaku-min.jpg);
  background-position: center;
  display: block;
  width: 100%;
  position: relative;
}
@media (max-width: 599px) {
  .onayami-kaiketu {
    height: 800px;
  }
}
@media (min-width: 600px) {
  .onayami-kaiketu {
    height: 1000px;
  }
}
@media (min-width: 1440px) {
  .onayami-kaiketu {
    height: 1080px;
  }
}
.onayami-kaiketu .ellipse {
  height: 100%;
  width: 100%;
  -o-object-fit: fill;
  object-fit: fill;
  position: absolute;
  /* z-index: 1; */
  /* mix-blend-mode: screen; */
}
.onayami-kaiketu .onayami_triangle {
  background-color: #003366;
  aspect-ratio: 2/1;
  width: 60px;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 99;
}
@media (min-width: 1440px) {
  .onayami-kaiketu .onayami_triangle {
    width: 100px;
  }
}
.onayami-kaiketu .ttl_outer {
  display: block;
  text-align: center;
}
.onayami-kaiketu .ttl {
  font-family: "Noto Serif JP";
  font-weight: 600;
  line-height: 1.4;
  color: #a28255;
  white-space: nowrap;
  display: inline-block;
}
@media (max-width: 599px) {
  .onayami-kaiketu .ttl {
    margin-top: 80px;
    font-size: 24px;
    border-bottom: 3px solid #a28255;
  }
}
@media (min-width: 600px) {
  .onayami-kaiketu .ttl {
    margin-top: 100px;
    font-size: 36px;
    border-bottom: 6px solid #a28255;
  }
}
@media (min-width: 1440px) {
  .onayami-kaiketu .ttl {
    margin-top: 140px;
    font-size: 36px;
    border-bottom: 6px solid #a28255;
  }
}
.onayami-kaiketu .container_00 {
  /* margin-top: 50px; */
  padding-top: 50px;
  position: relative;
}
.onayami-kaiketu .container_000 {
  margin-top: 50px;
  padding-top: 150px;
  position: relative;
}
.onayami-kaiketu .container_back_01 {
  padding: 0 20px 0 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
@media (max-width: 599px) {
  .onayami-kaiketu .container_back_01 {
    gap: 20px;
    top: 19px;
  }
}
@media (min-width: 600px) {
  .onayami-kaiketu .container_back_01 {
    gap: 40px;
    top: 39px;
  }
}
@media (min-width: 1440px) {
  .onayami-kaiketu .container_back_01 {
    -webkit-transform: translateX(-100%) translateX(-1px);
    transform: translateX(-100%) translateX(-1px);
    top: 106px;
  }
}
.onayami-kaiketu .container_back_02 {
  padding: 0 20px 0 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
@media (max-width: 599px) {
  .onayami-kaiketu .container_back_02 {
    gap: 20px;
    top: 206px;
  }
}
@media (min-width: 600px) {
  .onayami-kaiketu .container_back_02 {
    gap: 40px;
    top: 241px;
  }
}
@media (min-width: 1440px) {
  .onayami-kaiketu .container_back_02 {
    left: 50%;
    -webkit-transform: translateX(11px);
    transform: translateX(11px);
    top: 106px;
  }
}
.onayami-kaiketu .container_front_01 {
  padding: 0 15px 0 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
@media (max-width: 599px) {
  .onayami-kaiketu .container_front_01 {
    gap: 20px;
    top: 14px;
  }
}
@media (min-width: 600px) {
  .onayami-kaiketu .container_front_01 {
    gap: 40px;
    top: 34px;
  }
}
@media (min-width: 1440px) {
  .onayami-kaiketu .container_front_01 {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    top: 100px;
  }
}
.onayami-kaiketu .container_front_02 {
  padding: 0 15px 0 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
@media (max-width: 599px) {
  .onayami-kaiketu .container_front_02 {
    gap: 20px;
    top: 201px;
  }
}
@media (min-width: 600px) {
  .onayami-kaiketu .container_front_02 {
    gap: 40px;
    top: 236px;
  }
}
@media (min-width: 1440px) {
  .onayami-kaiketu .container_front_02 {
    left: 50%;
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
    top: 100px;
  }
}
.onayami-kaiketu .container_label_01 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0 50px 0 55px;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
@media (max-width: 599px) {
  .onayami-kaiketu .container_label_01 {
    gap: 90px;
    top: 0px;
  }
}
@media (min-width: 600px) {
  .onayami-kaiketu .container_label_01 {
    gap: 110px;
    top: 20px;
  }
}
@media (min-width: 1440px) {
  .onayami-kaiketu .container_label_01 {
    padding: 0 55px 0 55px;
    gap: 120px;
    top: 80px;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
.onayami-kaiketu .container_label_02 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0 50px 0 55px;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 99;
}
@media (max-width: 599px) {
  .onayami-kaiketu .container_label_02 {
    gap: 90px;
    top: 190px;
  }
}
@media (min-width: 600px) {
  .onayami-kaiketu .container_label_02 {
    gap: 110px;
    top: 223px;
  }
}
@media (min-width: 1440px) {
  .onayami-kaiketu .container_label_02 {
    padding: 0 55px 0 60px;
    gap: 120px;
    top: 80px;
    left: 50%;
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
}
.onayami-kaiketu .img {
  width: 160px;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 2px;
}
@media (min-width: 1440px) {
  .onayami-kaiketu .img {
    width: 250px;
  }
}
.onayami-kaiketu .square {
  width: 160px;
  aspect-ratio: 1/1;
  border-radius: 2px;
  background-color: rgba(204, 204, 204, 0.8);
}
@media (min-width: 1440px) {
  .onayami-kaiketu .square {
    width: 250px;
  }
}
.onayami-kaiketu p {
  font-family: "Noto Sans JP";
  font-size: 16px;
  line-height: 1;
  padding: 5px 0;
  background-color: #f2f2f2;
  border-radius: 10px;
  width: 90px;
  text-align: center;
}
@media (min-width: 1440px) {
  .onayami-kaiketu p {
    font-size: 24px;
    width: 170px;
    padding: 8px 0;
  }
}
.onayami-kaiketu .txt {
  font-family: "Noto Serif JP";
  font-weight: 700;
  line-height: 1.41666;
  color: #333;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  white-space: nowrap;
  font-size: 20px;
  margin-top: 300px;
}
@media (min-width: 600px) {
  .onayami-kaiketu .txt {
    margin-top: 300px;
    font-size: 22px;
  }
}
@media (min-width: 1440px) {
  .onayami-kaiketu .txt {
    margin-top: 380px;
    font-size: 32px;
    left: 60%;
  }
}
/* @media (min-width: 1440px) {
  .onayami-kaiketu .txt {
    margin-top: 470px;
    left: 60%;
  }
} */
.onayami-kaiketu .img_zeirisi {
  position: absolute;
  top: 400px;
}
@media (max-width: 599px) {
  .onayami-kaiketu .img_zeirisi {
    width: 130px;
    right: 40px;
    bottom: 40px;
  }
}
@media (min-width: 600px) {
  .onayami-kaiketu .img_zeirisi {
    width: 200px;
    right: 8%;
    bottom: 80px;
    top: 420px;
  }
}
@media (min-width: 1440px) {
  .onayami-kaiketu .img_zeirisi {
    right: 10%;
    bottom: 40px;
    width: 290px;
  }
}
@media (min-width: 1440px) {
  .onayami-kaiketu .dansa,
  .onayami-kaiketu .kaisya-seturitu,
  .onayami-kaiketu .zeimukomon {
    margin-top: 40px;
  }
}
@media (min-width: 1440px) {
  .onayami-kaiketu .dansa-nasi {
    margin-bottom: 40px;
  }
}

/*=============================
◆「頼んでよかった」を
=============================== */
.tanonndeyokatta {
  position: relative;
}
.tanonndeyokatta .bc01 {
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url(./image/te-min.jpg);
  background-position: center;
  display: block;
  padding: 30px;
  height: 750px;
}
@media (min-width: 1200px) {
  .tanonndeyokatta .bc01 {
    clip-path: ellipse(1700px 500px at 50% 20%);
    position: absolute;
    z-index: 99;
    height: 1300px;
  }
}
.tanonndeyokatta .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  height: 700px;
}
.tanonndeyokatta h1 {
  font-family: "Noto Serif JP";
  font-weight: 700;
  color: #fff;
  -o-border-image: url(./image/gold_ellipse-min.png) 0 fill;
  border-image: url(./image/gold_ellipse-min.png) 0 fill;
  text-align: center;
  display: inline-block;
  white-space: nowrap;
}
@media (max-width: 599px) {
  .tanonndeyokatta h1 {
    font-size: 24px;
    padding: 100px 38px;
    width: 100px;
  }
}
@media (min-width: 600px) {
  .tanonndeyokatta h1 {
    font-size: 32px;
    padding: 100px 39px;
    width: 116px;
  }
}
@media (max-width: 1199px) {
  .tanonndeyokatta h1 {
    -ms-writing-mode: tb-rl;
    -webkit-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
    line-height: 1;
    margin: 20px 0 0 0;
  }
}

@media (min-width: 1200px) {
  .tanonndeyokatta h1 {
    position: absolute;
    font-size: 28px;
    line-height: 1.5;
    width: 600px;
    height: 300px;
    margin: 150px 0 0 0;
  }
}
@media (max-width: 1199px) {
  .tanonndeyokatta .l_br {
    display: none;
  }
}
.tanonndeyokatta p {
  font-family: "Noto Sans JP";
  font-weight: 500;
  line-height: 1.3;
  color: #000;
  text-align: center;
  background-color: #fff;
  border: #a28255 4px solid;
  border-radius: 50%;
}
@media (max-width: 1199px) {
  .tanonndeyokatta p {
    font-size: 20px;
    width: 250px;
    height: 140px;
    margin-bottom: 20px;
  }
}
@media (min-width: 1200px) {
  .tanonndeyokatta p {
    font-size: 32px;
    width: 445px;
    height: 195px;
    line-height: 1.4;
  }
}
.tanonndeyokatta .bold_txt {
  color: #a28255;
  font-weight: 700;
}
@media (max-width: 1199px) {
  .tanonndeyokatta .bold_txt {
    font-size: 32px;
  }
}
@media (min-width: 1200px) {
  .tanonndeyokatta .bold_txt {
    font-size: 36px;
  }
}
.tanonndeyokatta .txt {
  font-family: "Noto Sans JP";
  font-weight: 400;
  line-height: 1.3;
  color: #000;
  font-size: 16px;
}
@media (min-width: 1200px) {
  .tanonndeyokatta .txt {
    font-size: 20px;
  }
}
.tanonndeyokatta .right_area {
  margin: 5px;
  display: grid;
}
@media (min-width: 1200px) {
  .tanonndeyokatta .right_area {
    width: 100%;
    height: 100%;
    position: relative;
  }
}
.tanonndeyokatta .sinki {
  padding-top: 25px;
}
@media (min-width: 1200px) {
  .tanonndeyokatta .sinki {
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    top: 120px;
    z-index: 99;
    padding-top: 40px;
  }
}
@media (min-width: 1700px) {
  .tanonndeyokatta .sinki {
    top: 100px;
  }
}
.tanonndeyokatta .seturitu {
  padding-top: 25px;
}
@media (min-width: 500px) {
  .tanonndeyokatta .seturitu {
    margin-left: 50px;
  }
}
@media (min-width: 1200px) {
  .tanonndeyokatta .seturitu {
    padding-top: 40px;
    position: absolute;
    left: 20%;
    top: 50%;
    margin-left: 0px;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}
@media (min-width: 1700px) {
  .tanonndeyokatta .seturitu {
    left: 25%;
  }
}
.tanonndeyokatta .speed {
  color: #990000;
  padding-top: 50px;
}
@media (min-width: 500px) {
  .tanonndeyokatta .speed {
    margin-left: 100px;
  }
}
@media (min-width: 1200px) {
  .tanonndeyokatta .speed {
    position: absolute;
    right: 20%;
    top: 50%;
    margin-left: 0px;
    padding-top: 70px;
    -webkit-transform: translateX(50%);
    transform: translateX(50%);
  }
}
@media (min-width: 1700px) {
  .tanonndeyokatta .speed {
    right: 25%;
  }
}

/*=============================
◆アスク税理士法人にお任せください！
=============================== */
.omakasekudasai {
  position: relative;
}
.omakasekudasai .bc01 {
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url(./image/building2-min.jpg);
  background-position: center;
  display: block;
}
@media (max-width: 767px) {
  .omakasekudasai .bc01 {
    padding: 80px 0;
  }
}
@media (max-width: 1199px) {
  .omakasekudasai .bc01 {
    padding: 100px 0;
  }
}
@media (min-width: 1200px) {
  .omakasekudasai .bc01 {
    margin-top: 600px;
    height: 1000px;
  }
}
.omakasekudasai .container_01 {
  position: relative;
  display: grid;
  justify-items: center;
}
@media (max-width: 1199px) {
  .omakasekudasai .container_01 {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}
@media (max-width: 1199px) {
  .omakasekudasai .container_01 {
    padding: 0;
  }
}
@media (min-width: 1200px) {
  .omakasekudasai .container_01 {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
.omakasekudasai .container_02 {
  width: 365px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  justify-items: center;
}
@media (min-width: 768px) {
  .omakasekudasai .container_02 {
    height: 581px;
    position: relative;
  }
}
@media (max-width: 1199px) {
  .omakasekudasai .container_02 {
    padding: 0 50px 0 20px;
  }
}
@media (min-width: 1200px) {
  .omakasekudasai .container_02 {
    display: grid;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    justify-items: center;
    -ms-flex-line-pack: start;
    align-content: start;
    margin-top: 60px;
  }
}
@media (min-width: 1200px) {
  .omakasekudasai .sm_txt,
  .omakasekudasai .sm_bottom_txt {
    display: none;
  }
}
@media (max-width: 1199px) {
  .omakasekudasai .lx_txt,
  .omakasekudasai .lx_bottom_txt {
    display: none;
    text-align: center;
  }
}
.omakasekudasai h1 {
  font-family: "Noto Serif JP";
  font-size: 32px;
  font-weight: 600;
  color: #000033;
  line-height: 1;
  background-color: #fff;
  padding: 20px;
  text-align: center;
  display: inline-block;
}
@media (max-width: 767px) {
  .omakasekudasai h1 {
    top: 100px;
  }
}
@media (min-width: 768px) {
  .omakasekudasai h1 {
    top: 0px;
  }
}
@media (max-width: 1199px) {
  .omakasekudasai h1 {
    -ms-writing-mode: tb-rl;
    -webkit-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
    white-space: nowrap;
    position: absolute;
    left: 75%;
  }
}
@media (min-width: 1200px) {
  .omakasekudasai h1 {
    margin-top: 280px;
    position: static;
    font-size: 40px;
  }
}
.omakasekudasai h1 span {
  color: #003399;
}
.omakasekudasai h2 {
  font-family: "Noto Serif JP";
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
  color: #000033;
  border-bottom: #a28255 3px solid;
  text-align: center;
  margin-bottom: 7px;
  display: inline-block;
  white-space: nowrap;
}
@media (max-width: 1199px) {
  .omakasekudasai h2 {
    width: 300px;
  }
}
@media (min-width: 1200px) {
  .omakasekudasai h2 {
    font-size: 28px;
  }
}
.omakasekudasai p {
  font-family: "Noto Serif JP";
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
  color: #003399;
}
@media (max-width: 1199px) {
  .omakasekudasai p {
    width: 300px;
    border-bottom: #a28255 3px solid;
    text-align: left;
    padding-bottom: 5px;
    margin-top: 50px;
  }
}
@media (min-width: 1200px) {
  .omakasekudasai p {
    display: inline;
    font-size: 36px;
  }
}
.omakasekudasai h3 {
  font-family: "Noto Serif JP";
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  color: #000033;
}
@media (max-width: 1199px) {
  .omakasekudasai h3 {
    border-bottom: #a28255 3px solid;
    text-align: left;
    padding: 10px 15px 5px 30px;
    width: 300px;
  }
}
@media (min-width: 1200px) {
  .omakasekudasai h3 {
    display: inline;
    font-size: 28px;
  }
}
.omakasekudasai .container_img {
  position: relative;
}
@media (max-width: 1199px) {
  .omakasekudasai .container_img {
    margin-top: 60px;
  }
}
@media (min-width: 1200px) {
  .omakasekudasai .container_img {
    position: absolute;
    width: 1300px;
  }
}
.omakasekudasai .img_1,
.omakasekudasai .img_2,
.omakasekudasai .img_3 {
  aspect-ratio: 3/2;
  border-radius: 2px;
}
@media (max-width: 767px) {
  .omakasekudasai .img_1,
  .omakasekudasai .img_2,
  .omakasekudasai .img_3 {
    margin: 30px 50px 0 23px;
  }
}
@media (max-width: 1199px) {
  .omakasekudasai .img_1,
  .omakasekudasai .img_2,
  .omakasekudasai .img_3 {
    width: 180px;
  }
}
@media (min-width: 768px) {
  .omakasekudasai .img_1 {
    position: absolute;
    left: -90px;
  }
}
@media (min-width: 1200px) {
  .omakasekudasai .img_1 {
    width: 300px;
    top: 200px;
    left: 150px;
  }
}
@media (min-width: 768px) {
  .omakasekudasai .img_2 {
    position: absolute;
    right: 0;
    top: 50px;
  }
}
@media (min-width: 1200px) {
  .omakasekudasai .img_2 {
    width: 250px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    top: 300px;
  }
}
@media (min-width: 768px) {
  .omakasekudasai .img_3 {
    position: absolute;
    left: -70px;
    top: 192px;
  }
}
@media (min-width: 1200px) {
  .omakasekudasai .img_3 {
    width: 230px;
    left: 850px;
    top: 225px;
  }
}
@media (min-width: 768px) {
  .omakasekudasai .sm_bottom_txt {
    position: absolute;
    bottom: 0px;
  }
}
.omakasekudasai .lx_bottom_txt {
  padding-bottom: 1px;
  border-bottom: #a28255 3px solid;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 20px;
}

/*=============================
   ◆他社との比較
=============================== */
.tashatonohikaku .bc01 {
  background: url(./image/nami-min.jpg) 100% 50% / cover no-repeat;
  height: 165px;
  padding: 80px 0;
}
@media (min-width: 1440px) {
  .tashatonohikaku .bc01 {
    height: 250px;
    padding: 120px 0;
  }
}
.tashatonohikaku .bc02 {
  background: -webkit-gradient(
    linear,
    left bottom,
    left top,
    from(#3366cc),
    color-stop(30%, #003366)
  );
  background: linear-gradient(to top, #3366cc 0%, #003366 30%);
  padding-bottom: 80px;
}
@media (min-width: 1440px) {
  .tashatonohikaku .bc02 {
    padding-bottom: 120px;
  }
}
.tashatonohikaku .sm_table {
  margin: 0 auto;
  background-color: #999;
  font-family: "Noto Sans JP";
  line-height: 1.5;
  border-spacing: 0 1px;
  border-collapse: separate;
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  .tashatonohikaku .sm_table {
    width: 365px;
  }
}
@media (min-width: 768px) {
  .tashatonohikaku .sm_table {
    width: 505px;
  }
}
@media (min-width: 1440px) {
  .tashatonohikaku .sm_table {
    display: none;
  }
}
.tashatonohikaku caption {
  height: 40px;
  background-color: #3399cc;
  font-size: 20px;
  line-height: 2;
  color: #fff;
  text-align: center;
  border-collapse: collapse;
}
.tashatonohikaku .sm_th {
  width: 150px;
  padding: 28px 18px;
  background-color: #d2d2d2;
  color: #333;
  text-align: center;
}
.tashatonohikaku .sm_td {
  background-color: #f2f2f2;
  padding: 15px 18px;
  color: #333;
}
.tashatonohikaku .sm_img {
  width: 140px;
  height: 70px;
}
.tashatonohikaku .sm_ASK-th {
  background-color: #d2d2d2;
  padding: 10px 5px;
}
.tashatonohikaku .sm_ASK-data {
  background-color: #ccffff;
  color: #003399;
  font-weight: 500;
  padding: 15px 18px;
}
@media (max-width: 1439px) {
  .tashatonohikaku .lx_table {
    display: none;
  }
}
.tashatonohikaku .lx_table {
  width: 1220px;
  margin: 0 auto;
  font-family: "Noto Sans JP";
  font-size: 20px;
  line-height: 1.7;
  border-spacing: 1px;
  border-collapse: separate;
  margin-bottom: 10px;
}
.tashatonohikaku .lx_th_top {
  width: 270px;
  padding: 38px 57px;
  background-color: #d2d2d2;
  color: #333;
  text-align: center;
  font-size: 24px;
  white-space: nowrap;
}
.tashatonohikaku .lx_th_side {
  font-weight: 500;
  text-align: center;
  color: #333;
  background-color: #d2d2d2;
  width: 270px;
  height: 150px;
}
.tashatonohikaku .lx_data {
  padding: 10px 25px;
  background-color: #fff;
}
.tashatonohikaku .lx_img {
  width: 250px;
  /* height: 56px; */
  object-fit: contain;
}
.tashatonohikaku .lx_ASK-th {
  padding: 10px;
  background-color: #d2d2d2;
  text-align: center;
}
.tashatonohikaku .lx_ASK-data {
  background-color: #ccffff;
  color: #003399;
  font-weight: 500;
  padding: 10px 25px;
}

/*=============================
   ◆利用者様の声
=============================== */
.voice {
  position: relative;
}
.voice .bc01 {
  background: -webkit-gradient(
    linear,
    left bottom,
    left top,
    color-stop(10%, #003366),
    color-stop(50%, #3366cc)
  );
  background: linear-gradient(to top, #003366 10%, #3366cc 50%);
  position: relative;
  padding-bottom: 80px;
}
@media (min-width: 768px) {
  .voice .bc01 {
    clip-path: ellipse(1500px 1200px at 50% 30%);
    padding-bottom: 200px;
  }
}
@media (min-width: 1440px) {
  .voice .bc01 {
    clip-path: ellipse(2000px 800px at 50% 45%);
    padding-bottom: 120px;
    position: absolute;
    width: 100%;
  }
}
@media (min-width: 1700px) {
  .voice .bc01 {
    clip-path: ellipse(2000px 800px at 50% 30%);
    padding-bottom: 300px;
  }
}
.voice .container_00 {
  background-color: #f4f8f9;
  margin: 0 auto 15px auto;
  border-radius: 4px;
}
@media (max-width: 599px) {
  .voice .container_00 {
    width: 365px;
    padding: 30px 0 30px 0;
  }
}
@media (min-width: 600px) {
  .voice .container_00 {
    width: 530px;
    position: relative;
    padding-bottom: 30px;
  }
}
@media (min-width: 1440px) {
  .voice .kotobuki {
    position: absolute;
    top: 140px;
    left: 10%;
  }
}
@media (min-width: 1700px) {
  .voice .kotobuki {
    left: 50%;
    -webkit-transform: translateX(-150%);
    transform: translateX(-150%);
    margin-left: -25px;
  }
}
@media (min-width: 1440px) {
  .voice .gyuzen {
    position: absolute;
    top: 225px;
    right: 10%;
  }
}
@media (min-width: 1700px) {
  .voice .gyuzen {
    top: 240px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}
@media (min-width: 1440px) {
  .voice .shino {
    position: absolute;
    top: 700px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}
@media (min-width: 1700px) {
  .voice .shino {
    top: 340px;
    left: 50%;
    -webkit-transform: translateX(50%);
    transform: translateX(50%);
    margin-left: 25px;
  }
}
.voice .container_01 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.voice .customer {
  display: block;
}
@media (max-width: 599px) {
  .voice .customer {
    width: 180px;
    height: 120px;
    margin-left: 5px;
  }
}
@media (min-width: 600px) {
  .voice .customer {
    width: 285px;
    height: 190px;
  }
}
.voice .customer_img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
}
@media (min-width: 600px) {
  .voice .customer_img {
    border-top-left-radius: 4px;
  }
}
.voice .container_02 {
  display: block;
}
.voice .container_03_kotobuki {
  background-color: #66cc99;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 180px;
  height: 40px;
}
@media (min-width: 600px) {
  .voice .container_03_kotobuki {
    margin-left: 45px;
    border-top-right-radius: 4px;
  }
}
.voice .container_03_gyuzen {
  background-color: #ff9966;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 180px;
  height: 40px;
}
@media (min-width: 600px) {
  .voice .container_03_gyuzen {
    margin-left: 45px;
    border-top-right-radius: 4px;
  }
}
.voice .container_03_shino {
  background-color: #3399ff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 180px;
  height: 40px;
}
@media (min-width: 600px) {
  .voice .container_03_shino {
    margin-left: 45px;
    border-top-right-radius: 4px;
  }
}
.voice .company_icon_kotobuki {
  width: 30px;
  height: 30px;
  margin: 5px;
}
.voice .company_icon_gyuzen {
  width: 50px;
  height: 37px;
  margin: 1px;
  margin-right: 10px;
}
.voice .company_icon_shino {
  width: 29px;
  height: 35px;
  margin: 2px;
  margin-right: 10px;
}
.voice .icon_company {
  width: 100%;
  height: 100%;
}
.voice .label {
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-weight: 500;
  line-height: 2.5;
  color: #fff;
  margin-right: 10px;
}
.voice .company-name {
  font-family: "Noto Sans JP";
  font-size: 16px;
  color: #006699;
  line-height: 1.5;
  text-align: center;
  margin-top: 15px;
}
@media (min-width: 600px) {
  .voice .company-name {
    margin-top: 55px;
  }
}
.voice h1 {
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-weight: 500;
  color: #333;
  text-align: center;
  padding: 20px 0px 5px 10px;
  margin: 0 7px 10px 7px;
  border-bottom: 1px solid #999;
}
@media (min-width: 600px) {
  .voice h1 {
    width: 350px;
    margin-left: 120px;
  }
}
.voice .ttl_01 {
  position: relative;
}
.voice .icon_gyomu_kotobuki {
  width: 63px;
  height: 50px;
  margin: 0 auto;
}
@media (min-width: 600px) {
  .voice .icon_gyomu_kotobuki {
    position: absolute;
    top: 10px;
    left: 40px;
  }
}
.voice .icon_gyomu_gyuzen {
  width: 52px;
  height: 50px;
  margin: 0 auto;
}
@media (min-width: 600px) {
  .voice .icon_gyomu_gyuzen {
    position: absolute;
    top: 15px;
    left: 40px;
  }
}
.voice .icon_gyomu_shino {
  width: 41px;
  height: 50px;
  margin: 0 auto;
}
@media (min-width: 600px) {
  .voice .icon_gyomu_shino {
    position: absolute;
    top: 15px;
    left: 40px;
  }
}
@media (max-width: 599px) {
  .voice .content {
    width: 335px;
    margin: 10px auto 0 auto;
  }
}
@media (min-width: 600px) {
  .voice .content {
    width: 470px;
    margin: 30px auto 0 auto;
  }
}
.voice .txt {
  font-family: "Noto Sans JP";
  font-size: 16px;
  line-height: 1.7;
  color: #333;
}
.voice .sm_last_txt {
  font-family: "Noto Serif JP";
  font-size: 20px;
  font-weight: 700;
  line-height: 1.7;
  text-align: center;
  color: #fff;
  padding: 60px 32px 80px 32px;
  -o-border-image: url(./image/gold_ellipse-min.png) 0 fill;
  border-image: url(./image/gold_ellipse-min.png) 0 fill;
  width: 375px;
  display: block;
  margin: 50px auto 0 auto;
}
@media (min-width: 1440px) {
  .voice .sm_last_txt {
    display: none;
  }
}
@media (min-width: 1440px) {
  .voice .lx_last {
    margin-top: 1000px;
    text-align: center;
  }
}
@media (min-width: 1700px) {
  .voice .lx_last {
    margin-top: 680px;
  }
}
.voice .lx_last_txt {
  font-family: "Noto Serif JP";
  font-size: 20px;
  font-weight: 700;
  line-height: 1.7;
  text-align: center;
  color: #fff;
  padding: 60px 32px;
  -o-border-image: url(./image/gold_ellipse-min.png) 0 fill;
  border-image: url(./image/gold_ellipse-min.png) 0 fill;
  width: 400px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin: 50px auto 0 auto;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media (max-width: 1439px) {
  .voice .lx_last_txt {
    display: none;
  }
}
@media (min-width: 1920px) {
  .voice .lx_last_txt {
    font-size: 30px;
    width: 550px;
    padding: 100px 32px;
  }
}

/*=============================
  ◆まずは、お気軽に
=============================== */
.mazuha .bc01 {
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url(./image/mizuiro-min.jpg);
  background-position: center;
  display: block;
  padding: 80px 0 80px 0;
}
@media (min-width: 768px) {
  .mazuha .bc01 {
    margin-top: -250px;
    padding: 200px 0 100px 0;
  }
}
@media (min-width: 1250px) {
  .mazuha .bc01 {
    margin-top: -300px;
    padding: 300px 0 100px 0;
  }
}
@media (min-width: 1440px) {
  .mazuha .bc01 {
    margin-top: 1300px;
    padding: 250px 0 120px 0;
  }
}
@media (min-width: 1700px) {
  .mazuha .bc01 {
    margin-top: 1100px;
  }
}
.mazuha .sotowaku {
  border: 6px solid #f4f8f9;
  border-radius: 8px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .mazuha .sotowaku {
    width: 342px;
    height: 725px;
  }
}
@media (min-width: 768px) {
  .mazuha .sotowaku {
    width: 700px;
    height: 490px;
  }
}
@media (min-width: 1200px) {
  .mazuha .sotowaku {
    width: 1000px;
    height: 530px;
  }
}
@media (min-width: 1440px) {
  .mazuha .sotowaku {
    width: 1000px;
    height: 608px;
  }
}
.mazuha .bc02 {
  background-color: #f4f8f9;
  border-radius: 8px;
  margin: 6px 0 0 6px;
  display: grid;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-line-pack: start;
  align-content: start;
}
@media (max-width: 767px) {
  .mazuha .bc02 {
    width: 318px;
    padding: 40px 0;
  }
}
@media (min-width: 768px) {
  .mazuha .bc02 {
    width: 677px;
    padding: 60px 0;
  }
}
@media (min-width: 1200px) {
  .mazuha .bc02 {
    width: 976px;
    padding: 80px 0;
  }
}
@media (min-width: 768px) {
  .mazuha .tel_area {
    margin-left: 15px;
  }
}
@media (max-width: 767px) {
  .mazuha .container_01 {
    display: grid;
    gap: 30px;
  }
}
@media (min-width: 768px) {
  .mazuha .container_01 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-items: center;
    gap: 10px;
  }
}
@media (min-width: 1200px) {
  .mazuha .container_01 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 50px;
  }
}
.mazuha .tel_container {
  aspect-ratio: 1/0.24;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border: 2px solid #a28255;
  border-radius: 8px;
  margin: 0px auto;
  display: flex;
  width: 300px;
}
@media (min-width: 1440px) {
  .mazuha .tel_container {
    width: 350px;
    gap: 20px;
  }
}
.mazuha .mail_container {
  aspect-ratio: 1/0.24;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border: 2px solid #3399ff;
  border-radius: 8px;
  margin: 0px auto;
  background-color: rgba(51, 153, 255, 0.1);
  width: 300px;
  margin: 0 auto 10px auto;
}
@media (min-width: 1440px) {
  .mazuha .mail_container {
    width: 350px;
    gap: 20px;
    margin: 0 auto 15px auto;
  }
}
.mazuha .line_container {
  aspect-ratio: 1/0.24;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border: 2px solid #33cccc;
  border-radius: 8px;
  margin: 0px auto;
  background-color: rgba(51, 204, 204, 0.1);
  width: 300px;
}
@media (min-width: 1440px) {
  .mazuha .line_container {
    width: 350px;
    gap: 20px;
  }
}
.mazuha .right_area {
  display: grid;
  -ms-flex-line-pack: center;
  align-content: center;
}
.mazuha .tel_icon {
  width: 60px;
  background-color: #a28255;
  -webkit-mask-image: url(./image/211830_telephone_icon.svg);
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url(./image/211830_telephone_icon.svg);
  mask-size: contain;
  mask-repeat: no-repeat;
  -webkit-mask-position: contain;
  mask-position: contain;
  aspect-ratio: 1/1;
}
.mazuha .mail_icon {
  width: 50px;
  background-color: #3399ff;
  -webkit-mask-image: url(./image/8665305_envelope_email_icon.svg);
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url(./image/8665305_envelope_email_icon.svg);
  mask-size: contain;
  mask-repeat: no-repeat;
  -webkit-mask-position: contain;
  mask-position: contain;
  margin-right: 20px;
}
.mazuha .line_icon {
  width: 50px;
  background-color: #33cccc;
  -webkit-mask-image: url(./image/4691359_line_icon.svg);
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url(./image/4691359_line_icon.svg);
  mask-size: contain;
  mask-repeat: no-repeat;
  -webkit-mask-position: contain;
  mask-position: contain;
  margin-right: 20px;
}
.mazuha h1 {
  font-family: "Noto Serif JP";
  line-height: 1.5;
  font-weight: 700;
  color: #003399;
  margin: 0 auto 40px auto;
}
.mazuha .s_txt {
  font-size: 20px;
  margin: 0 auto 40px auto;
}
@media (min-width: 768px) {
  .mazuha .s_txt {
    display: none;
  }
}
.mazuha .m_txt {
  font-size: 24px;
  margin: 0 auto 40px auto;
}
@media (max-width: 767px) {
  .mazuha .m_txt {
    display: none;
  }
}
@media (min-width: 1440px) {
  .mazuha .m_txt {
    font-size: 30px;
  }
}
.mazuha p {
  font-family: "Noto Sans JP";
  font-weight: 500;
  color: #333;
  line-height: 1.3;
  display: block;
  font-size: 20px;
}
@media (min-width: 1440px) {
  .mazuha p {
    font-size: 24px;
  }
}
.mazuha .txt_m {
  margin: 0 20px 0 0;
  padding-bottom: 5px;
  color: #336699;
}
.mazuha .txt_l {
  margin: 0 20px 0 0;
  padding-bottom: 5px;
  color: #009999;
}
.mazuha .tel {
  color: #a28255;
  margin: 5px 0 0 20px;
  padding-bottom: 3px;
  line-height: 1;
}
@media (max-width: 767px) {
  .mazuha .uketuke-jikan {
    font-size: 16px;
    margin: 7px auto 20px auto;
    padding-left: 16px;
    text-align: center;
  }
}
@media (min-width: 768px) {
  .mazuha .uketuke-jikan {
    margin: 10px auto 30px 20px;
  }
}
@media (min-width: 1440px) {
  .mazuha .uketuke-jikan {
    font-size: 20px;
  }
}
.mazuha .nijyuyojikanuketuke {
  font-size: 16px;
  line-height: 1.5;
  margin: 7px auto 0 auto;
  color: #333;
}
@media (max-width: 767px) {
  .mazuha .nijyuyojikanuketuke {
    padding-left: 16px;
  }
}
@media (min-width: 768px) {
  .mazuha .nijyuyojikanuketuke {
    padding-left: 20px;
    font-size: 16px;
    width: 330px;
  }
}
@media (min-width: 1440px) {
  .mazuha .nijyuyojikanuketuke {
    margin: 20px auto 0 auto;
    font-size: 20px;
    width: 380px;
  }
}
.mazuha .mail_tri {
  background-color: #3399ff;
  height: 30px;
  width: 25.9807621135px;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  -ms-flex-item-align: center;
  align-self: center;
}
.mazuha .line_tri {
  background-color: #33cccc;
  height: 30px;
  width: 25.9807621135px;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  -ms-flex-item-align: center;
  align-self: center;
}

/*=============================
◆アスクが選ばれる理由
=============================== */
.erabareru-riyu .bc01 {
  background:
    -webkit-gradient(
      linear,
      left top,
      left bottom,
      from(rgb(0, 51, 102)),
      color-stop(20%, rgba(0, 51, 102, 0.1)),
      to(rgb(0, 51, 102))
    ),
    url(./image/desk-min.jpg) 50% 50% / cover no-repeat;
  background:
    linear-gradient(
      rgb(0, 51, 102) 0%,
      rgba(0, 51, 102, 0.1) 20%,
      rgb(0, 51, 102) 100%
    ),
    url(./image/desk-min.jpg) 50% 50% / cover no-repeat;
  background-size: cover;
}
.erabareru-riyu .bc02 {
  background: #003366;
  padding-bottom: 5px;
}
@media (min-width: 768px) {
  .erabareru-riyu .bc02 {
    background: -webkit-gradient(
      linear,
      left top,
      left bottom,
      from(rgb(0, 51, 102)),
      color-stop(80%, #004173)
    );
    background: linear-gradient(rgb(0, 51, 102) 0%, #004173 80%);
    margin-bottom: -100px;
  }
}
@media (min-width: 1440px) {
  .erabareru-riyu .bc02 {
    margin-bottom: 0px;
  }
}
.erabareru-riyu .container_01 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0 auto;
  padding: 80px 0 42px 0;
}
@media (min-width: 1440px) {
  .erabareru-riyu .container_01 {
    padding: 120px 0 70px 0;
  }
}
@media (max-width: 767px) {
  .erabareru-riyu .leaf_icon {
    width: 20px;
    height: 50px;
  }
}
@media (min-width: 768px) {
  .erabareru-riyu .leaf_icon {
    width: 40px;
    height: 100px;
  }
}
.erabareru-riyu h1 {
  font-family: "Noto Serif JP";
  font-weight: 500;
  line-height: 1;
  color: #fff;
}
@media (max-width: 767px) {
  .erabareru-riyu h1 {
    font-size: 24px;
    margin: 12px;
  }
}
@media (min-width: 768px) {
  .erabareru-riyu h1 {
    font-size: 36px;
    margin: 32px;
  }
}
@media (max-width: 767px) {
  .erabareru-riyu .container_02 {
    display: grid;
    justify-items: center;
    margin: 0 auto;
  }
}
@media (min-width: 768px) {
  .erabareru-riyu .container_02 {
    display: none;
  }
}
@media (max-width: 767px) {
  .erabareru-riyu .container_04 {
    display: none;
  }
}
@media (min-width: 768px) {
  .erabareru-riyu .container_04 {
    display: grid;
    justify-items: center;
    margin: 0 auto;
  }
}
.erabareru-riyu .container_05 {
  display: grid;
  justify-items: center;
  margin: 0 auto;
}
.erabareru-riyu h2,
.erabareru-riyu h3 {
  font-family: "Noto Serif JP";
  font-weight: 700;
  line-height: 1.5;
  color: #fff;
  border-bottom: 3px solid #a28255;
}
@media (max-width: 767px) {
  .erabareru-riyu h2,
  .erabareru-riyu h3 {
    font-size: 20px;
  }
}
@media (min-width: 768px) {
  .erabareru-riyu h2,
  .erabareru-riyu h3 {
    font-size: 26px;
  }
}
.erabareru-riyu h2 {
  margin-bottom: 30px;
}
.erabareru-riyu .txt {
  font-family: "Noto Serif JP";
  line-height: 1.7;
  color: #fff;
  margin: 50px 32px 60px 32px;
}
@media (max-width: 767px) {
  .erabareru-riyu .txt {
    font-size: 16px;
  }
}
@media (min-width: 768px) {
  .erabareru-riyu .txt {
    font-size: 24px;
    margin: 70px 50px 100px 60px;
  }
}
@media (min-width: 1440px) {
  .erabareru-riyu .txt {
    font-size: 24px;
    margin: 70px auto 120px auto;
    width: 1010px;
  }
}
@media (min-width: 1440px) {
  .erabareru-riyu .container_06 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 0 auto;
    width: 1200px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 30px;
  }
}
.erabareru-riyu .container_03 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  background-color: #fff;
  border-radius: 2px;
  margin: 0 auto 20px auto;
}
@media (max-width: 767px) {
  .erabareru-riyu .container_03 {
    width: 97%;
    height: 138px;
    padding: 3px;
  }
}
@media (min-width: 768px) {
  .erabareru-riyu .container_03 {
    width: 555px;
    height: 205px;
    padding: 10px;
    margin: 0 auto 30px auto;
  }
}
@media (min-width: 1440px) {
  .erabareru-riyu .container_03 {
    display: grid;
    -ms-flex-line-pack: start;
    align-content: start;
    width: 300px;
    height: 380px;
    padding: 15px;
    margin: 0;
    border-radius: 4px;
  }
}
.erabareru-riyu .number {
  font-family: "Noto Serif JP";
  font-size: 32px;
  line-height: 1;
  font-weight: 700;
  color: #a28255;
  position: absolute;
  right: 0px;
}
@media (max-width: 767px) {
  .erabareru-riyu .number {
    font-size: 32px;
    top: -20px;
  }
}
@media (min-width: 768px) {
  .erabareru-riyu .number {
    font-size: 40px;
    top: -24px;
  }
}
@media (min-width: 1440px) {
  .erabareru-riyu .number {
    font-size: 48px;
    top: -32px;
  }
}
.erabareru-riyu .left_img {
  border-radius: 2px;
  margin-right: 10px;
}
@media (max-width: 767px) {
  .erabareru-riyu .left_img {
    width: 150px;
    height: 100%;
  }
}
@media (min-width: 768px) {
  .erabareru-riyu .left_img {
    width: 236px;
    height: 185px;
  }
}
@media (min-width: 1440px) {
  .erabareru-riyu .left_img {
    width: 270px;
    height: 200px;
  }
}
.erabareru-riyu .img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
}
.erabareru-riyu .right_txt {
  font-family: "Noto Sans JP";
  line-height: 1.6;
  color: #333333;
  margin-top: 7px;
}

.erabareru-riyu .right_txt span {
  font-weight: 700;
}

@media (max-width: 767px) {
  .erabareru-riyu .right_txt {
    width: 60%;
    font-size: 16px;
  }
}
@media (min-width: 768px) {
  .erabareru-riyu .right_txt {
    width: 284px;
    font-size: 20px;
    margin-left: 5px;
  }
}
@media (min-width: 1440px) {
  .erabareru-riyu .right_txt {
    width: 270px;
    margin-top: 20px;
    margin-left: 0px;
  }
}

/*=============================
◆サービス紹介
=============================== */
.service-shokai .bc01 {
  background:
    -webkit-gradient(
      linear,
      left top,
      left bottom,
      from(rgb(0, 51, 102)),
      color-stop(10%, rgba(0, 51, 102, 0))
    ),
    url(./image/nami4-min.jpg) 100% 100% / cover no-repeat;
  background:
    linear-gradient(rgb(0, 51, 102) 0%, rgba(0, 51, 102, 0) 10%),
    url(./image/nami4-min.jpg) 100% 100% / cover no-repeat;
  height: 250px;
}
@media (max-width: 767px) {
  .service-shokai .bc01 {
    padding-top: 100px;
  }
}
@media (min-width: 768px) {
  .service-shokai .bc01 {
    padding-top: 180px;
    background:
      -webkit-gradient(
        linear,
        left top,
        left bottom,
        from(#004173),
        color-stop(10%, rgba(2, 73, 125, 0))
      ),
      url(./image/nami4-min.jpg) 100% 50% / cover no-repeat;
    background:
      linear-gradient(#004173 0%, rgba(2, 73, 125, 0) 10%),
      url(./image/nami4-min.jpg) 100% 50% / cover no-repeat;
  }
}
@media (min-width: 1440px) {
  .service-shokai .bc01 {
    padding-top: 120px;
    position: relative;
  }
}
.service-shokai .bc02 {
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(#005a8e),
    color-stop(10%, rgb(0, 102, 153))
  );
  background: linear-gradient(#005a8e 0%, rgb(0, 102, 153) 10%);
  padding-top: 180px;
}
@media (min-width: 768px) {
  .service-shokai .bc02 {
    padding-top: 300px;
  }
}
@media (min-width: 1440px) {
  .service-shokai .bc02 {
    padding-top: 0px;
  }
}
.service-shokai .center_txt_outer {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
@media (min-width: 1440px) {
  .service-shokai .center_txt_outer {
    top: 483px;
    z-index: 99;
  }
}
.service-shokai h1 {
  font-family: "Noto Serif JP";
  font-weight: 700;
  line-height: 1.3;
  color: #fff;
  width: 300px;
  padding: 62px 0;
  -o-border-image: url(./image/gold_ellipse-min.png) 0 fill;
  border-image: url(./image/gold_ellipse-min.png) 0 fill;
  text-align: center;
}
@media (max-width: 767px) {
  .service-shokai h1 {
    font-size: 20px;
  }
}
@media (min-width: 768px) {
  .service-shokai h1 {
    font-size: 24px;
    width: 460px;
  }
}
@media (min-width: 1440px) {
  .service-shokai h1 {
    top: 483px;
    z-index: 99;
  }
}
.service-shokai .komonnzeirisino_outer {
  padding-top: 200px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .service-shokai .komonnzeirisino_outer {
    width: 345px;
  }
}
@media (min-width: 768px) {
  .service-shokai .komonnzeirisino_outer {
    width: 552px;
    padding-top: 230px;
  }
}
@media (min-width: 1440px) {
  .service-shokai .komonnzeirisino_outer {
    padding-top: 0px;
    margin-left: 200px;
    width: 1200px;
  }
}
.service-shokai .komonnzeirisino {
  font-family: "Noto Sans JP";
  margin: 10px;
  color: #fff;
}
@media (max-width: 767px) {
  .service-shokai .komonnzeirisino {
    font-size: 16px;
  }
}
@media (min-width: 768px) {
  .service-shokai .komonnzeirisino {
    font-size: 20px;
  }
}
.service-shokai .sm_container01 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .service-shokai .sm_container01 {
    gap: 15px;
  }
}
@media (min-width: 768px) {
  .service-shokai .sm_container01 {
    gap: 20px;
  }
}
@media (min-width: 1440px) {
  .service-shokai .sm_container01 {
    display: none;
  }
}
.service-shokai .container01 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .service-shokai .container01 {
    gap: 15px;
  }
}
@media (min-width: 768px) {
  .service-shokai .container01 {
    gap: 20px;
  }
}
@media (min-width: 1440px) {
  .service-shokai .container01 {
    gap: 60px;
    margin-bottom: 40px;
  }
}
.service-shokai .lx_container02_up {
  display: grid;
}
@media (max-width: 1439px) {
  .service-shokai .lx_container02_up {
    display: none;
  }
}
@media (min-width: 1440px) {
  .service-shokai .lx_container02_up {
    margin-top: 100px;
  }
}
.service-shokai .lx_container02_down {
  display: grid;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media (max-width: 1439px) {
  .service-shokai .lx_container02_down {
    display: none;
  }
}
@media (min-width: 1440px) {
  .service-shokai .lx_container02_down {
    margin-bottom: 100px;
  }
}
.service-shokai .container02 {
  display: grid;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media (min-width: 1440px) {
  .service-shokai .container02 {
    margin-top: 100px;
  }
}
.service-shokai .container02_up {
  display: grid;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media (min-width: 1440px) {
  .service-shokai .container02_up {
    margin-bottom: 100px;
  }
}
.service-shokai .top-bar {
  background-color: #003366;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}
@media (max-width: 767px) {
  .service-shokai .top-bar {
    width: 165px;
    height: 10px;
  }
}
@media (min-width: 768px) {
  .service-shokai .top-bar {
    width: 265px;
    height: 15px;
  }
}
@media (min-width: 1440px) {
  .service-shokai .top-bar {
    width: 300px;
  }
}
.service-shokai .bs03 {
  background-color: #f2f2f2;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  position: relative;
  margin-bottom: 15px;
}
.service-shokai .item {
  font-family: "Noto Sans JP";
  line-height: 1;
  color: #000033;
  position: absolute;
  left: 5px;
  top: 1px;
}
@media (max-width: 767px) {
  .service-shokai .item {
    font-size: 16px;
  }
}
@media (min-width: 768px) {
  .service-shokai .item {
    font-size: 20px;
  }
}
@media (min-width: 1440px) {
  .service-shokai .item {
    font-size: 24px;
    left: 10px;
    top: 2px;
  }
}
.service-shokai .illust {
  margin-top: 20px;
}
.service-shokai .img {
  aspect-ratio: 1.65/1;
}
@media (max-width: 767px) {
  .service-shokai .img {
    width: 165px;
  }
}
@media (min-width: 768px) {
  .service-shokai .img {
    width: 265px;
  }
}
@media (min-width: 1440px) {
  .service-shokai .img {
    width: 300px;
  }
}
@media (max-width: 767px) {
  .service-shokai .img_zeimutyousa {
    width: 109px;
    height: 100px;
    margin-left: 28px;
  }
}
@media (min-width: 768px) {
  .service-shokai .img_zeimutyousa {
    width: 175px;
    height: 159px;
    margin-left: 45px;
  }
}
@media (min-width: 1440px) {
  .service-shokai .img_zeimutyousa {
    width: 200px;
    height: 181px;
    margin-left: 90px;
  }
}
.service-shokai .txt_outer {
  display: grid;
  justify-items: left;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .service-shokai .txt_outer {
    padding: 20px 0 0 15px;
    width: 345px;
  }
}
@media (min-width: 768px) {
  .service-shokai .txt_outer {
    padding: 35px 0 0 0;
    width: 552px;
  }
}
@media (min-width: 1440px) {
  .service-shokai .txt_outer {
    width: 645px;
  }
}
@media (max-width: 767px) {
  .service-shokai .s_txt {
    display: grid;
    /* justify-items: right; */
    font-size: 20px;
    margin-bottom: 20px;
    display: inline-block;
  }
}
@media (min-width: 768px) {
  .service-shokai .s_txt {
    display: none;
  }
}
@media (max-width: 767px) {
  .service-shokai .m_txt {
    display: none;
  }
}
@media (min-width: 768px) {
  .service-shokai .m_txt {
    display: grid;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: 20px;
  }
}
.service-shokai h2 {
  font-family: "Noto Serif JP";
  font-weight: 600;
  line-height: 1.4;
  color: #fff;
  border-bottom: 2px solid #fff;
  display: inline-block;
}
@media (max-width: 767px) {
  .service-shokai h2 {
    font-size: 20px;
  }
}
@media (min-width: 768px) {
  .service-shokai h2 {
    font-size: 24px;
  }
}
@media (min-width: 1440px) {
  .service-shokai h2 {
    font-size: 28px;
  }
}

/*=============================
◆サービスの流れ
=============================== */
.service-nagare .bc01 {
  background-color: #006699;
}
@media (max-width: 767px) {
  .service-nagare .bc01 {
    padding-top: 120px;
  }
}
@media (min-width: 768px) {
  .service-nagare .bc01 {
    padding-top: 180px;
  }
}
.service-nagare .bc02 {
  background:
    -webkit-gradient(
      linear,
      left top,
      left bottom,
      from(#006699),
      color-stop(10%, rgba(0, 51, 102, 0))
    ),
    url(./image/nami4_hanten-min.jpg) 50% 30% / cover no-repeat;
  background:
    linear-gradient(#006699 0%, rgba(0, 51, 102, 0) 10%),
    url(./image/nami4_hanten-min.jpg) 50% 30% / cover no-repeat;
}
@media (max-width: 767px) {
  .service-nagare .bc02 {
    height: 120px;
    padding-bottom: 80px;
  }
}
@media (min-width: 768px) {
  .service-nagare .bc02 {
    padding: 20px 0 100px 0;
  }
}
@media (min-width: 768px) {
  .service-nagare .bc02 {
    padding: 20px 0 120px 0;
  }
}
.service-nagare .nagare {
  display: grid;
  justify-items: center;
}
.service-nagare .container_01 {
  background-color: #f2f2f2;
  display: grid;
  justify-items: center;
  border-radius: 6px;
  position: relative;
}
@media (max-width: 767px) {
  .service-nagare .container_01 {
    width: 300px;
    height: 200px;
    margin: 0 0 25px 45px;
    -ms-flex-line-pack: center;
    align-content: center;
  }
}
@media (min-width: 768px) {
  .service-nagare .container_01 {
    width: 200px;
    height: 350px;
    -ms-flex-line-pack: start;
    align-content: start;
  }
}
@media (min-width: 1440px) {
  .service-nagare .container_01 {
    width: 300px;
    height: 420px;
  }
}
.service-nagare .container_02 {
  background-color: #f2f2f2;
  display: grid;
  justify-items: center;
  -ms-flex-line-pack: center;
  align-content: center;
  border-radius: 6px;
  position: relative;
}
@media (max-width: 767px) {
  .service-nagare .container_02 {
    width: 300px;
    height: 260px;
    margin: 0 0 25px 45px;
  }
}
@media (min-width: 768px) {
  .service-nagare .container_02 {
    width: 200px;
    height: 350px;
    -ms-flex-line-pack: start;
    align-content: start;
  }
}
@media (min-width: 1440px) {
  .service-nagare .container_02 {
    width: 300px;
    height: 420px;
  }
}
@media (min-width: 768px) {
  .service-nagare .container_all-step {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 20px;
    margin-top: 50px;
  }
}
@media (min-width: 1440px) {
  .service-nagare .container_all-step {
    gap: 30px;
  }
}
.service-nagare .round_1 {
  width: 90px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: #6699cc;
  display: grid;
  justify-items: center;
  -ms-flex-line-pack: center;
  align-content: center;
  position: absolute;
}
@media (max-width: 767px) {
  .service-nagare .round_1 {
    top: -15px;
    left: -45px;
  }
}
@media (min-width: 768px) {
  .service-nagare .round_1 {
    top: -45px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}
@media (min-width: 1440px) {
  .service-nagare .round_1 {
    width: 120px;
    top: -60px;
  }
}
.service-nagare .round_2 {
  width: 90px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: #3399cc;
  display: grid;
  justify-items: center;
  -ms-flex-line-pack: center;
  align-content: center;
  position: absolute;
}
@media (max-width: 767px) {
  .service-nagare .round_2 {
    top: -15px;
    left: -45px;
  }
}
@media (min-width: 768px) {
  .service-nagare .round_2 {
    top: -45px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}
@media (min-width: 1440px) {
  .service-nagare .round_2 {
    width: 120px;
    top: -60px;
  }
}
.service-nagare .round_3 {
  width: 90px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: #003366;
  display: grid;
  justify-items: center;
  -ms-flex-line-pack: center;
  align-content: center;
  position: absolute;
}
@media (max-width: 767px) {
  .service-nagare .round_3 {
    top: -15px;
    left: -45px;
  }
}
@media (min-width: 768px) {
  .service-nagare .round_3 {
    top: -45px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}
@media (min-width: 1440px) {
  .service-nagare .round_3 {
    width: 120px;
    top: -60px;
  }
}
.service-nagare .step,
.service-nagare .step_3 {
  font-family: "Noto Sans JP";
  font-size: 12px;
  line-height: 1;
  margin-bottom: 10px;
}
@media (min-width: 1440px) {
  .service-nagare .step,
  .service-nagare .step_3 {
    font-size: 16px;
    margin-bottom: 12px;
  }
}
.service-nagare .step {
  color: #000033;
}
.service-nagare .step_3 {
  color: #fff;
}
.service-nagare .number,
.service-nagare .number_3 {
  font-family: "Noto Sans JP";
  font-size: 16px;
  line-height: 1;
}
@media (min-width: 1440px) {
  .service-nagare .number,
  .service-nagare .number_3 {
    font-size: 24px;
  }
}
.service-nagare .number {
  color: #000033;
}
.service-nagare .number_3 {
  color: #fff;
}
.service-nagare h1 {
  font-family: "Noto Sans JP";
  font-size: 20px;
  color: #000033;
  text-align: center;
}
@media (min-width: 768px) {
  .service-nagare h1 {
    margin-top: 60px;
  }
}
@media (min-width: 1440px) {
  .service-nagare h1 {
    margin-top: 80px;
    font-size: 24px;
  }
}
.service-nagare .img_1 {
  width: 160px;
  aspect-ratio: 2/1;
  -o-object-fit: cover;
  object-fit: cover;
}
@media (min-width: 1440px) {
  .service-nagare .img_1 {
    width: 200px;
    margin: 5px auto 20px auto;
  }
}
.service-nagare .img_2 {
  height: 80px;
  -o-object-fit: contain;
  object-fit: contain;
  margin: 5px auto 0 auto;
}
@media (min-width: 1440px) {
  .service-nagare .img_2 {
    width: 200px;
    height: 100px;
    margin: 10px auto 15px auto;
  }
}
.service-nagare .img_3 {
  width: 168px;
  height: 70px;
  margin: 10px auto;
}
@media (min-width: 1440px) {
  .service-nagare .img_3 {
    width: 200px;
    height: 100px;
    margin: 10px auto 15px auto;
  }
}
.service-nagare .txt {
  font-family: "Noto Sans JP";
  font-size: 16px;
  color: #333;
  line-height: 1.5;
}
@media (max-width: 767px) {
  .service-nagare .txt {
    margin: 0 28px 0 32px;
  }
}
@media (min-width: 768px) {
  .service-nagare .txt {
    margin: 0 10px;
  }
}
@media (min-width: 1440px) {
  .service-nagare .txt {
    font-size: 20px;
    margin: 0 20px;
    line-height: 1.7;
  }
}
.service-nagare .bottom_txt {
  text-align: center;
  font-family: "Noto Serif JP";
  font-size: 16px;
  line-height: 1.5;
  color: #fff;
  display: block;
}
@media (min-width: 1440px) {
  .service-nagare .bottom_txt {
    font-size: 20px;
  }
}
@media (min-width: 768px) {
  .service-nagare .s_br {
    display: none;
  }
}

/*=============================
◆契約期間の縛りなし
=============================== */
.keiyakukikannno .bc01 {
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url(./image/building-min.jpg);
  background-position: center;
  display: block;
  position: relative;
}
@media (max-width: 767px) {
  .keiyakukikannno .bc01 {
    padding: 80px 0;
  }
}
@media (min-width: 768px) {
  .keiyakukikannno .bc01 {
    padding: 100px 0;
  }
}
@media (min-width: 1200px) {
  .keiyakukikannno .bc01 {
    padding: 140px 0 170px 0;
  }
}

/*=============================
txt01
=============================== */

@media (max-width: 767px) {
  .keiyakukikannno .txt01 {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: 35px;
  }
}
@media (min-width: 768px) {
  .keiyakukikannno .txt01 {
    position: absolute;
    right: 90px;
    top: 50px;
  }
}
@media (min-width: 1200px) {
  .keiyakukikannno .txt01 {
    right: 120px;
    top: 100px;
  }
}
@media (min-width: 1700px) {
  .keiyakukikannno .txt01 {
    right: 300px;
  }
}

.keiyakukikannno h1 {
  font-family: "Noto Serif JP";
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  color: #000033;
  vertical-align: top;
  padding: 0 2px 0 0;
  display: inline-block;
}
@media (max-width: 767px) {
  .keiyakukikannno h1 {
    border-bottom: 2px solid #a28255;
    margin: 5px 10px;
  }
}
@media (min-width: 768px) {
  .keiyakukikannno h1 {
    -ms-writing-mode: tb-rl;
    -webkit-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
    margin: 0 8px;
    border-right: 3px solid #a28255;
  }
}
@media (min-width: 1200px) {
  .keiyakukikannno h1 {
    font-size: 32px;
    margin: 0 10px;
  }
}
/* ----------------------------------
@media (max-width: 767px) {
  .keiyakukikannno .txt02 {
    display: grid;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
@media (min-width: 768px) {
  .keiyakukikannno .txt02 {
    position: absolute;
    right: 140px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
}
@media (min-width: 1200px) {
  .keiyakukikannno .txt02 {
    right: 220px;
  }
}
@media (min-width: 1700px) {
  .keiyakukikannno .txt02 {
    right: 400px;
  }
}
.keiyakukikannno h2 {
  font-family: "Noto Serif JP";
  font-size: 20px;
  font-weight: 700;
  color: #000033;
  line-height: 1;
  display: inline-block;
  text-align: center;
}
@media (max-width: 767px) {
  .keiyakukikannno h2 {
    padding: 0 0 5px 0;
    margin: 0 auto 10px auto;
    border-bottom: 3px solid #a28255;
  }
}
@media (min-width: 768px) {
  .keiyakukikannno h2 {
    -ms-writing-mode: tb-rl;
    -webkit-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
    padding: 0 5px 0 0;
    border-right: 3px solid #a28255;
  }
}
@media (min-width: 1200px) {
  .keiyakukikannno h2 {
    font-size: 32px;
    margin-top: 50px;
  }
}
@media (min-width: 768px) {
  .keiyakukikannno .s_txt {
    display: none;
  }
}
@media (max-width: 767px) {
  .keiyakukikannno .m_txt {
    display: none;
  }
}
  */
.keiyakukikannno .ellipse_area {
  display: grid;
  justify-items: center;
}
@media (max-width: 767px) {
  .keiyakukikannno .ellipse_area {
    margin: 65px 0 0 0;
  }
}
@media (min-width: 768px) {
  .keiyakukikannno .ellipse_area {
    padding: 60px 0 0 0;
  }
}
@media (min-width: 1200px) {
  .keiyakukikannno .ellipse_area {
    margin-left: -140px;
    padding: 0;
  }
}
.keiyakukikannno .tasya_ellipse {
  font-family: "Noto Sans JP";
  font-size: 20px;
  line-height: 1.4;
  color: #333;
  text-align: center;
  width: 205px;
  height: 100px;
  padding-top: 15px;
  margin: 0 130px 23px 0;
  background-color: #fff;
  border: #ddd 2px solid;
  border-radius: 50%;
}
@media (min-width: 1200px) {
  .keiyakukikannno .tasya_ellipse {
    width: 380px;
    height: 200px;
    font-size: 30px;
    padding-top: 45px;
    border: #ddd 4px solid;
    margin: 0 130px 40px 0;
  }
}
.keiyakukikannno .tasya_ellipse p {
  margin-top: 5px;
  font-size: 16px;
}
@media (min-width: 1200px) {
  .keiyakukikannno .tasya_ellipse p {
    font-size: 24px;
    margin-top: 15px;
  }
}
.keiyakukikannno .ask_ellipse {
  background-color: #fff;
  border: #a28255 4px solid;
  border-radius: 50%;
}
@media (max-width: 767px) {
  .keiyakukikannno .ask_ellipse {
    width: 361px;
    height: 215px;
  }
}
@media (min-width: 768px) {
  .keiyakukikannno .ask_ellipse {
    width: 400px;
    height: 250px;
  }
}
@media (min-width: 1200px) {
  .keiyakukikannno .ask_ellipse {
    width: 750px;
    height: 400px;
    border: #a28255 6px solid;
  }
}
.keiyakukikannno .rogo {
  height: 40px;
}
@media (max-width: 767px) {
  .keiyakukikannno .rogo {
    margin: 20px 0 15px 0;
  }
}
@media (min-width: 768px) {
  .keiyakukikannno .rogo {
    margin: 40px 0 20px 0;
  }
}
@media (min-width: 1200px) {
  .keiyakukikannno .rogo {
    height: 80px;
    margin: 60px 0 20px 0;
  }
}
.keiyakukikannno .rogo_img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.keiyakukikannno .txt03 {
  font-family: "Noto Sans JP";
  font-size: 20px;
  font-weight: 500;
  line-height: 1.3;
  color: #a28255;
  justify-items: center;
  display: grid;
}
@media (min-width: 1200px) {
  .keiyakukikannno .txt03 {
    font-size: 30px;
    justify-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 40px;
  }
}
@media (max-width: 767px) {
  .keiyakukikannno .txt03 p {
    margin-bottom: 10px;
  }
}
@media (min-width: 768px) {
  .keiyakukikannno .txt03 p {
    margin-bottom: 15px;
    text-align: center;
  }
}
@media (min-width: 1200px) {
  .keiyakukikannno .txt03 p {
    font-size: 30px;
    margin-bottom: 25px;
  }
}
.keiyakukikannno .txt03 span {
  border-bottom: 2px solid #a28255;
}
@media (min-width: 1200px) {
  .keiyakukikannno .sm_br {
    display: none;
  }
}
.keiyakukikannno h3 {
  color: #333;
  font-family: "Noto Sans JP";
  text-align: center;
  margin: 10px 0 0 30px;
}
@media (max-width: 767px) {
  .keiyakukikannno h3 {
    font-size: 14px;
  }
}
@media (min-width: 1200px) {
  .keiyakukikannno h3 {
    font-size: 24px;
  }
}

/*=============================
◆スタッフプロフィール
=============================== */
.staff_profile .bc01 {
  background: #003366;
}
@media (max-width: 767px) {
  .staff_profile .bc01 {
    padding: 80px 0 15px 0;
  }
}
@media (min-width: 768px) {
  .staff_profile .bc01 {
    padding: 100px 0 60px 0;
  }
}
@media (min-width: 1440px) {
  .staff_profile .bc01 {
    padding: 120px 0 80px 0;
  }
}
@media (min-width: 1920px) {
  .staff_profile .bc01 {
    padding: 120px 0;
  }
}
.staff_profile .bc02 {
  background: #e9e9e9;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .staff_profile .bc02 {
    width: 366px;
    margin: 15px auto 0 auto;
    padding: 50px 15px;
  }
}
@media (min-width: 768px) {
  .staff_profile .bc02 {
    width: 680px;
    margin: 0px auto 40px auto !important;
    padding: 60px 40px;
  }
}
@media (min-width: 1440px) {
  .staff_profile .bc02 {
    margin: 0 auto 40px;
  }
}
@media (min-width: 1920px) {
  .staff_profile .bc02 {
    margin: 0;
  }
}
@media (min-width: 768px) {
  .staff_profile .container_01 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: grid;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 20px;
  }
}
@media (min-width: 1920px) {
  .staff_profile .container_01 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 50px;
  }
}
.staff_profile h1 {
  font-family: "Noto Serif JP";
  font-weight: 600;
  color: #000033;
  white-space: nowrap;
}
@media (max-width: 767px) {
  .staff_profile h1 {
    font-size: 20px;
    margin-bottom: 40px;
  }
}
@media (min-width: 768px) {
  .staff_profile h1 {
    font-size: 32px;
    margin-bottom: 50px;
  }
}
.staff_profile h2 {
  font-family: "Noto Serif JP";
  font-weight: 400;
  line-height: 1.8;
}
@media (max-width: 767px) {
  .staff_profile h2 {
    font-size: 16px;
    margin-bottom: 15px;
  }
}
@media (min-width: 768px) {
  .staff_profile h2 {
    font-size: 20px;
    margin-bottom: 30px;
  }
}
.staff_profile .container_profile {
  position: relative;
}
@media (max-width: 767px) {
  .staff_profile .container_profile {
    margin-bottom: 13px;
  }
}
.staff_profile .name {
  font-family: "Noto Serif JP";
  font-weight: 400;
  color: #333;
  text-align: right;
  display: block;
}
@media (max-width: 767px) {
  .staff_profile .name {
    font-size: 20px;
    margin: 20px 0;
  }
}
@media (min-width: 768px) {
  .staff_profile .name {
    font-size: 24px;
    margin: 30px 0;
  }
}
.staff_profile .staff_img {
  aspect-ratio: 4/5;
  position: absolute;
}
@media (max-width: 767px) {
  .staff_profile .staff_img {
    right: 0px;
    width: 170px;
  }
}
@media (min-width: 768px) {
  .staff_profile .staff_img {
    right: 0px;
    width: 246px;
  }
}
.staff_profile img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  display: block;
}
.staff_profile .staff_img_kato {
  -webkit-transform: scale(-1, 1);
  transform: scale(-1, 1);
}
.staff_profile .profile-txt {
  width: 344px;
}
@media (max-width: 767px) {
  .staff_profile .profile-txt {
    padding-top: 240px;
  }
}
@media (min-width: 768px) {
  .staff_profile .profile-txt {
    height: 307px;
    display: grid;
    -ms-flex-line-pack: end;
    align-content: end;
  }
}
.staff_profile h3 {
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-weight: 300;
  line-height: 1.5;
}
.staff_profile .border {
  width: 340px;
  height: 1px;
  background-color: #333333;
  display: block;
  margin: 10px auto;
}

/*=============================
◆税理士と顧問契約しなくても決算対応してくれるの？
=============================== */
.komonnkeiyaku .bc01 {
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url(./image/mizuiro-min.jpg);
  background-position: center;
  display: block;
  padding-top: 60px;
  height: 1068px;
  position: relative;
  clip-path: ellipse(1200px 750px at 50% 30%);
  position: absolute;
}
@media (min-width: 1440px) {
  .komonnkeiyaku .bc01 {
    clip-path: ellipse(2000px 750px at 50% 30%);
  }
}
@media (min-width: 1920px) {
  .komonnkeiyaku .bc01 {
    padding-top: 100px;
    height: 1300px;
  }
}
.komonnkeiyaku p {
  font-family: "Noto Sans JP";
  font-size: 20px;
  line-height: 1.3;
  color: #333333;
}
@media (min-width: 1440px) {
  .komonnkeiyaku p {
    font-size: 28px;
  }
}
.komonnkeiyaku .top_area {
  width: 375px;
  display: grid;
  margin: 0 auto;
}
@media (min-width: 1440px) {
  .komonnkeiyaku .top_area {
    width: 450px;
  }
}
.komonnkeiyaku .txt01 {
  margin: 0 0 20px 94px;
  display: inline-block;
}
@media (min-width: 1440px) {
  .komonnkeiyaku .txt01 {
    margin: 30px 0px 20px 94px;
  }
}
.komonnkeiyaku .txt02 {
  margin-left: 30px;
  display: inline-block;
}
@media (min-width: 1440px) {
  .komonnkeiyaku .txt02 {
    margin: 20px 20px 0 0;
  }
}
.komonnkeiyaku .img_nayamu {
  width: 355px;
  position: absolute;
  top: 145px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
@media (min-width: 1440px) {
  .komonnkeiyaku .img_nayamu {
    width: 650px;
    top: 80px;
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
}
.komonnkeiyaku h1 {
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  font-family: "Noto Sans JP";
  font-size: 24px;
  font-weight: 600;
  color: #003399;
  line-height: 1.5;
  display: inline-block;
}
@media (min-width: 1440px) {
  .komonnkeiyaku h1 {
    font-size: 32px;
    padding: 30px 15px;
    background-color: #fff;
    display: inline-block;
  }
}
.komonnkeiyaku h1 span {
  text-orientation: upright;
}
@media (min-width: 1440px) {
  .komonnkeiyaku .txt03 {
    height: 350px !important;
  }
  .komonnkeiyaku .txt04 {
    height: 445px !important;
  }
}
.komonnkeiyaku .container01 {
  width: 375px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 220px auto 0 auto;
  gap: 40px;
}
@media (min-width: 1440px) {
  .komonnkeiyaku .container01 {
    margin: 150px 0 0 195px;
    text-align: initial;
    gap: 30px;
  }
}
@media (min-width: 1800px) {
  .komonnkeiyaku .container01 {
    margin: 150px 0 0 380px;
  }
}
.komonnkeiyaku .bottom_area {
  position: relative;
}
.komonnkeiyaku .staff {
  width: 350px;
  height: 550px;
  display: block;
  margin: 10px auto;
}
@media (min-width: 1440px) {
  .komonnkeiyaku .staff {
    width: 500px;
    position: absolute;
    top: 180px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}
.komonnkeiyaku .staff_img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

/*=============================
◆よくあるご質問
=============================== */
.yokuarusitumon .bc01 {
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    color-stop(60%, rgb(0, 102, 153)),
    color-stop(90%, rgb(0, 51, 102))
  );
  background: linear-gradient(rgb(0, 102, 153) 60%, rgb(0, 51, 102) 90%);
  padding: 1148px 0 0 0;
}
@media (min-width: 1440px) {
  .yokuarusitumon .bc01 {
    padding: 1200px 0 0 0;
  }
}
@media (min-width: 1920px) {
  .yokuarusitumon .bc01 {
    padding: 1270px 0 0 0;
  }
}
.yokuarusitumon .container_01 {
  background: #f2f2f2;
  padding: 30px 12px;
  display: grid;
  border-radius: 4px;
  gap: 30px;
  margin: 20px auto 0 auto;
}
@media (max-width: 767px) {
  .yokuarusitumon .container_01 {
    width: 345px;
    padding: 30px 12px;
  }
}
@media (min-width: 768px) {
  .yokuarusitumon .container_01 {
    width: 700px;
    padding: 30px 30px;
  }
}
@media (min-width: 1440px) {
  .yokuarusitumon .container_01 {
    width: 1000px;
  }
}
.yokuarusitumon .container_02 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
}
@media (min-width: 1440px) {
  .yokuarusitumon .container_02 {
    gap: 20px;
  }
}
.yokuarusitumon span {
  font-family: "Noto Sans JP";
  line-height: 1;
  font-weight: 500;
}
@media (max-width: 767px) {
  .yokuarusitumon span {
    font-size: 20px;
  }
}
@media (min-width: 768px) {
  .yokuarusitumon span {
    font-size: 24px;
  }
}
.yokuarusitumon h1 {
  font-family: "Noto Sans JP";
  line-height: 1.6;
  font-weight: 500;
}
@media (max-width: 767px) {
  .yokuarusitumon h1 {
    font-size: 16px;
  }
}
@media (min-width: 768px) {
  .yokuarusitumon h1 {
    font-size: 20px;
  }
}
@media (min-width: 1440px) {
  .yokuarusitumon h1 {
    font-size: 24px;
  }
}
.yokuarusitumon .Q,
.yokuarusitumon .Q-txt {
  color: #333;
}
.yokuarusitumon .A,
.yokuarusitumon .A-txt {
  color: #003399;
}
@media (max-width: 767px) {
  .yokuarusitumon .yokuaru_button {
    padding: 30px 0 80px 0;
  }
}
@media (min-width: 768px) {
  .yokuarusitumon .yokuaru_button {
    padding: 54px 0 80px 0;
  }
}
@media (min-width: 1200px) {
  .yokuarusitumon .yokuaru_button {
    padding: 54px 0 0 0;
  }
}
.yokuarusitumon .yokuaru_button .container_03 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 15px;
  margin: 0 auto;
  background-color: #6699cc;
  border: 4px solid #fff;
  border-radius: 8px;
  width: 270px;
  gap: 10px;
}
@media (min-width: 1440px) {
  .yokuarusitumon .yokuaru_button .container_03 {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    padding: 25px;
    gap: 20px;
  }
}
.yokuarusitumon .yokuaru_button .txt01 {
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  color: #fff;
  display: inline-block;
}
@media (min-width: 1440px) {
  .yokuarusitumon .yokuaru_button .txt01 {
    font-size: 24px;
  }
}
.yokuarusitumon .yokuaru_button .triangle {
  background-color: #fff;
  height: 30px;
  width: 25.9807621135px;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  -ms-flex-item-align: center;
  align-self: center;
  display: inline-block;
}

/*=============================
◆会社概要
=============================== */
.kaisyagaiyo .bc01 {
  background:
    -webkit-gradient(
      linear,
      left top,
      left bottom,
      from(rgb(0, 51, 102)),
      color-stop(10%, rgba(0, 51, 102, 0)),
      color-stop(90%, rgba(164, 220, 235, 0)),
      to(rgb(164, 220, 235))
    ),
    url(./image/nami5-min.jpg) 0% 0% / cover no-repeat;
  background:
    linear-gradient(
      rgb(0, 51, 102) 0%,
      rgba(0, 51, 102, 0) 10%,
      rgba(164, 220, 235, 0) 90%,
      rgb(164, 220, 235) 100%
    ),
    url(./image/nami5-min.jpg) 0% 0% / cover no-repeat;
}
@media (max-width: 767px) {
  .kaisyagaiyo .bc01 {
    padding: 80px 0 0 0;
  }
}
@media (min-width: 768px) {
  .kaisyagaiyo .bc01 {
    padding: 100px 0 0 0;
  }
}
@media (min-width: 1200px) {
  .kaisyagaiyo .bc01 {
    padding: 200px 0 0 0;
  }
}
.kaisyagaiyo .bc02 {
  background: rgb(164, 220, 235);
}
@media (max-width: 767px) {
  .kaisyagaiyo .bc02 {
    padding-bottom: 80px;
  }
}
@media (min-width: 768px) {
  .kaisyagaiyo .bc02 {
    padding-bottom: 100px;
  }
}
@media (min-width: 1440px) {
  .kaisyagaiyo .bc02 {
    position: relative;
    padding-bottom: 120px;
  }
}
.kaisyagaiyo .container_01 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .kaisyagaiyo .container_01 {
    gap: 20px;
  }
}
@media (min-width: 768px) {
  .kaisyagaiyo .container_01 {
    gap: 40px;
  }
}
@media (min-width: 1440px) {
  .kaisyagaiyo .container_01 {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 0 0 10%;
  }
}
@media (min-width: 1600px) {
  .kaisyagaiyo .container_01 {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 0 0 12%;
  }
}
.kaisyagaiyo .container_02 {
  text-align: right;
}
@media (max-width: 767px) {
  .kaisyagaiyo .container_02 {
    width: 64px;
  }
}
@media (min-width: 768px) {
  .kaisyagaiyo .container_02 {
    width: 80px;
  }
}
@media (min-width: 1440px) {
  .kaisyagaiyo .container_02 {
    width: 100px;
  }
}
.kaisyagaiyo .container_03 {
  display: grid;
  justify-items: start;
}
@media (max-width: 767px) {
  .kaisyagaiyo .container_03 {
    width: 240px;
  }
}
@media (min-width: 768px) {
  .kaisyagaiyo .container_03 {
    width: 520px;
    margin-bottom: 10px;
  }
}
.kaisyagaiyo .left {
  font-family: "Noto Sans JP";
  color: #333333;
  display: inline-block;
}
@media (max-width: 767px) {
  .kaisyagaiyo .left {
    font-size: 16px;
    font-weight: 500;
  }
}
@media (min-width: 768px) {
  .kaisyagaiyo .left {
    font-size: 20px;
    font-weight: 700;
  }
}
@media (min-width: 1440px) {
  .kaisyagaiyo .left {
    font-size: 24px;
  }
}
@media (max-width: 767px) {
  .kaisyagaiyo .company {
    margin-bottom: 20px;
  }
}
@media (min-width: 768px) {
  .kaisyagaiyo .company {
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .kaisyagaiyo .add {
    margin-bottom: 68px;
  }
}
@media (min-width: 768px) {
  .kaisyagaiyo .add {
    margin-bottom: 70px;
  }
}
@media (max-width: 767px) {
  .kaisyagaiyo .tel {
    margin-bottom: 20px;
  }
}
@media (min-width: 768px) {
  .kaisyagaiyo .tel {
    margin-bottom: 30px;
  }
}
.kaisyagaiyo .station {
  margin-bottom: 40px;
}
.kaisyagaiyo .right {
  font-family: "Noto Sans JP";
  line-height: 1.5;
  color: #333333;
  font-weight: 400;
  display: inline-block;
}
@media (max-width: 767px) {
  .kaisyagaiyo .right {
    font-size: 16px;
    margin-bottom: 20px;
  }
}
@media (min-width: 768px) {
  .kaisyagaiyo .right {
    font-size: 20px;
    margin-bottom: 30px;
  }
}
@media (min-width: 1440px) {
  .kaisyagaiyo .right {
    font-size: 24px;
  }
}
@media (min-width: 768px) {
  .kaisyagaiyo .s_br {
    display: none;
  }
}
@media (min-width: 1439px) {
  .kaisyagaiyo .l_br {
    display: none;
  }
}
.kaisyagaiyo .map {
  width: 92%;
  max-width: 540px;
  aspect-ratio: 1/0.83478;
  margin: 0 auto;
}
@media (min-width: 1440px) {
  .kaisyagaiyo .map {
    position: absolute;
    bottom: 120px;
    left: 55%;
  }
}
.kaisyagaiyo .map_img {
  width: 100%;
  height: 100%;
  -o-object-fit: none;
  object-fit: none;
  -o-object-position: 40% 43%;
  object-position: 40% 43%;
  display: inline-block;
  border-radius: 6px;
}

/*=============================
◆会社概要
=============================== */
.footer .bc01 {
  background:
    -webkit-gradient(linear, left top, left bottom, from(rgba(0, 51, 102, 0.7)))
      0%,
    url(./image/22097503_m-min.jpg) 0% 0% / cover no-repeat;
  background:
    linear-gradient(rgba(0, 51, 102, 0.7)) 0%,
    url(./image/22097503_m-min.jpg) 0% 0% / cover no-repeat;
}
@media (max-width: 767px) {
  .footer .bc01 {
    padding-top: 80px;
  }
}
@media (min-width: 768px) {
  .footer .bc01 {
    padding-top: 100px;
  }
}
.footer .rogo_back {
  width: 270px;
  height: 70px;
  background-color: rgba(255, 255, 255, 0.5);
  margin: 0 auto;
}
@media (min-width: 1440px) {
  .footer .rogo_back {
    width: 400px;
    height: 120px;
  }
}
.footer .rogo {
  width: 250px;
  aspect-ratio: 5/1;
  display: inline-block;
  margin: 10px 10px;
}
@media (min-width: 1440px) {
  .footer .rogo {
    width: 350px;
    margin: 25px;
  }
}
.footer .container_01 {
  display: grid;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media (min-width: 1440px) {
  .footer .container_01 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 50px;
  }
}
.footer .container_02 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 10px;
}
.footer .container_03 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 60px;
}
@media (max-width: 767px) {
  .footer .container_03 {
    margin: 0 auto;
  }
}
@media (min-width: 768px) {
  .footer .container_03 {
    margin: 40px 0 80px 0;
  }
}
.footer .container_04 {
  display: grid;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 40px auto 0 auto;
}
@media (min-width: 1440px) {
  .footer .container_04 {
    margin: 0 80px 0 0;
  }
}
.footer .tel-uketuke {
  display: grid;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
}
.footer .tel_icon {
  width: 82px;
  background-color: #ffffff;
  -webkit-mask-image: url(./image/211830_telephone_icon.svg);
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url(./image/211830_telephone_icon.svg);
  mask-size: contain;
  mask-repeat: no-repeat;
  -webkit-mask-position: contain;
  mask-position: contain;
  aspect-ratio: 1/1;
  display: block;
}
.footer .mail_icon {
  width: 65px;
  background-color: #ffffff;
  -webkit-mask-image: url(./image/8665305_envelope_email_icon.svg);
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url(./image/8665305_envelope_email_icon.svg);
  mask-size: contain;
  mask-repeat: no-repeat;
  -webkit-mask-position: contain;
  mask-position: contain;
  aspect-ratio: 1/1;
}
.footer .line_icon {
  width: 65px;
  background-color: #ffffff;
  -webkit-mask-image: url(./image/4691359_line_icon.svg);
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url(./image/4691359_line_icon.svg);
  mask-size: contain;
  mask-repeat: no-repeat;
  -webkit-mask-position: contain;
  mask-position: contain;
  aspect-ratio: 1/1;
}
.footer a {
  display: block;
}
.footer .tel {
  font-family: "Noto Sans JP";
  color: #ffffff;
  margin: 0 0 10px 0;
  line-height: 1;
  display: inline-block;
}
@media (max-width: 767px) {
  .footer .tel {
    font-size: 24px;
  }
}
@media (min-width: 768px) {
  .footer .tel {
    font-size: 32px;
  }
}
.footer .uketuke-jikan {
  font-family: "Noto Sans JP";
  font-size: 16px;
  color: #ffffff;
  display: inline-block;
  text-align: left;
}
@media (max-width: 767px) {
  .footer .uketuke-jikan {
    margin: 0 0 38px 20px;
  }
}
@media (max-width: 767px) {
  .footer .s_container_menu {
    padding: 60px 0 0 40px;
  }
}
@media (min-width: 768px) {
  .footer .s_container_menu {
    display: none;
  }
}
@media (max-width: 767px) {
  .footer .m_container_menu {
    display: none;
  }
}
@media (min-width: 768px) {
  .footer .m_container_menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 60px;
  }
}
.footer p {
  font-family: "Noto Sans JP";
  font-size: 16px;
  color: #fff;
  margin-bottom: 24px;
}
@media (max-width: 767px) {
  .footer .menu_left {
    display: none;
  }
}
@media (min-width: 768px) {
  .footer .menu_left {
    width: 210px;
  }
}
@media (max-width: 767px) {
  .footer .menu_right {
    display: none;
  }
}
@media (min-width: 768px) {
  .footer .menu_right {
    width: 115px;
  }
}
.footer .copy-right {
  font-family: "Noto Sans JP";
  color: #fff;
  display: block;
  text-align: center;
}
@media (max-width: 767px) {
  .footer .copy-right {
    margin: 36px auto 0px auto;
    padding-bottom: 80px;
  }
}
@media (min-width: 768px) {
  .footer .copy-right {
    text-align: center;
    margin: 56px auto 0px auto;
    padding-bottom: 100px;
  }
}
@media (min-width: 1440px) {
  .footer .copy-right {
    padding-bottom: 120px;
  }
}
