@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic:wght@400;500;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css?family=M+PLUS+Rounded+1c&display=swap&subset=japanese');


/*-------------------------------------------------------------
¹²Í¨
-------------------------------------------------------------*/
* {
  box-sizing: border-box;
}
html {
  font-size: 62.5%;
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
      -ms-text-size-adjust: 100%;
          text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}
@media screen and (max-width: 1200px) {
  html {
    overflow-x: hidden;
  }
}
body {
  font-family: "Noto Sans JP", Helvetica, Arial, ¥á¥¤¥ê¥ª, Meiryo, "¥Ò¥é¥®¥Î½Ç¥´ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif;
  font-size: 15px;
  font-size: 1.5rem;
  -webkit-text-size-adjust: 100%;
  font-weight: 400;
  line-height: 1.8;
  color: #444;
  margin: 0;
}
@media screen and (max-width: 1200px) {
  body {
    position: relative;
    overflow-x: hidden;
  }
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

img {
  border-style: none;
  vertical-align: top;
  max-width: 100%;
  height: auto;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  background: #fff;
}
td,
th {
  vertical-align: top;
}
th {
  text-align: left;
  font-weight: bold;
}

a,
a::before,
a::after {
  transition: background 0.2s, border 0.2s, color 0.2s, opacity 0.2s;
}

.fs_maru {
    font-family: "Zen Maru Gothic", serif;
    font-style: normal;
}

.bold { font-weight: 900; }

.sp { display: none; }
@media only screen and (max-width: 600px) {
    .pc { display: none; }
    .sp { display: block; }
}


/*-------------------------------------------------------------
¥í©`¥Ç¥£¥ó¥°
-------------------------------------------------------------*/
#loading {
    font-size: 2em;
    font-weight: 600;
    color: #a1c5d8;
	position: fixed;
	top: 0;
	left: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100vw;
	height: 100vh;
    background-color: #fff;
	opacity: 1;
	transition: opacity .5s;
	transition-delay: .5s;
	z-index: 999;
}
#loading.loaded {
	opacity: 0;
	pointer-events: none;
}
#loading.transitionend {
	display: none;
}
#dots {
    display: inline-block;
    width: 1em;
    text-align: left;
}
@keyframes blink {
    0%, 20% { opacity: 1; }
    20.1%, 100% { opacity: 0; }
}
#dots span { animation: blink 1s infinite; }
#dots span:nth-child(2) { animation-delay: 0.2s; }
#dots span:nth-child(3) { animation-delay: 0.4s; }


/*-------------------------------------------------------------
header
-------------------------------------------------------------*/
.header {
    width: 100%;
    height: 90px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99;
    transition: background 0.5s;
}
.header.fixed {
    background: rgba(255,255,255,0.6);
}
.header .logo {
    margin-left: 30px;
}
.header .logo img {
    width: 230px;
}
@media only screen and (max-width: 600px) {
    .header {
        height: 50px;
    }
    .header .logo {
        margin-left: 10px;
    }
    .header .logo img {
        width: 110px;
    }
}

#menu_btn {
    width: 80px;
    height: 40px;
    display: flex;
    align-items: center;
    cursor: pointer;
    z-index: 9;
    pointer-events: painted;
    margin-right: 40px;
}
@media only screen and (max-width: 600px) {
    #menu_btn {
        width: 40px;
        height: 8px;
        top: 15px;
        right: 15px;
        margin-right: 20px;
    }
}
.toggle_box {
    position: relative;
    width: 100%;
    height: 12px;
}
.active .toggle_box {
    height: 40px;
    margin-top: -10px;
}
.toggle_box span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #231815;
    transition: background 0.3s ease;
}
.active .toggle_box span {
    background-color: #fff;
}
.toggle_box, .toggle_box span {
    display: inline-block;
    transition: all .5s;
    box-sizing: border-box;
}
.toggle_box span:nth-of-type(1) { top: 0; }
.toggle_box span:nth-of-type(2) { bottom: 0; }
.toggle_box span:nth-of-type(1) {
    animation: bar01 .5s forwards;
}
.toggle_box span:nth-of-type(2) {
    animation: bar02 .5s forwards;
}
@keyframes bar01 {
    0% { transform: translateY(20px) rotate(-30deg); }
    100% { transform: translateY(0) rotate(0); }
}
@keyframes bar01sp {
    0% { transform: translateY(10px) rotate(-30deg); }
    100% { transform: translateY(0) rotate(0); }
}
@keyframes bar02 {
    0% { transform: translateY(-20px) rotate(30deg); }
    100% { transform: translateY(0) rotate(0); }
}
@keyframes bar02sp {
    0% { transform: translateY(-10px) rotate(30deg); }
    100% { transform: translateY(0) rotate(0); }
}
.toggle_box::after {
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    content: '';
    width: 50px;
    height: 50px;
    margin: -25px 0 0 -25px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.3);
    transition: all .1s;
    opacity: 0;
}
.active .toggle_box::after {
    animation: circle .5s;
}
@keyframes circle {
    0% {
        transform: scale(.1);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: scale(3.5);
        opacity: 0;
    }
}
.active .toggle_box span:nth-of-type(1) {
    animation: active-bar01 .5s .5s forwards;
}
@keyframes active-bar01 {
    0% { transform: translateY(0) rotate(0); }
    100% { transform: translateY(20px) rotate(-30deg); }
}
@keyframes active-bar01sp {
    0% { transform: translateY(0) rotate(0); }
    100% { transform: translateY(9px) rotate(-36deg); }
}
.active .toggle_box span:nth-of-type(2) {
    animation: active-bar02 .5s .5s forwards;
}
@keyframes active-bar02 {
    0% { transform: translateY(0) rotate(0); }
    100% { transform: translateY(-20px) rotate(30deg); }
}
@keyframes active-bar02sp {
    0% { transform: translateY(0) rotate(0); }
    100% { transform: translateY(-9px) rotate(36deg); }
}

