@charset "UTF-8";
.material-icons-outlined,
.material-icons {
  font-family: 'Material Icons';
  font-weight: normal;
  font-style: normal;
  font-size: 24px;  /* Preferred icon size */
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;

  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;

  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;

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

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

html {
  font-size: 62.5%;
}

body {
  color: #000;
  font-family: "游ゴシック体","Yu Gothic",YuGothic,"Noto Sans JP","ヒラギノ角ゴ ProN W3","Hiragino Kaku Gothic ProN","メイリオ",Meiryo,sans-serif;
  line-height: 1.6;
  font-size: 1.6rem;
  text-align: center;
}
@media (max-width: 480px) {
  body {
    font-size: 1.4rem;
  }
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

img {
  max-width: 100%;
}

a:link,
a:visited {
  color: #36afc9;
  text-decoration: underline;
}

a:hover,
a:active {
  color: #999;
}

* {
  box-sizing: border-box;
}

/* a img {
transition: 1.0s;
} */

a:hover img {
  filter: alpha(opacity=70);
  opacity: 0.7;
}

.b,
strong {
  font-weight: bold;
}

.clearfix:after {
  content: "";
  clear: both;
  display: block;
}

.tc {
  text-align: center;
}

.tl {
  text-align: left;
}

.tr {
  text-align: right;
}

.fl {
  float: left;
}

.fr {
  float: right;
}

.mb10 {
  margin-bottom: 1rem;
}

.mb20 {
  margin-bottom: 2rem;
}

.mb30 {
  margin-bottom: 3rem;
}

.mb40 {
  margin-bottom: 4rem;
}

.mb50 {
  margin-bottom: 5rem;
}

.m_tb20 {
  margin: 2rem 0;
}

.m_tb30 {
  margin: 3rem 0;
}

.m_tb40 {
  margin: 4rem 0;
}

.m_tb50 {
  margin: 5rem 0;
}

@media (max-width: 768px) {
  .mb10 {
    margin-bottom: 0.75rem;
  }

  .mb20 {
    margin-bottom: 1.5rem;
  }

  .mb30 {
    margin-bottom: 2.2rem;
  }

  .mb40 {
    margin-bottom: 3rem;
  }

  .mb50 {
    margin-bottom: 3.75rem;
  }

  .m_tb20 {
    margin: 1.5rem 0;
  }

  .m_tb30 {
    margin: 2.2rem 0;
  }

  .m_tb40 {
    margin: 3rem 0;
  }

  .m_tb50 {
    margin: 3.75rem 0;
  }
}
@media (max-width: 480px) {
  .mb10 {
    margin-bottom: 0.5rem;
  }

  .mb20 {
    margin-bottom: 1rem;
  }

  .mb30 {
    margin-bottom: 1.5rem;
  }

  .mb40 {
    margin-bottom: 2rem;
  }

  .mb50 {
    margin-bottom: 2.5rem;
  }

  .m_tb20 {
    margin: 1rem 0;
  }

  .m_tb30 {
    margin: 1.5rem 0;
  }

  .m_tb40 {
    margin: 2rem 0;
  }

  .m_tb50 {
    margin: 2.5rem 0;
  }
}
/* loading
========================================================================== */
.loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 5000;
}

.loader {
  margin: -15px 0 0 -15px;
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 30px;
  height: 30px;
  border: 4px solid #000;
  border-radius: 50%;
  border-top-color: transparent;
  animation: spin 0.75s infinite linear;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
*[class^="fade"] {
  opacity: 0.01;
  transition: all 500ms;
}

.fade-up {
  /*下から上に*/
  transform: translate(0, 50px);
}

.fade-down {
  /*上から下に*/
  transform: translate(0, -50px);
}

.fade-left {
  /*右から左に*/
  transform: translate(50px, 0);
}

.fade-right {
  /*左から右に*/
  transform: translate(-50px, 0);
}

/* 画面内に入った状態 */
*[class^="fade"].fadein {
  opacity: 1;
  transform: translate(0, 0);
}

.fade-box *[class^="fade"]:nth-of-type(1) {
  -moz-transition-delay: 100ms;
  -webkit-transition-delay: 100ms;
  -o-transition-delay: 100ms;
  -ms-transition-delay: 100ms;
}
.fade-box *[class^="fade"]:nth-of-type(2) {
  -moz-transition-delay: 200ms;
  -webkit-transition-delay: 200ms;
  -o-transition-delay: 200ms;
  -ms-transition-delay: 200ms;
}
.fade-box *[class^="fade"]:nth-of-type(3) {
  -moz-transition-delay: 300ms;
  -webkit-transition-delay: 300ms;
  -o-transition-delay: 300ms;
  -ms-transition-delay: 300ms;
}
.fade-box *[class^="fade"]:nth-of-type(4) {
  -moz-transition-delay: 400ms;
  -webkit-transition-delay: 400ms;
  -o-transition-delay: 400ms;
  -ms-transition-delay: 400ms;
}
.fade-box *[class^="fade"]:nth-of-type(5) {
  -moz-transition-delay: 500ms;
  -webkit-transition-delay: 500ms;
  -o-transition-delay: 500ms;
  -ms-transition-delay: 500ms;
}
.fade-box *[class^="fade"]:nth-of-type(6) {
  -moz-transition-delay: 600ms;
  -webkit-transition-delay: 600ms;
  -o-transition-delay: 600ms;
  -ms-transition-delay: 600ms;
}
.fade-box *[class^="fade"]:nth-of-type(7) {
  -moz-transition-delay: 700ms;
  -webkit-transition-delay: 700ms;
  -o-transition-delay: 700ms;
  -ms-transition-delay: 700ms;
}
.fade-box *[class^="fade"]:nth-of-type(8) {
  -moz-transition-delay: 800ms;
  -webkit-transition-delay: 800ms;
  -o-transition-delay: 800ms;
  -ms-transition-delay: 800ms;
}
.fade-box *[class^="fade"]:nth-of-type(9) {
  -moz-transition-delay: 900ms;
  -webkit-transition-delay: 900ms;
  -o-transition-delay: 900ms;
  -ms-transition-delay: 900ms;
}
.fade-box *[class^="fade"]:nth-of-type(10) {
  -moz-transition-delay: 1000ms;
  -webkit-transition-delay: 1000ms;
  -o-transition-delay: 1000ms;
  -ms-transition-delay: 1000ms;
}
.fade-box *[class^="fade"]:nth-of-type(11) {
  -moz-transition-delay: 1100ms;
  -webkit-transition-delay: 1100ms;
  -o-transition-delay: 1100ms;
  -ms-transition-delay: 1100ms;
}
.fade-box *[class^="fade"]:nth-of-type(12) {
  -moz-transition-delay: 1200ms;
  -webkit-transition-delay: 1200ms;
  -o-transition-delay: 1200ms;
  -ms-transition-delay: 1200ms;
}
.fade-box *[class^="fade"]:nth-of-type(13) {
  -moz-transition-delay: 1300ms;
  -webkit-transition-delay: 1300ms;
  -o-transition-delay: 1300ms;
  -ms-transition-delay: 1300ms;
}
.fade-box *[class^="fade"]:nth-of-type(14) {
  -moz-transition-delay: 1400ms;
  -webkit-transition-delay: 1400ms;
  -o-transition-delay: 1400ms;
  -ms-transition-delay: 1400ms;
}
.fade-box *[class^="fade"]:nth-of-type(15) {
  -moz-transition-delay: 1500ms;
  -webkit-transition-delay: 1500ms;
  -o-transition-delay: 1500ms;
  -ms-transition-delay: 1500ms;
}
.fade-box *[class^="fade"]:nth-of-type(16) {
  -moz-transition-delay: 1600ms;
  -webkit-transition-delay: 1600ms;
  -o-transition-delay: 1600ms;
  -ms-transition-delay: 1600ms;
}
.fade-box *[class^="fade"]:nth-of-type(17) {
  -moz-transition-delay: 1700ms;
  -webkit-transition-delay: 1700ms;
  -o-transition-delay: 1700ms;
  -ms-transition-delay: 1700ms;
}
.fade-box *[class^="fade"]:nth-of-type(18) {
  -moz-transition-delay: 1800ms;
  -webkit-transition-delay: 1800ms;
  -o-transition-delay: 1800ms;
  -ms-transition-delay: 1800ms;
}
.fade-box *[class^="fade"]:nth-of-type(19) {
  -moz-transition-delay: 1900ms;
  -webkit-transition-delay: 1900ms;
  -o-transition-delay: 1900ms;
  -ms-transition-delay: 1900ms;
}
.fade-box *[class^="fade"]:nth-of-type(20) {
  -moz-transition-delay: 2000ms;
  -webkit-transition-delay: 2000ms;
  -o-transition-delay: 2000ms;
  -ms-transition-delay: 2000ms;
}
.fade-box *[class^="fade"]:nth-of-type(21) {
  -moz-transition-delay: 2100ms;
  -webkit-transition-delay: 2100ms;
  -o-transition-delay: 2100ms;
  -ms-transition-delay: 2100ms;
}
.fade-box *[class^="fade"]:nth-of-type(22) {
  -moz-transition-delay: 2200ms;
  -webkit-transition-delay: 2200ms;
  -o-transition-delay: 2200ms;
  -ms-transition-delay: 2200ms;
}
.fade-box *[class^="fade"]:nth-of-type(23) {
  -moz-transition-delay: 2300ms;
  -webkit-transition-delay: 2300ms;
  -o-transition-delay: 2300ms;
  -ms-transition-delay: 2300ms;
}
.fade-box *[class^="fade"]:nth-of-type(24) {
  -moz-transition-delay: 2400ms;
  -webkit-transition-delay: 2400ms;
  -o-transition-delay: 2400ms;
  -ms-transition-delay: 2400ms;
}
.fade-box *[class^="fade"]:nth-of-type(25) {
  -moz-transition-delay: 2500ms;
  -webkit-transition-delay: 2500ms;
  -o-transition-delay: 2500ms;
  -ms-transition-delay: 2500ms;
}
.fade-box *[class^="fade"]:nth-of-type(26) {
  -moz-transition-delay: 2600ms;
  -webkit-transition-delay: 2600ms;
  -o-transition-delay: 2600ms;
  -ms-transition-delay: 2600ms;
}
.fade-box *[class^="fade"]:nth-of-type(27) {
  -moz-transition-delay: 2700ms;
  -webkit-transition-delay: 2700ms;
  -o-transition-delay: 2700ms;
  -ms-transition-delay: 2700ms;
}
.fade-box *[class^="fade"]:nth-of-type(28) {
  -moz-transition-delay: 2800ms;
  -webkit-transition-delay: 2800ms;
  -o-transition-delay: 2800ms;
  -ms-transition-delay: 2800ms;
}
.fade-box *[class^="fade"]:nth-of-type(29) {
  -moz-transition-delay: 2900ms;
  -webkit-transition-delay: 2900ms;
  -o-transition-delay: 2900ms;
  -ms-transition-delay: 2900ms;
}
.fade-box *[class^="fade"]:nth-of-type(30) {
  -moz-transition-delay: 3000ms;
  -webkit-transition-delay: 3000ms;
  -o-transition-delay: 3000ms;
  -ms-transition-delay: 3000ms;
}

/* ------------------------------------------------------
Header
-------------------------------------------------------*/
/* // fixed  スクロールするとメニューが固定 */
.fixed {
  position: fixed !important;
  top:0;
  width: 100%;
}

#header {
  padding: 20px 20px 10px;
  background-color: #fff;
  z-index: 9999;
  position: static;
  box-sizing: border-box;
}

#header:after {
  content: "";
  clear: both;
  display: block;
}

.header_left {
  float: left;
}

.logo h1 {
  font-weight: bold;
  font-size: 3.5rem;
}

.logo h1 a{
  color: #000;
  text-decoration: none;
}

.logo h1 a:hover {
  color: #000;
}

.logo h1 span {
  font-size: 3rem;
}

.logo p {
  font-size: 2rem;
  font-weight: bold;
  line-height: 2;
}

.header_right {
  float: right;
  display: block;
}

.box_1 .header_btn {
  display: flex;
  align-content: flex-end;
  justify-content: flex-end;
  margin-bottom: 20px;
}

.contact_btn_1 a {
  display: flex;
  justify-content: center;
  align-items: center;
  border-style: none;
  width: 208px;
  height: 49px;
  background-color: #36afc9;
  border-radius: 50px;
  color: #fff;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
}

.contact_btn_1 span {
  margin-right:  10px;
}
.contact_btn_1 p {
  font-size: 1.8rem;
}

.contact_tel_1 {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #36afc9;
  font-weight: bold;
  text-align: center;
  margin-left: 20px;
}

.contact_tel_1 .material-icons{
  font-size: 36px;
}

.contact_tel_1 p {
  font-size: 3.2rem;
}

/* グローバルナビ
==================================================================== */
.global_nav ul {
  display: flex;
  align-content: flex-end;
  justify-content: flex-end;
  font-size: 1.8rem;
  font-weight: bold;
}