@media only screen and (max-width: 600px) {
    .toggle_box {
        height: 100%;
    }
    .toggle_box::after {
        width: 20px;
        height: 20px;
        margin: -10px 0 0 -11px;
    }
    .toggle_box span:nth-of-type(1) {
        animation: bar01sp .5s forwards;
    }
    .toggle_box span:nth-of-type(2) {
        animation: bar02sp .5s forwards;
    }
    .active .toggle_box {
        height: 20px;
        margin-top: -5px;
    }
    .active .toggle_box span:nth-of-type(1) {
        animation: active-bar01sp .5s .5s forwards;
    }
    .active .toggle_box span:nth-of-type(2) {
        animation: active-bar02sp .5s .5s forwards;
    }
}

/* ¥Ê¥Ó¥²©`¥·¥ç¥ó */
.nav {
    width: 400px;
    height: 100vh;
    height: 100dvh;
    overflow-y: auto;
    padding: 100px 0 40px;
    background-color: rgba(28,78,119,0.95);
    position: fixed;
    top: 0;
    right: 0;
    transition: transform 0.6s ease;
    transform: translateX(101%);
    z-index: 8;
    display: flex;
    flex-direction: column;
    align-items: center;
    pointer-events: painted;
}
.nav.active {
    transform: translateX(0);
}
.nav_list {
    margin-top: 70px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 90px 0;
}
.nav_btn {
    position: relative;
}
.nav_btn:not(:first-of-type)::before {
    content: "";
    width: 11px;
    aspect-ratio: 20 / 92;
    background: url("/ishinomaki/extra/i-rc2/img/dot.svg") no-repeat center center / contain;
    position: absolute;
    top: -70px;
    left: 0;
    right: 0;
    margin: auto;
}
.nav_btn a {
    display: block;
    font-weight: bold;
    color: #fff;
    text-align: center;
    position: relative;
    transition: all 0.2s;
}
.nav_btn a::after,
.sub_nav li a::after {
    content: "";
    width: 12px;
    height: 120%;
    background: url("/ishinomaki/extra/i-rc2/img/arrow.svg") no-repeat center center / contain;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    transition: all 0.2s;
}
.nav_btn a:hover,
.sub_nav li a:hover {
    text-shadow: 0 0 10px rgba(255,255,255,0.5),0 0 15px rgba(255,255,255,0.5);
}
.nav_btn a:hover::after,
.sub_nav li a:hover::after {
    right: -0.5em;
}
.nav_btn a .txt_1 {
    font-size: 26px;
    line-height: 1;
    padding: 0 1.5em;
}
.nav_btn a .txt_2 {
    font-size: 25px;
    line-height: 1em;
}
.nav_btn a .txt_2 span {
    font-size: 0.8em;
}
.sub_nav {
    display: flex;
    flex-direction: column;
    gap: 40px 0;
}
.sub_nav li {
    color: #fff;
    text-align: center;
}
.sub_nav li a {
    width: 100%;
    display: block;
    font-size: 17px;
    font-weight: 500;
    line-height: 1;
    position: relative;
    transition: opacity 0.2s;
}
@media only screen and (max-width: 600px) {
    .nav {
        width: 100%;
        height: 100vh;
        padding: 55px 0 30px;
    }
    .nav_ttl {
        width: 200px;
        max-width: 60%;
        margin: 0 auto;
    }
    .nav_list {
        margin-top: 50px;
        gap: 50px 0;
    }
    .nav_btn:not(:first-of-type)::before {
        width: 5px;
        top: -35px;
    }
    .nav_btn a {
        display: block;
        font-weight: bold;
        color: #fff;
        text-align: center;
        position: relative;
        transition: all 0.2s;
    }
    .nav_btn a::after,
    .sub_nav li a::after {
        width: 8px;
    }
    .nav_btn a .txt_1 {
        font-size: 24px;
        padding: 0 2em;
    }
    .nav_btn a .txt_2 {
        font-size: 23px;
    }
    .sub_nav {
        gap: 26px 0;
    }
    .sub_nav li a {
        font-size: 16px;
    }
}