.global_nav ul li {
  margin-right: 55px;
}

.global_nav ul li:last-child{
  margin-right: 0;
}

.global_nav ul li a:link, .global_nav ul li a:visited {
  color: #000;
  text-decoration: none;
}

.global_nav ul li a:hover, .global_nav ul li a:active {
  color: #36afc9;
}

/* メニューアイコン */
.sp_nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  align-content: center;
}

.nav_btn {
  background: #36afc9;
  border-radius: 5px;
  width: 80px;
  height: 80px;
  cursor: pointer;
  margin-left: 20px;
  position: relative;
  text-align: center;
}

.nav_btn a {
  text-decoration: none;
  color: #fff;
}
.sp_nav .material-icons-outlined,
.sp_nav .material-icons {
  padding-top: 5px;
}

.menu_txt {
  display: block;
  font-size: 1.5rem;
  color: #fff;
  text-align: center;
  padding:0 16px;
  line-height: 15px;
  letter-spacing: 1px;
}

.menu_txt_2 {
  display: block;
  font-size: 1.4rem;
  color: #fff;
  letter-spacing: -1px;
  margin: 4px auto 0;
  padding: 0 11px;
  text-align: center;
}

.mail img {
  display: block;
  width: 50px;
  margin: 3px auto;
}

.tel img {
  display: block;
  width: 50px;
  margin: 3px auto 4px;
}

/* ハンバーガーメニュー */
.menu_box {
  display: block;
  z-index: 3;
  width: 45px;
  height: 50px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.menu_box span {
  display: block;
  position: absolute;
  width: 100%;
  height: 2px ;
  background: #fff;
  margin: 0 auto;
}

.menu_box span:nth-child(1) {
  top: 18px;
}
.menu_box span:nth-child(2) {
  top: 31px;
}
.menu_box span:nth-child(3) {
  top: 44px;
}

/* ナビ開いてる時のボタン */
.menu_box.active span:nth-child(1) {
  top : 36px;
  left: -4x;
  -webkit-transform: rotate(-45deg);
  -moz-transform   : rotate(-45deg);
  transform        : rotate(-45deg);
}

.menu_box.active span:nth-child(2),
.menu_box.active span:nth-child(3) {
  top: 36px;
  left: -4x;
  -webkit-transform: rotate(45deg);
  -moz-transform   : rotate(45deg);
  transform        : rotate(45deg);
}

nav.globalMenuSp {
  position: fixed;
  z-index : 2;
  top  : 0;
  left : 0;
  color: #36afc9;
  background: #fff;
  text-align: center;
  transform: translateY(-100%);
  transition: all 0.6s;
  width: 100%;
}

nav.globalMenuSp ul {
  background: #36afc9;
  margin: 0 auto;
  padding: 118px 0 0;
  width: 100%;
}

nav.globalMenuSp ul li {
  list-style-type: none;
  padding: 0;
  width: 100%;
  border-bottom: 1px solid #fff;
}

nav.globalMenuSp ul li:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

nav.globalMenuSp ul li:hover{
  background :#fff;
}

nav.globalMenuSp ul li a {
  display: block;
  color: #fff;
  padding: 1em 0;
  text-decoration :none;
}

nav.globalMenuSp ul li a:hover{
  color: #36afc9;
}

/* このクラスを、jQueryで付与・削除する */
nav.globalMenuSp.active {
  transform: translateY(0%);
}


/* .breadcrumbs パンくずリスト
========================================================================== */
.breadcrumbs {
  padding-left: 0;
  margin: 0 0 30px;
}

.breadcrumbs li {
  display: inline;
  /*横に並ぶように*/
  list-style: none;
  font-size: 1.6rem;
}

.breadcrumbs li:after {
  /* >を表示*/
  content: '›';
  padding: 0 3px;
  color: #555;
}

.breadcrumbs li:last-child:after {
  content: '';
}

.breadcrumbs li a {
  text-decoration: none;
  color: #36afc9;
  /*色*/
}

.breadcrumbs li a:hover {
  text-decoration: underline;
  color: #666;
}


/* ------------------------------------------------------
Contents
-------------------------------------------------------　*/
#wrapper {
  text-align: left;
}