/*-------------------------------------------------------------
main
-------------------------------------------------------------*/
#wrapper {
    width: 100%;
}
.main {
    width: 100%;
    margin-top: 90px;
}
@media only screen and (max-width: 600px) {
    .main {
        margin-top: 50px;
    }
}


/*-------------------------------------------------------------
footer
-------------------------------------------------------------*/
.footer {
  width: 100%;
  border-top: 1px solid #ddd;
  background: #f7f7f7;
  font-size: 13px;
  font-size: 1.3rem;
}

.footer .inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 45px 40px 55px 40px;
}

@media screen and (max-width: 1200px) {
  .footer .inner {
    display: flex;
    -ms-flex-direction: column;
        flex-direction: column;
    padding: 0;
  }
}

.footer .footer-content {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  margin-bottom: 5px;
}

@media screen and (max-width: 1200px) {
  .footer .footer-content {
    -ms-flex-direction: column;
        flex-direction: column;
  }
}

.footer .footer-content a {
  color: #222;
}

@media screen and (max-width: 1200px) {
  .footer .footer-left {
    padding: 40px 6% 0 6%;
  }
}

.footer .footer-left .logo {
  margin-bottom: 25px;
}

.footer .footer-left .logo img {
  width: 202px;
  height: 48px;
}

.footer .footer-left .address {
  margin-bottom: 30px;
}

@media screen and (max-width: 1200px) {
  .footer .footer-left .address {
    margin-bottom: 15px;
    padding: 15px 0;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
  }
}

.footer .footer-left .address .title {
  margin-right: 15px;
}

@media screen and (max-width: 1200px) {
  .footer .footer-left .address .title {
    display: block;
    margin-right: 0;
  }
}

.footer .footer-left .footer-nav {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.footer .footer-left .footer-nav li::after {
  content: "£ü";
  margin: 0 10px;
}

.footer .footer-left .footer-nav li:last-child::after {
  content: none;
}

@media screen and (max-width: 1200px) {
  .footer .footer-right {
    padding: 30px 6% 40px 6%;
  }
}

.footer .footer-right ul {
  display: -ms-flexbox;
  display: flex;
}

.footer .footer-right li {
  margin-left: 25px;
}

@media screen and (max-width: 1200px) {
  .footer .footer-right li {
    margin: 0 auto;
  }
}

@media screen and (max-width: 1200px) {
  .footer .copyright {
    flex: 1 0 auto;
    padding: 5px 6% 65px 6%;
    text-align: center;
    background: #e5e5e5;
  }
}

.footer.lang .footer-left {
  margin-left: auto;
  margin-right: auto;
}
.footer.lang .copyright {
  text-align: center;
}


/*-------------------------------------------------------------
PAGE TOP
-------------------------------------------------------------*/
.page-top {
    position: fixed;
    z-index: 5;
    bottom: 30px;
    right: 30px;
    opacity: 0;
    width: 40px;
    height: 40px;
    transform: translateY(110px);
    transition: opacity 0.5s, transform 0.5s;
}
.page-top.show {
    opacity: 1;
    transform: translateY(0px);
}

@media screen and (max-width: 1200px) {
  .page-top {
    bottom: 75px;
    right: 15px;
  }
}
@media screen and (max-width: 600px) {
  .page-top {
    bottom: 15px;
  }
}

.page-top a {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: block;
  width: 100%;
  height: 100%;
  background-color: #333;
  border-radius: 50%;
  transition: background 0.2s;
}

.page-top a:hover {
  background-color: #11377D;
}

.page-top a::before {
  content: "";
  position: absolute;
  top: 17px;
  left: 14px;
  width: 12px;
  height: 12px;
  border-left: 2px solid #fff;
  transform: rotate(45deg);
}

.page-top a::after {
  content: "";
  position: absolute;
  top: 17px;
  left: 14px;
  width: 12px;
  height: 12px;
  border-top: 2px solid #fff;
  transform: rotate(45deg);
}

.page-top a i {
  opacity: 0;
  font-size: 0;
}


/*-------------------------------------------------------------
¥Ü¥¿¥ó
-------------------------------------------------------------*/
.link {
    width: 320px;
    height: 65px;
    background-color: #fff;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 17px;
    font-weight: 500;
    line-height: 1;
    color: #1c4e77;
}
.link:hover {
    color: #fff;
    background-color: #1c4e77;
}
@media screen and (max-width: 600px) {
    .link {
        width: 220px;
        height: 44px;
        border-radius: 13px;
        font-size: 15px;
    }
}


/*-------------------------------------------------------------
print
-------------------------------------------------------------*/
@page {
    size: A4 portrait;
}
@media print {
    * {
        text-shadow: none !important;
        box-shadow: none !important;
    }
    html, body {
        width: 1100px;
        height: auto;
        -webkit-print-color-adjust: exact;
        size: A4 landscape;
        page-break-after: auto;
    }
    header {
        position: relative !important;
    }
    .nav {
        position: absolute;
    }
}