#container {
  max-width: 1200px;
  margin: 0 auto;
}

#container:after {
  content: "";
  clear: both;
  display: block;
}

/* ------------------------------------------------------
all
-------------------------------------------------------　*/
div img {
  vertical-align: top;
  border-radius: 10px;
}

/* ------------------------------------------------------
primary
-------------------------------------------------------　*/
.primary {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin: 0 auto 50px;
  height: 261px;
}

.primary_bg {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.primary_txt {
  color: #000;
  font-size: 4.2rem;
  font-weight: 600;
  padding-top: 50px;
}

/* ========== contact ========== */
#contact {
  z-index: 0;
  height: 490px;
  margin: 0 auto;
  background-image: url(../img/common/foot_img.jpg);
  background-position: top;
  background-size: cover;
  background-repeat: no-repeat;
  padding-top: 50px;
}

.contact_box {
  border: 4px solid #36afc9;
  border-radius: 10px;
  background-color: #fff;
  width: 500px;
  margin: 0 auto;
  text-align: center;
  padding: 20px;
  margin-top: 50px;
}

.contact_box:after {
  content: "";
  clear: both;
  display: block;
}

.contact_box p{
  font-size: 1.8rem;
  font-weight: 600;
}

.contact_ttl {
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
  margin: 20px 0 10px;
}

.contact_box .contact_ttl_txt {
  font-size: 2.6rem;
  font-weight: 600;
  color:#000;
  margin-right: 25px;
}

.contact_box .contact_ttl_txt:nth-child(2) {
  margin-right: 0;
  color:#f19149;
}

.contact_ttl img {
  width: 40%;
  border-radius: 0;
}

.contact_tel_2 {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #36afc9;
  font-weight: bold;
  text-align: center;
  margin-left: 20px;
}

.contact_tel_2 .material-icons{
  font-size: 50px;
}

.contact_tel_2 p {
  font-size: 4rem;
}

.contact_btn_2 a {
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  border-style: none;
  width: 397px;
  height: 70px;
  background-color: #36afc9;
  border-radius: 50px;
  color: #fff;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  margin: 10px auto;
}

.contact_btn_2 span {
  margin-right: 10px;
}

.contact_btn_2 p {
  font-size: 2.6rem;
}

/* ------------------------------------------------------
Footer
-------------------------------------------------------　*/
#footer {
  background-color: #36afc9;
  color: #fff;
  padding: 24px;
}

#footer p{
  font-size: 1.4rem;
  vertical-align: baseline;
}

.footer_txt {
  display: block;
}

#footer .footer_txt h1{
  font-size: 2.5rem;
}

#footer .footer_txt span{
  font-size: 3.6rem;
}

#footer .footer_copyright {
  display: block;
  text-align: right;
}

.footer_copyright p span{
  font-size: 1.6rem;
}

.sp_nav {
  display: none;
}




/* レスポンシブ
==================================================================== */

@media (max-width: 1200px) {
  #container {
    width: 92%;
  }
}

@media (max-width: 1024px) {
  #header {
    padding: 20px 20px;
    box-sizing: border-box;
  }

  .header_btn {
    display: none;
  }

  .logo h1 {
    font-size: 2.5rem;
    line-height: 30px;
  }

  .logo h1 span {
    font-size: 2rem;
  }

  .logo p {
    font-size: 1.6rem;
  }

  .box_1{
    display: none;
  }

  .global_nav{
    display: none;
  }

  .gloval_nav {
    width: 100%;
    background: #ccc;
    border-bottom: 1px solid #000;
    height :60px;
  }

  .gloval_nav:after {
    content: "";
    clear: both;
    display: block;
  }

  .gloval_nav ul{
    display: inline-block;
  }

  .sp_nav {
    display: flex;
  }

  .breadcrumbs li {
    font-size: 1.4rem;
  }

  .primary_txt {
    font-size: 3.8rem;
  }

  #contact {
    height: 550px;
    background-image: url(../img/common/foot_sp_img.jpg);
    background-position: top;
    background-size: cover;
    background-repeat: no-repeat;
    padding-top: 10px;
  }

  .contact_box {
    margin-top: 139px;
  }

  .contact_tel_2 p {
    font-size: 4rem;
  }
  .sp_nav .material-icons-outlined,
  .sp_nav .material-icons {
    line-height: 50px;
    font-size: 34px;
  }
  .contact_tel_2 .material-icons {
    font-size: 36px;
  }
}

@media (max-width: 768px) {
  #header {
    padding: 15px 15px;
  }

  .global_nav {
    margin-bottom: 20px;
  }

  nav.globalMenuSp ul {
    padding: 95px 0 0;
  }

  /* メニューアイコン */
  .nav_btn {
    width: 60px;
    height: 60px;
    margin-left: 12px;
  }

  .menu_txt {
    font-size: 1.2rem;
    padding:0 10px;
    line-height: 15px;
  }

  .menu_txt_2 {
    font-size: 1rem;
    margin: 8px auto 0;
    padding:0 7px;
  }

  .mail img {
    display: block;
    width: 36px;
    margin: 3px auto 0;
  }

  .tel img {
    display: block;
    width: 36px;
    margin: 3px auto 2px;
  }

  /* ハンバーガーメニュー */
  .menu_box {
    width: 35px;
    height: 30px;
  }

/*  .menu_box span {
    position: absolute;
    width: 100%;
    height: 1px ;
    padding:0 10px;
  }*/

  .menu_box span:nth-child(1) {
    top: 13px;
  }
  .menu_box span:nth-child(2) {
    top: 23px;
  }
  .menu_box span:nth-child(3) {
    top: 33px;
  }

  /* ナビ開いてる時のボタン */
  .menu_box.active span:nth-child(1) {
    top : 28px;
  }

  .menu_box.active span:nth-child(2),
  .menu_box.active span:nth-child(3) {
    top: 28px;
  }


  .sp_nav .material-icons-outlined,
  .sp_nav .material-icons {
    line-height: 30px;
    font-size: 24px;
  }

  .breadcrumbs li {
    font-size: 1.4rem;
  }

  .primary {
    margin: 0 auto 30px;
  }

  .primary_txt {
    font-size: 3rem;
  }

  #contact {
    height: 360px;
  }

  .contact_box {
    width: 360px;
    padding: 15px 10px 15px;
    margin-top: 94px;
  }

  .contact_box p{
    font-size: 1.6rem;
  }

  .contact_ttl {
    margin: 0;
  }

  .contact_box .contact_ttl_txt {
    font-size: 2rem;
  }

  .contact_ttl img {
    width: 40%;
  }

  .contact_tel_2 {
    margin-left: 10px;
  }

  .contact_tel_2 img {
    width: 25px;
    height: 25px;
    margin: 0 5px 0 0;
  }

  .contact_tel_2 p {
    font-size: 3.5rem;
  }

  .contact_btn_2 a {
    width: 250px;
    height: 40px;
    margin: 15px auto 0;
  }

  .contact_btn_2 p {
    font-size: 1.7rem;
  }

  #footer {
    padding: 14px;
  }

  #footer p{
    font-size: 1.2rem;
  }

  .footer_txt {
    text-align: center;
  }

  #footer .footer_txt h1{
    font-size: 2rem;
  }

  #footer .footer_txt span{
    font-size: 2.4rem;
  }

  #footer .footer_copyright {
    text-align: center;
  }

  .footer_copyright p{
    padding: 25px 0 0;
    font-size: 1.2rem;
  }
}

@media (max-width: 428px) {
  #header {
    padding: 10px;
  }

  .logo h1 {
    font-size: 1.8rem;
    line-height: 25px;
  }

  .logo h1 span {
    font-size: 1.6rem;
  }

  .logo p {
    font-size: 1.2rem;
  }

  /* メニューアイコン */
  .nav_btn {
    width: 50px;
    height: 50px;
    margin-left: 10px;
  }

  .menu_txt {
    font-size: 1rem;
    padding: 0 5px;
    line-height: 13px;
    letter-spacing: 0px;
  }

  .menu_txt_2 {
    display: none;
  }

  .mail img {
    display: block;
    width: 31px;
    margin: 4px auto 0;
  }

  .tel img {
    display: block;
    width: 31px;
    margin: 4px auto 0;
  }

  /* ハンバーガーメニュー */
  .menu_box {
    width: 30px;
    height: 30px;
  }

  .sp_nav .material-icons-outlined,
  .sp_nav .material-icons {
    line-height: 24px;
  }

/*  .menu_box span {
    position: absolute;
    width: 100%;
    height: 1px ;
    padding:0 10px;
  }*/

  .menu_box span:nth-child(1) {
    top: 15px;
  }

  .menu_box span:nth-child(2) {
    top: 25px;
  }

  .menu_box span:nth-child(3) {
    top: 35px;
  }

  /* ナビ開いてる時のボタン */
  .menu_box.active span:nth-child(1) {
    top : 26px;
  }

  .menu_box.active span:nth-child(2),
  .menu_box.active span:nth-child(3) {
    top: 26px;
  }

  nav.globalMenuSp ul {
    padding: 77px 0 0;
  }

  .primary {
    height: 200px;
    margin: 0 auto 30px;
  }

  .primary_txt {
    font-size: 2.5rem;
  }

  .breadcrumbs li {
    font-size: 1.2rem;
  }

  #contact {
    height: 300px;
    padding-top: 30px;
  }

  .contact_box {
    width: 300px;
    margin-top: 20px;
    padding: 20px 10px 20px;
  }

  .contact_box p{
    font-size: 1.5rem;
  }

  .contact_box .contact_ttl_txt {
    font-size: 1.8rem;
    margin-right: 10px;
  }

  .contact_ttl img {
    width: 40%;
  }

  .contact_tel_2 {
    margin-left: 8px;
  }

  .contact_tel_2 p {
    font-size: 2.5rem;
    letter-spacing: -0.02em;
  }

  .contact_btn_2 a {
    width: 250px;
    height: 40px;
    margin: 15px auto 0;
  }

  .contact_btn_2 p {
    font-size: 1.6rem;
  }

  #footer {
    padding: 10px;
  }

  #footer p{
    font-size: 1.2rem;
  }

  #footer .footer_txt h1{
    font-size: 1.4rem;
  }

  #footer .footer_txt h1 span{
    font-size: 1.8rem;
  }

  .footer_copyright p{
    padding: 15px 0 0;
    font-size: 1rem;
  }

  .footer_copyright p span{
    font-size: 1.2rem;
  }
}

@media (max-width: 375px) {
  #header {
    padding: 10px 10px;
  }

  .logo p {
    font-size: 1.2rem;
    display: block;
    padding-bottom: 5px;
  }

  .nav_btn {
    margin-left: 5px;
  }

  .breadcrumbs li {
    display: inline;
    list-style: none;
    font-weight: bold;
    font-size: 1.2rem;
  }
}

@media (max-width: 320px) {
  .logo h1 {
    font-size: 1.6rem;
  }

  .logo h1 span {
    font-size: 1.4rem;
  }

  .logo p {
    font-size: 1rem;
    padding-bottom: 5px;
  }

  /* メニューアイコン */
  .nav_btn {
    width: 48px;
    height: 48px;
  }

  .menu_txt {
    width: 100%;
    letter-spacing: -0.5px;
  }

  .mail img {
    width: 30px;
    height: 27px;
    margin: 6px auto 0;
  }

  .tel img {
    width: 26px;
    height: 27px;
    margin: 4px auto 2px;
  }

  /* ハンバーガーメニュー */
  .menu_box span:nth-child(1) {
    top: 14px;
  }

  .menu_box span:nth-child(2) {
    top: 24px;
  }

  .menu_box span:nth-child(3) {
    top: 34px;
  }

  /* ナビ開いてる時のボタン */
  .menu_box.active span:nth-child(1) {
    top : 25px;
  }

  .menu_box.active span:nth-child(2),
  .menu_box.active span:nth-child(3) {
    top: 25px;
  }

  nav.globalMenuSp ul {
    padding: 68px 0 0;
  }

  #point {
    padding: 20px 5px 0;
  }

  .primary {
    margin: 0 auto 20px;
  }

  .primary_txt {
    font-size: 2.2rem;
  }

  #contact {
    height: 275px;
  }

  .contact_box {
    max-width: 265px;
    margin-top: 20px;
    padding: 15px 10px 5px;
  }

  .contact_box .contact_ttl_txt {
    font-size: 1.4rem;
  }

  .contact_btn_2 a {
    width: 220px;
    margin: 5px auto 10px;
  }

  .contact_btn_2 p {
    font-size: 1.4rem;
  }
}
